diff --git a/changelog.d/708-legacy-json-strict-decoder.fixed.md b/changelog.d/708-legacy-json-strict-decoder.fixed.md new file mode 100644 index 00000000..eca4988d --- /dev/null +++ b/changelog.d/708-legacy-json-strict-decoder.fixed.md @@ -0,0 +1 @@ +Resources declared as `legacy_json` now parse with the strict JSON decoder instead of the pure-Python YAML 1.2 scanner, restoring `load_country_spec("uk")` from ~38s to ~4s after this PR's ~40MB of committed local reference, membership, fixture, and receipt rows joined the bundle. The JSON path preserves every `load_yaml12` refusal — single document, string keys, no duplicate mapping keys, no non-finite numbers — and spec digests are unchanged because legacy resources contribute byte receipts, not normative projections. diff --git a/changelog.d/uk-local-ledger-targets.added.md b/changelog.d/uk-local-ledger-targets.added.md new file mode 100644 index 00000000..a50c3509 --- /dev/null +++ b/changelog.d/uk-local-ledger-targets.added.md @@ -0,0 +1 @@ +Added UK local geography and firms Ledger target contracts, local area crosswalk validation, and local-area target reference authoring/compilation support. diff --git a/packages/microcosm-build/src/microcosm/build/country_spec.py b/packages/microcosm-build/src/microcosm/build/country_spec.py index 130602e5..4d44f196 100644 --- a/packages/microcosm-build/src/microcosm/build/country_spec.py +++ b/packages/microcosm-build/src/microcosm/build/country_spec.py @@ -819,6 +819,97 @@ def _validate_target_references( return tuple(references) +def _validate_local_target_references( + raw: Mapping[str, Any], + *, + country: str, + crosswalk: Mapping[str, Any] | None, +) -> tuple[LedgerTargetReference, ...]: + """Validate a ``local_target_references.json`` resource.""" + + context = "local_target_references.json" + if crosswalk is None: + raise ValueError( + f"{context}: local target references require local_area_crosswalk.json." + ) + rosters = _local_area_rosters(crosswalk, context=context) + references = _validate_target_references(raw, country=country) + names = [reference.name for reference in references] + duplicates = sorted({name for name in names if names.count(name) > 1}) + if duplicates: + raise ValueError(f"{context}: duplicate reference name(s) {duplicates}.") + for reference in references: + if "@" not in reference.name: + raise ValueError( + f"{context}: reference {reference.name!r} must use " + "target_id@geography_id naming." + ) + contract_target_id, geography_id = reference.name.rsplit("@", 1) + if not contract_target_id or not geography_id: + raise ValueError( + f"{context}: reference {reference.name!r} must use " + "target_id@geography_id naming." + ) + selector = reference.ledger_selector + selector_level = selector.get("geography_level") + selector_id = selector.get("geography_id") + if not selector_level or not selector_id: + raise ValueError( + f"{context}: reference {reference.name!r} must pin " + "ledger_selector.geography_level and geography_id." + ) + if str(selector_id) != geography_id: + raise ValueError( + f"{context}: reference {reference.name!r} geography id does not " + f"match selector geography_id {selector_id!r}." + ) + roster = rosters.get(str(selector_level)) + if roster is None: + raise ValueError( + f"{context}: reference {reference.name!r} uses unknown " + f"geography level {selector_level!r}." + ) + if geography_id not in roster["area_ids"]: + raise ValueError( + f"{context}: reference {reference.name!r} geography id " + f"{geography_id!r} is outside the {selector_level!r} roster " + f"for expected vintage {roster['expected_vintage']!r}." + ) + if reference.metadata.get("contract_target_id") not in {"", contract_target_id}: + raise ValueError( + f"{context}: reference {reference.name!r} metadata " + "contract_target_id must match the name prefix." + ) + return references + + +def _local_area_rosters( + crosswalk: Mapping[str, Any], + *, + context: str, +) -> dict[str, dict[str, Any]]: + levels = crosswalk.get("levels") + if not isinstance(levels, Mapping): + raise ValueError(f"{context}: local_area_crosswalk.json must expose levels.") + rosters: dict[str, dict[str, Any]] = {} + for level, payload in levels.items(): + if not isinstance(payload, Mapping): + raise ValueError( + f"{context}: local_area_crosswalk level {level!r} must be an object." + ) + area_ids = payload.get("area_ids") + if not isinstance(area_ids, list) or not area_ids: + raise ValueError( + f"{context}: local_area_crosswalk level {level!r} must expose " + "a non-empty area_ids list." + ) + rosters[str(level)] = { + "area_ids": frozenset(str(area_id) for area_id in area_ids), + "expected_vintage": payload.get("expected_vintage", ""), + } + return rosters + + # --------------------------------------------------------------------------- # The country spec # --------------------------------------------------------------------------- @@ -952,6 +1043,7 @@ class ResolvedCountrySpec: support_spine: SupportSpineManifest | None geography_spine: GeographySpineManifest | None target_references: tuple[LedgerTargetReference, ...] + local_target_references: tuple[LedgerTargetReference, ...] gates: GatesManifest | None release_contract: ReleaseContractManifest | None take_up_contract: Mapping[str, Any] | None @@ -1570,6 +1662,15 @@ def load_country_spec(country: str | Path) -> ResolvedCountrySpec: if "target_references.json" in payloads else () ) + local_target_references = ( + _validate_local_target_references( + payloads["local_target_references.json"], + country=declared_country, + crosswalk=payloads.get("local_area_crosswalk.json"), + ) + if "local_target_references.json" in payloads + else () + ) gates = ( GatesManifest.from_mapping(payloads["gates.json"], country=declared_country) if "gates.json" in payloads @@ -1596,6 +1697,7 @@ def load_country_spec(country: str | Path) -> ResolvedCountrySpec: support_spine=support_spine, geography_spine=geography_spine, target_references=target_references, + local_target_references=local_target_references, gates=gates, release_contract=release_contract, take_up_contract=take_up_contract, diff --git a/packages/microcosm-build/src/microcosm/build/ledger_targets.py b/packages/microcosm-build/src/microcosm/build/ledger_targets.py index 1d436e88..f191cfd0 100644 --- a/packages/microcosm-build/src/microcosm/build/ledger_targets.py +++ b/packages/microcosm-build/src/microcosm/build/ledger_targets.py @@ -22,10 +22,10 @@ SUPPORTED_LEDGER_AGGREGATIONS = frozenset(("sum",)) ALLOWED_ASSERTION_POLICIES = frozenset(("observed_only", "allow_source_projection")) ALLOWED_VALUE_OPERATIONS = frozenset( - ("identity", "sum", "calendar_year_average", "latest_plateau") + ("identity", "sum", "calendar_year_average", "latest_plateau", "count_x_mean") ) MULTI_FACT_VALUE_OPERATIONS = frozenset( - ("sum", "calendar_year_average", "latest_plateau") + ("sum", "calendar_year_average", "latest_plateau", "count_x_mean") ) DEFAULT_HIERARCHY_MATCH_SPEC_FIELDS = ("entity", "period", "family", "filter") @@ -531,6 +531,8 @@ def target_spec_from_ledger_reference( numeric_value = sum(numeric_values) / len(numeric_values) elif reference.value_operation == "latest_plateau": numeric_value = numeric_values[-1] + elif reference.value_operation == "count_x_mean": + numeric_value = numeric_values[0] * numeric_values[1] elif reference.value_operation == "sum": numeric_value = sum(numeric_values) else: @@ -615,7 +617,16 @@ def _validate_fact_aggregation( reference.metadata.get("fact_aggregation") == "time_mean" and aggregation == "mean" ) - if aggregation not in SUPPORTED_LEDGER_AGGREGATIONS and not accepts_time_mean: + accepts_count_x_mean = ( + reference.value_operation == "count_x_mean" + and aggregation == "mean" + and _count_mean_fact_role(fact) == "mean" + ) + if ( + aggregation not in SUPPORTED_LEDGER_AGGREGATIONS + and not accepts_time_mean + and not accepts_count_x_mean + ): raise ValueError( f"Ledger fact for {reference.name!r} has unsupported aggregation " f"{aggregation!r}; Microcosm targets must be compiled from sum " @@ -888,6 +899,8 @@ def _resolve_reference_fact( ) if reference.value_operation == "latest_plateau" and eligible_matches: return _resolve_latest_plateau_reference_facts(reference, eligible_matches) + if reference.value_operation == "count_x_mean" and eligible_matches: + return _resolve_count_x_mean_reference_facts(reference, eligible_matches) if len(eligible_matches) == 1: return eligible_matches[0] latest_match = _latest_period_selector_match(reference, eligible_matches) @@ -994,6 +1007,49 @@ def _resolve_latest_plateau_reference_facts( return tuple(reversed(plateau)) +def _resolve_count_x_mean_reference_facts( + reference: LedgerTargetReference, + eligible_matches: list[object], +) -> tuple[object, ...]: + partitions: dict[ + tuple[tuple[str, ...], tuple[int, int, str]], dict[str, list[object]] + ] = {} + for fact in eligible_matches: + role = _count_mean_fact_role(fact) + if not role: + continue + key = (_selector_count_mean_partition_key(fact), _period_key(fact)) + partitions.setdefault(key, {}).setdefault(role, []).append(fact) + + valid = { + key: roles + for key, roles in partitions.items() + if len(roles.get("count", ())) == 1 and len(roles.get("mean", ())) == 1 + } + if not valid: + observed = { + key: {role: len(facts) for role, facts in roles.items()} + for key, roles in partitions.items() + } + raise ValueError( + f"Ledger target reference {reference.name!r}: value_operation=" + "'count_x_mean' requires exactly one count fact and one mean fact " + f"in a shared selector partition; observed {observed!r}." + ) + latest_period = max(period_key for _, period_key in valid) + latest = [ + roles for (_, period_key), roles in valid.items() if period_key == latest_period + ] + if len(latest) != 1: + raise ValueError( + f"Ledger target reference {reference.name!r}: value_operation=" + "'count_x_mean' matched multiple count/mean selector partitions " + "at the latest eligible period." + ) + roles = latest[0] + return (roles["count"][0], roles["mean"][0]) + + def _monthly_operation_matches( reference: LedgerTargetReference, eligible_matches: list[object], @@ -1080,6 +1136,34 @@ def _selector_sum_partition_key(fact: object) -> tuple[str, ...]: return invariant[:8] + invariant[11:] +def _selector_count_mean_partition_key(fact: object) -> tuple[str, ...]: + return ( + _source_name(fact), + _str_at(fact, "geography", "level"), + _str_at(fact, "geography", "id"), + _str_at(fact, "entity", "name"), + _normalized_record_set_id(_str_at(fact, "layout", "record_set_id")), + _str_at(fact, "layout", "record_set_spec_id"), + _str_at(fact, "layout", "groupby_dimension"), + _normalized_period_bearing_id(_str_at(fact, "layout", "groupby_value_id")), + json.dumps(_dimensions(fact), sort_keys=True, separators=(",", ":")), + json.dumps(_constraint_rows(fact), sort_keys=True, separators=(",", ":")), + _domain(fact), + ) + + +def _count_mean_fact_role(fact: object) -> str: + measure_id = ( + _str_at(fact, "observed_measure", "source_measure_id") + or _str_at(fact, "layout", "measure_id") + ).lower() + if measure_id.endswith("_count") or measure_id == "count": + return "count" + if measure_id.endswith("_mean") or measure_id == "mean": + return "mean" + return "" + + def _eligible_selector_matches( reference: LedgerTargetReference, matches: list[object], @@ -1425,6 +1509,8 @@ def _selector_candidates(fact: object, key: str) -> tuple[str, ...]: return (_str_at(fact, "entity", "name"),) if key in {"record_set_id", "layout_record_set_id"}: return (_str_at(fact, "layout", "record_set_id"),) + if key in {"record_set_spec_id", "layout_record_set_spec_id"}: + return (_str_at(fact, "layout", "record_set_spec_id"),) if key in {"groupby_dimension", "layout_groupby_dimension"}: return (_str_at(fact, "layout", "groupby_dimension"),) if key == "layout_groupby_value_id": @@ -1640,6 +1726,9 @@ def _ledger_metadata(fact: object, *, fact_key: str) -> dict[str, str]: "ledger_entity_role": _str_at(fact, "entity", "role"), "ledger_domain": _domain(fact), "ledger_layout_record_set_id": _str_at(fact, "layout", "record_set_id"), + "ledger_layout_record_set_spec_id": _str_at( + fact, "layout", "record_set_spec_id" + ), "ledger_layout_groupby_dimension": _str_at(fact, "layout", "groupby_dimension"), "ledger_layout_groupby_value_id": _str_at(fact, "layout", "groupby_value_id"), "ledger_layout_measure_id": _str_at(fact, "layout", "measure_id"), diff --git a/packages/microcosm-build/src/microcosm/build/spec_engine/loader.py b/packages/microcosm-build/src/microcosm/build/spec_engine/loader.py index c60c096f..52b7a7a2 100644 --- a/packages/microcosm-build/src/microcosm/build/spec_engine/loader.py +++ b/packages/microcosm-build/src/microcosm/build/spec_engine/loader.py @@ -41,7 +41,7 @@ assert_schema_id_allowed, load_schema_registry, ) -from .yaml12 import load_yaml12 +from .yaml12 import load_json_strict, load_yaml12 SUPPORTED_SCHEMA_VERSION = 1 BUNDLE_LOCK_FILENAME = "bundle.lock.json" @@ -317,7 +317,13 @@ def load_bundle( ) raw = _read_bytes(resource, label=path_text) text = _decode_utf8(raw, label=path_text) - parsed = load_yaml12(text, source=path_text) + if descriptor.kind is ResourceKind.LEGACY_JSON: + # Declared-JSON compatibility data can be megabytes of generated + # rows; the strict JSON decoder keeps the load_yaml12 value model + # without the pure-Python YAML scanner's cost. + parsed = load_json_strict(text, source=path_text) + else: + parsed = load_yaml12(text, source=path_text) if descriptor.kind is ResourceKind.SCHEMA: # Schema resources are grammar inputs and validated when the # registry is built; a country bundle does not normally repeat diff --git a/packages/microcosm-build/src/microcosm/build/spec_engine/yaml12.py b/packages/microcosm-build/src/microcosm/build/spec_engine/yaml12.py index a40b0bcd..08ec91a5 100644 --- a/packages/microcosm-build/src/microcosm/build/spec_engine/yaml12.py +++ b/packages/microcosm-build/src/microcosm/build/spec_engine/yaml12.py @@ -9,6 +9,7 @@ from __future__ import annotations +import json import math import re from collections.abc import Iterator @@ -332,4 +333,48 @@ def load_yaml12_file(path: str | PathLike[str]) -> JSONValue: return load_yaml12(resource.read_text(encoding="utf-8"), source=str(resource)) +def load_json_strict(text: str, *, source: str = "") -> JSONValue: + """Load one strict-JSON document into the same value model as load_yaml12. + + JSON is a subset of the YAML 1.2 core schema, so a resource declared as + JSON parses with the C decoder instead of the pure-Python YAML scanner. + The JSON grammar already guarantees a single document with string mapping + keys and no tags or aliases; the two refusals it does not carry — + duplicate mapping keys and the non-finite number constants — are enforced + here so this path is never more permissive than :func:`load_yaml12`. + """ + + if not isinstance(text, str): + raise TypeError("JSON input must be text") + + def _refuse_duplicate_keys( + pairs: list[tuple[str, JSONValue]], + ) -> dict[str, JSONValue]: + mapping: dict[str, JSONValue] = {} + for key, value in pairs: + if key in mapping: + raise _error(f"duplicate mapping key {key!r}", source=source) + mapping[key] = value + return mapping + + def _refuse_constant(constant: str) -> JSONValue: + raise _error("non-finite numbers are not allowed", source=source) + + try: + return json.loads( + text, + object_pairs_hook=_refuse_duplicate_keys, + parse_constant=_refuse_constant, + ) + except SpecParseError: + raise + except json.JSONDecodeError as exc: + raise SpecParseError( + f"invalid JSON: {exc.msg}", + source=source, + line=exc.lineno, + column=exc.colno, + ) from exc + + __all__ = ["JSONScalar", "JSONValue", "load_yaml12", "load_yaml12_file"] 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 924dbe45..a7d1f89c 100644 --- a/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py +++ b/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py @@ -60,6 +60,62 @@ class TargetReferenceAuthoringConfig: source_fact_feed: str = "" +@dataclass(frozen=True) +class AreaSignedDeferral: + """Signed area-level compile deferral for one contract target.""" + + target_id: str + geography_level: str + reason_id: str + rationale: str + area_ids: tuple[str, ...] + + def __post_init__(self) -> None: + if not self.target_id: + raise ValueError("AreaSignedDeferral.target_id must be non-empty.") + if not self.geography_level: + raise ValueError("AreaSignedDeferral.geography_level must be non-empty.") + if not self.reason_id: + raise ValueError("AreaSignedDeferral.reason_id must be non-empty.") + if not self.rationale: + raise ValueError("AreaSignedDeferral.rationale must be non-empty.") + if not self.area_ids: + raise ValueError("AreaSignedDeferral.area_ids must be non-empty.") + object.__setattr__( + self, + "area_ids", + tuple(dict.fromkeys(str(area_id) for area_id in self.area_ids)), + ) + + +@dataclass(frozen=True) +class AreaTargetReferenceAuthoringConfig: + """Country-supplied authoring policy for area-grain targets.""" + + target_period: int | str + areas_by_geography_level: Mapping[str, Iterable[str]] + area_signed_deferrals: tuple[AreaSignedDeferral, ...] = () + value_operation_by_target_id: Mapping[str, str] = field(default_factory=dict) + selector_pins_by_target_id: Mapping[str, Mapping[str, Any]] = field( + default_factory=dict + ) + binding_vocabulary: frozenset[str] = frozenset() + source_fact_feed: str = "" + + def normalized_areas(self) -> dict[str, tuple[str, ...]]: + """Return area rosters with duplicate ids removed in declared order.""" + + rosters: dict[str, tuple[str, ...]] = {} + for level, area_ids in self.areas_by_geography_level.items(): + values = tuple(dict.fromkeys(str(area_id) for area_id in area_ids)) + if not values: + raise ValueError( + f"Area roster for geography level {level!r} must be non-empty." + ) + rosters[str(level)] = values + return rosters + + def author_target_references( contract: Mapping[str, Any], facts: Iterable[Mapping[str, Any]], @@ -187,6 +243,166 @@ def author_target_references( return AuthoredTargetReferences(tuple(active_rows), report) +def author_area_target_references( + contract: Mapping[str, Any], + facts: Iterable[Mapping[str, Any]], + config: AreaTargetReferenceAuthoringConfig, +) -> AuthoredTargetReferences: + """Build area-grain target references over a declared geography roster.""" + + fact_rows = tuple(facts) + areas_by_level = config.normalized_areas() + signed = _area_deferral_index(config, contract, areas_by_level) + facts_by_area = _facts_by_geography_id(fact_rows) + _validate_contract_bindings(contract, config.binding_vocabulary) + + active_rows: list[dict[str, Any]] = [] + target_entries: dict[str, Any] = {} + + for target in contract.get("targets", ()): + target_id = str(target["target_id"]) + level_entries: dict[str, Any] = {} + for geography_level in target.get("geography_levels", ()): + geography_level = str(geography_level) + area_ids = areas_by_level.get(geography_level) + if area_ids is None: + # A declared level the roster lacks must refuse, not drop out: + # skipping here yields no candidates, no references, and a + # membership status of not_applicable -- a whole level could + # leave the surface with the report agreeing nothing is wrong + # (PR #795 round-3 review finding 2). + raise ValueError( + f"target {target_id!r} declares geography level " + f"{geography_level!r}, which the area roster does not " + "carry." + ) + candidates: list[dict[str, Any]] = [] + for area_id in area_ids: + key = (target_id, geography_level, area_id) + selector = _area_target_selector( + target, + geography_level=geography_level, + area_id=area_id, + config=config, + ) + row = _area_reference_row( + target, + selector, + geography_level=geography_level, + area_id=area_id, + config=config, + ) + source_facts = facts_by_area.get(area_id, ()) + matched = [ + fact + for fact in source_facts + if _fact_matches_selector(fact, selector) + ] + reference = LedgerTargetReference(**row) + eligible = [fact for fact in matched if _eligible_fact(reference, fact)] + signed_deferral = signed.get(key) + entry: dict[str, Any] = { + "name": row["name"], + "target_id": target_id, + "geography_level": geography_level, + "geography_id": area_id, + "status": "", + "matched_fact_count_overall": len(matched), + "matched_fact_count_at_or_before_period": len(eligible), + } + try: + registry = compile_ledger_target_references( + matched, + [reference], + country=str(contract["country"]), + ) + except ValueError as error: + status = _classify_area_deferral(error, matched, eligible) + entry["status"] = status + entry["error"] = _compact_compile_error(status) + if signed_deferral is None: + raise ValueError( + "Unsigned local target absence for " + f"{target_id!r} at {geography_level!r}/{area_id!r}: " + f"{status}." + ) from error + entry["signed_reason_id"] = signed_deferral.reason_id + entry["signed_rationale"] = signed_deferral.rationale + else: + if signed_deferral is not None: + raise ValueError( + "Stale area signed deferral for " + f"{target_id!r} at {geography_level!r}/{area_id!r}: " + "the candidate now compiles." + ) + spec = registry.specs[0] + 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_key": _json_safe_ledger_id( + spec.metadata.get("ledger_aggregate_fact_key", "") + ), + } + ) + candidates.append(entry) + level_entries[geography_level] = { + "status": _target_status(candidates), + "candidate_count": len(candidates), + "candidates": candidates, + } + target_entries[target_id] = { + "status": _target_status( + [ + entry + for level in level_entries.values() + for entry in level["candidates"] + ] + ), + "geography_levels": level_entries, + } + + status_counts = Counter( + entry["status"] + for target in target_entries.values() + for level in target["geography_levels"].values() + for entry in level["candidates"] + ) + report = { + "source_fact_feed": config.source_fact_feed, + "target_period": config.target_period, + "candidate_count": sum( + level["candidate_count"] + for target in target_entries.values() + for level in target["geography_levels"].values() + ), + "contract_target_count": len(tuple(contract.get("targets", ()))), + "active_reference_count": len(active_rows), + "status_counts": dict(sorted(status_counts.items())), + "areas_by_geography_level": { + level: list(area_ids) for level, area_ids in areas_by_level.items() + }, + "signed_deferrals": [ + { + "target_id": deferral.target_id, + "geography_level": deferral.geography_level, + "reason_id": deferral.reason_id, + "rationale": deferral.rationale, + "area_ids": list(deferral.area_ids), + } + for deferral in config.area_signed_deferrals + ], + "targets": target_entries, + } + return AuthoredTargetReferences(tuple(active_rows), report) + + def target_references_resource( *, country: str, @@ -203,6 +419,7 @@ def target_references_resource( "sum", "calendar_year_average", "latest_plateau", + "count_x_mean", ], "target_references": list(authored.references), } @@ -259,6 +476,64 @@ def _target_selector( return selector +def _area_target_selector( + target: Mapping[str, Any], + *, + geography_level: str, + area_id: str, + config: AreaTargetReferenceAuthoringConfig, +) -> dict[str, Any]: + selector = { + **dict(target["ledger_selector"]), + "geography_level": geography_level, + "geography_id": area_id, + } + pins = config.selector_pins_by_target_id.get(str(target["target_id"]), {}) + for key, value in pins.items(): + if key == "dimension_values" and isinstance(value, Mapping): + existing = selector.get("dimension_values") + selector[key] = { + **(dict(existing) if isinstance(existing, Mapping) else {}), + **dict(value), + } + continue + selector[key] = value + return selector + + +def _area_reference_row( + target: Mapping[str, Any], + selector: Mapping[str, Any], + *, + geography_level: str, + area_id: str, + config: AreaTargetReferenceAuthoringConfig, +) -> dict[str, Any]: + target_id = str(target["target_id"]) + binding = target["bindings"]["policyengine"] + row: dict[str, Any] = { + "name": f"{target_id}@{area_id}", + "ledger_selector": dict(selector), + "entity": binding.get("from_entity") or binding.get("map_to") or "household", + "measure": binding["metric_name"], + "family": target["family"], + "period": config.target_period, + "metadata": { + "contract_target_id": target_id, + "measure_kind": "prepared_column", + "geography_level": geography_level, + "geography_id": area_id, + }, + } + assertion_policy = target.get("assertion_policy") + if assertion_policy is not None: + row["assertion_policy"] = assertion_policy + value_operation = config.value_operation_by_target_id.get(target_id) + if value_operation is not None and value_operation != "identity": + row["value_operation"] = value_operation + return row + + def _fanout_rows( target: Mapping[str, Any], facts: tuple[Mapping[str, Any], ...], @@ -335,6 +610,49 @@ def _source_name(fact: Mapping[str, Any]) -> str: ) +def _facts_by_geography_id( + facts: tuple[Mapping[str, Any], ...], +) -> dict[str, tuple[Mapping[str, Any], ...]]: + buckets: dict[str, list[Mapping[str, Any]]] = {} + for fact in facts: + area_id = str(fact.get("geography", {}).get("id") or "") + if area_id: + buckets.setdefault(area_id, []).append(fact) + return {key: tuple(value) for key, value in buckets.items()} + + +def _area_deferral_index( + config: AreaTargetReferenceAuthoringConfig, + contract: Mapping[str, Any], + areas_by_level: Mapping[str, tuple[str, ...]], +) -> dict[tuple[str, str, str], AreaSignedDeferral]: + target_levels = { + (str(target["target_id"]), str(level)) + for target in contract.get("targets", ()) + for level in target.get("geography_levels", ()) + } + index: dict[tuple[str, str, str], AreaSignedDeferral] = {} + for deferral in config.area_signed_deferrals: + if (deferral.target_id, deferral.geography_level) not in target_levels: + raise ValueError( + "Area signed deferral references undeclared target/geography " + f"{deferral.target_id!r}/{deferral.geography_level!r}." + ) + roster = set(areas_by_level.get(deferral.geography_level, ())) + outside = sorted(set(deferral.area_ids) - roster) + if outside: + raise ValueError( + "Area signed deferral references area id(s) outside the roster " + f"for {deferral.geography_level!r}: {outside!r}." + ) + for area_id in deferral.area_ids: + key = (deferral.target_id, deferral.geography_level, area_id) + if key in index: + raise ValueError(f"Duplicate area signed deferral for {key!r}.") + index[key] = deferral + return index + + def _native_groupby_pin( fact: Mapping[str, Any], dimension: str, @@ -447,7 +765,19 @@ def _classify_deferral( return "signed_deferral_compile_error" +def _classify_area_deferral( + error: ValueError, + matched: list[Mapping[str, Any]], + eligible: list[Mapping[str, Any]], +) -> str: + if not matched: + return "no_fact_for_area" + return _classify_deferral(error, matched, eligible) + + def _target_status(candidate_entries: list[dict[str, Any]]) -> str: + if not candidate_entries: + return "not_applicable" if any(entry["status"] == "active" for entry in candidate_entries): if all(entry["status"] == "active" for entry in candidate_entries): return "active" 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 16a694fd..64a55490 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/country_package.json +++ b/packages/microcosm-build/src/microcosm/build/uk/country_package.json @@ -192,6 +192,11 @@ "kind": "legacy_json", "schema_id": "legacy_json" }, + { + "path": "ledger_compile_parity_local_incumbent_2025_signed_differences.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, { "path": "ledger_compile_parity_production_2023_signed_differences.json", "kind": "legacy_json", @@ -222,6 +227,11 @@ "kind": "legacy_json", "schema_id": "legacy_json" }, + { + "path": "local_registry_parity_fixture_2025.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, { "path": "was_wealth_support_bounds.json", "kind": "legacy_json", @@ -238,7 +248,17 @@ "schema_id": "legacy_json" }, { - "path": "uk_national_targets.json", + "path": "uk_population_targets.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, + { + "path": "uk_firms_targets.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, + { + "path": "local_area_crosswalk.json", "kind": "legacy_json", "schema_id": "legacy_json" }, @@ -251,6 +271,16 @@ "path": "target_reference_membership.json", "kind": "legacy_json", "schema_id": "legacy_json" + }, + { + "path": "local_target_references.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, + { + "path": "local_target_reference_membership.json", + "kind": "legacy_json", + "schema_id": "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 09ae60a6..c665d604 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/gates.json +++ b/packages/microcosm-build/src/microcosm/build/uk/gates.json @@ -51,6 +51,33 @@ }, "notes": "Ledger-compiled UK targets at the 2025 calibration period compared with the frozen incumbent registry surface. The signed list enumerates TCL additions, exclusions, unsupported rows, and vintage drift for review." }, + { + "id": "uk_ledger_compile_parity_local_incumbent_2025", + "gate": "ledger_compile_parity", + "phase": "preflight", + "criticality": "release_blocking", + "parameters": { + "fixture_resource": "local_registry_parity_fixture_2025.json", + "signed_differences_resource": "ledger_compile_parity_local_incumbent_2025_signed_differences.json", + "target_period": 2025, + "registry_artifact": "uk_ledger_compiled_local_registries" + }, + "notes": "Ledger-compiled UK local-area targets at the 2025 calibration period compared with the frozen incumbent local registry surface. The incumbent's out-of-contract devolved private-rent and council-tax columns remain fixture-only and are signed with ruled rationales." + }, + { + "id": "uk_target_surface_local_default_2025", + "gate": "target_surface", + "phase": "preflight", + "criticality": "release_blocking", + "parameters": { + "expected": "local_default_surface", + "registry_artifact": "uk_ledger_compiled_local_registries", + "target_period": 2025, + "crosswalk_resource": "local_area_crosswalk.json", + "membership_resource": "local_target_reference_membership.json" + }, + "notes": "Structural, valueless local default-surface check: compose metric_names(area_type) over the committed local crosswalk roster and apply the signed area deferrals from local_target_reference_membership.json as reviewed exclusions." + }, { "id": "uk_stage_was_wealth_support", "gate": "stage_health", diff --git a/packages/microcosm-build/src/microcosm/build/uk/ledger_compile_parity_local_incumbent_2025_signed_differences.json b/packages/microcosm-build/src/microcosm/build/uk/ledger_compile_parity_local_incumbent_2025_signed_differences.json new file mode 100644 index 00000000..bd594b27 --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/ledger_compile_parity_local_incumbent_2025_signed_differences.json @@ -0,0 +1,183632 @@ +{ + "compiled_count": 17077, + "counts_by_kind": { + "calibration_drift": 16782, + "fixture_only": 6760, + "ledger_only": 292 + }, + "difference_count": 23834, + "differences": [ + { + "fixture_value": 10645.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 16762.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8462.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 19287.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8148.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 11193.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 10169.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 16457.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8597.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 9369.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 12154.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000011", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 10402.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000012", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 7393.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000013", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8606.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000014", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 9540.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000015", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 9037.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000016", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 13259.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000017", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 10906.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N05000018", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 13135.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 21625.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 48120.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 15125.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 22912.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 10920.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 10992.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 13054.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 13612.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 18024.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area@N09000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 5232.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8238.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4159.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 9478.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4004.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 5501.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4997.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 8088.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4225.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4604.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 5973.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000011", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 5112.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000012", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3633.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000013", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4229.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000014", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4688.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000015", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4441.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000016", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 6516.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000017", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 5360.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_0@N05000018", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2208.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3477.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1755.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 4001.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2322.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2110.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3414.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1783.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1944.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2521.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000011", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2158.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000012", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1534.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000013", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1785.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000014", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1979.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000015", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1875.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000016", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2750.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000017", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2262.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_1@N05000018", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1912.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3011.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1520.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3465.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1464.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2010.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1827.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2956.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1544.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1683.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2183.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000011", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1868.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000012", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1328.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000013", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1546.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000014", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1714.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000015", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1623.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000016", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2382.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000017", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1959.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_2@N05000018", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1293.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000001", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2036.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000002", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1028.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000003", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 2343.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000004", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 990.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000005", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1360.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000006", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1235.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000007", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1999.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000008", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1045.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000009", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1138.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000010", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1477.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000011", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1264.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000012", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 898.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000013", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1046.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000014", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1159.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000015", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1098.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000016", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1611.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000017", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 1325.0, + "kind": "fixture_only", + "name": "dwp.uc.households_by_area_children_3plus@N05000018", + "period": 2025, + "reason": "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so the Northern Ireland areas have no UC facts in the pinned feed. The incumbent fills NI from the DfC May-2025 supplementary tables, which are requested as a Chronicle port in chronicle#200; the child splits stay deferred regardless (no NI child-count source; the incumbent imputes them from GB proportions)." + }, + { + "fixture_value": 3042459861.0246377, + "kind": "fixture_only", + "name": "hmrc.employment_income.amount@E06000027", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 3042459861.0246377, + "kind": "fixture_only", + "name": "hmrc.employment_income.amount@E06000053", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 83456.47065955242, + "kind": "fixture_only", + "name": "hmrc.employment_income.count@E06000027", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 83456.47065955242, + "kind": "fixture_only", + "name": "hmrc.employment_income.count@E06000053", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 292071077.7270251, + "kind": "fixture_only", + "name": "hmrc.self_employment_income.amount@E06000027", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 292071077.7270251, + "kind": "fixture_only", + "name": "hmrc.self_employment_income.amount@E06000053", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 58597493.057818, + "kind": "fixture_only", + "name": "hmrc.self_employment_income.amount@E14001416", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 10099.947398199361, + "kind": "fixture_only", + "name": "hmrc.self_employment_income.count@E06000027", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 10099.947398199361, + "kind": "fixture_only", + "name": "hmrc.self_employment_income.count@E06000053", + "period": 2025, + "reason": "Signed deferral: the publisher's SPI area tables lack the cell upstream — E14001416 publishes a self-employment count with no mean (so count_x_mean cannot resolve), and two local authorities carry no SPI target measures. The incumbent's fixture row for these cells is a boundary-mapped blend, not a published cell." + }, + { + "fixture_value": 69738772.716, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 96111361.854, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 108610441.7904, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 163386702.9723, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 89851198.602, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90641943.9813, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 179465496.1275, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 97480357.175, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105132843.1146, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 158193802.34239998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 322923928.2, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 119402941.722, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 124935934.9014, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 161307680.6415, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 172765773.66, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 216985639.7625, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44849143.4966, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 204079861.5691, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 191881285.7988, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 136176527.1748, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 153262730.4136, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170676301.01860002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 385352247.8376, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 208481532.3544, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 266248336.30640003, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 191876739.2955, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 128340628.3275, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 192953720.862, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 146052091.4337, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 145845376.1913, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 142569029.64220002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 123409210.8492, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 218665514.865, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 113227158.584, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170564587.45200002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 160555291.3094, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 108753476.0536, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 141816135.0368, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 194973858.872, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 241552441.9611, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250160876.49659997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 141561630.9178, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 166766709.22, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 156531403.0753, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 398097461.3715, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 405983135.6229, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 334162542.90389997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 311591738.141, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 580602125.5231999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2924282.0840000003, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 509263386.9618, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 161728840.13579997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 287374256.8704, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 307605231.7234, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 374759089.9416, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 455833178.642, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600363690.9438, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290406600.0528, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 367682918.7856, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 236997160.946, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 242993207.1637, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 660473592.9662, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 564425860.5495, + "kind": "fixture_only", + "name": "housing/council_tax_net@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 116051433.2028, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 84112209.39359999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 83011632.47899999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170498919.052, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 176533018.1875, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 103047976.3088, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 61046074.74419999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 72837728.4498, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 77618344.90799999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 83145730.2816, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 78740328.56319998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 84402991.51889999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92340288.9864, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 172658590.1726, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 102276147.5008, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 83891659.18439999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 101676124.8487, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 121130556.9588, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140888947.77359998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70389872.715, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 61999400.275, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100026807.228, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 78580133.0378, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 109470855.4599, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 108819546.892, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 192940927.45, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 147426464.96799996, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 136107360.4854, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 79803886.9956, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 74080576.29450001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 167657590.00199997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 154434870.98549998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130820750.1822, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70293043.71090001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 64400222.8441, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80682376.7428, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 127770023.7539, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95153738.8794, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 107492824.5912, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 108783482.755, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 77993453.2818, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 96160677.12, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120515229.9472, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 91803099.7013, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 161429600.6554, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 125280437.9112, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120453442.6446, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 102211759.96500002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 65026548.9783, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 104670992.251, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100856260.4384, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 182225326.0744, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 77926023.73, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 122507609.308, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130385919.4664, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 86002461.67589998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 148105614.2813, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105962184.0536, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 126916316.3428, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95732065.0638, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 88923036.06899999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 122977522.2408, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 136703588.4309, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 102951399.283, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105381919.746, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 87394547.95199999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 174634859.47349998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 135170775.26360002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 108702648.8625, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 124193966.6175, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 122454935.628, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 135852345.3209, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 121677542.9905, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 63026276.850200005, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95874955.1254, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82953511.2036, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56535230.0986, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 111255931.6554, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 68878098.31379999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120344265.1854, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 62155509.495000005, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 55365000.885, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95763190.6902, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 99299213.7627, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 101098232.0347, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 87035255.8826, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 146830955.77319998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 96766553.261, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 97034200.9008, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50451320.0556, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92237450.964, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 45705768.6095, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 47770163.303, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 113440237.2128, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 61694105.2524, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95308586.1792, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 71420499.24599999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 114197302.8, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 79041283.4475, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 117759650.8889, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 122031390.72980002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 78466876.354, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 139444747.608, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 115525372.7991, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 104319095.832, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 135243344.1359, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 93062738.9692, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 104384221.326, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 94838792.4596, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105315566.5125, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82840253.6524, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 115832603.688, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 126555776.2623, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 157880562.9144, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 133562326.464, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 169008476.30990002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 156141676.0416, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 128058641.1165, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 73182739.00659999, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 98871566.2002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 99099705.438, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92254905.4325, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 94538916.1434, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 117457312.0128, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 81123728.30800001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 55627499.18880001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 86388232.49550001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100245258.675, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 98656457.408, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 174567000.205, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 86398878.87280001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 159479498.871, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 107809539.0484, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 167523096.6898, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92856672.7589, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 106445081.7136, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105937943.7816, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 103822024.38, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 157838242.44239998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 114327659.514, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56553111.487, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105203242.1352, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 104257558.485, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 156157534.5785, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 147803375.902, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56716252.510400005, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 168637981.04999998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 147627418.8024, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 89533759.2908, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 161787091.53750002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 167375845.5958, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 99423479.24490002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 95860549.425, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 83479413.6048, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 66457090.224, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82468785.04810001, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 131136427.7655, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 88924076.83229998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 159353973.01559997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110078150.397, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 163143549.60119998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 69980502.8671, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 226694674.284, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 145044054.46629998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200612072.67079997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 151795814.6185, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 329432337.26280004, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 159794278.8741, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 159790833.872, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 217839621.46499997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 262258400.663, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 163602522.5507, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190331322.582, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 214035504.5928, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 102122010.025, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 341610797.0288, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 135803491.6098, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 236006001.5674, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 252960384.5652, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 164690528.184, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 193081752.63, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 180542241.30550003, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 393731372.7144, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 202683393.8353, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 161795549.77019998, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 97994108.9063, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 174110755.3878, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 667795638.413, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 240351793.43999997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 214959553.9248, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 186768586.649, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 178805570.0886, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 201080913.026, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 176264505.8892, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360921787.7391, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 159935951.571, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 322588621.035, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 573341150.031, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 246450485.8683, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 151587307.6041, + "kind": "fixture_only", + "name": "housing/council_tax_net@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15244455.7524, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 129472518.3653, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 339539499.162, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 206446665.3644, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 251602952.3661, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 304871061.41800004, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220511198.178, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 368973637.3935, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 274136385.72010005, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250144478.0601, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 204263058.6012, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 174558361.219, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 141718057.4413, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 202145101.8972, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 232407940.58450004, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 228206356.3206, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 217533341.451, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 208959599.4408, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 181931110.361, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 171780148.848, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 178293341.644, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 245763600.6423, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 218508185.6243, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 175588523.8184, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 188163726.4957, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220890933.1662, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 227971988.904, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 227093195.8654, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 183237343.08, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 222040965.5338, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 201084766.7584, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 156911704.16070002, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170747374.67849997, + "kind": "fixture_only", + "name": "housing/council_tax_net@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 63114620.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 119406313.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110610412.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82023146.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 131972547.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 104887499.37199567, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70082599.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 111301517.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 151662184.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 177267464.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 106279092.92000002, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 115651162.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 118046914.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250934240.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 151783228.38, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 105324903.21000004, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 45129431.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60708353.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 98574346.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 107214282.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 129025924.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41504016.0, + "kind": "fixture_only", + "name": "housing/council_tax_net@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001113", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001114", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001115", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001116", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001117", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001118", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001119", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001120", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001121", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001122", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001123", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001124", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001125", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001126", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001127", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001128", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001129", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001130", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001131", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001132", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001133", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001134", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001135", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001136", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001137", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001138", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001139", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001140", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001141", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001142", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001143", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001144", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001145", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001146", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001147", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001148", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001149", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001150", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001151", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001152", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001153", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001154", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001155", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001156", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001157", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001158", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001159", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001160", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001161", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001162", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001163", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001164", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001165", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001166", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001167", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001168", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001169", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001170", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001171", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001172", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001173", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001174", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001175", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001176", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001177", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001178", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001179", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001180", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001181", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001182", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001183", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001184", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001185", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001186", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001187", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001188", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001189", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001190", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001191", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001192", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001193", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001194", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001195", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001196", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001197", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001198", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001199", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001200", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001201", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001202", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001203", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001204", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001205", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001206", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001207", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001208", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001209", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001210", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001211", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001212", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001213", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001214", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001215", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001216", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001217", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001218", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001219", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001220", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001221", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001222", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001223", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001224", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001225", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001226", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001227", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001228", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001229", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001230", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001231", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001232", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001233", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001234", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001235", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001236", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001237", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001238", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001239", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001240", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001241", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001242", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001243", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001244", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001245", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001246", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001247", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001248", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001249", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001250", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001251", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001252", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001253", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001254", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001255", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001256", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001257", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001258", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001259", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001260", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001261", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001262", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001263", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001264", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001265", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001266", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001267", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001268", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001269", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001270", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001271", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001272", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001273", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001274", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001275", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001276", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001277", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001278", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001279", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001280", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001281", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001282", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001283", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001284", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001285", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001286", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001287", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001288", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001289", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001290", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001291", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001292", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001293", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001294", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001295", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001296", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001297", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001298", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001299", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001300", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001301", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001302", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001303", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001304", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001305", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001306", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001307", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001308", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001309", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001310", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001311", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001312", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001313", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001314", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001315", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001316", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001317", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001318", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001319", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001320", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001321", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001322", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001323", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001324", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001325", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001326", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001327", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001328", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001329", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001330", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001331", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001332", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001333", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001334", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001335", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001336", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001337", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001338", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001339", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001340", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001341", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001342", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001343", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001344", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001345", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001346", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001347", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001348", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001349", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001350", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001351", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001352", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001353", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001354", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001355", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001356", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001357", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001358", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001359", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001360", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001361", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001362", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001363", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001364", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001365", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001366", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001367", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001368", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001369", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001370", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001371", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001372", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001373", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001374", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001375", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001376", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001377", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001378", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001379", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001380", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001381", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001382", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001383", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001384", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001385", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001386", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001387", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001388", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001389", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001390", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001391", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001392", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001393", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001394", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001395", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001396", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001397", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001398", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001399", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001400", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001401", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001402", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001403", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001404", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001405", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001406", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001407", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001408", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001409", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001410", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001411", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001412", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001413", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001414", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001415", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001416", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001417", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001418", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001419", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001420", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001421", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001422", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001423", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001424", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001425", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001426", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001427", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001428", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001429", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001430", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001431", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001432", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001433", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001434", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001435", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001436", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001437", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001438", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001439", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001440", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001441", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001442", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001443", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001444", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001445", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001446", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001447", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001448", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001449", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001450", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001451", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001452", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001453", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001454", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001455", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001456", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001457", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001458", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001459", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001460", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001461", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001462", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001463", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001464", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001465", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001466", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001467", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001468", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001469", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001470", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001471", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001472", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001473", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001474", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001475", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001476", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001477", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001478", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001479", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001480", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001481", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001482", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001483", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001484", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001485", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001486", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001487", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001488", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001489", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001490", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001491", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001492", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001493", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001494", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001495", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001496", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001497", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001498", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001499", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001500", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001501", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001502", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001503", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001504", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001505", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001506", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001507", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001508", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001509", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001510", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001511", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001512", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001513", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001514", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001515", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001516", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001517", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001518", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001519", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001520", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001521", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001522", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001523", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001524", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001525", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001526", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001527", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001528", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001529", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001530", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001531", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001532", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001533", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001534", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001535", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001536", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001537", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001538", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001539", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001540", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001541", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001542", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001543", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001544", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001545", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001546", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001547", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001548", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001549", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001550", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001551", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001552", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001553", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001554", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001555", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001556", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001557", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001558", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001559", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001560", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001561", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001562", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001563", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001564", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001565", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001566", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001567", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001568", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001569", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001570", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001571", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001572", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001573", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001574", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001575", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001576", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001577", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001578", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001579", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001580", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001581", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001582", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001583", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001584", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001585", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001586", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001587", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001588", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001589", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001590", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001591", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001592", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001593", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001594", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001595", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001596", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001597", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001598", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001599", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001600", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001601", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001602", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001603", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001604", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@E14001605", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000001", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000002", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000003", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000004", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000005", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000006", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000007", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000008", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000009", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000010", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000011", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000012", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000013", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000014", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000015", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000016", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000017", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@N05000018", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 69058682.80002052, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000021", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 73852194.82433282, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000027", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 67032716.7929348, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000045", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 74012743.07395093, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000048", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 19976789.345339715, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000051", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 73194711.51637292, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000060", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 73791033.58638306, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000061", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 69983746.5240106, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000062", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 34364970.57302029, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 74532613.59652387, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 89696472.22450225, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 102803172.61404051, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 76274730.2982848, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 79825583.58024338, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 62121882.22392539, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 82209266.37778774, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 84260583.71800368, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 76169751.57502009, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 59305330.76479159, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 109632807.66818608, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 73583314.73199618, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 69763397.87398714, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 72681239.75664912, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 75128018.24796474, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 68695232.1435041, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 85763529.39876205, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 66470675.59679551, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 67438353.41332708, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 91329905.40642643, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 81849103.13781111, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 80699959.9282826, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 81818446.06728882, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 77621179.66143923, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 64159988.736744136, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 78432003.46438093, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 99284538.4363992, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 96743055.07115552, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 70106073.54158622, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 78916507.31301983, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 90735142.94798402, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 73308563.16081639, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 64770729.56860093, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 68817050.03919052, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 80819807.1907156, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 86714711.60155293, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 71854668.79289374, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 63959242.26348356, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 79703031.74970154, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 80087204.63676274, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 76342711.01426594, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 79765339.76086284, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 69032475.81511588, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 74663587.96536602, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 76611667.55815, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 61042309.922564715, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 84514219.37178129, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 72852759.03499582, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@S14000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_rent_amount@W07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001113", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001114", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001115", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001116", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001117", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001118", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001119", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001120", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001121", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001122", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001123", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001124", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001125", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001126", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001127", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001128", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001129", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001130", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001131", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001132", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001133", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001134", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001135", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001136", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001137", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001138", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001139", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001140", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001141", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001142", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001143", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001144", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001145", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001146", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001147", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001148", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001149", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001150", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001151", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001152", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001153", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001154", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001155", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001156", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001157", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001158", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001159", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001160", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001161", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001162", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001163", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001164", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001165", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001166", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001167", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001168", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001169", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001170", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001171", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001172", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001173", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001174", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001175", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001176", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001177", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001178", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001179", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001180", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001181", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001182", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001183", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001184", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001185", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001186", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001187", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001188", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001189", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001190", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001191", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001192", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001193", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001194", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001195", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001196", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001197", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001198", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001199", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001200", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001201", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001202", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001203", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001204", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001205", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001206", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001207", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001208", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001209", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001210", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001211", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001212", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001213", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001214", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001215", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001216", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001217", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001218", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001219", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001220", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001221", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001222", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001223", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001224", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001225", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001226", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001227", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001228", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001229", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001230", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001231", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001232", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001233", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001234", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001235", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001236", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001237", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001238", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001239", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001240", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001241", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001242", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001243", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001244", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001245", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001246", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001247", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001248", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001249", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001250", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001251", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001252", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001253", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001254", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001255", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001256", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001257", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001258", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001259", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001260", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001261", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001262", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001263", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001264", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001265", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001266", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001267", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001268", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001269", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001270", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001271", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001272", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001273", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001274", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001275", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001276", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001277", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001278", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001279", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001280", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001281", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001282", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001283", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001284", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001285", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001286", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001287", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001288", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001289", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001290", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001291", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001292", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001293", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001294", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001295", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001296", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001297", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001298", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001299", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001300", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001301", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001302", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001303", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001304", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001305", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001306", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001307", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001308", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001309", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001310", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001311", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001312", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001313", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001314", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001315", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001316", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001317", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001318", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001319", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001320", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001321", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001322", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001323", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001324", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001325", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001326", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001327", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001328", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001329", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001330", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001331", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001332", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001333", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001334", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001335", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001336", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001337", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001338", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001339", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001340", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001341", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001342", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001343", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001344", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001345", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001346", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001347", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001348", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001349", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001350", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001351", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001352", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001353", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001354", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001355", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001356", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001357", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001358", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001359", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001360", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001361", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001362", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001363", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001364", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001365", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001366", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001367", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001368", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001369", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001370", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001371", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001372", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001373", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001374", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001375", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001376", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001377", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001378", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001379", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001380", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001381", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001382", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001383", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001384", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001385", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001386", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001387", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001388", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001389", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001390", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001391", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001392", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001393", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001394", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001395", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001396", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001397", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001398", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001399", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001400", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001401", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001402", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001403", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001404", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001405", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001406", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001407", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001408", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001409", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001410", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001411", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001412", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001413", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001414", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001415", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001416", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001417", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001418", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001419", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001420", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001421", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001422", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001423", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001424", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001425", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001426", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001427", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001428", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001429", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001430", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001431", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001432", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001433", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001434", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001435", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001436", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001437", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001438", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001439", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001440", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001441", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001442", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001443", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001444", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001445", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001446", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001447", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001448", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001449", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001450", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001451", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001452", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001453", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001454", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001455", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001456", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001457", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001458", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001459", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001460", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001461", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001462", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001463", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001464", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001465", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001466", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001467", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001468", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001469", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001470", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001471", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001472", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001473", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001474", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001475", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001476", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001477", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001478", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001479", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001480", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001481", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001482", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001483", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001484", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001485", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001486", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001487", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001488", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001489", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001490", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001491", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001492", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001493", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001494", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001495", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001496", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001497", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001498", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001499", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001500", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001501", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001502", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001503", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001504", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001505", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001506", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001507", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001508", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001509", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001510", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001511", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001512", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001513", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001514", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001515", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001516", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001517", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001518", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001519", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001520", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001521", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001522", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001523", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001524", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001525", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001526", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001527", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001528", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001529", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001530", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001531", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001532", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001533", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001534", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001535", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001536", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001537", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001538", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001539", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001540", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001541", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001542", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001543", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001544", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001545", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001546", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001547", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001548", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001549", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001550", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001551", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001552", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001553", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001554", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001555", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001556", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001557", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001558", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001559", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001560", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001561", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001562", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001563", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001564", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001565", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001566", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001567", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001568", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001569", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001570", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001571", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001572", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001573", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001574", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001575", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001576", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001577", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001578", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001579", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001580", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001581", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001582", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001583", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001584", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001585", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001586", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001587", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001588", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001589", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001590", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001591", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001592", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001593", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001594", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001595", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001596", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001597", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001598", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001599", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001600", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001601", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001602", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001603", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001604", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@E14001605", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000001", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000002", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000003", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000004", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000005", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000006", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000007", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000008", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000009", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000010", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000011", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000012", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000013", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000014", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000015", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000016", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000017", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@N05000018", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5760.6508842192625, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000021", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6160.510078773174, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000027", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5591.651384128695, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000045", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6173.902491987898, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000048", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 1666.3988442892655, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000051", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6105.664957989065, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000060", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6155.408207072327, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000061", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5837.816693694578, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000062", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 2866.614161913604, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6217.268401445101, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7482.188206915434, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 8575.50655772777, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6362.5901149720385, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6658.790755776056, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5182.005524184634, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6857.629827976956, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7028.744053887526, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6353.83313104939, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 4947.057955020988, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 9145.212518200375, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6138.080975308323, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5819.435925424353, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6062.832812533292, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6266.935122452849, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5730.333011636978, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7154.1148981282995, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5544.7677341337585, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5625.488272716639, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7618.443894429966, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6827.586180998591, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6731.728389079297, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6825.028867808543, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6474.906544998267, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5352.017745807819, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6542.542831529941, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 8281.993529896497, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 8069.991247176803, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5848.020815948133, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6582.958567986305, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7568.830743075077, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6115.1620921601925, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5402.963761144556, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5740.494664597141, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6741.72565821785, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7233.4594262223, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5993.882949023501, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5335.272127417715, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6648.567880355485, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6680.614334064292, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6368.260845367529, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6653.765412150721, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5758.464782709032, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6228.193857638141, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6390.696326172005, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5091.951111325051, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7049.9015158309385, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6077.140393309629, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@S14000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/scotland_private_renter_households@W07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001113", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001114", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001115", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001116", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001117", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001118", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001119", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001120", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001121", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001122", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001123", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001124", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001125", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001126", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001127", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001128", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001129", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001130", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001131", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001132", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001133", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001134", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001135", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001136", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001137", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001138", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001139", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001140", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001141", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001142", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001143", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001144", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001145", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001146", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001147", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001148", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001149", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001150", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001151", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001152", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001153", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001154", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001155", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001156", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001157", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001158", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001159", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001160", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001161", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001162", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001163", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001164", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001165", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001166", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001167", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001168", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001169", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001170", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001171", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001172", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001173", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001174", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001175", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001176", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001177", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001178", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001179", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001180", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001181", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001182", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001183", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001184", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001185", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001186", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001187", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001188", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001189", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001190", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001191", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001192", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001193", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001194", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001195", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001196", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001197", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001198", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001199", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001200", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001201", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001202", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001203", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001204", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001205", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001206", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001207", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001208", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001209", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001210", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001211", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001212", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001213", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001214", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001215", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001216", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001217", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001218", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001219", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001220", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001221", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001222", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001223", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001224", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001225", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001226", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001227", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001228", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001229", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001230", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001231", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001232", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001233", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001234", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001235", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001236", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001237", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001238", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001239", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001240", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001241", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001242", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001243", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001244", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001245", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001246", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001247", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001248", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001249", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001250", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001251", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001252", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001253", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001254", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001255", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001256", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001257", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001258", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001259", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001260", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001261", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001262", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001263", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001264", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001265", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001266", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001267", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001268", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001269", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001270", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001271", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001272", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001273", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001274", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001275", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001276", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001277", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001278", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001279", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001280", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001281", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001282", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001283", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001284", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001285", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001286", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001287", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001288", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001289", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001290", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001291", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001292", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001293", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001294", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001295", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001296", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001297", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001298", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001299", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001300", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001301", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001302", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001303", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001304", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001305", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001306", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001307", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001308", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001309", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001310", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001311", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001312", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001313", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001314", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001315", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001316", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001317", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001318", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001319", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001320", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001321", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001322", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001323", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001324", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001325", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001326", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001327", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001328", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001329", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001330", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001331", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001332", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001333", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001334", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001335", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001336", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001337", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001338", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001339", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001340", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001341", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001342", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001343", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001344", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001345", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001346", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001347", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001348", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001349", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001350", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001351", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001352", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001353", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001354", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001355", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001356", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001357", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001358", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001359", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001360", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001361", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001362", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001363", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001364", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001365", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001366", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001367", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001368", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001369", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001370", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001371", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001372", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001373", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001374", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001375", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001376", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001377", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001378", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001379", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001380", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001381", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001382", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001383", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001384", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001385", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001386", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001387", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001388", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001389", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001390", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001391", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001392", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001393", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001394", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001395", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001396", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001397", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001398", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001399", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001400", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001401", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001402", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001403", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001404", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001405", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001406", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001407", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001408", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001409", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001410", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001411", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001412", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001413", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001414", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001415", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001416", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001417", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001418", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001419", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001420", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001421", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001422", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001423", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001424", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001425", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001426", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001427", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001428", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001429", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001430", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001431", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001432", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001433", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001434", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001435", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001436", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001437", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001438", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001439", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001440", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001441", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001442", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001443", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001444", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001445", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001446", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001447", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001448", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001449", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001450", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001451", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001452", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001453", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001454", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001455", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001456", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001457", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001458", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001459", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001460", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001461", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001462", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001463", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001464", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001465", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001466", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001467", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001468", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001469", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001470", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001471", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001472", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001473", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001474", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001475", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001476", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001477", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001478", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001479", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001480", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001481", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001482", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001483", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001484", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001485", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001486", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001487", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001488", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001489", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001490", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001491", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001492", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001493", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001494", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001495", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001496", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001497", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001498", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001499", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001500", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001501", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001502", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001503", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001504", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001505", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001506", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001507", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001508", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001509", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001510", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001511", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001512", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001513", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001514", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001515", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001516", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001517", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001518", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001519", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001520", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001521", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001522", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001523", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001524", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001525", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001526", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001527", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001528", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001529", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001530", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001531", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001532", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001533", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001534", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001535", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001536", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001537", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001538", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001539", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001540", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001541", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001542", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001543", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001544", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001545", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001546", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001547", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001548", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001549", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001550", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001551", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001552", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001553", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001554", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001555", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001556", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001557", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001558", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001559", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001560", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001561", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001562", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001563", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001564", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001565", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001566", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001567", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001568", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001569", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001570", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001571", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001572", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001573", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001574", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001575", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001576", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001577", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001578", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001579", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001580", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001581", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001582", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001583", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001584", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001585", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001586", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001587", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001588", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001589", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001590", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001591", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001592", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001593", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001594", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001595", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001596", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001597", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001598", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001599", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001600", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001601", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001602", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001603", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001604", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@E14001605", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000001", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000002", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000003", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000004", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000005", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000006", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000007", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000008", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000009", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000010", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000011", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000012", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000013", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000014", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000015", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000016", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000017", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@N05000018", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000021", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000027", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000045", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000048", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000051", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000060", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000061", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000062", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@S14000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 56815495.2022005, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 63183491.44181759, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 58068401.658420905, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 59552429.63749807, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 54990211.392590165, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 58085585.961581364, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 56151101.56527025, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 60851676.793644324, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 68292793.43423541, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 57378381.857454926, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 67943850.39402644, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 62761756.53760696, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 57268708.014917195, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 58220978.09917473, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 59250159.855370656, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 60143310.888862774, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 59748690.11214954, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 57685972.570073426, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 62248433.83824895, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 61674694.2754905, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 56565341.120279506, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 58802145.385066316, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 61341381.468599066, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 66256686.939963795, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 62060314.6430628, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 63044367.016453676, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 62366600.70445512, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 65962283.43728832, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 57255936.50266879, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 58664819.12925788, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 60171009.715905026, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 41870990.40636503, + "kind": "fixture_only", + "name": "housing/wales_private_rent_amount@W07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001113", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001114", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001115", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001116", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001117", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001118", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001119", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001120", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001121", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001122", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001123", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001124", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001125", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001126", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001127", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001128", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001129", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001130", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001131", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001132", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001133", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001134", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001135", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001136", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001137", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001138", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001139", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001140", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001141", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001142", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001143", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001144", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001145", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001146", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001147", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001148", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001149", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001150", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001151", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001152", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001153", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001154", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001155", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001156", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001157", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001158", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001159", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001160", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001161", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001162", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001163", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001164", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001165", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001166", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001167", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001168", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001169", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001170", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001171", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001172", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001173", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001174", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001175", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001176", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001177", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001178", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001179", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001180", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001181", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001182", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001183", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001184", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001185", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001186", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001187", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001188", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001189", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001190", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001191", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001192", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001193", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001194", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001195", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001196", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001197", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001198", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001199", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001200", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001201", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001202", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001203", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001204", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001205", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001206", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001207", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001208", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001209", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001210", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001211", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001212", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001213", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001214", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001215", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001216", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001217", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001218", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001219", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001220", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001221", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001222", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001223", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001224", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001225", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001226", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001227", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001228", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001229", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001230", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001231", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001232", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001233", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001234", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001235", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001236", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001237", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001238", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001239", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001240", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001241", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001242", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001243", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001244", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001245", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001246", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001247", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001248", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001249", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001250", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001251", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001252", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001253", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001254", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001255", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001256", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001257", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001258", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001259", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001260", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001261", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001262", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001263", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001264", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001265", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001266", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001267", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001268", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001269", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001270", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001271", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001272", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001273", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001274", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001275", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001276", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001277", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001278", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001279", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001280", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001281", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001282", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001283", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001284", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001285", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001286", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001287", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001288", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001289", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001290", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001291", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001292", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001293", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001294", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001295", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001296", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001297", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001298", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001299", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001300", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001301", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001302", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001303", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001304", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001305", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001306", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001307", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001308", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001309", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001310", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001311", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001312", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001313", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001314", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001315", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001316", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001317", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001318", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001319", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001320", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001321", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001322", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001323", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001324", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001325", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001326", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001327", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001328", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001329", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001330", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001331", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001332", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001333", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001334", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001335", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001336", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001337", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001338", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001339", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001340", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001341", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001342", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001343", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001344", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001345", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001346", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001347", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001348", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001349", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001350", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001351", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001352", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001353", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001354", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001355", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001356", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001357", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001358", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001359", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001360", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001361", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001362", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001363", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001364", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001365", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001366", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001367", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001368", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001369", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001370", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001371", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001372", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001373", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001374", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001375", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001376", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001377", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001378", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001379", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001380", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001381", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001382", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001383", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001384", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001385", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001386", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001387", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001388", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001389", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001390", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001391", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001392", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001393", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001394", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001395", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001396", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001397", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001398", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001399", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001400", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001401", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001402", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001403", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001404", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001405", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001406", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001407", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001408", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001409", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001410", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001411", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001412", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001413", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001414", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001415", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001416", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001417", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001418", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001419", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001420", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001421", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001422", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001423", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001424", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001425", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001426", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001427", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001428", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001429", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001430", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001431", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001432", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001433", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001434", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001435", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001436", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001437", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001438", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001439", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001440", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001441", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001442", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001443", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001444", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001445", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001446", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001447", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001448", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001449", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001450", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001451", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001452", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001453", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001454", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001455", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001456", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001457", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001458", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001459", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001460", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001461", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001462", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001463", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001464", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001465", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001466", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001467", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001468", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001469", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001470", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001471", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001472", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001473", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001474", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001475", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001476", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001477", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001478", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001479", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001480", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001481", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001482", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001483", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001484", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001485", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001486", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001487", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001488", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001489", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001490", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001491", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001492", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001493", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001494", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001495", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001496", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001497", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001498", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001499", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001500", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001501", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001502", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001503", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001504", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001505", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001506", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001507", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001508", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001509", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001510", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001511", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001512", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001513", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001514", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001515", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001516", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001517", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001518", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001519", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001520", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001521", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001522", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001523", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001524", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001525", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001526", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001527", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001528", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001529", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001530", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001531", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001532", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001533", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001534", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001535", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001536", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001537", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001538", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001539", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001540", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001541", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001542", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001543", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001544", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001545", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001546", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001547", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001548", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001549", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001550", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001551", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001552", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001553", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001554", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001555", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001556", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001557", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001558", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001559", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001560", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001561", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001562", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001563", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001564", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001565", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001566", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001567", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001568", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001569", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001570", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001571", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001572", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001573", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001574", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001575", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001576", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001577", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001578", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001579", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001580", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001581", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001582", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001583", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001584", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001585", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001586", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001587", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001588", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001589", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001590", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001591", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001592", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001593", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001594", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001595", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001596", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001597", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001598", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001599", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001600", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001601", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001602", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001603", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001604", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@E14001605", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000001", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000002", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000003", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000004", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000005", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000006", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000007", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000008", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000009", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000010", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000011", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000012", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000013", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000014", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000015", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000016", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000017", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@N05000018", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000021", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000027", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000045", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000048", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000051", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000060", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000061", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000062", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000063", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000064", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000065", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000066", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000067", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000068", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000069", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000070", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000071", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000072", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000073", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000074", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000075", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000076", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000077", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000078", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000079", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000080", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 0.0, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@S14000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5955.502641740094, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6623.007488660125, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6086.834555390032, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6242.393043762901, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5764.173101948655, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6088.635845029493, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5885.859702858517, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6378.5824731283365, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7158.5737352448, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6014.505435791921, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 7121.996896648474, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6578.800475640143, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6003.009225882306, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6102.827892995255, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6210.7085802275315, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6304.330281851444, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6262.9654205607485, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000097", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6046.747648854656, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6524.99306480597, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6464.852649422484, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000100", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 5929.281039861584, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000101", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6163.746895709258, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6429.914200062795, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6945.145381547568, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000104", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6505.274071599874, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6608.424215561181, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6537.37952876888, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6914.285475606742, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6001.670492942222, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6149.352109985103, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 6307.233722841197, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 4388.99270506971, + "kind": "fixture_only", + "name": "housing/wales_private_renter_households@W07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the incumbent y-values for devolved private rent are hardcoded constants in devolved_housing.py with no source or year, then allocated by population share. Adopting them would violate the facts-only doctrine; a Chronicle facts request covers sourced Scottish Government and StatsWales private-rent statistics." + }, + { + "fixture_value": 158838772.08480585, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 197580236.0052072, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 215135660.77738515, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 254841031.13957596, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 119667602.12014134, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 176916617.159894, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 189841869.9646643, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 175522285.33568904, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 213254252.65017667, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 408672188.1625442, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 348343480.6475478, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 170987342.75618386, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 186164522.9681977, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 228765136.70494777, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 257181270.48900023, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 446578358.8959987, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 16281074.204946997, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 465827572.0662075, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 148386180.21201405, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 241290371.02473456, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 310337991.27000666, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 337427021.9866511, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1093352349.1166089, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 268488771.4052732, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 521908350.2650177, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 441660557.86219084, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 267418126.79276654, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 425902784.45229644, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 275431486.99004227, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 458716713.78091884, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 296635689.87736446, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 393947556.72308, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 537069193.0444485, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 229098920.14134276, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 250433228.07581127, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 413930573.3215548, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 441877462.8975265, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 241000772.67373374, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 197300696.81978798, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 621324138.4717314, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 763315562.4799228, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 380628527.91519433, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 480488704.0083922, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 150035379.85865724, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 589296866.1259236, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 259558121.8041977, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000049", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 320343889.33163, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000050", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 239094008.69801536, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000051", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 732177289.55903, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000052", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 10335371.024734983, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000053", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 694833230.565371, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000054", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 313856435.5123675, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000055", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 363564483.6170895, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E06000056", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 257838764.88176113, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 63948407.59717315, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 120672433.18342409, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 172961477.67426926, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 143745481.2720848, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 181377738.40547705, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 79096528.62190813, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 119426546.61592849, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 94059885.68904594, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 106768551.9434629, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 126972102.15226467, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 86249062.2451754, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 90999540.6360424, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 149405700.0, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 253707684.80565342, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 115707092.99710885, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 95541471.73144877, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 74326470.84805682, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 144359035.89362067, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 68483407.5382803, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 59213668.349318564, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 183059869.52976367, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000061", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 142566611.94988734, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000062", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 115121858.11361781, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000063", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 67190085.44812083, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000064", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 174765784.45229682, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000065", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 325397051.2367491, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000066", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 183093653.71024773, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000067", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 158148189.63486457, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000068", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 166367838.3392226, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000069", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 259126707.72337192, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000070", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 307552444.34628975, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000071", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 282469406.152567, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000072", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 235368874.55830404, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000073", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 65898962.01413427, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000074", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 132641430.74204947, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000075", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 210138863.36866888, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000076", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 116141276.79623121, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000077", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 172828322.96819788, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000078", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 144423860.102795, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000079", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 112972663.78091873, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000080", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 272434065.371025, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000081", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 143882180.9187281, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000082", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 113102621.90812711, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000083", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 314711066.8968841, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000084", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 156812764.66431096, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000085", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 128612033.92226158, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000086", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 63530243.563856475, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000087", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 105100409.89399293, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000088", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 117369376.80693854, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000089", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 203289554.04281864, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000090", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 244620689.04593652, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000091", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 219603776.50176677, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000092", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 132053126.50176679, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000093", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 118434137.43059066, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000094", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 224958923.89236212, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000095", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 296567718.5994213, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000096", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 252959589.01875505, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000098", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 181201607.0671378, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000099", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 185348202.29681978, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000102", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 272547521.2014132, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000103", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 194099751.64058578, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000105", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 223070314.30165502, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000106", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 246825472.13916835, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000107", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 133808032.30691603, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000108", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 248064433.8135364, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000109", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 203314268.17928234, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000110", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 186024251.943463, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000111", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 222663470.21706197, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000112", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 213002505.1964247, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000113", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 185552774.89087516, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000114", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 220043925.7950533, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000115", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 229692161.6607774, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000116", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 135290063.60424054, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000117", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 74647585.56284726, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000118", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 46354156.65488836, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000119", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 108857049.46996471, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000120", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 142986421.672556, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000121", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 127793739.05952692, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000122", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 169268516.73248813, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000123", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 70919717.75618374, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000124", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 85689588.33922261, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000125", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 111492296.81978798, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000126", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 91509571.73144838, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000127", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 101232883.26602718, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000128", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 46279626.766784646, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000129", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 157412345.40636042, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000130", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 48774064.134275615, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000131", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 101182091.11559798, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000132", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 41784193.462897524, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000133", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 94047234.43870644, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000134", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 28031493.81625442, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000135", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 97679984.09893993, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000136", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 134198660.77738516, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000137", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 203038174.26919395, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000138", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 88936236.2054906, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000139", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 100142716.67202051, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000140", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 122111942.35865724, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000141", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 61477104.88274981, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000142", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 127254487.0089378, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000143", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 87235288.57479371, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000144", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 116124355.5313945, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000145", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 181802745.02510697, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000146", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 35383102.47349823, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000147", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 263806836.19384155, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000148", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 78819277.03180231, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000149", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 160725168.2862191, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000170", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 116949409.64159499, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000171", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 80853928.319031, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000172", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 115215574.2049468, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000173", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 123861001.63087773, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000174", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 129529532.617559, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000175", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 43378820.848056346, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000176", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 225769976.19490457, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000177", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 336323947.58539474, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000178", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 168682142.2261484, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000179", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 100636012.36749117, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000180", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 130243831.09540626, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000181", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 134481637.67328086, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000192", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 152157150.17667884, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000193", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 37548007.95053004, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000194", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 168516057.64134276, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000195", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 79518564.10903588, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000196", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 60849306.42667845, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000197", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 95324653.4384345, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000198", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 95441994.69964664, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000199", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 81529938.96562822, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000200", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 269772513.80300355, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000202", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 77482733.21554771, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000203", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 252626757.95052984, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000207", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 204066091.28386334, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000208", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 293429611.3074204, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000209", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 207918840.30986685, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000210", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 299949935.2179039, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000211", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 194089514.8409894, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000212", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 229728645.0122321, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000213", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 167538989.39929348, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000214", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 191475055.41278514, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000215", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 224536527.1253381, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000216", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 259731655.03533608, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000217", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 62441342.75618374, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000218", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 188282828.51797977, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000219", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 93610690.81272085, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000220", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 74907830.38869277, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000221", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 135881017.31448793, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000222", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 75075352.47349824, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000223", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 234503006.04426277, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000224", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 169176801.8677437, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000225", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 285887124.2185374, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000226", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 233804854.24028268, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000227", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 231228458.6364585, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000228", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 200683433.54172325, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000229", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 91629892.73094401, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000234", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 69604664.31095406, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000235", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 130655260.39684692, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000236", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 196271109.54063603, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000237", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 152355541.75190592, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000238", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 97869237.7587078, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E07000239", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 398447204.94699645, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 189182658.33106768, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 911622601.822578, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 271476321.87600416, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 270133400.56537104, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 397617985.8657244, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 305112357.3952547, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 313035274.5583039, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 178554453.93740526, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 398197247.5706714, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 272656188.0742049, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 892368754.2142165, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 242603613.07420418, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 296518494.83912945, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 302286306.4109037, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 231836684.09893993, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 259108916.2815983, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 283238849.18085444, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 616025713.0237249, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 277202220.11697364, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 207255844.5229686, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 241779413.42756185, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 441452555.5064775, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2124744551.2367492, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 531460613.9575972, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 422797434.79332703, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 640135957.2252194, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 200870635.9205556, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 407631431.91084534, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 421813668.1657568, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 562858844.5229682, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 191182501.76678485, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 489131296.93957114, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1383821947.3927524, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 476894434.6289745, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E08000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 34146222.61484099, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 507384828.30067456, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 933833954.8823574, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 334427953.054013, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1195907770.5258784, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 374474928.2413693, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 988245067.9581022, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 818700825.8914232, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1088781345.7461257, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 732570477.1790351, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 678340115.6440736, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1021638747.349824, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 801852442.6855124, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1024569635.4534739, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 540940372.79152, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 411138096.996467, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 671614700.0883392, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 673313485.487128, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 827035505.3003532, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 456995649.6718824, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 268011482.33215547, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1392378843.8162532, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 904352902.2379277, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 400928396.18374556, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1078927600.2769558, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 628094345.1498919, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 139451395.75971696, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1216863741.0857701, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 234659064.4876325, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1120928844.4677563, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 620055142.3523474, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 895862455.4961334, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1049916983.2155477, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@E09000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 82663950.53003533, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 107377861.67117034, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 117168826.85512367, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 99901515.90106007, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 210042613.51590106, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 192586219.67020038, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 83272827.44405186, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 149240416.96113074, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 187779911.02473497, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 280267563.09130263, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 71637867.30518888, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 110431824.43741858, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 226450441.69611308, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 739398209.3639576, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 95906319.16106218, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 110006785.33568905, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 19315394.581860997, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 26792696.24898049, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 190029690.4914873, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 237146697.34982333, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 133990852.33401512, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 27839392.730944008, + "kind": "fixture_only", + "name": "ons.equiv_housing_costs@W06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1299504225.68366, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1925147611.8150795, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2064372145.0280113, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2947992820.1865687, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1736545573.7424917, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2121397875.7021766, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3810785757.9846406, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1955230279.140326, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2124746536.0671709, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3495573080.7560983, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5867708489.531578, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2288351264.1423903, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2566631688.3946304, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3479370152.966114, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3732679926.8707447, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3871776545.231535, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 742426418.1908011, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4002466109.828508, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3446904318.631706, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2892167172.684604, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3790019776.8075275, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3484268208.699882, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7792931126.810695, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4190631573.9749393, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5162530559.9959955, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4397716664.058803, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2296721663.770458, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4006702998.54943, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3236907908.1615973, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2690653492.308713, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3275156048.182373, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2625111395.487834, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4412220670.831051, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2459193799.8477554, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3238453887.0825176, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2887941876.2696147, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1926963427.3416393, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3172462719.899174, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3742189551.888307, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4657567357.35564, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5027836127.163031, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3309325453.0005865, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3880893559.501548, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2525651812.354253, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8232586299.472828, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7737367626.952476, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000049", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6500319579.597234, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000050", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5837744436.266553, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000051", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 9708043601.285961, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000052", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 37190974.47812683, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000053", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 9650732492.569174, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000054", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3145181667.104149, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000055", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5380390312.819269, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E06000056", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2516172030.0487375, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1647985357.5336525, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1654597703.635501, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3426954094.4657736, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3255859923.057433, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2134609762.8874502, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1232542470.7648456, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1717687758.9441698, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1365711844.8363016, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1904845328.8087857, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1613727111.6439147, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1786532970.910998, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1850838372.69184, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2842155446.8806214, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2105380069.3562434, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1435385239.4566188, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1709079176.9602928, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1708490123.583328, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2489529556.0265927, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1173366455.950863, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1040898174.7881653, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1799653074.4604244, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000061", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1521339655.880708, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000062", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1908589891.354902, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000063", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1831762211.2738, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000064", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3128286339.97242, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000065", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3171388249.989743, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000066", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2768431189.489535, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000067", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1606772923.824752, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000068", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1531198488.2552173, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000069", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3462972918.379497, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000070", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3370087559.2718625, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000071", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2530410896.766966, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000072", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1383671853.498635, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000073", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1215777890.7556942, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000074", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1539140264.768989, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000075", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2481810431.440316, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000076", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1785700547.6427622, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000077", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2387781437.6532245, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000078", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1875345693.2570505, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000079", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1535169704.5469635, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000080", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2210724494.7679777, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000081", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2362696988.3126698, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000082", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1844935624.5282316, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000083", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3661554250.0119843, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000084", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2500570287.311704, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000085", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2630936884.8675995, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000086", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2336861789.2068477, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000087", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1467229615.1755083, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000088", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2117599128.0321307, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000089", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2159307009.8947024, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000090", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3420177579.2430177, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000091", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1702641452.7654042, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000092", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2616760994.773785, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000093", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2552178434.808342, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000094", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1671091848.6546535, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000095", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2945228489.737009, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000096", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1958190494.8324308, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000098", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2553180673.090944, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000099", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1811334117.6745622, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000102", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1682120049.9623916, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000103", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2266502913.6190214, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000105", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2649803105.743962, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000106", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2003028110.1993437, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000107", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2073632751.9472601, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000108", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1660359939.3671668, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000109", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3228109755.343548, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000110", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2420726342.030372, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000111", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1905078907.3906941, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000112", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2379936026.626239, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000113", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2326057182.5426292, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000114", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2449408207.749509, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000115", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2265249243.8482165, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000116", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1363556923.0406222, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000117", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2072972071.4515204, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000118", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1583634471.8724127, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000119", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1188362156.1037612, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000120", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2282717858.2538548, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000121", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1265173638.2503667, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000122", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2148474965.2464933, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000123", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1155076963.532144, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000124", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1151846230.6381896, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000125", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1989171471.0461156, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000126", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1932591998.3489547, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000127", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1945081941.3864667, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000128", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1713982819.9148726, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000129", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2921050684.3732424, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000130", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1753474649.7598372, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000131", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1964977801.347315, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000132", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 928233379.5542734, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000133", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1781894084.3061833, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000134", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 852002048.0684553, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000135", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 997550720.1222374, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000136", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2191244948.7688127, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000137", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1421998542.951872, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000138", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2035826049.2605765, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000139", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1442914200.6196616, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000140", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2499975331.1874385, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000141", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1612560137.6932557, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000142", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2363804714.16104, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000143", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2448424119.801694, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000144", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1592221814.8692598, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000145", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2574996016.777191, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000146", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1934104186.1201239, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000147", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2401041522.1127234, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000148", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2626687237.5171213, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000149", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1842844674.9885151, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000170", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1927388392.0638134, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000171", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1885767871.1684706, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000172", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1981759887.9604933, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000173", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1647216775.9651976, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000174", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2076734255.2810507, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000175", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2249788914.8810253, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000176", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2990860010.987176, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000177", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2526537649.423327, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000178", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3112010334.5849714, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000179", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2861394513.143547, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000180", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2276244204.7099905, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000181", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1668728023.8966293, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000192", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2060132098.2874806, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000193", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2023896373.4885542, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000194", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2056665943.146934, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000195", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1952863894.9743073, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000196", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2658516701.3960423, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000197", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1721652032.6817617, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000198", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1262079718.2296255, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000199", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1740533044.0121467, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000200", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2172600507.513687, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000202", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1912323053.4616804, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000203", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3117643631.392615, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000207", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1561625547.6890633, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000208", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2790906964.417119, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000209", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1849004025.0417275, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000210", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3009218422.661173, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000211", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1693164776.307825, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000212", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1977310441.8643014, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000213", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1838295900.4071934, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000214", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1762615633.0042968, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000215", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2671150258.7724066, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000216", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2019101679.8157816, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000217", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1150509402.9510937, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000218", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2181729694.169722, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000219", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2044091978.0241559, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000220", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2808847065.8555155, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000221", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2893537539.369895, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000222", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1136970830.9381943, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000223", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3034682269.421589, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000224", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2511544752.8016877, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000225", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1825640068.7495737, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000226", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3024704130.0708375, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000227", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3144331507.335597, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000228", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2065662851.6994867, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000229", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1878712790.5478787, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000234", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1494711486.6293566, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000235", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1405691340.5434637, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000236", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1754154643.3445408, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000237", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2433530782.9845057, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000238", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1753846155.8284903, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E07000239", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4058282463.573036, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3124801806.2641897, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7418688653.256248, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3286198839.934249, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3191815619.3626747, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4063929594.4776936, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5243984149.379654, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3576190378.2442307, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4168767648.915649, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5238450107.130882, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2274429598.6183543, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7158310553.791494, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2987530373.078876, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4792662140.729683, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5578943434.094489, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3743559527.511853, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4693978261.845957, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3876908780.855197, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8092035463.050916, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4287035671.2898264, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3555814092.7296886, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2242066140.640304, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3985183420.6831064, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 14511290504.037167, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4889234364.298449, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5058196976.574069, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4153157512.2942977, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3954009396.577964, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3898392860.4167647, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3599436009.7295084, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6773075433.721875, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3283030755.84201, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6193133284.489812, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 12278972445.578415, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5453988582.882608, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E08000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 397893019.00412875, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2419202557.871555, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6858466205.323953, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4259631150.657586, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4455233777.201504, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6880182486.585559, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4538143843.164285, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6836228923.347594, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5692210754.744471, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4931233592.280173, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4733216045.549217, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4142352750.597993, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3979327661.644823, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4383021896.060562, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4003960640.3796444, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4466124902.478187, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4739494536.113624, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4399975234.726632, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4610060499.349651, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3937614731.7360525, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3359888104.8591776, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5972426837.706932, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5181888341.993017, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4123137763.409877, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3791434078.1091576, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4370990909.437585, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4861159399.113901, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5743571568.62582, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3870352053.1704483, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4777153211.240543, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4140092110.591234, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7295665193.411626, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5241198218.401889, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@E09000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1110143179.137449, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1774867945.1262422, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1867264378.28933, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1517663576.3965688, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2485646540.469177, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2021260154.9164262, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1110424819.8508515, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1915213265.7044458, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2855617639.78475, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3825509684.5612173, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2154827651.3181276, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2284196603.586853, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2288174577.518932, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5538080842.455339, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3518934108.113883, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2604464686.6287427, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 986125040.8228815, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1453302048.5384274, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1639139509.2873724, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2327522522.43554, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2201423171.1995735, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 886371019.8522822, + "kind": "fixture_only", + "name": "ons.equiv_net_income_ahc@W06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1458342997.7684658, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2122727847.8202868, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2279507805.8053966, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3202833851.3261447, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1856213175.862633, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2298314492.8620706, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4000627627.949305, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2130752564.476015, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2338000788.7173476, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3904245268.9186425, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6216051970.179126, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2459338606.8985744, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2752796211.3628283, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3708135289.671062, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3989861197.359745, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4318354904.127534, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 758707492.3957481, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4468293681.894715, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3595290498.8437204, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3133457543.7093387, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4100357768.077534, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3821695230.686533, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8886283475.927303, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4459120345.380213, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5684438910.261013, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4839377221.920994, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2564139790.563225, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4432605783.001726, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3512339395.1516395, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3149370206.0896316, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3571791738.0597377, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3019058952.210914, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4949289863.8755, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2688292719.989098, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3488887115.158329, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3301872449.5911694, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2368840890.239166, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3413463492.572908, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3939490248.708095, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5278891495.827372, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5791151689.642954, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3689953980.915781, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4361382263.50994, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2675687192.21291, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8821883165.598751, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7996925748.756673, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000049", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6820663468.928864, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000050", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6076838444.964568, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000051", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 10440220890.844992, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000052", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 47526345.50286181, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000053", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 10345565723.134544, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000054", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3459038102.6165166, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000055", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5743954796.436358, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E06000056", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2774010794.9304986, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1711933765.1308258, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1775270136.818925, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3599915572.140043, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3399605404.329518, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2315987501.2929273, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1311638999.3867538, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1837114305.5600982, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1459771730.5253475, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2011613880.7522485, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1740699213.7961793, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000037", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1872782033.1561735, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000038", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1941837913.3278823, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000039", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2991561146.8806214, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000040", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2359087754.1618967, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000041", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1551092332.4537277, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000042", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1804620648.6917417, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000043", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1782816594.4313848, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000044", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2633888591.920213, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000045", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1241849863.4891431, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000046", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1100111843.1374838, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000047", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1982712943.9901881, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000061", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1663906267.8305953, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000062", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2023711749.46852, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000063", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1898952296.7219207, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000064", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3303052124.424717, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000065", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3496785301.2264924, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000066", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2951524843.1997824, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000067", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1764921113.4596167, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000068", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1697566326.59444, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000069", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3722099626.102869, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000070", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3677640003.618152, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000071", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2812880302.919533, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000072", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1619040728.0569391, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000073", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1281676852.7698283, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000074", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1671781695.5110385, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000075", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2691949294.808985, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000076", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1901841824.4389935, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000077", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2560609760.6214223, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000078", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2019769553.3598454, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000079", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1648142368.3278823, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000080", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2483158560.139003, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000081", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2506579169.231398, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000082", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1958038246.4363587, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000083", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3976265316.9088683, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000084", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2657383051.976015, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000085", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2759548918.789861, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000086", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2400392032.7707043, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000087", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1572330025.0695012, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000088", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2234968504.8390694, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000089", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2362596563.937521, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000090", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3664798268.2889543, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000091", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1922245229.267171, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000092", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2748814121.275552, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000093", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2670612572.2389326, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000094", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1896050772.5470157, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000095", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3241796208.3364305, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000096", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2211150083.851186, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000098", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2734382280.1580815, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000099", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1996682319.971382, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000102", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1954667571.1638048, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000103", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2460602665.2596073, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000105", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2872873420.0456166, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000106", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2249853582.338512, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000107", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2207440784.254176, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000108", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1908424373.1807032, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000109", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3431424023.52283, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000110", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2606750593.973835, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000111", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2127742377.6077561, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000112", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2592938531.8226633, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000113", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2511609957.4335046, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000114", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2669452133.5445623, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000115", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2494941405.508994, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000116", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1498846986.6448627, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000117", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2147619657.0143676, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000118", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1629988628.527301, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000119", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1297219205.573726, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000120", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2425704279.9264107, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000121", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1392967377.3098936, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000122", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2317743481.9789815, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000123", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1225996681.288328, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000124", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1237535818.9774122, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000125", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2100663767.8659036, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000126", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2024101570.080403, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000127", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2046314824.652494, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000128", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1760262446.6816573, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000129", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3078463029.779603, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000130", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1802248713.8941128, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000131", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2066159892.462913, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000132", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 970017573.0171709, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000133", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1875941318.7448897, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000134", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 880033541.8847097, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000135", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1095230704.2211773, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000136", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2325443609.546198, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000137", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1625036717.221066, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000138", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2124762285.466067, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000139", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1543056917.291682, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000140", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2622087273.546096, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000141", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1674037242.5760055, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000142", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2491059201.1699777, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000143", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2535659408.3764877, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000144", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1708346170.4006543, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000145", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2756798761.802298, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000146", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1969487288.5936222, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000147", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2664848358.306565, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000148", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2705506514.5489235, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000149", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2003569843.2747343, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000170", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2044337801.7054083, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000171", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1966621799.4875016, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000172", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2096975462.16544, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000173", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1771077777.5960753, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000174", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2206263787.8986096, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000175", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2293167735.7290816, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000176", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3216629987.1820807, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000177", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2862861597.008722, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000178", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3280692476.81112, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000179", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2962030525.5110383, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000180", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2406488035.8053966, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000181", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1803209661.5699103, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000192", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2212289248.4641595, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000193", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2061444381.4390843, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000194", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2225182000.7882767, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000195", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2032382459.0833433, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000196", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2719366007.822721, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000197", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1816976686.1201963, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000198", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1357521712.9292722, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000199", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1822062982.9777749, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000200", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2442373021.3166904, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000202", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1989805786.6772282, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000203", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3370270389.343145, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000207", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1765691638.9729266, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000208", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3084336575.7245393, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000209", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2056922865.3515944, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000210", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3309168357.879077, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000211", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1887254291.1488144, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000212", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2207039086.8765335, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000213", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2005834889.8064868, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000214", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1954090688.4170818, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000215", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2895686785.8977447, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000216", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2278833334.8511176, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000217", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1212950745.7072773, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000218", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2370012522.6877017, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000219", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2137702668.8368766, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000220", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2883754896.2442083, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000221", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3029418556.684383, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000222", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1212046183.4116926, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000223", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3269185275.465852, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000224", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2680721554.669431, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000225", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2111527192.968111, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000226", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3258508984.31112, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000227", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3375559965.9720554, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000228", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2266346285.24121, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000229", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1970342683.2788227, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000234", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1564316150.9403107, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000235", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1536346600.9403107, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000236", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1950425752.885177, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000237", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2585886324.7364116, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000238", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1851715393.587198, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E07000239", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4456729668.520033, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3313984464.5952573, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8330311255.078826, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3557675161.810253, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3461949019.9280457, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4461547580.343418, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5549096506.774909, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3889225652.8025346, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4347322102.853054, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5636647354.701553, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2547085786.6925592, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8050679308.005711, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3230133986.15308, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5089180635.568812, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5881229740.505393, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3975396211.610793, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4953087178.127555, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4160147630.0360513, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8708061176.07464, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4564237891.4068, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3763069937.2526574, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2483845554.067866, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4426635976.189584, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 16636035055.273916, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5420694978.256045, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5480994411.367396, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4793293469.519517, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4154880032.4985194, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4306024292.32761, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4021249677.895265, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7335934278.2448435, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3474213257.6087947, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6682264581.429383, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000034", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 13662794392.971167, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000035", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5930883017.511583, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E08000036", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 432039241.61896974, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2926587386.1722293, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7792300160.20631, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4594059103.711599, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5651141547.727383, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7254657414.826928, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5526388911.122387, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000007", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7654929749.2390175, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6780992100.490597, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5663804069.4592085, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5411556161.193291, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5163991497.947817, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4781180104.330336, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5407591531.514036, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4544901013.1711645, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4877262999.474653, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5411109236.201962, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000017", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5073288720.21376, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5437096004.650004, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4394610381.407935, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3627899587.191333, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 7364805681.523186, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6086241244.230945, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4524066159.593622, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4870361678.386113, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000025", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4999085254.587477, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000026", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5000610794.873618, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000027", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6960435309.71159, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000028", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4105011117.658081, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000029", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 5898082055.7083, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000030", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4760147252.943582, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000031", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 8191527648.90776, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000032", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6291115201.617436, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@E09000033", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1192807129.6674843, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000001", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1882245806.7974124, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000002", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1984433205.1444538, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000003", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1617565092.2976289, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000004", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2695689153.985078, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000005", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2213846374.5866265, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000006", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1193697647.2949033, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000008", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2064453682.6655765, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000009", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3043397550.809485, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000010", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 4105777247.65252, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000011", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2226465518.6233163, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000012", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2394628428.0242715, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000013", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2514625019.215045, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000014", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 6277479051.819297, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000015", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 3614840427.2749453, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000016", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2714471471.964432, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000018", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1005440435.4047425, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000019", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1480094744.7874079, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000020", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 1829169199.7788596, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000021", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2564669219.7853637, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000022", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 2335414023.5335884, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000023", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 914210412.5832262, + "kind": "fixture_only", + "name": "ons.equiv_net_income_bhc@W06000024", + "period": 2025, + "reason": "Signed deferral: ONS publishes small-area income at MSOA grain only — the feed carries no local-authority rows, and MSOA-to-LA aggregation of a mean-valued, model-output series is ruled downstream build work behind the frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." + }, + { + "fixture_value": 43303809.024000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000001", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 69020479.08, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000002", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 58176124.77600001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000003", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 91516918.53600001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000004", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 57885647.760000005, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000005", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 53138902.74, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000006", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 107412472.44000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000007", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 70967146.734, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000008", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 136834368.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000009", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 151958842.56, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000010", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 172023141.84, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000011", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 89551845.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000012", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 79336361.79, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000013", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 164409442.56, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000014", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 171156240.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000015", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 288627095.25, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000016", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 26189280.095999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000017", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 292116613.95, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000018", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 122361983.64, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000019", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 120411438.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000020", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 136850600.39999998, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000021", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 193319280.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000022", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 677306183.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000023", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 166550192.63999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000024", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 210838629.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000025", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 193488462.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000026", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 131383674.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000027", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 167633879.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000030", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 179961458.36999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000031", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 231325776.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000032", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 205225241.76, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000033", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 139610744.10000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000034", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 246587450.04000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000035", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 89933870.39999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000036", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 130015095.84, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000037", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 248527915.02, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000038", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 186219077.51999998, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000039", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 182152558.08, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000040", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 130188780.47999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000041", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 280756035.252, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000042", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 532192375.44000006, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000043", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 235554662.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000044", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 286251134.40000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000045", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 109237855.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000046", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 231497822.1, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000047", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 228103149.12, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000049", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 198191619.71999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000050", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 182988069.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000051", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 431637732.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000052", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 362781424.32, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000054", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 141574553.99999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000055", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 173452482.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000056", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 147832916.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000057", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 455532099.96000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000058", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 267296971.20000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000059", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 436685689.44, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E06000060", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 239524185.60000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000008", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 58715262.72, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000009", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 71521581.69, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000010", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 122884992.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000011", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 119278338.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000012", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 58809915.216000006, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000032", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 36624128.7456, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000033", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 56008138.82400001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000034", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 40865435.55, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000035", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 63647343.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000036", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 43512693.84000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000037", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 34103959.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000038", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 52147044.144, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000039", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 97316794.8, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000040", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 133369439.04, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000041", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 54319657.86, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000042", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 69139390.32, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000043", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 59957160.45, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000044", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 93393953.64, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000045", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 48161105.874000005, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000046", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 36848029.14, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000047", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 121689760.50000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000061", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 101183066.25, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000062", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 89280796.8, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000063", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 69998785.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000064", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 107746275.78, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000065", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 131495364.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000066", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 99760008.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000067", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 72794726.75999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000068", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 61680633.300000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000069", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 133233567.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000070", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 175210551.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000071", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 123407934.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000072", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 80911523.8152, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000073", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 35148475.800000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000074", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 45087271.59599999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000075", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 127859980.69800001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000076", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 69702048.84, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000077", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 119035445.75999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000078", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 79670800.56, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000079", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 40665705.861600004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000080", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 107346053.70719999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000081", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 61271574.888000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000082", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 60615045.348000005, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000083", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 126317091.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000084", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 74471555.52000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000085", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 83379429.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000086", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 64216203.962400004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000087", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 62292412.044, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000088", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 64262112.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000089", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 70335562.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000090", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 120714414.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000091", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 91643591.16, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000092", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 93068155.44, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000093", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 109478689.83, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000094", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 84318890.04000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000095", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 121454271.83999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000096", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 110759790.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000098", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 99986746.08, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000099", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 75079746.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000102", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 155892589.20000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000103", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 100652986.35000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000105", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 149235004.8, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000106", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 108640869.11999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000107", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 83819704.56, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000108", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 87600372.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000109", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 130321321.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000110", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 106715024.64000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000111", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 85527749.05439998, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000112", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 113907245.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000113", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 147675240.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000114", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 85156383.5616, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000115", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 111337262.39999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000116", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 52707594.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000117", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 49919440.32, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000118", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 50713270.45200001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000119", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 45986465.699999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000120", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 93485429.43599999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000121", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 51331772.604, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000122", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 87729582.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000123", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 31293990.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000124", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 34612166.16, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000125", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 44369026.716, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000126", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 44745251.721599996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000127", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 66043196.436, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000128", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 48854812.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000129", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 91351437.66, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000130", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 48992679.9, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000131", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 57553660.620000005, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000132", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 29220506.999999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000133", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 47602121.58, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000134", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 34716778.362, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000135", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 45076332.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000136", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 84731256.54, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000137", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 87192483.75, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000138", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 62560443.660000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000139", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 54702389.82, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000140", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 85743112.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000141", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 54089216.37, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000142", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 95624952.92999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000143", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 65856796.800000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000144", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 69842497.536, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000145", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 105890684.832, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000146", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 68256681.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000147", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 158839867.79999998, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000148", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 76566659.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000149", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 64539652.32, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000170", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 55800026.04000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000171", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 67650752.07, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000172", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 63933550.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000173", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 65534725.62, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000174", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 59686988.57999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000175", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 64716607.944, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000176", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 152264560.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000177", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 270445248.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000178", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 129151079.64, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000179", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 111600168.12, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000180", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 100414636.80000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000181", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 52018029.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000192", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 75208361.25, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000193", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 52196157.00000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000194", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 53707744.59, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000195", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 42961545.4644, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000196", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 71759527.63199998, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000197", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 37232586.3, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000198", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 40247295.660000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000199", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 55854684.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000200", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 115317425.16000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000202", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 56868567.20999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000203", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 152714624.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000207", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 78812405.88, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000208", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 171100675.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000209", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 72572577.11999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000210", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 118468701.54, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000211", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 91152930.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000212", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 103497474.60000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000213", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 65505753.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000214", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 68173872.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000215", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 107192173.44, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000216", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 121399636.38, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000217", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 34732597.199999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000218", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 70704207.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000219", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 70850377.49399999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000220", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 79930676.304, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000221", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 123884177.22000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000222", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 44806275.66240001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000223", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 131496064.92, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000224", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 112407415.44, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000225", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 112695749.8416, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000226", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 114500093.39999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000227", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 113191993.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000228", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 111820145.88000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000229", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 38235012.3, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000234", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 39127888.800000004, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000235", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 44022254.652, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000236", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 73882532.88, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000237", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 67018077.04800001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000238", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 52371791.99999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000239", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 144498454.49999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000240", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 100521210.24000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000241", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 131044915.152, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000242", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 60466597.31999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000243", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 148096425.75, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000244", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 203330046.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E07000245", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 149094516.9, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000001", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 111786554.88, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000002", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 726730391.52, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000003", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 119836531.91999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000004", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 109388169.66000001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000005", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 286362561.59999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000006", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 158884981.92, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000007", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 131524930.5, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000008", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 158397931.992, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000009", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 145602182.24999997, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000010", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 65558952.06, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000011", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 379540462.29, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000012", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 80949431.64, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000013", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 160633895.016, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000014", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 187704528.12, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000015", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 108029228.34, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000016", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 165328135.56, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000017", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 109381671.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000018", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 326701575.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000019", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 237965850.36, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000021", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 101459322.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000022", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 54110345.652, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000023", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 109372850.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000024", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 853229963.52, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000025", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 291766812.01199996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000026", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 146731816.224, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000027", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 200077392.9, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000028", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 117833004.05999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000029", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 138879675.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000030", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 153532145.25, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000031", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 335810285.37, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000032", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 116621754.48, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000033", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 216865357.38000003, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000034", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 682249068.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000035", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 158010138.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000036", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 96332517.6, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E08000037", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 53638265.77200001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000001", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 290590054.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000002", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 802865157.12, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000003", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 205701619.2, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000004", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 769815602.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000005", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 367841248.32, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000006", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 719373872.7, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000007", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 582760967.04, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000008", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 773340281.28, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000009", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 571578836.4, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000010", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 493234981.79999995, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000011", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 682720343.0400001, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000012", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 636085144.0896, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000013", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 658986742.4399999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000014", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 431448738.84000003, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000015", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 233779724.64000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000016", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 399659790.59999996, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000017", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 521073265.68, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000018", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 633469221.12, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000019", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 755745163.5744, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000020", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 292257515.88, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000021", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 818730639.36, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000022", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 528498447.36, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000023", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 426313992.51, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000024", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 839300474.8127999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000025", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 490355064.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000026", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 386299324.8, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000027", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 741957834.24, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000028", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 221420596.32000002, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000029", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 932917617.45, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000030", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 453484707.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000031", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 1054559971.4999999, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000032", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 1089765684.0, + "kind": "fixture_only", + "name": "ons.rent.private_rent@E09000033", + "period": 2025, + "reason": "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, after the 2025 target period; Scotland is published at BRMA grain and Northern Ireland is absent. chronicle#200 asks for the 2025 months, which the package's preserved source rows already carry." + }, + { + "fixture_value": 24090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33080.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26840.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 34900.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23160.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27340.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27780.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35860.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32210.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82540.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40330.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38690.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35920.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13150.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 58500.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 86990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92180.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14040.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26960.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70450.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56890.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13940.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14480.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 48160.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13790.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15190.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35930.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21520.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17170.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7540.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11470.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1650.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7270.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1560.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2140.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2030.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18060.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36920.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10650.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 144190.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31710.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35320.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27440.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 66210.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27030.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10800.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11290.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70860.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20840.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6970.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 48480.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38700.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 64010.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29300.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 48920.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 43360.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5000.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17450.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2780.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22980.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22440.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27100.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3680.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22010.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8670.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19260.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6860.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13480.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6550.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10450.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5360.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9080.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3640.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8870.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4510.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5050.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4360.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9100.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6240.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 690.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5180.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2120.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2620.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2480.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1580.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13840.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1430.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3710.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7210.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17700.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7630.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7060.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2620.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3080.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4710.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3640.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6170.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 780.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8610.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7330.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1500.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3120.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3050.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 590.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1240.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 820.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3450.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 890.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 470.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4380.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7760.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7300.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3680.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4520.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7190.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10400.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16400.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1770.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3500.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25800.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15200.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7180.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21980.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25170.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31000.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3900.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16480.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10130.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14980.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12060.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5040.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13340.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8930.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3700.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10270.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4150.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15550.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28110.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28930.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14220.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16760.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20100.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17270.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16260.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5060.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24670.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12190.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28590.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30290.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16870.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14900.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27850.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24260.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2970.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2130.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14120.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6010.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6900.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9660.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9530.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5220.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5950.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 160.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2290.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2500.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 740.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 940.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1030.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20960.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3850.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5040.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2780.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8520.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3350.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1300.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2440.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2340.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3950.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4100.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8040.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9010.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7180.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 880.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1250.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1000.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1700.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 65640.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30710.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 137810.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 51140.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 51910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 63640.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31820.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 53040.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20050.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 68940.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38180.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 143680.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37850.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 61080.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 65310.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 82760.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 64280.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 152470.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 77750.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50580.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 45760.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80320.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 164600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 63820.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 43610.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 59230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14590.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 52370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 57530.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 92730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44900.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 86120.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 143230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 79970.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6030.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4350.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2100.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3380.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4450.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5200.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5420.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10790.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8170.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4120.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7700.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5300.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1270.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2560.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4660.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 630.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5020.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9280.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1190.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5570.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2790.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13220.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 990.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4500.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5230.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6560.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1660.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4960.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9310.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5460.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4160.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4520.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4510.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1780.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9370.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17730.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13830.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10600.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1510.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5320.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 47080.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15550.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19200.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6300.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 520.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6910.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6090.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14150.0, + "kind": "fixture_only", + "name": "voa/council_tax/A@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7830.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11550.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17560.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11180.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12760.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21410.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9950.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21330.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25560.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22270.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28270.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25740.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22860.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25560.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 76330.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22140.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37160.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17850.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28070.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22730.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28100.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16180.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14110.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38870.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5660.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7290.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14990.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10950.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4110.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4250.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35810.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30490.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35880.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18690.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39250.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39140.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 73220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 42950.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25640.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26550.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 34610.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31970.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26310.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 42960.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25940.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24520.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 65620.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 72220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11090.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11670.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13190.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21820.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8620.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12960.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6910.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14290.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10030.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11780.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14150.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15450.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11830.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9100.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14740.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7500.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6760.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13370.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12520.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6410.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7420.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8470.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16310.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10960.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23120.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8360.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3980.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18040.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4180.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13530.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10410.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16980.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13050.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7130.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13300.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6360.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12600.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7390.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2600.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14860.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12250.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9090.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10040.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7530.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3820.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8300.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3090.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4490.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13910.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14100.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6830.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17350.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7050.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9570.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3480.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13030.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16590.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5850.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12200.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7030.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5870.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16510.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4850.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13610.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5620.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5250.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13620.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9760.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12580.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15700.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22020.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9770.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16590.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7790.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14790.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6340.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6610.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15500.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9140.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14110.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9810.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15530.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8670.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18480.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17970.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14640.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11920.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9040.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13610.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9960.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8980.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6070.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6870.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14510.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12310.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11020.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10910.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10910.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14480.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10860.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12410.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13510.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1270.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3550.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2740.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4270.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1610.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1790.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2230.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3480.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3620.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7510.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13710.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12130.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5110.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12990.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6540.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7670.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6790.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7790.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11640.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7460.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7690.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15430.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12070.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11960.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5850.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6460.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31230.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29030.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22820.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 43100.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17700.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31220.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29160.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23020.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 34800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15340.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44920.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19360.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28250.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33140.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19340.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27200.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24200.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 42460.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16240.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10470.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20110.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 132630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44330.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40300.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12510.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27810.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25570.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 46940.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18530.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35310.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80140.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31330.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13230.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 350.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12420.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9570.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14040.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10590.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12270.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14970.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22200.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31670.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6630.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4470.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11080.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6550.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9560.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6180.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3310.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3420.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33450.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8590.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 34340.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14100.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2180.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38050.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8050.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25040.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32380.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13280.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6460.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6930.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15800.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8340.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7420.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9640.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12770.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5000.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9460.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24550.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28650.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27500.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15370.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20420.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25500.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26890.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8160.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13120.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3450.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15400.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9440.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6680.0, + "kind": "fixture_only", + "name": "voa/council_tax/B@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11610.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14820.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16890.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7800.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8370.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19980.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9010.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11480.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11440.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33140.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11580.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27300.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16960.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17710.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21290.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41320.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30510.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23670.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25270.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15460.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22860.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24770.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27720.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20500.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10700.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12130.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35410.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22440.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18000.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32590.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37540.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33010.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 61520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 58820.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20170.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36860.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21800.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 54390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 43430.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 54560.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29500.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 46110.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20470.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70150.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 59900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20890.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8580.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9030.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19420.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22500.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11020.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7720.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9510.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8200.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9770.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17830.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14560.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7290.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10620.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9570.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10980.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13850.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24750.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6950.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23980.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21170.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12060.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19630.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8640.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12110.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22070.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8770.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14150.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11550.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13150.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13060.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28100.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13430.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15710.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10120.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13770.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18260.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16950.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15600.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13750.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9960.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7450.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20320.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6980.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16000.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13710.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21250.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15370.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14600.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15260.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21210.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11660.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14680.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17920.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16220.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14220.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9690.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12830.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4640.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11260.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4430.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13130.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13420.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19430.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8640.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11540.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4100.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6240.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16290.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4950.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13430.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10700.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11790.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8200.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21850.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9080.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13850.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9090.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9110.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7100.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11200.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7030.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9640.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12090.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17990.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8860.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9590.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12460.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12080.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14660.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11540.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11200.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5610.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12790.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13130.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8040.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10140.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6380.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5440.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10920.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11320.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14700.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18950.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18940.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11580.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15290.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22570.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14020.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15320.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13190.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9350.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8820.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7970.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12030.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14580.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12080.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16360.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17370.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18990.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17540.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38170.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16730.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13280.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22180.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28940.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20250.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27720.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25810.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10660.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29870.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15770.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31380.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27740.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14570.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16270.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16130.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33260.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20200.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8880.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18370.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 85230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25210.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31110.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21640.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23390.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18930.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17660.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41630.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16060.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33310.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 73400.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15950.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 690.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32530.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31230.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41900.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30460.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20780.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 52850.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36980.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35190.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 45460.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35990.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14510.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36160.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22800.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29790.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28300.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30620.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29760.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9370.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16020.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 42330.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 48040.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24140.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 56120.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27920.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13480.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35710.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28300.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40570.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39150.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37340.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15690.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7210.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12700.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15610.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14970.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20990.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17250.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7730.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18930.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25020.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11720.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14840.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14520.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 34920.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17510.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18930.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2730.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12050.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7140.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18470.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13330.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2270.0, + "kind": "fixture_only", + "name": "voa/council_tax/C@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3630.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5620.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6090.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5950.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5230.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4960.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4860.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4990.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25660.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5330.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7850.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13880.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2570.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13820.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10050.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5100.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14500.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18060.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24250.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10310.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10750.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9010.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8000.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12800.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19470.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10500.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17840.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12220.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21120.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16440.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20470.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6280.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23630.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28220.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 45030.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 270.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 41200.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12480.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18410.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 47150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18750.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24480.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15630.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17770.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 46130.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40390.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10610.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7610.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4960.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12970.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13830.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7050.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3040.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5850.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5080.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5120.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8370.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10030.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8500.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12280.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4560.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8760.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5800.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10360.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9430.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8710.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18540.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16230.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14210.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5240.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5690.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10890.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12380.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8080.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9450.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7770.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6110.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8640.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15490.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11590.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10880.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5170.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9720.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10550.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9310.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11420.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11310.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16240.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14980.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10450.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10030.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10220.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14160.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14590.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7750.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10970.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20600.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12160.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8720.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12190.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8250.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14410.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11090.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3080.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7020.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7560.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2870.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6740.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3500.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7490.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5100.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8660.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7650.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6940.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11510.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7110.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7590.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4050.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7300.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3290.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2390.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6970.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2570.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7480.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9650.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6290.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8550.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10660.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4480.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10010.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9220.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3760.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11990.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6230.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4250.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6640.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10200.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16320.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11950.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5680.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4990.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7570.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10060.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6360.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4020.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7820.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4510.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8080.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9290.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16940.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8420.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11690.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15180.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10230.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9130.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13590.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12600.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4060.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7910.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11350.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13730.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6340.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16680.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13040.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9100.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14410.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17830.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9760.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8060.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5980.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4490.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8550.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6540.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12550.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17010.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3380.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18810.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12390.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11000.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9380.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7310.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8260.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12350.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19920.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7290.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15590.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13480.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5000.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14000.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7030.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15840.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13690.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10220.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9790.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16910.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10160.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8490.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4940.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10090.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 44530.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10750.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7680.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10490.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7370.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19000.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7730.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17860.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 38150.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16330.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6070.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 950.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10770.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39640.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28140.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 39340.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26560.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 42340.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 48680.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37170.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27100.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25200.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25920.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28640.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30020.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36200.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 47450.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40720.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33560.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14110.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21010.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33160.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27670.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28360.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26900.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32140.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28440.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24800.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 32250.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23440.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 35080.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23130.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10720.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11970.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8050.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13400.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10350.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7570.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11520.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14700.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17330.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7430.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11050.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11910.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37370.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9660.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9540.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1810.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4350.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9460.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12990.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10630.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2210.0, + "kind": "fixture_only", + "name": "voa/council_tax/D@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2070.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2810.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6430.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3590.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7960.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1410.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17380.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4020.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8030.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4850.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3570.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2400.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5870.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1980.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10460.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10120.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13390.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5250.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5450.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9640.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4930.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6820.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4860.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10230.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8670.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5920.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13590.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17040.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13300.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11720.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3790.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3200.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11500.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17600.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17630.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26830.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 330.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31680.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8960.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17800.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12210.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 28890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 36730.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12750.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17970.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8470.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12750.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 37890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31050.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6060.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5110.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10360.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12340.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3630.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1150.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2150.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5290.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2430.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4100.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3300.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11400.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4570.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5010.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5100.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7590.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3710.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4600.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2350.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6260.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7690.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12010.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7930.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8240.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6470.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4480.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11460.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9320.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10280.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3070.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4710.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5350.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6120.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5270.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6740.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4670.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3880.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7320.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6070.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11350.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9270.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8190.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8130.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2010.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8280.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4250.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8800.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9190.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7880.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9420.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8990.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7490.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7120.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7750.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4650.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10980.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7730.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5280.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6130.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4210.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9650.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7180.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1350.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5490.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5420.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 870.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4270.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3750.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4310.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2040.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4510.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5430.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6050.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4640.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7600.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7400.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4630.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2690.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5420.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2200.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 880.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3790.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1440.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3840.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2150.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6080.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3970.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5040.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5650.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2020.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5410.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5130.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2360.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3530.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2840.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4390.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1770.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4570.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7720.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9260.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7670.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10980.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10450.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7990.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2000.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5160.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5140.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2910.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5600.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7020.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2210.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4880.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2370.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6420.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11310.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7810.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10640.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7240.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10110.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6900.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7870.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10110.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6360.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3180.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5280.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2050.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10930.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3820.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11640.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12370.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7220.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5370.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3450.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3590.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3610.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13100.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5590.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12070.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3280.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11760.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7410.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5820.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7640.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4580.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3910.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13320.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4000.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7940.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7730.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2110.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5140.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3810.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8930.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8580.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4190.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4900.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5070.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5940.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1850.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23130.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5230.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7150.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2990.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12200.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5680.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3150.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13330.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5630.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12720.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22930.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8860.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2780.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2890.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1800.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 33920.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19550.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 23430.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29550.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19820.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24140.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 25200.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21550.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12850.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13500.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17400.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11700.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22620.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16040.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18810.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16350.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19520.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13410.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15050.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16550.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8060.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7220.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19750.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19770.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 21540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12950.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 27010.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8390.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 26990.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24460.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8300.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9300.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11140.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8270.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9180.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12550.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13440.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13200.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4580.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8020.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10790.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31540.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7140.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6840.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 900.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4330.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12660.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1560.0, + "kind": "fixture_only", + "name": "voa/council_tax/E@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 930.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1040.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1070.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3000.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1400.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1270.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 580.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 320.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7740.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1720.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3830.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2340.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1590.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1120.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7680.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2570.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 560.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5980.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6880.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6630.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1890.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4020.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3710.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2320.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5450.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7120.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1730.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8410.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11160.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4830.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1660.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3290.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15410.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10540.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9370.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9650.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 270.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5790.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10200.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7600.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9450.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16160.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 29170.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10680.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2980.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6480.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22340.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3990.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2460.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 710.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8670.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 350.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 620.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3300.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2200.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1630.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2430.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6700.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2220.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2040.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4140.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4110.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1210.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2070.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 860.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3300.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4110.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4990.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4620.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6610.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4310.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2800.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2160.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5310.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2800.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5310.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2190.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 930.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4230.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3780.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6790.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6950.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3510.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3720.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1570.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7220.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2590.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7220.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1320.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5320.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3010.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5860.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4470.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2220.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6220.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4210.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2580.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6610.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6170.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2790.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2820.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1660.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5570.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5240.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2960.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 280.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2680.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 720.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1770.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2690.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2760.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1660.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3430.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4120.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2350.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2050.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 650.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 240.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1680.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3130.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1910.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2370.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2790.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2460.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 930.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3400.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 520.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1720.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1500.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 470.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2810.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3140.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6810.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6620.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 660.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2660.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1860.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3610.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3780.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2020.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2650.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 960.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8140.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4830.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6310.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7700.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4300.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4730.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7380.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4240.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 870.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6850.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5700.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 760.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6350.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6440.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2350.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8560.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9200.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2450.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3850.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4150.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1290.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1620.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1800.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4500.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8140.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5650.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3050.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2370.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3400.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1630.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1710.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1490.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6570.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 950.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4690.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 330.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2360.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3990.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1630.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2280.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2010.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2640.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1590.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 730.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1230.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9140.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2610.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 550.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9260.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2420.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1730.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6260.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3150.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5720.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10740.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2600.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 900.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 390.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20370.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5290.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6590.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 18580.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12950.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11860.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10520.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9590.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4010.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4950.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11330.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5540.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8550.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6770.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10050.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6370.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10380.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12210.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8770.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10820.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2820.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5940.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2210.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7820.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12160.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7110.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14280.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1850.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20450.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2770.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4030.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5120.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3920.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7830.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5190.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3890.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6070.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6700.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8180.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1530.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4480.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7740.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 22250.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3520.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2430.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 350.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2410.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8100.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6090.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9740.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 580.0, + "kind": "fixture_only", + "name": "voa/council_tax/F@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 420.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1610.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 680.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2730.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 580.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3440.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 510.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 710.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 620.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1360.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 760.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3800.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2900.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3470.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 620.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1290.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1500.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1070.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1640.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 890.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1560.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2690.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4880.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1910.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 9970.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6830.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3240.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2840.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 660.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2310.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8110.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4830.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4430.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3290.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 31530.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3060.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6520.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3440.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14070.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3270.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2010.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4900.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2170.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 530.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 860.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 900.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1020.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4270.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1020.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 640.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2060.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 390.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2420.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2770.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7340.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2080.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2500.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4060.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 770.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4590.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2600.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6320.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1450.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4960.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4950.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1040.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 180.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2660.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5160.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1530.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 330.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 990.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 330.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3950.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6020.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2350.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5260.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4750.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3630.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5170.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2320.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1120.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1590.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1100.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4720.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7990.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1310.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5100.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5620.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1690.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 870.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1080.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 470.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 610.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1150.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2070.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2840.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1160.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 990.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 490.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 610.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 430.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 830.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 880.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 260.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1220.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1100.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 610.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1580.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 740.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 510.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 950.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 210.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1530.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2720.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2890.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3370.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6420.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4870.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3100.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 280.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1300.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2730.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1020.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2490.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1660.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 810.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1800.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 380.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1740.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 11460.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4180.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7590.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7830.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7540.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5330.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6400.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8910.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5260.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 790.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1910.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4720.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2800.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6020.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 470.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8080.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2920.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2550.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 480.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4850.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1300.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 8270.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3960.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5950.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 430.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3070.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2100.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1320.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1270.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 940.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 900.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 880.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3620.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 650.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1760.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2740.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3220.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 710.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 810.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2890.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 380.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 700.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5960.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1490.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 860.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1000.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1380.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2330.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7490.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 390.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1500.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 16820.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1750.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3460.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 14120.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13140.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7520.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7200.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6050.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2280.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1320.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 12270.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4800.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6220.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3140.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5340.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4120.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 7300.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 19930.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4460.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5960.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1360.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4180.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 240.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3320.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 13290.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4590.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3780.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 440.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 24500.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1080.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1280.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1940.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2060.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3230.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2570.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 980.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2120.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2260.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3880.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 540.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1510.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5920.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10590.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1190.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 690.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 5520.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2710.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4180.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 160.0, + "kind": "fixture_only", + "name": "voa/council_tax/G@W06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 300.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 310.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 780.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2020.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 570.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 180.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 280.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2010.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000049", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 640.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000050", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000051", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000052", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000053", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1370.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000054", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000055", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 410.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000056", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 590.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000057", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1310.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000058", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 740.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000059", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 6160.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000060", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 280.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 490.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1310.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 520.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E06000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 510.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 180.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 420.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000038", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000039", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 210.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000040", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000041", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000042", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000043", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 380.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000044", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000045", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000046", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000047", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000061", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000062", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000063", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 280.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000064", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 950.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000065", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000066", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000067", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 660.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000068", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000069", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000070", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000071", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1260.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000072", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000073", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000074", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000075", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000076", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000077", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000078", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 780.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000079", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000080", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000081", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 260.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000082", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 210.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000083", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000084", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 670.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000085", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000086", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000087", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000088", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 260.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000089", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000090", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 620.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000091", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000092", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 560.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000093", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 750.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000094", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000095", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 850.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000096", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000098", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000099", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1630.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000102", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000103", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000105", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000106", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000107", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000108", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000109", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 390.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000110", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1550.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000111", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000112", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000113", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000114", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 470.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000115", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 620.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000116", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000117", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000118", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000119", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000120", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000121", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000122", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000123", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 240.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000124", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000125", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000126", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000127", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000128", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000129", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000130", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 260.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000131", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000132", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000133", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000134", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000135", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000136", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000137", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000138", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000139", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000140", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000141", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000142", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000143", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000144", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000145", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000146", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000147", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000148", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000149", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000170", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000171", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000172", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000173", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000174", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000175", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000176", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 270.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000177", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 610.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000178", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 990.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000179", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 490.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000180", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 420.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000181", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000192", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000193", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 430.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000194", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000195", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000196", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000197", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000198", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000199", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000200", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000202", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000203", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4550.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000207", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000208", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1860.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000209", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1080.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000210", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000211", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000212", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 120.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000213", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 540.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000214", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1290.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000215", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2180.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000216", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 830.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000217", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000218", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000219", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000220", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1000.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000221", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 460.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000222", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000223", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 310.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000224", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1360.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000225", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000226", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 840.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000227", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 450.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000228", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000229", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 380.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000234", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000235", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000236", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000237", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000238", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000239", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1410.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000240", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 750.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000241", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 870.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000242", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000243", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000244", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E07000245", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 180.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 80.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 230.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1070.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 20.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 150.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 930.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 140.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 490.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 130.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 330.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 60.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000034", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 760.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000035", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 100.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000036", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E08000037", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 310.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 10.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4350.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 250.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1750.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 4940.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000007", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 660.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1060.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1020.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 360.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 50.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2940.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 750.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1320.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 380.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 490.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000017", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1030.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 960.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000019", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 15480.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1080.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1180.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 190.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1850.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000024", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 40.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000025", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 220.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000026", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3640.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000027", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 830.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000028", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 290.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000029", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 780.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000030", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 30.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000031", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 3040.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000032", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 17190.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@E09000033", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 170.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000001", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 210.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000002", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 430.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000003", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 320.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000004", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 600.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000005", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 720.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000006", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000008", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 340.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000009", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 300.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000010", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000011", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 110.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000012", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 300.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000013", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2270.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000014", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 2850.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000015", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 200.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000016", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 90.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000018", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 70.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000020", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 1790.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000021", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 560.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000022", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "fixture_value": 580.0, + "kind": "fixture_only", + "name": "voa/council_tax/H@W06000023", + "period": 2025, + "reason": "Ruled signed exclusion: the local contract declares no council-tax targets and Microcosm has no council-tax local metric computations. The wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped as follow-up work, including the contract targets and metric bindings." + }, + { + "kind": "ledger_only", + "ledger_value": 1769600000.0, + "name": "hmrc.employment_income.amount@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 238500000.0, + "name": "hmrc.self_employment_income.amount@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16885.0, + "name": "ons.age.0_10@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19897.0, + "name": "ons.age.10_20@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15275.0, + "name": "ons.age.20_30@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19442.0, + "name": "ons.age.30_40@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20729.0, + "name": "ons.age.40_50@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23177.0, + "name": "ons.age.50_60@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21714.0, + "name": "ons.age.60_70@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17842.0, + "name": "ons.age.70_80@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 98.0, + "name": "ons.tenure.owned_mortgage@E06000053", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 34745.0, + "name": "ons.tenure.owned_mortgage@E06000063", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27786.0, + "name": "ons.tenure.owned_mortgage@E06000064", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 74473.0, + "name": "ons.tenure.owned_mortgage@E06000065", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 67815.0, + "name": "ons.tenure.owned_mortgage@E06000066", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21305.0, + "name": "ons.tenure.owned_mortgage@N09000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27167.0, + "name": "ons.tenure.owned_mortgage@N09000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37771.0, + "name": "ons.tenure.owned_mortgage@N09000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15106.0, + "name": "ons.tenure.owned_mortgage@N09000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16015.0, + "name": "ons.tenure.owned_mortgage@N09000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11676.0, + "name": "ons.tenure.owned_mortgage@N09000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22164.0, + "name": "ons.tenure.owned_mortgage@N09000007", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17278.0, + "name": "ons.tenure.owned_mortgage@N09000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16102.0, + "name": "ons.tenure.owned_mortgage@N09000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20440.0, + "name": "ons.tenure.owned_mortgage@N09000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22832.0, + "name": "ons.tenure.owned_mortgage@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6873.0, + "name": "ons.tenure.owned_mortgage@S12000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15098.0, + "name": "ons.tenure.owned_mortgage@S12000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16101.0, + "name": "ons.tenure.owned_mortgage@S12000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15276.0, + "name": "ons.tenure.owned_mortgage@S12000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14911.0, + "name": "ons.tenure.owned_mortgage@S12000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2711.0, + "name": "ons.tenure.owned_mortgage@S12000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23177.0, + "name": "ons.tenure.owned_mortgage@S12000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27943.0, + "name": "ons.tenure.owned_mortgage@S12000017", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9991.0, + "name": "ons.tenure.owned_mortgage@S12000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14372.0, + "name": "ons.tenure.owned_mortgage@S12000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11325.0, + "name": "ons.tenure.owned_mortgage@S12000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16418.0, + "name": "ons.tenure.owned_mortgage@S12000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2301.0, + "name": "ons.tenure.owned_mortgage@S12000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12648.0, + "name": "ons.tenure.owned_mortgage@S12000026", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2547.0, + "name": "ons.tenure.owned_mortgage@S12000027", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14348.0, + "name": "ons.tenure.owned_mortgage@S12000028", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 50607.0, + "name": "ons.tenure.owned_mortgage@S12000029", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11536.0, + "name": "ons.tenure.owned_mortgage@S12000030", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 29208.0, + "name": "ons.tenure.owned_mortgage@S12000033", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37782.0, + "name": "ons.tenure.owned_mortgage@S12000034", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9464.0, + "name": "ons.tenure.owned_mortgage@S12000035", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 68208.0, + "name": "ons.tenure.owned_mortgage@S12000036", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 28286.0, + "name": "ons.tenure.owned_mortgage@S12000038", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11379.0, + "name": "ons.tenure.owned_mortgage@S12000039", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 26995.0, + "name": "ons.tenure.owned_mortgage@S12000040", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14516.0, + "name": "ons.tenure.owned_mortgage@S12000041", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16244.0, + "name": "ons.tenure.owned_mortgage@S12000042", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16681.0, + "name": "ons.tenure.owned_mortgage@S12000045", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 48438.0, + "name": "ons.tenure.owned_mortgage@S12000047", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18378.0, + "name": "ons.tenure.owned_mortgage@S12000048", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 71082.0, + "name": "ons.tenure.owned_mortgage@S12000049", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 48370.0, + "name": "ons.tenure.owned_mortgage@S12000050", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7264.0, + "name": "ons.tenure.owned_mortgage@W06000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11214.0, + "name": "ons.tenure.owned_mortgage@W06000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12967.0, + "name": "ons.tenure.owned_mortgage@W06000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11112.0, + "name": "ons.tenure.owned_mortgage@W06000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22074.0, + "name": "ons.tenure.owned_mortgage@W06000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16271.0, + "name": "ons.tenure.owned_mortgage@W06000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6378.0, + "name": "ons.tenure.owned_mortgage@W06000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12556.0, + "name": "ons.tenure.owned_mortgage@W06000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21936.0, + "name": "ons.tenure.owned_mortgage@W06000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 28224.0, + "name": "ons.tenure.owned_mortgage@W06000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17661.0, + "name": "ons.tenure.owned_mortgage@W06000012", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20291.0, + "name": "ons.tenure.owned_mortgage@W06000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19231.0, + "name": "ons.tenure.owned_mortgage@W06000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 43355.0, + "name": "ons.tenure.owned_mortgage@W06000015", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 30943.0, + "name": "ons.tenure.owned_mortgage@W06000016", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 24053.0, + "name": "ons.tenure.owned_mortgage@W06000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7658.0, + "name": "ons.tenure.owned_mortgage@W06000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11963.0, + "name": "ons.tenure.owned_mortgage@W06000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11691.0, + "name": "ons.tenure.owned_mortgage@W06000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21387.0, + "name": "ons.tenure.owned_mortgage@W06000022", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12586.0, + "name": "ons.tenure.owned_mortgage@W06000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7012.0, + "name": "ons.tenure.owned_mortgage@W06000024", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 320.0, + "name": "ons.tenure.owned_outright@E06000053", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 51185.0, + "name": "ons.tenure.owned_outright@E06000063", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 46305.0, + "name": "ons.tenure.owned_outright@E06000064", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 113625.0, + "name": "ons.tenure.owned_outright@E06000065", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 100887.0, + "name": "ons.tenure.owned_outright@E06000066", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20424.0, + "name": "ons.tenure.owned_outright@N09000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 30128.0, + "name": "ons.tenure.owned_outright@N09000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37043.0, + "name": "ons.tenure.owned_outright@N09000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22597.0, + "name": "ons.tenure.owned_outright@N09000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18433.0, + "name": "ons.tenure.owned_outright@N09000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19738.0, + "name": "ons.tenure.owned_outright@N09000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22024.0, + "name": "ons.tenure.owned_outright@N09000007", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22609.0, + "name": "ons.tenure.owned_outright@N09000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20724.0, + "name": "ons.tenure.owned_outright@N09000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 26129.0, + "name": "ons.tenure.owned_outright@N09000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27220.0, + "name": "ons.tenure.owned_outright@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8146.0, + "name": "ons.tenure.owned_outright@S12000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 30384.0, + "name": "ons.tenure.owned_outright@S12000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18854.0, + "name": "ons.tenure.owned_outright@S12000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17202.0, + "name": "ons.tenure.owned_outright@S12000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17721.0, + "name": "ons.tenure.owned_outright@S12000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6646.0, + "name": "ons.tenure.owned_outright@S12000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23906.0, + "name": "ons.tenure.owned_outright@S12000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 46017.0, + "name": "ons.tenure.owned_outright@S12000017", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13478.0, + "name": "ons.tenure.owned_outright@S12000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13075.0, + "name": "ons.tenure.owned_outright@S12000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17308.0, + "name": "ons.tenure.owned_outright@S12000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23352.0, + "name": "ons.tenure.owned_outright@S12000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4956.0, + "name": "ons.tenure.owned_outright@S12000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21958.0, + "name": "ons.tenure.owned_outright@S12000026", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4581.0, + "name": "ons.tenure.owned_outright@S12000027", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22233.0, + "name": "ons.tenure.owned_outright@S12000028", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 51518.0, + "name": "ons.tenure.owned_outright@S12000029", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15119.0, + "name": "ons.tenure.owned_outright@S12000030", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 31367.0, + "name": "ons.tenure.owned_outright@S12000033", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 46679.0, + "name": "ons.tenure.owned_outright@S12000034", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18483.0, + "name": "ons.tenure.owned_outright@S12000035", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 72401.0, + "name": "ons.tenure.owned_outright@S12000036", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 28959.0, + "name": "ons.tenure.owned_outright@S12000038", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12671.0, + "name": "ons.tenure.owned_outright@S12000039", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 24076.0, + "name": "ons.tenure.owned_outright@S12000040", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21553.0, + "name": "ons.tenure.owned_outright@S12000041", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19298.0, + "name": "ons.tenure.owned_outright@S12000042", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21385.0, + "name": "ons.tenure.owned_outright@S12000045", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 61016.0, + "name": "ons.tenure.owned_outright@S12000047", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27866.0, + "name": "ons.tenure.owned_outright@S12000048", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 63764.0, + "name": "ons.tenure.owned_outright@S12000049", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 45160.0, + "name": "ons.tenure.owned_outright@S12000050", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13756.0, + "name": "ons.tenure.owned_outright@W06000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22214.0, + "name": "ons.tenure.owned_outright@W06000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22759.0, + "name": "ons.tenure.owned_outright@W06000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16828.0, + "name": "ons.tenure.owned_outright@W06000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 25945.0, + "name": "ons.tenure.owned_outright@W06000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19947.0, + "name": "ons.tenure.owned_outright@W06000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14798.0, + "name": "ons.tenure.owned_outright@W06000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 24647.0, + "name": "ons.tenure.owned_outright@W06000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 35629.0, + "name": "ons.tenure.owned_outright@W06000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37162.0, + "name": "ons.tenure.owned_outright@W06000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23850.0, + "name": "ons.tenure.owned_outright@W06000012", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 23670.0, + "name": "ons.tenure.owned_outright@W06000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 22052.0, + "name": "ons.tenure.owned_outright@W06000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 42072.0, + "name": "ons.tenure.owned_outright@W06000015", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 39686.0, + "name": "ons.tenure.owned_outright@W06000016", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 27449.0, + "name": "ons.tenure.owned_outright@W06000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10564.0, + "name": "ons.tenure.owned_outright@W06000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13952.0, + "name": "ons.tenure.owned_outright@W06000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17738.0, + "name": "ons.tenure.owned_outright@W06000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20172.0, + "name": "ons.tenure.owned_outright@W06000022", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 28098.0, + "name": "ons.tenure.owned_outright@W06000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9101.0, + "name": "ons.tenure.owned_outright@W06000024", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 344.0, + "name": "ons.tenure.private_rent@E06000053", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17662.0, + "name": "ons.tenure.private_rent@E06000063", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17685.0, + "name": "ons.tenure.private_rent@E06000064", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 51164.0, + "name": "ons.tenure.private_rent@E06000065", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 44331.0, + "name": "ons.tenure.private_rent@E06000066", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8251.0, + "name": "ons.tenure.private_rent@N09000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 15706.0, + "name": "ons.tenure.private_rent@N09000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 30657.0, + "name": "ons.tenure.private_rent@N09000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10296.0, + "name": "ons.tenure.private_rent@N09000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10933.0, + "name": "ons.tenure.private_rent@N09000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8472.0, + "name": "ons.tenure.private_rent@N09000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6754.0, + "name": "ons.tenure.private_rent@N09000007", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9388.0, + "name": "ons.tenure.private_rent@N09000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10198.0, + "name": "ons.tenure.private_rent@N09000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12333.0, + "name": "ons.tenure.private_rent@N09000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9448.0, + "name": "ons.tenure.private_rent@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2128.0, + "name": "ons.tenure.private_rent@S12000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9506.0, + "name": "ons.tenure.private_rent@S12000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5282.0, + "name": "ons.tenure.private_rent@S12000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4169.0, + "name": "ons.tenure.private_rent@S12000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2281.0, + "name": "ons.tenure.private_rent@S12000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 726.0, + "name": "ons.tenure.private_rent@S12000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5982.0, + "name": "ons.tenure.private_rent@S12000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11924.0, + "name": "ons.tenure.private_rent@S12000017", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 3968.0, + "name": "ons.tenure.private_rent@S12000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 3146.0, + "name": "ons.tenure.private_rent@S12000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5134.0, + "name": "ons.tenure.private_rent@S12000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6360.0, + "name": "ons.tenure.private_rent@S12000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 1021.0, + "name": "ons.tenure.private_rent@S12000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7629.0, + "name": "ons.tenure.private_rent@S12000026", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 737.0, + "name": "ons.tenure.private_rent@S12000027", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5542.0, + "name": "ons.tenure.private_rent@S12000028", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14084.0, + "name": "ons.tenure.private_rent@S12000029", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5138.0, + "name": "ons.tenure.private_rent@S12000030", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21708.0, + "name": "ons.tenure.private_rent@S12000033", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10503.0, + "name": "ons.tenure.private_rent@S12000034", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4867.0, + "name": "ons.tenure.private_rent@S12000035", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 55135.0, + "name": "ons.tenure.private_rent@S12000036", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9555.0, + "name": "ons.tenure.private_rent@S12000038", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 3474.0, + "name": "ons.tenure.private_rent@S12000039", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7378.0, + "name": "ons.tenure.private_rent@S12000040", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6406.0, + "name": "ons.tenure.private_rent@S12000041", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14727.0, + "name": "ons.tenure.private_rent@S12000042", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2681.0, + "name": "ons.tenure.private_rent@S12000045", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19632.0, + "name": "ons.tenure.private_rent@S12000047", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9617.0, + "name": "ons.tenure.private_rent@S12000048", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 49579.0, + "name": "ons.tenure.private_rent@S12000049", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13021.0, + "name": "ons.tenure.private_rent@S12000050", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4799.0, + "name": "ons.tenure.private_rent@W06000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8865.0, + "name": "ons.tenure.private_rent@W06000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9920.0, + "name": "ons.tenure.private_rent@W06000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8492.0, + "name": "ons.tenure.private_rent@W06000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8839.0, + "name": "ons.tenure.private_rent@W06000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9166.0, + "name": "ons.tenure.private_rent@W06000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6371.0, + "name": "ons.tenure.private_rent@W06000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9114.0, + "name": "ons.tenure.private_rent@W06000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12171.0, + "name": "ons.tenure.private_rent@W06000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18901.0, + "name": "ons.tenure.private_rent@W06000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8652.0, + "name": "ons.tenure.private_rent@W06000012", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9526.0, + "name": "ons.tenure.private_rent@W06000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8977.0, + "name": "ons.tenure.private_rent@W06000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 35785.0, + "name": "ons.tenure.private_rent@W06000015", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18238.0, + "name": "ons.tenure.private_rent@W06000016", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10154.0, + "name": "ons.tenure.private_rent@W06000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4847.0, + "name": "ons.tenure.private_rent@W06000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4495.0, + "name": "ons.tenure.private_rent@W06000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5582.0, + "name": "ons.tenure.private_rent@W06000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11019.0, + "name": "ons.tenure.private_rent@W06000022", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10760.0, + "name": "ons.tenure.private_rent@W06000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 3967.0, + "name": "ons.tenure.private_rent@W06000024", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 162.0, + "name": "ons.tenure.social_rent@E06000053", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21014.0, + "name": "ons.tenure.social_rent@E06000063", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11105.0, + "name": "ons.tenure.social_rent@E06000064", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 32516.0, + "name": "ons.tenure.social_rent@E06000065", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 34287.0, + "name": "ons.tenure.social_rent@E06000066", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7613.0, + "name": "ons.tenure.social_rent@N09000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8890.0, + "name": "ons.tenure.social_rent@N09000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 39217.0, + "name": "ons.tenure.social_rent@N09000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7712.0, + "name": "ons.tenure.social_rent@N09000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13830.0, + "name": "ons.tenure.social_rent@N09000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4308.0, + "name": "ons.tenure.social_rent@N09000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7402.0, + "name": "ons.tenure.social_rent@N09000007", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7168.0, + "name": "ons.tenure.social_rent@N09000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5093.0, + "name": "ons.tenure.social_rent@N09000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7356.0, + "name": "ons.tenure.social_rent@N09000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8876.0, + "name": "ons.tenure.social_rent@N09000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6447.0, + "name": "ons.tenure.social_rent@S12000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 13519.0, + "name": "ons.tenure.social_rent@S12000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14257.0, + "name": "ons.tenure.social_rent@S12000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10918.0, + "name": "ons.tenure.social_rent@S12000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4275.0, + "name": "ons.tenure.social_rent@S12000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2178.0, + "name": "ons.tenure.social_rent@S12000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18021.0, + "name": "ons.tenure.social_rent@S12000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 21731.0, + "name": "ons.tenure.social_rent@S12000017", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9399.0, + "name": "ons.tenure.social_rent@S12000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9446.0, + "name": "ons.tenure.social_rent@S12000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8287.0, + "name": "ons.tenure.social_rent@S12000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 16946.0, + "name": "ons.tenure.social_rent@S12000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 1795.0, + "name": "ons.tenure.social_rent@S12000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11631.0, + "name": "ons.tenure.social_rent@S12000026", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 2406.0, + "name": "ons.tenure.social_rent@S12000027", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9380.0, + "name": "ons.tenure.social_rent@S12000028", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 29045.0, + "name": "ons.tenure.social_rent@S12000029", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7654.0, + "name": "ons.tenure.social_rent@S12000030", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 24507.0, + "name": "ons.tenure.social_rent@S12000033", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 17848.0, + "name": "ons.tenure.social_rent@S12000034", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7976.0, + "name": "ons.tenure.social_rent@S12000035", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37484.0, + "name": "ons.tenure.social_rent@S12000036", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18413.0, + "name": "ons.tenure.social_rent@S12000038", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14386.0, + "name": "ons.tenure.social_rent@S12000039", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 19587.0, + "name": "ons.tenure.social_rent@S12000040", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 10490.0, + "name": "ons.tenure.social_rent@S12000041", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 18335.0, + "name": "ons.tenure.social_rent@S12000042", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5045.0, + "name": "ons.tenure.social_rent@S12000045", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 37071.0, + "name": "ons.tenure.social_rent@S12000047", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11503.0, + "name": "ons.tenure.social_rent@S12000048", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 102410.0, + "name": "ons.tenure.social_rent@S12000049", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 42133.0, + "name": "ons.tenure.social_rent@S12000050", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 4820.0, + "name": "ons.tenure.social_rent@W06000001", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8557.0, + "name": "ons.tenure.social_rent@W06000002", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 6257.0, + "name": "ons.tenure.social_rent@W06000003", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5648.0, + "name": "ons.tenure.social_rent@W06000004", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9714.0, + "name": "ons.tenure.social_rent@W06000005", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12161.0, + "name": "ons.tenure.social_rent@W06000006", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 3239.0, + "name": "ons.tenure.social_rent@W06000008", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8994.0, + "name": "ons.tenure.social_rent@W06000009", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11698.0, + "name": "ons.tenure.social_rent@W06000010", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 20045.0, + "name": "ons.tenure.social_rent@W06000011", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 11999.0, + "name": "ons.tenure.social_rent@W06000012", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8674.0, + "name": "ons.tenure.social_rent@W06000013", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7023.0, + "name": "ons.tenure.social_rent@W06000014", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 25278.0, + "name": "ons.tenure.social_rent@W06000015", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14175.0, + "name": "ons.tenure.social_rent@W06000016", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 14323.0, + "name": "ons.tenure.social_rent@W06000018", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 7194.0, + "name": "ons.tenure.social_rent@W06000019", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 9575.0, + "name": "ons.tenure.social_rent@W06000020", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5743.0, + "name": "ons.tenure.social_rent@W06000021", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 12864.0, + "name": "ons.tenure.social_rent@W06000022", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 8481.0, + "name": "ons.tenure.social_rent@W06000023", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "kind": "ledger_only", + "ledger_value": 5626.0, + "name": "ons.tenure.social_rent@W06000024", + "period": 2025, + "reason": "Coverage the incumbent lacks: our side compiles a published per-area fact the incumbent's surface NaN-masks or never carries (for example Northern Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 review): the incumbent's 360-row LA file carries N09000001-N09000010 only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st crosswalk area is a genuine incumbent roster gap, not a dropped row." + }, + { + "fixture_value": 13381.0, + "kind": "calibration_drift", + "ledger_value": 14885.0, + "name": "dwp.uc.households_by_area@E06000001", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20848.0, + "kind": "calibration_drift", + "ledger_value": 23208.0, + "name": "dwp.uc.households_by_area@E06000002", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15541.0, + "kind": "calibration_drift", + "ledger_value": 17289.0, + "name": "dwp.uc.households_by_area@E06000003", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20092.0, + "kind": "calibration_drift", + "ledger_value": 22361.0, + "name": "dwp.uc.households_by_area@E06000004", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10935.0, + "kind": "calibration_drift", + "ledger_value": 12150.0, + "name": "dwp.uc.households_by_area@E06000005", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15146.0, + "kind": "calibration_drift", + "ledger_value": 16830.0, + "name": "dwp.uc.households_by_area@E06000006", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16395.0, + "kind": "calibration_drift", + "ledger_value": 18266.0, + "name": "dwp.uc.households_by_area@E06000007", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20437.0, + "kind": "calibration_drift", + "ledger_value": 22749.0, + "name": "dwp.uc.households_by_area@E06000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21603.0, + "kind": "calibration_drift", + "ledger_value": 24045.0, + "name": "dwp.uc.households_by_area@E06000009", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 38201.0, + "kind": "calibration_drift", + "ledger_value": 42503.0, + "name": "dwp.uc.households_by_area@E06000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21120.0, + "kind": "calibration_drift", + "ledger_value": 23506.0, + "name": "dwp.uc.households_by_area@E06000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18462.0, + "kind": "calibration_drift", + "ledger_value": 20533.0, + "name": "dwp.uc.households_by_area@E06000012", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15369.0, + "kind": "calibration_drift", + "ledger_value": 17088.0, + "name": "dwp.uc.households_by_area@E06000013", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11220.0, + "kind": "calibration_drift", + "ledger_value": 12482.0, + "name": "dwp.uc.households_by_area@E06000014", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 30107.0, + "kind": "calibration_drift", + "ledger_value": 33560.0, + "name": "dwp.uc.households_by_area@E06000015", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 44515.0, + "kind": "calibration_drift", + "ledger_value": 49542.0, + "name": "dwp.uc.households_by_area@E06000016", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 1714.0, + "kind": "calibration_drift", + "ledger_value": 1913.0, + "name": "dwp.uc.households_by_area@E06000017", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 43055.0, + "kind": "calibration_drift", + "ledger_value": 47892.0, + "name": "dwp.uc.households_by_area@E06000018", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11944.0, + "kind": "calibration_drift", + "ledger_value": 13307.0, + "name": "dwp.uc.households_by_area@E06000019", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19042.0, + "kind": "calibration_drift", + "ledger_value": 21218.0, + "name": "dwp.uc.households_by_area@E06000020", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31736.0, + "kind": "calibration_drift", + "ledger_value": 35330.0, + "name": "dwp.uc.households_by_area@E06000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11212.0, + "kind": "calibration_drift", + "ledger_value": 12471.0, + "name": "dwp.uc.households_by_area@E06000022", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 43036.0, + "kind": "calibration_drift", + "ledger_value": 47956.0, + "name": "dwp.uc.households_by_area@E06000023", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14912.0, + "kind": "calibration_drift", + "ledger_value": 16596.0, + "name": "dwp.uc.households_by_area@E06000024", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17663.0, + "kind": "calibration_drift", + "ledger_value": 19659.0, + "name": "dwp.uc.households_by_area@E06000025", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26230.0, + "kind": "calibration_drift", + "ledger_value": 29190.0, + "name": "dwp.uc.households_by_area@E06000026", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13671.0, + "kind": "calibration_drift", + "ledger_value": 15202.0, + "name": "dwp.uc.households_by_area@E06000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19132.0, + "kind": "calibration_drift", + "ledger_value": 21310.0, + "name": "dwp.uc.households_by_area@E06000030", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25666.0, + "kind": "calibration_drift", + "ledger_value": 28603.0, + "name": "dwp.uc.households_by_area@E06000031", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26389.0, + "kind": "calibration_drift", + "ledger_value": 29378.0, + "name": "dwp.uc.households_by_area@E06000032", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18180.0, + "kind": "calibration_drift", + "ledger_value": 20243.0, + "name": "dwp.uc.households_by_area@E06000033", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16458.0, + "kind": "calibration_drift", + "ledger_value": 18320.0, + "name": "dwp.uc.households_by_area@E06000034", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26949.0, + "kind": "calibration_drift", + "ledger_value": 29986.0, + "name": "dwp.uc.households_by_area@E06000035", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7314.0, + "kind": "calibration_drift", + "ledger_value": 8142.0, + "name": "dwp.uc.households_by_area@E06000036", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8583.0, + "kind": "calibration_drift", + "ledger_value": 9545.0, + "name": "dwp.uc.households_by_area@E06000037", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15116.0, + "kind": "calibration_drift", + "ledger_value": 16822.0, + "name": "dwp.uc.households_by_area@E06000038", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16521.0, + "kind": "calibration_drift", + "ledger_value": 18391.0, + "name": "dwp.uc.households_by_area@E06000039", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7272.0, + "kind": "calibration_drift", + "ledger_value": 8103.0, + "name": "dwp.uc.households_by_area@E06000040", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6916.0, + "kind": "calibration_drift", + "ledger_value": 7683.0, + "name": "dwp.uc.households_by_area@E06000041", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25509.0, + "kind": "calibration_drift", + "ledger_value": 28447.0, + "name": "dwp.uc.households_by_area@E06000042", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26141.0, + "kind": "calibration_drift", + "ledger_value": 29103.0, + "name": "dwp.uc.households_by_area@E06000043", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21650.0, + "kind": "calibration_drift", + "ledger_value": 24094.0, + "name": "dwp.uc.households_by_area@E06000044", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25912.0, + "kind": "calibration_drift", + "ledger_value": 28851.0, + "name": "dwp.uc.households_by_area@E06000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12384.0, + "kind": "calibration_drift", + "ledger_value": 13788.0, + "name": "dwp.uc.households_by_area@E06000046", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 55129.0, + "kind": "calibration_drift", + "ledger_value": 61338.0, + "name": "dwp.uc.households_by_area@E06000047", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 24968.0, + "kind": "calibration_drift", + "ledger_value": 27788.0, + "name": "dwp.uc.households_by_area@E06000049", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26673.0, + "kind": "calibration_drift", + "ledger_value": 29677.0, + "name": "dwp.uc.households_by_area@E06000050", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19708.0, + "kind": "calibration_drift", + "ledger_value": 21930.0, + "name": "dwp.uc.households_by_area@E06000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 46176.0, + "kind": "calibration_drift", + "ledger_value": 51387.0, + "name": "dwp.uc.households_by_area@E06000052", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 70.0, + "kind": "calibration_drift", + "ledger_value": 78.0, + "name": "dwp.uc.households_by_area@E06000053", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 30793.0, + "kind": "calibration_drift", + "ledger_value": 34287.0, + "name": "dwp.uc.households_by_area@E06000054", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16225.0, + "kind": "calibration_drift", + "ledger_value": 18045.0, + "name": "dwp.uc.households_by_area@E06000055", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18768.0, + "kind": "calibration_drift", + "ledger_value": 20884.0, + "name": "dwp.uc.households_by_area@E06000056", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26149.0, + "kind": "calibration_drift", + "ledger_value": 29085.0, + "name": "dwp.uc.households_by_area@E06000057", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 32183.0, + "kind": "calibration_drift", + "ledger_value": 35821.0, + "name": "dwp.uc.households_by_area@E06000058", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 23298.0, + "kind": "calibration_drift", + "ledger_value": 25943.0, + "name": "dwp.uc.households_by_area@E06000059", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31269.0, + "kind": "calibration_drift", + "ledger_value": 34795.0, + "name": "dwp.uc.households_by_area@E06000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31092.0, + "kind": "calibration_drift", + "ledger_value": 34612.0, + "name": "dwp.uc.households_by_area@E06000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 32277.0, + "kind": "calibration_drift", + "ledger_value": 35897.0, + "name": "dwp.uc.households_by_area@E06000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21634.0, + "kind": "calibration_drift", + "ledger_value": 24075.0, + "name": "dwp.uc.households_by_area@E06000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12968.0, + "kind": "calibration_drift", + "ledger_value": 14419.0, + "name": "dwp.uc.households_by_area@E06000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 36666.0, + "kind": "calibration_drift", + "ledger_value": 40814.0, + "name": "dwp.uc.households_by_area@E06000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 40685.0, + "kind": "calibration_drift", + "ledger_value": 45270.0, + "name": "dwp.uc.households_by_area@E06000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7903.0, + "kind": "calibration_drift", + "ledger_value": 8804.0, + "name": "dwp.uc.households_by_area@E07000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4961.0, + "kind": "calibration_drift", + "ledger_value": 5516.0, + "name": "dwp.uc.households_by_area@E07000009", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9189.0, + "kind": "calibration_drift", + "ledger_value": 10225.0, + "name": "dwp.uc.households_by_area@E07000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10886.0, + "kind": "calibration_drift", + "ledger_value": 12134.0, + "name": "dwp.uc.households_by_area@E07000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7778.0, + "kind": "calibration_drift", + "ledger_value": 8659.0, + "name": "dwp.uc.households_by_area@E07000012", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9655.0, + "kind": "calibration_drift", + "ledger_value": 10741.0, + "name": "dwp.uc.households_by_area@E07000032", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7537.0, + "kind": "calibration_drift", + "ledger_value": 8389.0, + "name": "dwp.uc.households_by_area@E07000033", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10216.0, + "kind": "calibration_drift", + "ledger_value": 11370.0, + "name": "dwp.uc.households_by_area@E07000034", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3309.0, + "kind": "calibration_drift", + "ledger_value": 3686.0, + "name": "dwp.uc.households_by_area@E07000035", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9946.0, + "kind": "calibration_drift", + "ledger_value": 11064.0, + "name": "dwp.uc.households_by_area@E07000036", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6181.0, + "kind": "calibration_drift", + "ledger_value": 6876.0, + "name": "dwp.uc.households_by_area@E07000037", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7309.0, + "kind": "calibration_drift", + "ledger_value": 8144.0, + "name": "dwp.uc.households_by_area@E07000038", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7486.0, + "kind": "calibration_drift", + "ledger_value": 8326.0, + "name": "dwp.uc.households_by_area@E07000039", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8717.0, + "kind": "calibration_drift", + "ledger_value": 9703.0, + "name": "dwp.uc.households_by_area@E07000040", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9511.0, + "kind": "calibration_drift", + "ledger_value": 10578.0, + "name": "dwp.uc.households_by_area@E07000041", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5481.0, + "kind": "calibration_drift", + "ledger_value": 6107.0, + "name": "dwp.uc.households_by_area@E07000042", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7459.0, + "kind": "calibration_drift", + "ledger_value": 8337.0, + "name": "dwp.uc.households_by_area@E07000043", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4959.0, + "kind": "calibration_drift", + "ledger_value": 5526.0, + "name": "dwp.uc.households_by_area@E07000044", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8861.0, + "kind": "calibration_drift", + "ledger_value": 9847.0, + "name": "dwp.uc.households_by_area@E07000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5074.0, + "kind": "calibration_drift", + "ledger_value": 5654.0, + "name": "dwp.uc.households_by_area@E07000046", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3321.0, + "kind": "calibration_drift", + "ledger_value": 3693.0, + "name": "dwp.uc.households_by_area@E07000047", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10438.0, + "kind": "calibration_drift", + "ledger_value": 11627.0, + "name": "dwp.uc.households_by_area@E07000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11470.0, + "kind": "calibration_drift", + "ledger_value": 12773.0, + "name": "dwp.uc.households_by_area@E07000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7331.0, + "kind": "calibration_drift", + "ledger_value": 8162.0, + "name": "dwp.uc.households_by_area@E07000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6921.0, + "kind": "calibration_drift", + "ledger_value": 7700.0, + "name": "dwp.uc.households_by_area@E07000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8323.0, + "kind": "calibration_drift", + "ledger_value": 9286.0, + "name": "dwp.uc.households_by_area@E07000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17425.0, + "kind": "calibration_drift", + "ledger_value": 19387.0, + "name": "dwp.uc.households_by_area@E07000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10863.0, + "kind": "calibration_drift", + "ledger_value": 12076.0, + "name": "dwp.uc.households_by_area@E07000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3989.0, + "kind": "calibration_drift", + "ledger_value": 4453.0, + "name": "dwp.uc.households_by_area@E07000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5519.0, + "kind": "calibration_drift", + "ledger_value": 6132.0, + "name": "dwp.uc.households_by_area@E07000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10821.0, + "kind": "calibration_drift", + "ledger_value": 12054.0, + "name": "dwp.uc.households_by_area@E07000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14362.0, + "kind": "calibration_drift", + "ledger_value": 15969.0, + "name": "dwp.uc.households_by_area@E07000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8431.0, + "kind": "calibration_drift", + "ledger_value": 9386.0, + "name": "dwp.uc.households_by_area@E07000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10188.0, + "kind": "calibration_drift", + "ledger_value": 11330.0, + "name": "dwp.uc.households_by_area@E07000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3885.0, + "kind": "calibration_drift", + "ledger_value": 4331.0, + "name": "dwp.uc.households_by_area@E07000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4574.0, + "kind": "calibration_drift", + "ledger_value": 5085.0, + "name": "dwp.uc.households_by_area@E07000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14857.0, + "kind": "calibration_drift", + "ledger_value": 16526.0, + "name": "dwp.uc.households_by_area@E07000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4174.0, + "kind": "calibration_drift", + "ledger_value": 4667.0, + "name": "dwp.uc.households_by_area@E07000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7615.0, + "kind": "calibration_drift", + "ledger_value": 8479.0, + "name": "dwp.uc.households_by_area@E07000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4244.0, + "kind": "calibration_drift", + "ledger_value": 4726.0, + "name": "dwp.uc.households_by_area@E07000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5925.0, + "kind": "calibration_drift", + "ledger_value": 6592.0, + "name": "dwp.uc.households_by_area@E07000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12141.0, + "kind": "calibration_drift", + "ledger_value": 13517.0, + "name": "dwp.uc.households_by_area@E07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6692.0, + "kind": "calibration_drift", + "ledger_value": 7443.0, + "name": "dwp.uc.households_by_area@E07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6156.0, + "kind": "calibration_drift", + "ledger_value": 6874.0, + "name": "dwp.uc.households_by_area@E07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11602.0, + "kind": "calibration_drift", + "ledger_value": 12911.0, + "name": "dwp.uc.households_by_area@E07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5891.0, + "kind": "calibration_drift", + "ledger_value": 6563.0, + "name": "dwp.uc.households_by_area@E07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8061.0, + "kind": "calibration_drift", + "ledger_value": 8980.0, + "name": "dwp.uc.households_by_area@E07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5230.0, + "kind": "calibration_drift", + "ledger_value": 5817.0, + "name": "dwp.uc.households_by_area@E07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7521.0, + "kind": "calibration_drift", + "ledger_value": 8362.0, + "name": "dwp.uc.households_by_area@E07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3836.0, + "kind": "calibration_drift", + "ledger_value": 4278.0, + "name": "dwp.uc.households_by_area@E07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10529.0, + "kind": "calibration_drift", + "ledger_value": 11714.0, + "name": "dwp.uc.households_by_area@E07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9465.0, + "kind": "calibration_drift", + "ledger_value": 10548.0, + "name": "dwp.uc.households_by_area@E07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6873.0, + "kind": "calibration_drift", + "ledger_value": 7647.0, + "name": "dwp.uc.households_by_area@E07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7343.0, + "kind": "calibration_drift", + "ledger_value": 8176.0, + "name": "dwp.uc.households_by_area@E07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6602.0, + "kind": "calibration_drift", + "ledger_value": 7347.0, + "name": "dwp.uc.households_by_area@E07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8682.0, + "kind": "calibration_drift", + "ledger_value": 9677.0, + "name": "dwp.uc.households_by_area@E07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11009.0, + "kind": "calibration_drift", + "ledger_value": 12259.0, + "name": "dwp.uc.households_by_area@E07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7902.0, + "kind": "calibration_drift", + "ledger_value": 8792.0, + "name": "dwp.uc.households_by_area@E07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7966.0, + "kind": "calibration_drift", + "ledger_value": 8852.0, + "name": "dwp.uc.households_by_area@E07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4987.0, + "kind": "calibration_drift", + "ledger_value": 5563.0, + "name": "dwp.uc.households_by_area@E07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8889.0, + "kind": "calibration_drift", + "ledger_value": 9919.0, + "name": "dwp.uc.households_by_area@E07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10526.0, + "kind": "calibration_drift", + "ledger_value": 11731.0, + "name": "dwp.uc.households_by_area@E07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12382.0, + "kind": "calibration_drift", + "ledger_value": 13796.0, + "name": "dwp.uc.households_by_area@E07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9025.0, + "kind": "calibration_drift", + "ledger_value": 10041.0, + "name": "dwp.uc.households_by_area@E07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10766.0, + "kind": "calibration_drift", + "ledger_value": 11979.0, + "name": "dwp.uc.households_by_area@E07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10388.0, + "kind": "calibration_drift", + "ledger_value": 11571.0, + "name": "dwp.uc.households_by_area@E07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13442.0, + "kind": "calibration_drift", + "ledger_value": 14975.0, + "name": "dwp.uc.households_by_area@E07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6196.0, + "kind": "calibration_drift", + "ledger_value": 6886.0, + "name": "dwp.uc.households_by_area@E07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9548.0, + "kind": "calibration_drift", + "ledger_value": 10635.0, + "name": "dwp.uc.households_by_area@E07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14670.0, + "kind": "calibration_drift", + "ledger_value": 16331.0, + "name": "dwp.uc.households_by_area@E07000113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16990.0, + "kind": "calibration_drift", + "ledger_value": 18935.0, + "name": "dwp.uc.households_by_area@E07000114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7769.0, + "kind": "calibration_drift", + "ledger_value": 8643.0, + "name": "dwp.uc.households_by_area@E07000115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6679.0, + "kind": "calibration_drift", + "ledger_value": 7435.0, + "name": "dwp.uc.households_by_area@E07000116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12862.0, + "kind": "calibration_drift", + "ledger_value": 14310.0, + "name": "dwp.uc.households_by_area@E07000117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8310.0, + "kind": "calibration_drift", + "ledger_value": 9253.0, + "name": "dwp.uc.households_by_area@E07000118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5498.0, + "kind": "calibration_drift", + "ledger_value": 6118.0, + "name": "dwp.uc.households_by_area@E07000119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10726.0, + "kind": "calibration_drift", + "ledger_value": 11927.0, + "name": "dwp.uc.households_by_area@E07000120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12171.0, + "kind": "calibration_drift", + "ledger_value": 13532.0, + "name": "dwp.uc.households_by_area@E07000121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11479.0, + "kind": "calibration_drift", + "ledger_value": 12782.0, + "name": "dwp.uc.households_by_area@E07000122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16998.0, + "kind": "calibration_drift", + "ledger_value": 18919.0, + "name": "dwp.uc.households_by_area@E07000123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 2793.0, + "kind": "calibration_drift", + "ledger_value": 3108.0, + "name": "dwp.uc.households_by_area@E07000124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6713.0, + "kind": "calibration_drift", + "ledger_value": 7459.0, + "name": "dwp.uc.households_by_area@E07000125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7552.0, + "kind": "calibration_drift", + "ledger_value": 8410.0, + "name": "dwp.uc.households_by_area@E07000126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9177.0, + "kind": "calibration_drift", + "ledger_value": 10216.0, + "name": "dwp.uc.households_by_area@E07000127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8734.0, + "kind": "calibration_drift", + "ledger_value": 9722.0, + "name": "dwp.uc.households_by_area@E07000128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5792.0, + "kind": "calibration_drift", + "ledger_value": 6458.0, + "name": "dwp.uc.households_by_area@E07000129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11797.0, + "kind": "calibration_drift", + "ledger_value": 13132.0, + "name": "dwp.uc.households_by_area@E07000130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4617.0, + "kind": "calibration_drift", + "ledger_value": 5137.0, + "name": "dwp.uc.households_by_area@E07000131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7469.0, + "kind": "calibration_drift", + "ledger_value": 8312.0, + "name": "dwp.uc.households_by_area@E07000132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3489.0, + "kind": "calibration_drift", + "ledger_value": 3884.0, + "name": "dwp.uc.households_by_area@E07000133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7163.0, + "kind": "calibration_drift", + "ledger_value": 7966.0, + "name": "dwp.uc.households_by_area@E07000134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3769.0, + "kind": "calibration_drift", + "ledger_value": 4203.0, + "name": "dwp.uc.households_by_area@E07000135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7962.0, + "kind": "calibration_drift", + "ledger_value": 8858.0, + "name": "dwp.uc.households_by_area@E07000136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13327.0, + "kind": "calibration_drift", + "ledger_value": 14812.0, + "name": "dwp.uc.households_by_area@E07000137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10877.0, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "dwp.uc.households_by_area@E07000138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6847.0, + "kind": "calibration_drift", + "ledger_value": 7602.0, + "name": "dwp.uc.households_by_area@E07000139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7621.0, + "kind": "calibration_drift", + "ledger_value": 8491.0, + "name": "dwp.uc.households_by_area@E07000140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9980.0, + "kind": "calibration_drift", + "ledger_value": 11122.0, + "name": "dwp.uc.households_by_area@E07000141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7361.0, + "kind": "calibration_drift", + "ledger_value": 8199.0, + "name": "dwp.uc.households_by_area@E07000142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10017.0, + "kind": "calibration_drift", + "ledger_value": 11151.0, + "name": "dwp.uc.households_by_area@E07000143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7086.0, + "kind": "calibration_drift", + "ledger_value": 7886.0, + "name": "dwp.uc.households_by_area@E07000144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12397.0, + "kind": "calibration_drift", + "ledger_value": 13793.0, + "name": "dwp.uc.households_by_area@E07000145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11452.0, + "kind": "calibration_drift", + "ledger_value": 12754.0, + "name": "dwp.uc.households_by_area@E07000146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6791.0, + "kind": "calibration_drift", + "ledger_value": 7537.0, + "name": "dwp.uc.households_by_area@E07000147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15699.0, + "kind": "calibration_drift", + "ledger_value": 17484.0, + "name": "dwp.uc.households_by_area@E07000148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8112.0, + "kind": "calibration_drift", + "ledger_value": 9011.0, + "name": "dwp.uc.households_by_area@E07000149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12902.0, + "kind": "calibration_drift", + "ledger_value": 14341.0, + "name": "dwp.uc.households_by_area@E07000170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10423.0, + "kind": "calibration_drift", + "ledger_value": 11598.0, + "name": "dwp.uc.households_by_area@E07000171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7607.0, + "kind": "calibration_drift", + "ledger_value": 8462.0, + "name": "dwp.uc.households_by_area@E07000172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8894.0, + "kind": "calibration_drift", + "ledger_value": 9898.0, + "name": "dwp.uc.households_by_area@E07000173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11813.0, + "kind": "calibration_drift", + "ledger_value": 13139.0, + "name": "dwp.uc.households_by_area@E07000174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9572.0, + "kind": "calibration_drift", + "ledger_value": 10647.0, + "name": "dwp.uc.households_by_area@E07000175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5390.0, + "kind": "calibration_drift", + "ledger_value": 5994.0, + "name": "dwp.uc.households_by_area@E07000176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9905.0, + "kind": "calibration_drift", + "ledger_value": 11034.0, + "name": "dwp.uc.households_by_area@E07000177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10507.0, + "kind": "calibration_drift", + "ledger_value": 11693.0, + "name": "dwp.uc.households_by_area@E07000178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6772.0, + "kind": "calibration_drift", + "ledger_value": 7544.0, + "name": "dwp.uc.households_by_area@E07000179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7517.0, + "kind": "calibration_drift", + "ledger_value": 8364.0, + "name": "dwp.uc.households_by_area@E07000180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5828.0, + "kind": "calibration_drift", + "ledger_value": 6479.0, + "name": "dwp.uc.households_by_area@E07000181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8628.0, + "kind": "calibration_drift", + "ledger_value": 9602.0, + "name": "dwp.uc.households_by_area@E07000192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10320.0, + "kind": "calibration_drift", + "ledger_value": 11478.0, + "name": "dwp.uc.households_by_area@E07000193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6444.0, + "kind": "calibration_drift", + "ledger_value": 7164.0, + "name": "dwp.uc.households_by_area@E07000194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9621.0, + "kind": "calibration_drift", + "ledger_value": 10705.0, + "name": "dwp.uc.households_by_area@E07000195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6394.0, + "kind": "calibration_drift", + "ledger_value": 7109.0, + "name": "dwp.uc.households_by_area@E07000196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8601.0, + "kind": "calibration_drift", + "ledger_value": 9561.0, + "name": "dwp.uc.households_by_area@E07000197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5097.0, + "kind": "calibration_drift", + "ledger_value": 5675.0, + "name": "dwp.uc.households_by_area@E07000198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6966.0, + "kind": "calibration_drift", + "ledger_value": 7755.0, + "name": "dwp.uc.households_by_area@E07000199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5472.0, + "kind": "calibration_drift", + "ledger_value": 6097.0, + "name": "dwp.uc.households_by_area@E07000200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14483.0, + "kind": "calibration_drift", + "ledger_value": 16106.0, + "name": "dwp.uc.households_by_area@E07000202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5611.0, + "kind": "calibration_drift", + "ledger_value": 6255.0, + "name": "dwp.uc.households_by_area@E07000203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6127.0, + "kind": "calibration_drift", + "ledger_value": 6829.0, + "name": "dwp.uc.households_by_area@E07000207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3645.0, + "kind": "calibration_drift", + "ledger_value": 4059.0, + "name": "dwp.uc.households_by_area@E07000208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6577.0, + "kind": "calibration_drift", + "ledger_value": 7328.0, + "name": "dwp.uc.households_by_area@E07000209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3753.0, + "kind": "calibration_drift", + "ledger_value": 4179.0, + "name": "dwp.uc.households_by_area@E07000210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7697.0, + "kind": "calibration_drift", + "ledger_value": 8577.0, + "name": "dwp.uc.households_by_area@E07000211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4916.0, + "kind": "calibration_drift", + "ledger_value": 5490.0, + "name": "dwp.uc.households_by_area@E07000212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7136.0, + "kind": "calibration_drift", + "ledger_value": 7967.0, + "name": "dwp.uc.households_by_area@E07000213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4121.0, + "kind": "calibration_drift", + "ledger_value": 4570.0, + "name": "dwp.uc.households_by_area@E07000214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4613.0, + "kind": "calibration_drift", + "ledger_value": 5115.0, + "name": "dwp.uc.households_by_area@E07000215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5160.0, + "kind": "calibration_drift", + "ledger_value": 5753.0, + "name": "dwp.uc.households_by_area@E07000216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5580.0, + "kind": "calibration_drift", + "ledger_value": 6205.0, + "name": "dwp.uc.households_by_area@E07000217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4855.0, + "kind": "calibration_drift", + "ledger_value": 5410.0, + "name": "dwp.uc.households_by_area@E07000218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13386.0, + "kind": "calibration_drift", + "ledger_value": 14899.0, + "name": "dwp.uc.households_by_area@E07000219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8283.0, + "kind": "calibration_drift", + "ledger_value": 9220.0, + "name": "dwp.uc.households_by_area@E07000220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7552.0, + "kind": "calibration_drift", + "ledger_value": 8405.0, + "name": "dwp.uc.households_by_area@E07000221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8444.0, + "kind": "calibration_drift", + "ledger_value": 9394.0, + "name": "dwp.uc.households_by_area@E07000222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4429.0, + "kind": "calibration_drift", + "ledger_value": 4929.0, + "name": "dwp.uc.households_by_area@E07000223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12585.0, + "kind": "calibration_drift", + "ledger_value": 14017.0, + "name": "dwp.uc.households_by_area@E07000224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7849.0, + "kind": "calibration_drift", + "ledger_value": 8730.0, + "name": "dwp.uc.households_by_area@E07000225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11804.0, + "kind": "calibration_drift", + "ledger_value": 13111.0, + "name": "dwp.uc.households_by_area@E07000226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6923.0, + "kind": "calibration_drift", + "ledger_value": 7704.0, + "name": "dwp.uc.households_by_area@E07000227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7390.0, + "kind": "calibration_drift", + "ledger_value": 8238.0, + "name": "dwp.uc.households_by_area@E07000228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8203.0, + "kind": "calibration_drift", + "ledger_value": 9133.0, + "name": "dwp.uc.households_by_area@E07000229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5251.0, + "kind": "calibration_drift", + "ledger_value": 5852.0, + "name": "dwp.uc.households_by_area@E07000234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4903.0, + "kind": "calibration_drift", + "ledger_value": 5469.0, + "name": "dwp.uc.households_by_area@E07000235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7934.0, + "kind": "calibration_drift", + "ledger_value": 8826.0, + "name": "dwp.uc.households_by_area@E07000236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8657.0, + "kind": "calibration_drift", + "ledger_value": 9629.0, + "name": "dwp.uc.households_by_area@E07000237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8448.0, + "kind": "calibration_drift", + "ledger_value": 9404.0, + "name": "dwp.uc.households_by_area@E07000238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8360.0, + "kind": "calibration_drift", + "ledger_value": 9313.0, + "name": "dwp.uc.households_by_area@E07000239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7126.0, + "kind": "calibration_drift", + "ledger_value": 7939.0, + "name": "dwp.uc.households_by_area@E07000240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9130.0, + "kind": "calibration_drift", + "ledger_value": 10172.0, + "name": "dwp.uc.households_by_area@E07000241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7848.0, + "kind": "calibration_drift", + "ledger_value": 8748.0, + "name": "dwp.uc.households_by_area@E07000242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8086.0, + "kind": "calibration_drift", + "ledger_value": 8987.0, + "name": "dwp.uc.households_by_area@E07000243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18204.0, + "kind": "calibration_drift", + "ledger_value": 20273.0, + "name": "dwp.uc.households_by_area@E07000244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11632.0, + "kind": "calibration_drift", + "ledger_value": 12955.0, + "name": "dwp.uc.households_by_area@E07000245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 34911.0, + "kind": "calibration_drift", + "ledger_value": 38854.0, + "name": "dwp.uc.households_by_area@E08000001", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18878.0, + "kind": "calibration_drift", + "ledger_value": 21008.0, + "name": "dwp.uc.households_by_area@E08000002", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 79087.0, + "kind": "calibration_drift", + "ledger_value": 88038.0, + "name": "dwp.uc.households_by_area@E08000003", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 32120.0, + "kind": "calibration_drift", + "ledger_value": 35740.0, + "name": "dwp.uc.households_by_area@E08000004", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 29310.0, + "kind": "calibration_drift", + "ledger_value": 32646.0, + "name": "dwp.uc.households_by_area@E08000005", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 34846.0, + "kind": "calibration_drift", + "ledger_value": 38782.0, + "name": "dwp.uc.households_by_area@E08000006", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 22551.0, + "kind": "calibration_drift", + "ledger_value": 25111.0, + "name": "dwp.uc.households_by_area@E08000007", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 27317.0, + "kind": "calibration_drift", + "ledger_value": 30404.0, + "name": "dwp.uc.households_by_area@E08000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16227.0, + "kind": "calibration_drift", + "ledger_value": 18070.0, + "name": "dwp.uc.households_by_area@E08000009", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 32284.0, + "kind": "calibration_drift", + "ledger_value": 35950.0, + "name": "dwp.uc.households_by_area@E08000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20855.0, + "kind": "calibration_drift", + "ledger_value": 23194.0, + "name": "dwp.uc.households_by_area@E08000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 68118.0, + "kind": "calibration_drift", + "ledger_value": 75842.0, + "name": "dwp.uc.households_by_area@E08000012", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19858.0, + "kind": "calibration_drift", + "ledger_value": 22085.0, + "name": "dwp.uc.households_by_area@E08000013", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 27415.0, + "kind": "calibration_drift", + "ledger_value": 30512.0, + "name": "dwp.uc.households_by_area@E08000014", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 33212.0, + "kind": "calibration_drift", + "ledger_value": 36938.0, + "name": "dwp.uc.households_by_area@E08000015", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 26555.0, + "kind": "calibration_drift", + "ledger_value": 29540.0, + "name": "dwp.uc.households_by_area@E08000016", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 35203.0, + "kind": "calibration_drift", + "ledger_value": 39178.0, + "name": "dwp.uc.households_by_area@E08000017", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 29608.0, + "kind": "calibration_drift", + "ledger_value": 32950.0, + "name": "dwp.uc.households_by_area@E08000018", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 58204.0, + "kind": "calibration_drift", + "ledger_value": 64794.0, + "name": "dwp.uc.households_by_area@E08000019", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 33014.0, + "kind": "calibration_drift", + "ledger_value": 36753.0, + "name": "dwp.uc.households_by_area@E08000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18972.0, + "kind": "calibration_drift", + "ledger_value": 21096.0, + "name": "dwp.uc.households_by_area@E08000022", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18579.0, + "kind": "calibration_drift", + "ledger_value": 20672.0, + "name": "dwp.uc.households_by_area@E08000023", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 33782.0, + "kind": "calibration_drift", + "ledger_value": 37580.0, + "name": "dwp.uc.households_by_area@E08000024", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 175630.0, + "kind": "calibration_drift", + "ledger_value": 195750.0, + "name": "dwp.uc.households_by_area@E08000025", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 39222.0, + "kind": "calibration_drift", + "ledger_value": 43698.0, + "name": "dwp.uc.households_by_area@E08000026", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31961.0, + "kind": "calibration_drift", + "ledger_value": 35551.0, + "name": "dwp.uc.households_by_area@E08000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 44238.0, + "kind": "calibration_drift", + "ledger_value": 49243.0, + "name": "dwp.uc.households_by_area@E08000028", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16640.0, + "kind": "calibration_drift", + "ledger_value": 18511.0, + "name": "dwp.uc.households_by_area@E08000029", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 34954.0, + "kind": "calibration_drift", + "ledger_value": 38900.0, + "name": "dwp.uc.households_by_area@E08000030", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 35164.0, + "kind": "calibration_drift", + "ledger_value": 39143.0, + "name": "dwp.uc.households_by_area@E08000031", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 72117.0, + "kind": "calibration_drift", + "ledger_value": 80247.0, + "name": "dwp.uc.households_by_area@E08000032", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 22061.0, + "kind": "calibration_drift", + "ledger_value": 24541.0, + "name": "dwp.uc.households_by_area@E08000033", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 44619.0, + "kind": "calibration_drift", + "ledger_value": 49638.0, + "name": "dwp.uc.households_by_area@E08000034", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 79644.0, + "kind": "calibration_drift", + "ledger_value": 88666.0, + "name": "dwp.uc.households_by_area@E08000035", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 35430.0, + "kind": "calibration_drift", + "ledger_value": 39423.0, + "name": "dwp.uc.households_by_area@E08000036", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21445.0, + "kind": "calibration_drift", + "ledger_value": 23856.0, + "name": "dwp.uc.households_by_area@E08000037", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 397.0, + "kind": "calibration_drift", + "ledger_value": 440.0, + "name": "dwp.uc.households_by_area@E09000001", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 30899.0, + "kind": "calibration_drift", + "ledger_value": 34385.0, + "name": "dwp.uc.households_by_area@E09000002", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37006.0, + "kind": "calibration_drift", + "ledger_value": 41252.0, + "name": "dwp.uc.households_by_area@E09000003", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18838.0, + "kind": "calibration_drift", + "ledger_value": 20961.0, + "name": "dwp.uc.households_by_area@E09000004", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 45348.0, + "kind": "calibration_drift", + "ledger_value": 50518.0, + "name": "dwp.uc.households_by_area@E09000005", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 22073.0, + "kind": "calibration_drift", + "ledger_value": 24589.0, + "name": "dwp.uc.households_by_area@E09000006", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21679.0, + "kind": "calibration_drift", + "ledger_value": 24179.0, + "name": "dwp.uc.households_by_area@E09000007", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 46551.0, + "kind": "calibration_drift", + "ledger_value": 51866.0, + "name": "dwp.uc.households_by_area@E09000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 42621.0, + "kind": "calibration_drift", + "ledger_value": 47438.0, + "name": "dwp.uc.households_by_area@E09000009", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 45894.0, + "kind": "calibration_drift", + "ledger_value": 51148.0, + "name": "dwp.uc.households_by_area@E09000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 32824.0, + "kind": "calibration_drift", + "ledger_value": 36583.0, + "name": "dwp.uc.households_by_area@E09000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 38243.0, + "kind": "calibration_drift", + "ledger_value": 42594.0, + "name": "dwp.uc.households_by_area@E09000012", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18720.0, + "kind": "calibration_drift", + "ledger_value": 20839.0, + "name": "dwp.uc.households_by_area@E09000013", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37657.0, + "kind": "calibration_drift", + "ledger_value": 41974.0, + "name": "dwp.uc.households_by_area@E09000014", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20817.0, + "kind": "calibration_drift", + "ledger_value": 23219.0, + "name": "dwp.uc.households_by_area@E09000015", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21931.0, + "kind": "calibration_drift", + "ledger_value": 24432.0, + "name": "dwp.uc.households_by_area@E09000016", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 28416.0, + "kind": "calibration_drift", + "ledger_value": 31615.0, + "name": "dwp.uc.households_by_area@E09000017", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31233.0, + "kind": "calibration_drift", + "ledger_value": 34792.0, + "name": "dwp.uc.households_by_area@E09000018", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 27037.0, + "kind": "calibration_drift", + "ledger_value": 30168.0, + "name": "dwp.uc.households_by_area@E09000019", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11285.0, + "kind": "calibration_drift", + "ledger_value": 12588.0, + "name": "dwp.uc.households_by_area@E09000020", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10711.0, + "kind": "calibration_drift", + "ledger_value": 11931.0, + "name": "dwp.uc.households_by_area@E09000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37189.0, + "kind": "calibration_drift", + "ledger_value": 41447.0, + "name": "dwp.uc.households_by_area@E09000022", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 38628.0, + "kind": "calibration_drift", + "ledger_value": 43004.0, + "name": "dwp.uc.households_by_area@E09000023", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17371.0, + "kind": "calibration_drift", + "ledger_value": 19338.0, + "name": "dwp.uc.households_by_area@E09000024", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 47521.0, + "kind": "calibration_drift", + "ledger_value": 52907.0, + "name": "dwp.uc.households_by_area@E09000025", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 28706.0, + "kind": "calibration_drift", + "ledger_value": 32035.0, + "name": "dwp.uc.households_by_area@E09000026", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9528.0, + "kind": "calibration_drift", + "ledger_value": 10595.0, + "name": "dwp.uc.households_by_area@E09000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37030.0, + "kind": "calibration_drift", + "ledger_value": 41287.0, + "name": "dwp.uc.households_by_area@E09000028", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15557.0, + "kind": "calibration_drift", + "ledger_value": 17328.0, + "name": "dwp.uc.households_by_area@E09000029", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 42405.0, + "kind": "calibration_drift", + "ledger_value": 47260.0, + "name": "dwp.uc.households_by_area@E09000030", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 31406.0, + "kind": "calibration_drift", + "ledger_value": 35001.0, + "name": "dwp.uc.households_by_area@E09000031", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25770.0, + "kind": "calibration_drift", + "ledger_value": 28726.0, + "name": "dwp.uc.households_by_area@E09000032", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19956.0, + "kind": "calibration_drift", + "ledger_value": 22253.0, + "name": "dwp.uc.households_by_area@E09000033", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7653.0, + "kind": "calibration_drift", + "ledger_value": 8537.0, + "name": "dwp.uc.households_by_area@E14001063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6580.0, + "kind": "calibration_drift", + "ledger_value": 7349.0, + "name": "dwp.uc.households_by_area@E14001064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4669.0, + "kind": "calibration_drift", + "ledger_value": 5211.0, + "name": "dwp.uc.households_by_area@E14001065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7937.0, + "kind": "calibration_drift", + "ledger_value": 8848.0, + "name": "dwp.uc.households_by_area@E14001066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4543.0, + "kind": "calibration_drift", + "ledger_value": 5063.0, + "name": "dwp.uc.households_by_area@E14001067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9831.0, + "kind": "calibration_drift", + "ledger_value": 10983.0, + "name": "dwp.uc.households_by_area@E14001068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8956.0, + "kind": "calibration_drift", + "ledger_value": 10043.0, + "name": "dwp.uc.households_by_area@E14001069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12996.0, + "kind": "calibration_drift", + "ledger_value": 14518.0, + "name": "dwp.uc.households_by_area@E14001070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8787.0, + "kind": "calibration_drift", + "ledger_value": 9059.0, + "name": "dwp.uc.households_by_area@E14001071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6594.0, + "kind": "calibration_drift", + "ledger_value": 7352.0, + "name": "dwp.uc.households_by_area@E14001072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19320.0, + "kind": "calibration_drift", + "ledger_value": 21547.0, + "name": "dwp.uc.households_by_area@E14001073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11525.0, + "kind": "calibration_drift", + "ledger_value": 12860.0, + "name": "dwp.uc.households_by_area@E14001074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13277.0, + "kind": "calibration_drift", + "ledger_value": 14801.0, + "name": "dwp.uc.households_by_area@E14001075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7452.0, + "kind": "calibration_drift", + "ledger_value": 8307.0, + "name": "dwp.uc.households_by_area@E14001076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10420.0, + "kind": "calibration_drift", + "ledger_value": 11624.0, + "name": "dwp.uc.households_by_area@E14001077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7980.0, + "kind": "calibration_drift", + "ledger_value": 9069.0, + "name": "dwp.uc.households_by_area@E14001078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9657.0, + "kind": "calibration_drift", + "ledger_value": 10770.0, + "name": "dwp.uc.households_by_area@E14001079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5959.0, + "kind": "calibration_drift", + "ledger_value": 6642.0, + "name": "dwp.uc.households_by_area@E14001080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8273.0, + "kind": "calibration_drift", + "ledger_value": 9238.0, + "name": "dwp.uc.households_by_area@E14001081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4447.0, + "kind": "calibration_drift", + "ledger_value": 4968.0, + "name": "dwp.uc.households_by_area@E14001082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7584.0, + "kind": "calibration_drift", + "ledger_value": 8474.0, + "name": "dwp.uc.households_by_area@E14001083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12126.0, + "kind": "calibration_drift", + "ledger_value": 13404.0, + "name": "dwp.uc.households_by_area@E14001084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12293.0, + "kind": "calibration_drift", + "ledger_value": 13623.0, + "name": "dwp.uc.households_by_area@E14001085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18484.0, + "kind": "calibration_drift", + "ledger_value": 20645.0, + "name": "dwp.uc.households_by_area@E14001086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5185.0, + "kind": "calibration_drift", + "ledger_value": 5781.0, + "name": "dwp.uc.households_by_area@E14001087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6348.0, + "kind": "calibration_drift", + "ledger_value": 7080.0, + "name": "dwp.uc.households_by_area@E14001088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7777.0, + "kind": "calibration_drift", + "ledger_value": 8547.0, + "name": "dwp.uc.households_by_area@E14001089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5198.0, + "kind": "calibration_drift", + "ledger_value": 5801.0, + "name": "dwp.uc.households_by_area@E14001090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15145.0, + "kind": "calibration_drift", + "ledger_value": 16874.0, + "name": "dwp.uc.households_by_area@E14001091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14604.0, + "kind": "calibration_drift", + "ledger_value": 16265.0, + "name": "dwp.uc.households_by_area@E14001092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21203.0, + "kind": "calibration_drift", + "ledger_value": 23673.0, + "name": "dwp.uc.households_by_area@E14001093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17707.0, + "kind": "calibration_drift", + "ledger_value": 20055.0, + "name": "dwp.uc.households_by_area@E14001094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21111.0, + "kind": "calibration_drift", + "ledger_value": 23481.0, + "name": "dwp.uc.households_by_area@E14001095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 28570.0, + "kind": "calibration_drift", + "ledger_value": 31610.0, + "name": "dwp.uc.households_by_area@E14001096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15788.0, + "kind": "calibration_drift", + "ledger_value": 17607.0, + "name": "dwp.uc.households_by_area@E14001097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 23027.0, + "kind": "calibration_drift", + "ledger_value": 26181.0, + "name": "dwp.uc.households_by_area@E14001098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12369.0, + "kind": "calibration_drift", + "ledger_value": 13830.0, + "name": "dwp.uc.households_by_area@E14001099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19039.0, + "kind": "calibration_drift", + "ledger_value": 21017.0, + "name": "dwp.uc.households_by_area@E14001100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9730.0, + "kind": "calibration_drift", + "ledger_value": 10845.0, + "name": "dwp.uc.households_by_area@E14001101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16342.0, + "kind": "calibration_drift", + "ledger_value": 18228.0, + "name": "dwp.uc.households_by_area@E14001102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17837.0, + "kind": "calibration_drift", + "ledger_value": 19782.0, + "name": "dwp.uc.households_by_area@E14001103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9290.0, + "kind": "calibration_drift", + "ledger_value": 10359.0, + "name": "dwp.uc.households_by_area@E14001104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18597.0, + "kind": "calibration_drift", + "ledger_value": 20745.0, + "name": "dwp.uc.households_by_area@E14001105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8323.0, + "kind": "calibration_drift", + "ledger_value": 9286.0, + "name": "dwp.uc.households_by_area@E14001106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12538.0, + "kind": "calibration_drift", + "ledger_value": 13978.0, + "name": "dwp.uc.households_by_area@E14001107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9292.0, + "kind": "calibration_drift", + "ledger_value": 10367.0, + "name": "dwp.uc.households_by_area@E14001108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9261.0, + "kind": "calibration_drift", + "ledger_value": 10327.0, + "name": "dwp.uc.households_by_area@E14001109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14374.0, + "kind": "calibration_drift", + "ledger_value": 16060.0, + "name": "dwp.uc.households_by_area@E14001110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18327.0, + "kind": "calibration_drift", + "ledger_value": 20408.0, + "name": "dwp.uc.households_by_area@E14001111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8230.0, + "kind": "calibration_drift", + "ledger_value": 9186.0, + "name": "dwp.uc.households_by_area@E14001112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15114.0, + "kind": "calibration_drift", + "ledger_value": 16846.0, + "name": "dwp.uc.households_by_area@E14001113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13671.0, + "kind": "calibration_drift", + "ledger_value": 15235.0, + "name": "dwp.uc.households_by_area@E14001114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10047.0, + "kind": "calibration_drift", + "ledger_value": 11204.0, + "name": "dwp.uc.households_by_area@E14001115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9923.0, + "kind": "calibration_drift", + "ledger_value": 11065.0, + "name": "dwp.uc.households_by_area@E14001116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6516.0, + "kind": "calibration_drift", + "ledger_value": 7272.0, + "name": "dwp.uc.households_by_area@E14001117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19369.0, + "kind": "calibration_drift", + "ledger_value": 21731.0, + "name": "dwp.uc.households_by_area@E14001118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15963.0, + "kind": "calibration_drift", + "ledger_value": 17794.0, + "name": "dwp.uc.households_by_area@E14001119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20458.0, + "kind": "calibration_drift", + "ledger_value": 22640.0, + "name": "dwp.uc.households_by_area@E14001120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6636.0, + "kind": "calibration_drift", + "ledger_value": 7399.0, + "name": "dwp.uc.households_by_area@E14001121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 21800.0, + "kind": "calibration_drift", + "ledger_value": 24391.0, + "name": "dwp.uc.households_by_area@E14001122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13565.0, + "kind": "calibration_drift", + "ledger_value": 15154.0, + "name": "dwp.uc.households_by_area@E14001123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13453.0, + "kind": "calibration_drift", + "ledger_value": 14978.0, + "name": "dwp.uc.households_by_area@E14001124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5167.0, + "kind": "calibration_drift", + "ledger_value": 5777.0, + "name": "dwp.uc.households_by_area@E14001125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8697.0, + "kind": "calibration_drift", + "ledger_value": 9695.0, + "name": "dwp.uc.households_by_area@E14001126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7521.0, + "kind": "calibration_drift", + "ledger_value": 8352.0, + "name": "dwp.uc.households_by_area@E14001127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5738.0, + "kind": "calibration_drift", + "ledger_value": 6386.0, + "name": "dwp.uc.households_by_area@E14001128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10446.0, + "kind": "calibration_drift", + "ledger_value": 11657.0, + "name": "dwp.uc.households_by_area@E14001129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8655.0, + "kind": "calibration_drift", + "ledger_value": 9671.0, + "name": "dwp.uc.households_by_area@E14001130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5372.0, + "kind": "calibration_drift", + "ledger_value": 6004.0, + "name": "dwp.uc.households_by_area@E14001131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11328.0, + "kind": "calibration_drift", + "ledger_value": 12650.0, + "name": "dwp.uc.households_by_area@E14001132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9494.0, + "kind": "calibration_drift", + "ledger_value": 10628.0, + "name": "dwp.uc.households_by_area@E14001133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8556.0, + "kind": "calibration_drift", + "ledger_value": 9543.0, + "name": "dwp.uc.households_by_area@E14001134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11787.0, + "kind": "calibration_drift", + "ledger_value": 13140.0, + "name": "dwp.uc.households_by_area@E14001135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5301.0, + "kind": "calibration_drift", + "ledger_value": 5905.0, + "name": "dwp.uc.households_by_area@E14001136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5678.0, + "kind": "calibration_drift", + "ledger_value": 6345.0, + "name": "dwp.uc.households_by_area@E14001137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5240.0, + "kind": "calibration_drift", + "ledger_value": 5852.0, + "name": "dwp.uc.households_by_area@E14001138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9108.0, + "kind": "calibration_drift", + "ledger_value": 10179.0, + "name": "dwp.uc.households_by_area@E14001139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6628.0, + "kind": "calibration_drift", + "ledger_value": 7389.0, + "name": "dwp.uc.households_by_area@E14001140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7817.0, + "kind": "calibration_drift", + "ledger_value": 8807.0, + "name": "dwp.uc.households_by_area@E14001141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14719.0, + "kind": "calibration_drift", + "ledger_value": 16413.0, + "name": "dwp.uc.households_by_area@E14001142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9948.0, + "kind": "calibration_drift", + "ledger_value": 11089.0, + "name": "dwp.uc.households_by_area@E14001143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9959.0, + "kind": "calibration_drift", + "ledger_value": 11145.0, + "name": "dwp.uc.households_by_area@E14001144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10835.0, + "kind": "calibration_drift", + "ledger_value": 12044.0, + "name": "dwp.uc.households_by_area@E14001145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6601.0, + "kind": "calibration_drift", + "ledger_value": 7374.0, + "name": "dwp.uc.households_by_area@E14001146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7745.0, + "kind": "calibration_drift", + "ledger_value": 8588.0, + "name": "dwp.uc.households_by_area@E14001147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9031.0, + "kind": "calibration_drift", + "ledger_value": 10065.0, + "name": "dwp.uc.households_by_area@E14001148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6899.0, + "kind": "calibration_drift", + "ledger_value": 7698.0, + "name": "dwp.uc.households_by_area@E14001149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8609.0, + "kind": "calibration_drift", + "ledger_value": 9602.0, + "name": "dwp.uc.households_by_area@E14001150", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8165.0, + "kind": "calibration_drift", + "ledger_value": 9117.0, + "name": "dwp.uc.households_by_area@E14001151", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8394.0, + "kind": "calibration_drift", + "ledger_value": 9369.0, + "name": "dwp.uc.households_by_area@E14001152", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9148.0, + "kind": "calibration_drift", + "ledger_value": 10211.0, + "name": "dwp.uc.households_by_area@E14001153", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5713.0, + "kind": "calibration_drift", + "ledger_value": 6362.0, + "name": "dwp.uc.households_by_area@E14001154", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5755.0, + "kind": "calibration_drift", + "ledger_value": 6423.0, + "name": "dwp.uc.households_by_area@E14001155", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5033.0, + "kind": "calibration_drift", + "ledger_value": 5613.0, + "name": "dwp.uc.households_by_area@E14001156", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10317.0, + "kind": "calibration_drift", + "ledger_value": 11499.0, + "name": "dwp.uc.households_by_area@E14001157", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4071.0, + "kind": "calibration_drift", + "ledger_value": 4545.0, + "name": "dwp.uc.households_by_area@E14001158", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7107.0, + "kind": "calibration_drift", + "ledger_value": 7935.0, + "name": "dwp.uc.households_by_area@E14001159", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9095.0, + "kind": "calibration_drift", + "ledger_value": 10120.0, + "name": "dwp.uc.households_by_area@E14001160", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6315.0, + "kind": "calibration_drift", + "ledger_value": 7044.0, + "name": "dwp.uc.households_by_area@E14001161", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4018.0, + "kind": "calibration_drift", + "ledger_value": 4475.0, + "name": "dwp.uc.households_by_area@E14001162", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6815.0, + "kind": "calibration_drift", + "ledger_value": 7604.0, + "name": "dwp.uc.households_by_area@E14001163", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4386.0, + "kind": "calibration_drift", + "ledger_value": 4807.0, + "name": "dwp.uc.households_by_area@E14001164", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9101.0, + "kind": "calibration_drift", + "ledger_value": 10142.0, + "name": "dwp.uc.households_by_area@E14001165", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7326.0, + "kind": "calibration_drift", + "ledger_value": 8179.0, + "name": "dwp.uc.households_by_area@E14001166", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8924.0, + "kind": "calibration_drift", + "ledger_value": 9973.0, + "name": "dwp.uc.households_by_area@E14001167", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6005.0, + "kind": "calibration_drift", + "ledger_value": 6745.0, + "name": "dwp.uc.households_by_area@E14001168", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8280.0, + "kind": "calibration_drift", + "ledger_value": 9191.0, + "name": "dwp.uc.households_by_area@E14001169", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7745.0, + "kind": "calibration_drift", + "ledger_value": 8649.0, + "name": "dwp.uc.households_by_area@E14001170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4531.0, + "kind": "calibration_drift", + "ledger_value": 5059.0, + "name": "dwp.uc.households_by_area@E14001171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8982.0, + "kind": "calibration_drift", + "ledger_value": 10045.0, + "name": "dwp.uc.households_by_area@E14001172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7221.0, + "kind": "calibration_drift", + "ledger_value": 7998.0, + "name": "dwp.uc.households_by_area@E14001173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10769.0, + "kind": "calibration_drift", + "ledger_value": 11999.0, + "name": "dwp.uc.households_by_area@E14001174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11056.0, + "kind": "calibration_drift", + "ledger_value": 12333.0, + "name": "dwp.uc.households_by_area@E14001175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10074.0, + "kind": "calibration_drift", + "ledger_value": 11231.0, + "name": "dwp.uc.households_by_area@E14001176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6088.0, + "kind": "calibration_drift", + "ledger_value": 6738.0, + "name": "dwp.uc.households_by_area@E14001177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4870.0, + "kind": "calibration_drift", + "ledger_value": 5428.0, + "name": "dwp.uc.households_by_area@E14001178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10192.0, + "kind": "calibration_drift", + "ledger_value": 11368.0, + "name": "dwp.uc.households_by_area@E14001179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17080.0, + "kind": "calibration_drift", + "ledger_value": 19056.0, + "name": "dwp.uc.households_by_area@E14001180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10639.0, + "kind": "calibration_drift", + "ledger_value": 11889.0, + "name": "dwp.uc.households_by_area@E14001181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11420.0, + "kind": "calibration_drift", + "ledger_value": 12757.0, + "name": "dwp.uc.households_by_area@E14001182", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7910.0, + "kind": "calibration_drift", + "ledger_value": 8816.0, + "name": "dwp.uc.households_by_area@E14001183", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11778.0, + "kind": "calibration_drift", + "ledger_value": 13111.0, + "name": "dwp.uc.households_by_area@E14001184", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9861.0, + "kind": "calibration_drift", + "ledger_value": 11072.0, + "name": "dwp.uc.households_by_area@E14001185", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12576.0, + "kind": "calibration_drift", + "ledger_value": 14033.0, + "name": "dwp.uc.households_by_area@E14001186", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7610.0, + "kind": "calibration_drift", + "ledger_value": 8532.0, + "name": "dwp.uc.households_by_area@E14001187", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19233.0, + "kind": "calibration_drift", + "ledger_value": 21443.0, + "name": "dwp.uc.households_by_area@E14001188", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14474.0, + "kind": "calibration_drift", + "ledger_value": 16144.0, + "name": "dwp.uc.households_by_area@E14001189", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10456.0, + "kind": "calibration_drift", + "ledger_value": 11622.0, + "name": "dwp.uc.households_by_area@E14001190", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8632.0, + "kind": "calibration_drift", + "ledger_value": 9618.0, + "name": "dwp.uc.households_by_area@E14001191", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6312.0, + "kind": "calibration_drift", + "ledger_value": 7047.0, + "name": "dwp.uc.households_by_area@E14001192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10596.0, + "kind": "calibration_drift", + "ledger_value": 11823.0, + "name": "dwp.uc.households_by_area@E14001193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17359.0, + "kind": "calibration_drift", + "ledger_value": 19411.0, + "name": "dwp.uc.households_by_area@E14001194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4165.0, + "kind": "calibration_drift", + "ledger_value": 4654.0, + "name": "dwp.uc.households_by_area@E14001195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14432.0, + "kind": "calibration_drift", + "ledger_value": 16029.0, + "name": "dwp.uc.households_by_area@E14001196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6032.0, + "kind": "calibration_drift", + "ledger_value": 6734.0, + "name": "dwp.uc.households_by_area@E14001197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13956.0, + "kind": "calibration_drift", + "ledger_value": 15567.0, + "name": "dwp.uc.households_by_area@E14001198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7551.0, + "kind": "calibration_drift", + "ledger_value": 8414.0, + "name": "dwp.uc.households_by_area@E14001199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11432.0, + "kind": "calibration_drift", + "ledger_value": 12754.0, + "name": "dwp.uc.households_by_area@E14001200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4318.0, + "kind": "calibration_drift", + "ledger_value": 4820.0, + "name": "dwp.uc.households_by_area@E14001201", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9862.0, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "dwp.uc.households_by_area@E14001202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6804.0, + "kind": "calibration_drift", + "ledger_value": 7592.0, + "name": "dwp.uc.households_by_area@E14001203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12250.0, + "kind": "calibration_drift", + "ledger_value": 13688.0, + "name": "dwp.uc.households_by_area@E14001204", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12148.0, + "kind": "calibration_drift", + "ledger_value": 13576.0, + "name": "dwp.uc.households_by_area@E14001205", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8341.0, + "kind": "calibration_drift", + "ledger_value": 9321.0, + "name": "dwp.uc.households_by_area@E14001206", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14893.0, + "kind": "calibration_drift", + "ledger_value": 16568.0, + "name": "dwp.uc.households_by_area@E14001207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16094.0, + "kind": "calibration_drift", + "ledger_value": 17961.0, + "name": "dwp.uc.households_by_area@E14001208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14395.0, + "kind": "calibration_drift", + "ledger_value": 16052.0, + "name": "dwp.uc.households_by_area@E14001209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5793.0, + "kind": "calibration_drift", + "ledger_value": 6441.0, + "name": "dwp.uc.households_by_area@E14001210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13349.0, + "kind": "calibration_drift", + "ledger_value": 14880.0, + "name": "dwp.uc.households_by_area@E14001211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4642.0, + "kind": "calibration_drift", + "ledger_value": 5197.0, + "name": "dwp.uc.households_by_area@E14001212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17361.0, + "kind": "calibration_drift", + "ledger_value": 19413.0, + "name": "dwp.uc.households_by_area@E14001213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4224.0, + "kind": "calibration_drift", + "ledger_value": 4552.0, + "name": "dwp.uc.households_by_area@E14001214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5486.0, + "kind": "calibration_drift", + "ledger_value": 6024.0, + "name": "dwp.uc.households_by_area@E14001215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13837.0, + "kind": "calibration_drift", + "ledger_value": 15450.0, + "name": "dwp.uc.households_by_area@E14001216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5610.0, + "kind": "calibration_drift", + "ledger_value": 6050.0, + "name": "dwp.uc.households_by_area@E14001217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6609.0, + "kind": "calibration_drift", + "ledger_value": 7364.0, + "name": "dwp.uc.households_by_area@E14001218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10415.0, + "kind": "calibration_drift", + "ledger_value": 11627.0, + "name": "dwp.uc.households_by_area@E14001219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5302.0, + "kind": "calibration_drift", + "ledger_value": 5911.0, + "name": "dwp.uc.households_by_area@E14001220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19533.0, + "kind": "calibration_drift", + "ledger_value": 21798.0, + "name": "dwp.uc.households_by_area@E14001221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9344.0, + "kind": "calibration_drift", + "ledger_value": 10418.0, + "name": "dwp.uc.households_by_area@E14001222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10199.0, + "kind": "calibration_drift", + "ledger_value": 11396.0, + "name": "dwp.uc.households_by_area@E14001223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5923.0, + "kind": "calibration_drift", + "ledger_value": 6604.0, + "name": "dwp.uc.households_by_area@E14001224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19029.0, + "kind": "calibration_drift", + "ledger_value": 21237.0, + "name": "dwp.uc.households_by_area@E14001225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6672.0, + "kind": "calibration_drift", + "ledger_value": 7435.0, + "name": "dwp.uc.households_by_area@E14001226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4962.0, + "kind": "calibration_drift", + "ledger_value": 5542.0, + "name": "dwp.uc.households_by_area@E14001227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9093.0, + "kind": "calibration_drift", + "ledger_value": 10138.0, + "name": "dwp.uc.households_by_area@E14001228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17380.0, + "kind": "calibration_drift", + "ledger_value": 19529.0, + "name": "dwp.uc.households_by_area@E14001229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4774.0, + "kind": "calibration_drift", + "ledger_value": 5328.0, + "name": "dwp.uc.households_by_area@E14001230", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7443.0, + "kind": "calibration_drift", + "ledger_value": 8119.0, + "name": "dwp.uc.households_by_area@E14001231", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6711.0, + "kind": "calibration_drift", + "ledger_value": 7662.0, + "name": "dwp.uc.households_by_area@E14001232", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5900.0, + "kind": "calibration_drift", + "ledger_value": 6575.0, + "name": "dwp.uc.households_by_area@E14001233", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4449.0, + "kind": "calibration_drift", + "ledger_value": 4974.0, + "name": "dwp.uc.households_by_area@E14001234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7684.0, + "kind": "calibration_drift", + "ledger_value": 8567.0, + "name": "dwp.uc.households_by_area@E14001235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16023.0, + "kind": "calibration_drift", + "ledger_value": 17941.0, + "name": "dwp.uc.households_by_area@E14001236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5953.0, + "kind": "calibration_drift", + "ledger_value": 7037.0, + "name": "dwp.uc.households_by_area@E14001237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11904.0, + "kind": "calibration_drift", + "ledger_value": 13317.0, + "name": "dwp.uc.households_by_area@E14001238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8553.0, + "kind": "calibration_drift", + "ledger_value": 9549.0, + "name": "dwp.uc.households_by_area@E14001239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6144.0, + "kind": "calibration_drift", + "ledger_value": 6854.0, + "name": "dwp.uc.households_by_area@E14001240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6086.0, + "kind": "calibration_drift", + "ledger_value": 6789.0, + "name": "dwp.uc.households_by_area@E14001241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6285.0, + "kind": "calibration_drift", + "ledger_value": 7007.0, + "name": "dwp.uc.households_by_area@E14001242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7345.0, + "kind": "calibration_drift", + "ledger_value": 8199.0, + "name": "dwp.uc.households_by_area@E14001243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11067.0, + "kind": "calibration_drift", + "ledger_value": 12245.0, + "name": "dwp.uc.households_by_area@E14001244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7926.0, + "kind": "calibration_drift", + "ledger_value": 8837.0, + "name": "dwp.uc.households_by_area@E14001245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9378.0, + "kind": "calibration_drift", + "ledger_value": 10464.0, + "name": "dwp.uc.households_by_area@E14001246", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5835.0, + "kind": "calibration_drift", + "ledger_value": 6513.0, + "name": "dwp.uc.households_by_area@E14001247", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11474.0, + "kind": "calibration_drift", + "ledger_value": 12805.0, + "name": "dwp.uc.households_by_area@E14001248", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4302.0, + "kind": "calibration_drift", + "ledger_value": 4792.0, + "name": "dwp.uc.households_by_area@E14001249", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5340.0, + "kind": "calibration_drift", + "ledger_value": 5987.0, + "name": "dwp.uc.households_by_area@E14001250", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17305.0, + "kind": "calibration_drift", + "ledger_value": 19238.0, + "name": "dwp.uc.households_by_area@E14001251", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7934.0, + "kind": "calibration_drift", + "ledger_value": 8844.0, + "name": "dwp.uc.households_by_area@E14001252", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7393.0, + "kind": "calibration_drift", + "ledger_value": 8254.0, + "name": "dwp.uc.households_by_area@E14001253", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10366.0, + "kind": "calibration_drift", + "ledger_value": 11571.0, + "name": "dwp.uc.households_by_area@E14001254", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15433.0, + "kind": "calibration_drift", + "ledger_value": 17211.0, + "name": "dwp.uc.households_by_area@E14001255", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12370.0, + "kind": "calibration_drift", + "ledger_value": 13793.0, + "name": "dwp.uc.households_by_area@E14001256", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12757.0, + "kind": "calibration_drift", + "ledger_value": 14235.0, + "name": "dwp.uc.households_by_area@E14001257", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4609.0, + "kind": "calibration_drift", + "ledger_value": 5147.0, + "name": "dwp.uc.households_by_area@E14001258", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18021.0, + "kind": "calibration_drift", + "ledger_value": 20102.0, + "name": "dwp.uc.households_by_area@E14001259", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16259.0, + "kind": "calibration_drift", + "ledger_value": 18135.0, + "name": "dwp.uc.households_by_area@E14001260", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9108.0, + "kind": "calibration_drift", + "ledger_value": 10208.0, + "name": "dwp.uc.households_by_area@E14001261", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14271.0, + "kind": "calibration_drift", + "ledger_value": 15953.0, + "name": "dwp.uc.households_by_area@E14001262", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5319.0, + "kind": "calibration_drift", + "ledger_value": 5936.0, + "name": "dwp.uc.households_by_area@E14001263", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11252.0, + "kind": "calibration_drift", + "ledger_value": 12621.0, + "name": "dwp.uc.households_by_area@E14001264", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9822.0, + "kind": "calibration_drift", + "ledger_value": 10977.0, + "name": "dwp.uc.households_by_area@E14001265", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5910.0, + "kind": "calibration_drift", + "ledger_value": 6594.0, + "name": "dwp.uc.households_by_area@E14001266", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10930.0, + "kind": "calibration_drift", + "ledger_value": 12177.0, + "name": "dwp.uc.households_by_area@E14001267", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3291.0, + "kind": "calibration_drift", + "ledger_value": 3683.0, + "name": "dwp.uc.households_by_area@E14001268", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5534.0, + "kind": "calibration_drift", + "ledger_value": 6180.0, + "name": "dwp.uc.households_by_area@E14001269", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8911.0, + "kind": "calibration_drift", + "ledger_value": 10057.0, + "name": "dwp.uc.households_by_area@E14001270", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11588.0, + "kind": "calibration_drift", + "ledger_value": 12949.0, + "name": "dwp.uc.households_by_area@E14001271", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13352.0, + "kind": "calibration_drift", + "ledger_value": 14885.0, + "name": "dwp.uc.households_by_area@E14001272", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6741.0, + "kind": "calibration_drift", + "ledger_value": 7505.0, + "name": "dwp.uc.households_by_area@E14001273", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12507.0, + "kind": "calibration_drift", + "ledger_value": 13956.0, + "name": "dwp.uc.households_by_area@E14001274", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8609.0, + "kind": "calibration_drift", + "ledger_value": 9598.0, + "name": "dwp.uc.households_by_area@E14001275", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15164.0, + "kind": "calibration_drift", + "ledger_value": 16906.0, + "name": "dwp.uc.households_by_area@E14001276", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6492.0, + "kind": "calibration_drift", + "ledger_value": 7246.0, + "name": "dwp.uc.households_by_area@E14001277", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9026.0, + "kind": "calibration_drift", + "ledger_value": 10076.0, + "name": "dwp.uc.households_by_area@E14001278", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14740.0, + "kind": "calibration_drift", + "ledger_value": 16516.0, + "name": "dwp.uc.households_by_area@E14001279", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3817.0, + "kind": "calibration_drift", + "ledger_value": 4257.0, + "name": "dwp.uc.households_by_area@E14001280", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6837.0, + "kind": "calibration_drift", + "ledger_value": 7627.0, + "name": "dwp.uc.households_by_area@E14001281", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8189.0, + "kind": "calibration_drift", + "ledger_value": 9136.0, + "name": "dwp.uc.households_by_area@E14001282", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5798.0, + "kind": "calibration_drift", + "ledger_value": 6472.0, + "name": "dwp.uc.households_by_area@E14001283", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7521.0, + "kind": "calibration_drift", + "ledger_value": 8402.0, + "name": "dwp.uc.households_by_area@E14001284", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5084.0, + "kind": "calibration_drift", + "ledger_value": 5664.0, + "name": "dwp.uc.households_by_area@E14001285", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12808.0, + "kind": "calibration_drift", + "ledger_value": 14290.0, + "name": "dwp.uc.households_by_area@E14001286", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6168.0, + "kind": "calibration_drift", + "ledger_value": 6876.0, + "name": "dwp.uc.households_by_area@E14001287", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6585.0, + "kind": "calibration_drift", + "ledger_value": 7341.0, + "name": "dwp.uc.households_by_area@E14001288", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5504.0, + "kind": "calibration_drift", + "ledger_value": 6137.0, + "name": "dwp.uc.households_by_area@E14001289", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12544.0, + "kind": "calibration_drift", + "ledger_value": 14019.0, + "name": "dwp.uc.households_by_area@E14001290", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4796.0, + "kind": "calibration_drift", + "ledger_value": 5353.0, + "name": "dwp.uc.households_by_area@E14001291", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8081.0, + "kind": "calibration_drift", + "ledger_value": 9027.0, + "name": "dwp.uc.households_by_area@E14001292", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8899.0, + "kind": "calibration_drift", + "ledger_value": 9939.0, + "name": "dwp.uc.households_by_area@E14001293", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5067.0, + "kind": "calibration_drift", + "ledger_value": 5650.0, + "name": "dwp.uc.households_by_area@E14001294", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12450.0, + "kind": "calibration_drift", + "ledger_value": 13881.0, + "name": "dwp.uc.households_by_area@E14001295", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8891.0, + "kind": "calibration_drift", + "ledger_value": 9899.0, + "name": "dwp.uc.households_by_area@E14001296", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14502.0, + "kind": "calibration_drift", + "ledger_value": 16218.0, + "name": "dwp.uc.households_by_area@E14001297", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6130.0, + "kind": "calibration_drift", + "ledger_value": 6850.0, + "name": "dwp.uc.households_by_area@E14001298", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12024.0, + "kind": "calibration_drift", + "ledger_value": 13397.0, + "name": "dwp.uc.households_by_area@E14001299", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10749.0, + "kind": "calibration_drift", + "ledger_value": 12051.0, + "name": "dwp.uc.households_by_area@E14001300", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15207.0, + "kind": "calibration_drift", + "ledger_value": 16974.0, + "name": "dwp.uc.households_by_area@E14001301", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12270.0, + "kind": "calibration_drift", + "ledger_value": 13675.0, + "name": "dwp.uc.households_by_area@E14001302", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6560.0, + "kind": "calibration_drift", + "ledger_value": 7319.0, + "name": "dwp.uc.households_by_area@E14001303", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5796.0, + "kind": "calibration_drift", + "ledger_value": 6471.0, + "name": "dwp.uc.households_by_area@E14001304", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13781.0, + "kind": "calibration_drift", + "ledger_value": 15409.0, + "name": "dwp.uc.households_by_area@E14001305", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14236.0, + "kind": "calibration_drift", + "ledger_value": 15939.0, + "name": "dwp.uc.households_by_area@E14001306", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11732.0, + "kind": "calibration_drift", + "ledger_value": 13175.0, + "name": "dwp.uc.households_by_area@E14001307", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9237.0, + "kind": "calibration_drift", + "ledger_value": 10308.0, + "name": "dwp.uc.households_by_area@E14001308", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4278.0, + "kind": "calibration_drift", + "ledger_value": 4615.0, + "name": "dwp.uc.households_by_area@E14001309", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10826.0, + "kind": "calibration_drift", + "ledger_value": 12105.0, + "name": "dwp.uc.households_by_area@E14001310", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9259.0, + "kind": "calibration_drift", + "ledger_value": 10331.0, + "name": "dwp.uc.households_by_area@E14001311", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7855.0, + "kind": "calibration_drift", + "ledger_value": 8761.0, + "name": "dwp.uc.households_by_area@E14001312", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15147.0, + "kind": "calibration_drift", + "ledger_value": 16754.0, + "name": "dwp.uc.households_by_area@E14001313", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14294.0, + "kind": "calibration_drift", + "ledger_value": 15982.0, + "name": "dwp.uc.households_by_area@E14001314", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11713.0, + "kind": "calibration_drift", + "ledger_value": 13156.0, + "name": "dwp.uc.households_by_area@E14001315", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4696.0, + "kind": "calibration_drift", + "ledger_value": 5176.0, + "name": "dwp.uc.households_by_area@E14001316", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13712.0, + "kind": "calibration_drift", + "ledger_value": 15281.0, + "name": "dwp.uc.households_by_area@E14001317", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6422.0, + "kind": "calibration_drift", + "ledger_value": 7147.0, + "name": "dwp.uc.households_by_area@E14001318", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8443.0, + "kind": "calibration_drift", + "ledger_value": 9630.0, + "name": "dwp.uc.households_by_area@E14001319", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14801.0, + "kind": "calibration_drift", + "ledger_value": 16502.0, + "name": "dwp.uc.households_by_area@E14001320", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7405.0, + "kind": "calibration_drift", + "ledger_value": 8270.0, + "name": "dwp.uc.households_by_area@E14001321", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4567.0, + "kind": "calibration_drift", + "ledger_value": 5101.0, + "name": "dwp.uc.households_by_area@E14001322", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 20817.0, + "kind": "calibration_drift", + "ledger_value": 23095.0, + "name": "dwp.uc.households_by_area@E14001323", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8061.0, + "kind": "calibration_drift", + "ledger_value": 8998.0, + "name": "dwp.uc.households_by_area@E14001324", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11210.0, + "kind": "calibration_drift", + "ledger_value": 12430.0, + "name": "dwp.uc.households_by_area@E14001325", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13035.0, + "kind": "calibration_drift", + "ledger_value": 14565.0, + "name": "dwp.uc.households_by_area@E14001326", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13941.0, + "kind": "calibration_drift", + "ledger_value": 15526.0, + "name": "dwp.uc.households_by_area@E14001327", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17438.0, + "kind": "calibration_drift", + "ledger_value": 19449.0, + "name": "dwp.uc.households_by_area@E14001328", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11640.0, + "kind": "calibration_drift", + "ledger_value": 12966.0, + "name": "dwp.uc.households_by_area@E14001329", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6492.0, + "kind": "calibration_drift", + "ledger_value": 7250.0, + "name": "dwp.uc.households_by_area@E14001330", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16490.0, + "kind": "calibration_drift", + "ledger_value": 18400.0, + "name": "dwp.uc.households_by_area@E14001331", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14618.0, + "kind": "calibration_drift", + "ledger_value": 16312.0, + "name": "dwp.uc.households_by_area@E14001332", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10022.0, + "kind": "calibration_drift", + "ledger_value": 11179.0, + "name": "dwp.uc.households_by_area@E14001333", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11754.0, + "kind": "calibration_drift", + "ledger_value": 13129.0, + "name": "dwp.uc.households_by_area@E14001334", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5706.0, + "kind": "calibration_drift", + "ledger_value": 6359.0, + "name": "dwp.uc.households_by_area@E14001335", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11525.0, + "kind": "calibration_drift", + "ledger_value": 12857.0, + "name": "dwp.uc.households_by_area@E14001336", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9894.0, + "kind": "calibration_drift", + "ledger_value": 11027.0, + "name": "dwp.uc.households_by_area@E14001337", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18969.0, + "kind": "calibration_drift", + "ledger_value": 21300.0, + "name": "dwp.uc.households_by_area@E14001338", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15861.0, + "kind": "calibration_drift", + "ledger_value": 17716.0, + "name": "dwp.uc.households_by_area@E14001339", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12547.0, + "kind": "calibration_drift", + "ledger_value": 13918.0, + "name": "dwp.uc.households_by_area@E14001340", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13671.0, + "kind": "calibration_drift", + "ledger_value": 15196.0, + "name": "dwp.uc.households_by_area@E14001341", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6937.0, + "kind": "calibration_drift", + "ledger_value": 7724.0, + "name": "dwp.uc.households_by_area@E14001342", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7569.0, + "kind": "calibration_drift", + "ledger_value": 8435.0, + "name": "dwp.uc.households_by_area@E14001343", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9906.0, + "kind": "calibration_drift", + "ledger_value": 11033.0, + "name": "dwp.uc.households_by_area@E14001344", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11521.0, + "kind": "calibration_drift", + "ledger_value": 12852.0, + "name": "dwp.uc.households_by_area@E14001345", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15646.0, + "kind": "calibration_drift", + "ledger_value": 17447.0, + "name": "dwp.uc.households_by_area@E14001346", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5327.0, + "kind": "calibration_drift", + "ledger_value": 5935.0, + "name": "dwp.uc.households_by_area@E14001347", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4779.0, + "kind": "calibration_drift", + "ledger_value": 5332.0, + "name": "dwp.uc.households_by_area@E14001348", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8238.0, + "kind": "calibration_drift", + "ledger_value": 9210.0, + "name": "dwp.uc.households_by_area@E14001349", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8572.0, + "kind": "calibration_drift", + "ledger_value": 9557.0, + "name": "dwp.uc.households_by_area@E14001350", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5433.0, + "kind": "calibration_drift", + "ledger_value": 6073.0, + "name": "dwp.uc.households_by_area@E14001351", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16476.0, + "kind": "calibration_drift", + "ledger_value": 18481.0, + "name": "dwp.uc.households_by_area@E14001352", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15429.0, + "kind": "calibration_drift", + "ledger_value": 17296.0, + "name": "dwp.uc.households_by_area@E14001353", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7072.0, + "kind": "calibration_drift", + "ledger_value": 7907.0, + "name": "dwp.uc.households_by_area@E14001354", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11296.0, + "kind": "calibration_drift", + "ledger_value": 12562.0, + "name": "dwp.uc.households_by_area@E14001355", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5541.0, + "kind": "calibration_drift", + "ledger_value": 6160.0, + "name": "dwp.uc.households_by_area@E14001356", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6261.0, + "kind": "calibration_drift", + "ledger_value": 6997.0, + "name": "dwp.uc.households_by_area@E14001357", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8799.0, + "kind": "calibration_drift", + "ledger_value": 9698.0, + "name": "dwp.uc.households_by_area@E14001358", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5059.0, + "kind": "calibration_drift", + "ledger_value": 5656.0, + "name": "dwp.uc.households_by_area@E14001359", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3263.0, + "kind": "calibration_drift", + "ledger_value": 4383.0, + "name": "dwp.uc.households_by_area@E14001360", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8082.0, + "kind": "calibration_drift", + "ledger_value": 9021.0, + "name": "dwp.uc.households_by_area@E14001361", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4402.0, + "kind": "calibration_drift", + "ledger_value": 4916.0, + "name": "dwp.uc.households_by_area@E14001362", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5107.0, + "kind": "calibration_drift", + "ledger_value": 5688.0, + "name": "dwp.uc.households_by_area@E14001363", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5443.0, + "kind": "calibration_drift", + "ledger_value": 6079.0, + "name": "dwp.uc.households_by_area@E14001364", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5861.0, + "kind": "calibration_drift", + "ledger_value": 6547.0, + "name": "dwp.uc.households_by_area@E14001365", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4661.0, + "kind": "calibration_drift", + "ledger_value": 5201.0, + "name": "dwp.uc.households_by_area@E14001366", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18152.0, + "kind": "calibration_drift", + "ledger_value": 20137.0, + "name": "dwp.uc.households_by_area@E14001367", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9651.0, + "kind": "calibration_drift", + "ledger_value": 10885.0, + "name": "dwp.uc.households_by_area@E14001368", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12124.0, + "kind": "calibration_drift", + "ledger_value": 13364.0, + "name": "dwp.uc.households_by_area@E14001369", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7626.0, + "kind": "calibration_drift", + "ledger_value": 8650.0, + "name": "dwp.uc.households_by_area@E14001370", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12820.0, + "kind": "calibration_drift", + "ledger_value": 14288.0, + "name": "dwp.uc.households_by_area@E14001371", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7871.0, + "kind": "calibration_drift", + "ledger_value": 8773.0, + "name": "dwp.uc.households_by_area@E14001372", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5211.0, + "kind": "calibration_drift", + "ledger_value": 5823.0, + "name": "dwp.uc.households_by_area@E14001373", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4234.0, + "kind": "calibration_drift", + "ledger_value": 4731.0, + "name": "dwp.uc.households_by_area@E14001374", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7186.0, + "kind": "calibration_drift", + "ledger_value": 7996.0, + "name": "dwp.uc.households_by_area@E14001375", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5791.0, + "kind": "calibration_drift", + "ledger_value": 6450.0, + "name": "dwp.uc.households_by_area@E14001376", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17605.0, + "kind": "calibration_drift", + "ledger_value": 19644.0, + "name": "dwp.uc.households_by_area@E14001377", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14912.0, + "kind": "calibration_drift", + "ledger_value": 16651.0, + "name": "dwp.uc.households_by_area@E14001378", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6322.0, + "kind": "calibration_drift", + "ledger_value": 7033.0, + "name": "dwp.uc.households_by_area@E14001379", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7547.0, + "kind": "calibration_drift", + "ledger_value": 8416.0, + "name": "dwp.uc.households_by_area@E14001380", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6360.0, + "kind": "calibration_drift", + "ledger_value": 7077.0, + "name": "dwp.uc.households_by_area@E14001381", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10733.0, + "kind": "calibration_drift", + "ledger_value": 12015.0, + "name": "dwp.uc.households_by_area@E14001382", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10522.0, + "kind": "calibration_drift", + "ledger_value": 11747.0, + "name": "dwp.uc.households_by_area@E14001383", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5965.0, + "kind": "calibration_drift", + "ledger_value": 6756.0, + "name": "dwp.uc.households_by_area@E14001384", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7820.0, + "kind": "calibration_drift", + "ledger_value": 8722.0, + "name": "dwp.uc.households_by_area@E14001385", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4854.0, + "kind": "calibration_drift", + "ledger_value": 5421.0, + "name": "dwp.uc.households_by_area@E14001386", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7443.0, + "kind": "calibration_drift", + "ledger_value": 8337.0, + "name": "dwp.uc.households_by_area@E14001387", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5098.0, + "kind": "calibration_drift", + "ledger_value": 5675.0, + "name": "dwp.uc.households_by_area@E14001388", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9688.0, + "kind": "calibration_drift", + "ledger_value": 10809.0, + "name": "dwp.uc.households_by_area@E14001389", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9169.0, + "kind": "calibration_drift", + "ledger_value": 10225.0, + "name": "dwp.uc.households_by_area@E14001390", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6655.0, + "kind": "calibration_drift", + "ledger_value": 7429.0, + "name": "dwp.uc.households_by_area@E14001391", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3721.0, + "kind": "calibration_drift", + "ledger_value": 4148.0, + "name": "dwp.uc.households_by_area@E14001392", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6143.0, + "kind": "calibration_drift", + "ledger_value": 6843.0, + "name": "dwp.uc.households_by_area@E14001393", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4935.0, + "kind": "calibration_drift", + "ledger_value": 5500.0, + "name": "dwp.uc.households_by_area@E14001394", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5085.0, + "kind": "calibration_drift", + "ledger_value": 5676.0, + "name": "dwp.uc.households_by_area@E14001395", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5621.0, + "kind": "calibration_drift", + "ledger_value": 6256.0, + "name": "dwp.uc.households_by_area@E14001396", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6001.0, + "kind": "calibration_drift", + "ledger_value": 6692.0, + "name": "dwp.uc.households_by_area@E14001397", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6711.0, + "kind": "calibration_drift", + "ledger_value": 7481.0, + "name": "dwp.uc.households_by_area@E14001398", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4015.0, + "kind": "calibration_drift", + "ledger_value": 4477.0, + "name": "dwp.uc.households_by_area@E14001399", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7957.0, + "kind": "calibration_drift", + "ledger_value": 8873.0, + "name": "dwp.uc.households_by_area@E14001400", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10073.0, + "kind": "calibration_drift", + "ledger_value": 11282.0, + "name": "dwp.uc.households_by_area@E14001401", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5326.0, + "kind": "calibration_drift", + "ledger_value": 5956.0, + "name": "dwp.uc.households_by_area@E14001402", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6927.0, + "kind": "calibration_drift", + "ledger_value": 7736.0, + "name": "dwp.uc.households_by_area@E14001403", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6870.0, + "kind": "calibration_drift", + "ledger_value": 7653.0, + "name": "dwp.uc.households_by_area@E14001404", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8314.0, + "kind": "calibration_drift", + "ledger_value": 9284.0, + "name": "dwp.uc.households_by_area@E14001405", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14411.0, + "kind": "calibration_drift", + "ledger_value": 16045.0, + "name": "dwp.uc.households_by_area@E14001406", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8261.0, + "kind": "calibration_drift", + "ledger_value": 9205.0, + "name": "dwp.uc.households_by_area@E14001407", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8556.0, + "kind": "calibration_drift", + "ledger_value": 9550.0, + "name": "dwp.uc.households_by_area@E14001408", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10410.0, + "kind": "calibration_drift", + "ledger_value": 11621.0, + "name": "dwp.uc.households_by_area@E14001409", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16637.0, + "kind": "calibration_drift", + "ledger_value": 18561.0, + "name": "dwp.uc.households_by_area@E14001410", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16111.0, + "kind": "calibration_drift", + "ledger_value": 17952.0, + "name": "dwp.uc.households_by_area@E14001411", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11177.0, + "kind": "calibration_drift", + "ledger_value": 12450.0, + "name": "dwp.uc.households_by_area@E14001412", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9885.0, + "kind": "calibration_drift", + "ledger_value": 11034.0, + "name": "dwp.uc.households_by_area@E14001413", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5374.0, + "kind": "calibration_drift", + "ledger_value": 5991.0, + "name": "dwp.uc.households_by_area@E14001414", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13850.0, + "kind": "calibration_drift", + "ledger_value": 15292.0, + "name": "dwp.uc.households_by_area@E14001415", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15820.0, + "kind": "calibration_drift", + "ledger_value": 17802.0, + "name": "dwp.uc.households_by_area@E14001416", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6833.0, + "kind": "calibration_drift", + "ledger_value": 7611.0, + "name": "dwp.uc.households_by_area@E14001417", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5795.0, + "kind": "calibration_drift", + "ledger_value": 6470.0, + "name": "dwp.uc.households_by_area@E14001418", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9156.0, + "kind": "calibration_drift", + "ledger_value": 10211.0, + "name": "dwp.uc.households_by_area@E14001419", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4341.0, + "kind": "calibration_drift", + "ledger_value": 4841.0, + "name": "dwp.uc.households_by_area@E14001420", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15419.0, + "kind": "calibration_drift", + "ledger_value": 17387.0, + "name": "dwp.uc.households_by_area@E14001421", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11048.0, + "kind": "calibration_drift", + "ledger_value": 12342.0, + "name": "dwp.uc.households_by_area@E14001422", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5428.0, + "kind": "calibration_drift", + "ledger_value": 6042.0, + "name": "dwp.uc.households_by_area@E14001423", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5786.0, + "kind": "calibration_drift", + "ledger_value": 6451.0, + "name": "dwp.uc.households_by_area@E14001424", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17509.0, + "kind": "calibration_drift", + "ledger_value": 19527.0, + "name": "dwp.uc.households_by_area@E14001425", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10341.0, + "kind": "calibration_drift", + "ledger_value": 11522.0, + "name": "dwp.uc.households_by_area@E14001426", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13131.0, + "kind": "calibration_drift", + "ledger_value": 14660.0, + "name": "dwp.uc.households_by_area@E14001427", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10995.0, + "kind": "calibration_drift", + "ledger_value": 12249.0, + "name": "dwp.uc.households_by_area@E14001428", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7261.0, + "kind": "calibration_drift", + "ledger_value": 8109.0, + "name": "dwp.uc.households_by_area@E14001429", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17835.0, + "kind": "calibration_drift", + "ledger_value": 19688.0, + "name": "dwp.uc.households_by_area@E14001430", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9283.0, + "kind": "calibration_drift", + "ledger_value": 10355.0, + "name": "dwp.uc.households_by_area@E14001431", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12318.0, + "kind": "calibration_drift", + "ledger_value": 13741.0, + "name": "dwp.uc.households_by_area@E14001432", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15256.0, + "kind": "calibration_drift", + "ledger_value": 17020.0, + "name": "dwp.uc.households_by_area@E14001433", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9108.0, + "kind": "calibration_drift", + "ledger_value": 10181.0, + "name": "dwp.uc.households_by_area@E14001434", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17911.0, + "kind": "calibration_drift", + "ledger_value": 19844.0, + "name": "dwp.uc.households_by_area@E14001435", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10395.0, + "kind": "calibration_drift", + "ledger_value": 11587.0, + "name": "dwp.uc.households_by_area@E14001436", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4576.0, + "kind": "calibration_drift", + "ledger_value": 5098.0, + "name": "dwp.uc.households_by_area@E14001437", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9531.0, + "kind": "calibration_drift", + "ledger_value": 10648.0, + "name": "dwp.uc.households_by_area@E14001438", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5589.0, + "kind": "calibration_drift", + "ledger_value": 6237.0, + "name": "dwp.uc.households_by_area@E14001439", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11234.0, + "kind": "calibration_drift", + "ledger_value": 12526.0, + "name": "dwp.uc.households_by_area@E14001440", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8455.0, + "kind": "calibration_drift", + "ledger_value": 9425.0, + "name": "dwp.uc.households_by_area@E14001441", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4963.0, + "kind": "calibration_drift", + "ledger_value": 5631.0, + "name": "dwp.uc.households_by_area@E14001442", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5251.0, + "kind": "calibration_drift", + "ledger_value": 5850.0, + "name": "dwp.uc.households_by_area@E14001443", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4930.0, + "kind": "calibration_drift", + "ledger_value": 5502.0, + "name": "dwp.uc.households_by_area@E14001444", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5304.0, + "kind": "calibration_drift", + "ledger_value": 5914.0, + "name": "dwp.uc.households_by_area@E14001445", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14350.0, + "kind": "calibration_drift", + "ledger_value": 16027.0, + "name": "dwp.uc.households_by_area@E14001446", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9308.0, + "kind": "calibration_drift", + "ledger_value": 10383.0, + "name": "dwp.uc.households_by_area@E14001447", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9292.0, + "kind": "calibration_drift", + "ledger_value": 10371.0, + "name": "dwp.uc.households_by_area@E14001448", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4995.0, + "kind": "calibration_drift", + "ledger_value": 5581.0, + "name": "dwp.uc.households_by_area@E14001449", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9430.0, + "kind": "calibration_drift", + "ledger_value": 10510.0, + "name": "dwp.uc.households_by_area@E14001450", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7532.0, + "kind": "calibration_drift", + "ledger_value": 8281.0, + "name": "dwp.uc.households_by_area@E14001451", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15140.0, + "kind": "calibration_drift", + "ledger_value": 17004.0, + "name": "dwp.uc.households_by_area@E14001452", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7976.0, + "kind": "calibration_drift", + "ledger_value": 9038.0, + "name": "dwp.uc.households_by_area@E14001453", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5119.0, + "kind": "calibration_drift", + "ledger_value": 5716.0, + "name": "dwp.uc.households_by_area@E14001454", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9726.0, + "kind": "calibration_drift", + "ledger_value": 10840.0, + "name": "dwp.uc.households_by_area@E14001455", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5595.0, + "kind": "calibration_drift", + "ledger_value": 6299.0, + "name": "dwp.uc.households_by_area@E14001456", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4501.0, + "kind": "calibration_drift", + "ledger_value": 5030.0, + "name": "dwp.uc.households_by_area@E14001457", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4528.0, + "kind": "calibration_drift", + "ledger_value": 5060.0, + "name": "dwp.uc.households_by_area@E14001458", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16634.0, + "kind": "calibration_drift", + "ledger_value": 18554.0, + "name": "dwp.uc.households_by_area@E14001459", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5641.0, + "kind": "calibration_drift", + "ledger_value": 6287.0, + "name": "dwp.uc.households_by_area@E14001460", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8989.0, + "kind": "calibration_drift", + "ledger_value": 10018.0, + "name": "dwp.uc.households_by_area@E14001461", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11250.0, + "kind": "calibration_drift", + "ledger_value": 12540.0, + "name": "dwp.uc.households_by_area@E14001462", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4793.0, + "kind": "calibration_drift", + "ledger_value": 5350.0, + "name": "dwp.uc.households_by_area@E14001463", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6263.0, + "kind": "calibration_drift", + "ledger_value": 6987.0, + "name": "dwp.uc.households_by_area@E14001464", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4995.0, + "kind": "calibration_drift", + "ledger_value": 5568.0, + "name": "dwp.uc.households_by_area@E14001465", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18083.0, + "kind": "calibration_drift", + "ledger_value": 20110.0, + "name": "dwp.uc.households_by_area@E14001466", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6953.0, + "kind": "calibration_drift", + "ledger_value": 7892.0, + "name": "dwp.uc.households_by_area@E14001467", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3016.0, + "kind": "calibration_drift", + "ledger_value": 3367.0, + "name": "dwp.uc.households_by_area@E14001468", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14182.0, + "kind": "calibration_drift", + "ledger_value": 15767.0, + "name": "dwp.uc.households_by_area@E14001469", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12103.0, + "kind": "calibration_drift", + "ledger_value": 13503.0, + "name": "dwp.uc.households_by_area@E14001470", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8468.0, + "kind": "calibration_drift", + "ledger_value": 9437.0, + "name": "dwp.uc.households_by_area@E14001471", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6936.0, + "kind": "calibration_drift", + "ledger_value": 7777.0, + "name": "dwp.uc.households_by_area@E14001472", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6757.0, + "kind": "calibration_drift", + "ledger_value": 7529.0, + "name": "dwp.uc.households_by_area@E14001473", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11480.0, + "kind": "calibration_drift", + "ledger_value": 12803.0, + "name": "dwp.uc.households_by_area@E14001474", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4596.0, + "kind": "calibration_drift", + "ledger_value": 5132.0, + "name": "dwp.uc.households_by_area@E14001475", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5714.0, + "kind": "calibration_drift", + "ledger_value": 6361.0, + "name": "dwp.uc.households_by_area@E14001476", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14300.0, + "kind": "calibration_drift", + "ledger_value": 15951.0, + "name": "dwp.uc.households_by_area@E14001477", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14723.0, + "kind": "calibration_drift", + "ledger_value": 16390.0, + "name": "dwp.uc.households_by_area@E14001478", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4814.0, + "kind": "calibration_drift", + "ledger_value": 5482.0, + "name": "dwp.uc.households_by_area@E14001479", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9188.0, + "kind": "calibration_drift", + "ledger_value": 10248.0, + "name": "dwp.uc.households_by_area@E14001480", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4592.0, + "kind": "calibration_drift", + "ledger_value": 5127.0, + "name": "dwp.uc.households_by_area@E14001481", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4280.0, + "kind": "calibration_drift", + "ledger_value": 4761.0, + "name": "dwp.uc.households_by_area@E14001482", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6816.0, + "kind": "calibration_drift", + "ledger_value": 7595.0, + "name": "dwp.uc.households_by_area@E14001483", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6199.0, + "kind": "calibration_drift", + "ledger_value": 6897.0, + "name": "dwp.uc.households_by_area@E14001484", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7929.0, + "kind": "calibration_drift", + "ledger_value": 8836.0, + "name": "dwp.uc.households_by_area@E14001485", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6737.0, + "kind": "calibration_drift", + "ledger_value": 7516.0, + "name": "dwp.uc.households_by_area@E14001486", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8430.0, + "kind": "calibration_drift", + "ledger_value": 9408.0, + "name": "dwp.uc.households_by_area@E14001487", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5375.0, + "kind": "calibration_drift", + "ledger_value": 5995.0, + "name": "dwp.uc.households_by_area@E14001488", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5259.0, + "kind": "calibration_drift", + "ledger_value": 5856.0, + "name": "dwp.uc.households_by_area@E14001489", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4372.0, + "kind": "calibration_drift", + "ledger_value": 4886.0, + "name": "dwp.uc.households_by_area@E14001490", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5831.0, + "kind": "calibration_drift", + "ledger_value": 6507.0, + "name": "dwp.uc.households_by_area@E14001491", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11259.0, + "kind": "calibration_drift", + "ledger_value": 12539.0, + "name": "dwp.uc.households_by_area@E14001492", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4985.0, + "kind": "calibration_drift", + "ledger_value": 5568.0, + "name": "dwp.uc.households_by_area@E14001493", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5460.0, + "kind": "calibration_drift", + "ledger_value": 6097.0, + "name": "dwp.uc.households_by_area@E14001494", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4774.0, + "kind": "calibration_drift", + "ledger_value": 5324.0, + "name": "dwp.uc.households_by_area@E14001495", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5180.0, + "kind": "calibration_drift", + "ledger_value": 5791.0, + "name": "dwp.uc.households_by_area@E14001496", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7516.0, + "kind": "calibration_drift", + "ledger_value": 8373.0, + "name": "dwp.uc.households_by_area@E14001497", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7153.0, + "kind": "calibration_drift", + "ledger_value": 7998.0, + "name": "dwp.uc.households_by_area@E14001498", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11429.0, + "kind": "calibration_drift", + "ledger_value": 12761.0, + "name": "dwp.uc.households_by_area@E14001499", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12271.0, + "kind": "calibration_drift", + "ledger_value": 13685.0, + "name": "dwp.uc.households_by_area@E14001500", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12191.0, + "kind": "calibration_drift", + "ledger_value": 13594.0, + "name": "dwp.uc.households_by_area@E14001501", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7725.0, + "kind": "calibration_drift", + "ledger_value": 8618.0, + "name": "dwp.uc.households_by_area@E14001502", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15915.0, + "kind": "calibration_drift", + "ledger_value": 17798.0, + "name": "dwp.uc.households_by_area@E14001503", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8047.0, + "kind": "calibration_drift", + "ledger_value": 8978.0, + "name": "dwp.uc.households_by_area@E14001504", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7121.0, + "kind": "calibration_drift", + "ledger_value": 7967.0, + "name": "dwp.uc.households_by_area@E14001505", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8338.0, + "kind": "calibration_drift", + "ledger_value": 9355.0, + "name": "dwp.uc.households_by_area@E14001506", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5572.0, + "kind": "calibration_drift", + "ledger_value": 6216.0, + "name": "dwp.uc.households_by_area@E14001507", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9158.0, + "kind": "calibration_drift", + "ledger_value": 10212.0, + "name": "dwp.uc.households_by_area@E14001508", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10274.0, + "kind": "calibration_drift", + "ledger_value": 11418.0, + "name": "dwp.uc.households_by_area@E14001509", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10893.0, + "kind": "calibration_drift", + "ledger_value": 12182.0, + "name": "dwp.uc.households_by_area@E14001510", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6974.0, + "kind": "calibration_drift", + "ledger_value": 7779.0, + "name": "dwp.uc.households_by_area@E14001511", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5937.0, + "kind": "calibration_drift", + "ledger_value": 6627.0, + "name": "dwp.uc.households_by_area@E14001512", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6553.0, + "kind": "calibration_drift", + "ledger_value": 7304.0, + "name": "dwp.uc.households_by_area@E14001513", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4630.0, + "kind": "calibration_drift", + "ledger_value": 5166.0, + "name": "dwp.uc.households_by_area@E14001514", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10800.0, + "kind": "calibration_drift", + "ledger_value": 12038.0, + "name": "dwp.uc.households_by_area@E14001515", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8553.0, + "kind": "calibration_drift", + "ledger_value": 9524.0, + "name": "dwp.uc.households_by_area@E14001516", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11940.0, + "kind": "calibration_drift", + "ledger_value": 13317.0, + "name": "dwp.uc.households_by_area@E14001517", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13049.0, + "kind": "calibration_drift", + "ledger_value": 14563.0, + "name": "dwp.uc.households_by_area@E14001518", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4719.0, + "kind": "calibration_drift", + "ledger_value": 5284.0, + "name": "dwp.uc.households_by_area@E14001519", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15143.0, + "kind": "calibration_drift", + "ledger_value": 16791.0, + "name": "dwp.uc.households_by_area@E14001520", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11500.0, + "kind": "calibration_drift", + "ledger_value": 12931.0, + "name": "dwp.uc.households_by_area@E14001521", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7913.0, + "kind": "calibration_drift", + "ledger_value": 8825.0, + "name": "dwp.uc.households_by_area@E14001522", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5254.0, + "kind": "calibration_drift", + "ledger_value": 5856.0, + "name": "dwp.uc.households_by_area@E14001523", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9139.0, + "kind": "calibration_drift", + "ledger_value": 10149.0, + "name": "dwp.uc.households_by_area@E14001524", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16120.0, + "kind": "calibration_drift", + "ledger_value": 18213.0, + "name": "dwp.uc.households_by_area@E14001525", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5390.0, + "kind": "calibration_drift", + "ledger_value": 6011.0, + "name": "dwp.uc.households_by_area@E14001526", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14225.0, + "kind": "calibration_drift", + "ledger_value": 15886.0, + "name": "dwp.uc.households_by_area@E14001527", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9926.0, + "kind": "calibration_drift", + "ledger_value": 11079.0, + "name": "dwp.uc.households_by_area@E14001528", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5491.0, + "kind": "calibration_drift", + "ledger_value": 6121.0, + "name": "dwp.uc.households_by_area@E14001529", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5569.0, + "kind": "calibration_drift", + "ledger_value": 6240.0, + "name": "dwp.uc.households_by_area@E14001530", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11626.0, + "kind": "calibration_drift", + "ledger_value": 12964.0, + "name": "dwp.uc.households_by_area@E14001531", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4368.0, + "kind": "calibration_drift", + "ledger_value": 4858.0, + "name": "dwp.uc.households_by_area@E14001532", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4775.0, + "kind": "calibration_drift", + "ledger_value": 5338.0, + "name": "dwp.uc.households_by_area@E14001533", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6376.0, + "kind": "calibration_drift", + "ledger_value": 7115.0, + "name": "dwp.uc.households_by_area@E14001534", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4810.0, + "kind": "calibration_drift", + "ledger_value": 5367.0, + "name": "dwp.uc.households_by_area@E14001535", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8264.0, + "kind": "calibration_drift", + "ledger_value": 9213.0, + "name": "dwp.uc.households_by_area@E14001536", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9926.0, + "kind": "calibration_drift", + "ledger_value": 11293.0, + "name": "dwp.uc.households_by_area@E14001537", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8024.0, + "kind": "calibration_drift", + "ledger_value": 8943.0, + "name": "dwp.uc.households_by_area@E14001538", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4444.0, + "kind": "calibration_drift", + "ledger_value": 4965.0, + "name": "dwp.uc.households_by_area@E14001539", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7659.0, + "kind": "calibration_drift", + "ledger_value": 8541.0, + "name": "dwp.uc.households_by_area@E14001540", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12412.0, + "kind": "calibration_drift", + "ledger_value": 13834.0, + "name": "dwp.uc.households_by_area@E14001541", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5789.0, + "kind": "calibration_drift", + "ledger_value": 6467.0, + "name": "dwp.uc.households_by_area@E14001542", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7805.0, + "kind": "calibration_drift", + "ledger_value": 8735.0, + "name": "dwp.uc.households_by_area@E14001543", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5585.0, + "kind": "calibration_drift", + "ledger_value": 6221.0, + "name": "dwp.uc.households_by_area@E14001544", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5927.0, + "kind": "calibration_drift", + "ledger_value": 6206.0, + "name": "dwp.uc.households_by_area@E14001545", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12209.0, + "kind": "calibration_drift", + "ledger_value": 13626.0, + "name": "dwp.uc.households_by_area@E14001546", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15888.0, + "kind": "calibration_drift", + "ledger_value": 17731.0, + "name": "dwp.uc.households_by_area@E14001547", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6233.0, + "kind": "calibration_drift", + "ledger_value": 6952.0, + "name": "dwp.uc.households_by_area@E14001548", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5202.0, + "kind": "calibration_drift", + "ledger_value": 5802.0, + "name": "dwp.uc.households_by_area@E14001549", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8335.0, + "kind": "calibration_drift", + "ledger_value": 9308.0, + "name": "dwp.uc.households_by_area@E14001550", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10618.0, + "kind": "calibration_drift", + "ledger_value": 11853.0, + "name": "dwp.uc.households_by_area@E14001551", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6548.0, + "kind": "calibration_drift", + "ledger_value": 7306.0, + "name": "dwp.uc.households_by_area@E14001552", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 24107.0, + "kind": "calibration_drift", + "ledger_value": 26934.0, + "name": "dwp.uc.households_by_area@E14001553", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6424.0, + "kind": "calibration_drift", + "ledger_value": 7171.0, + "name": "dwp.uc.households_by_area@E14001554", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6094.0, + "kind": "calibration_drift", + "ledger_value": 6800.0, + "name": "dwp.uc.households_by_area@E14001555", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5406.0, + "kind": "calibration_drift", + "ledger_value": 6023.0, + "name": "dwp.uc.households_by_area@E14001556", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7592.0, + "kind": "calibration_drift", + "ledger_value": 8455.0, + "name": "dwp.uc.households_by_area@E14001557", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9818.0, + "kind": "calibration_drift", + "ledger_value": 10938.0, + "name": "dwp.uc.households_by_area@E14001558", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13361.0, + "kind": "calibration_drift", + "ledger_value": 14890.0, + "name": "dwp.uc.households_by_area@E14001559", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10633.0, + "kind": "calibration_drift", + "ledger_value": 11849.0, + "name": "dwp.uc.households_by_area@E14001560", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11260.0, + "kind": "calibration_drift", + "ledger_value": 12607.0, + "name": "dwp.uc.households_by_area@E14001561", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18524.0, + "kind": "calibration_drift", + "ledger_value": 20647.0, + "name": "dwp.uc.households_by_area@E14001562", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14894.0, + "kind": "calibration_drift", + "ledger_value": 16636.0, + "name": "dwp.uc.households_by_area@E14001563", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8905.0, + "kind": "calibration_drift", + "ledger_value": 9938.0, + "name": "dwp.uc.households_by_area@E14001564", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7054.0, + "kind": "calibration_drift", + "ledger_value": 7882.0, + "name": "dwp.uc.households_by_area@E14001565", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6948.0, + "kind": "calibration_drift", + "ledger_value": 7755.0, + "name": "dwp.uc.households_by_area@E14001566", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11479.0, + "kind": "calibration_drift", + "ledger_value": 12794.0, + "name": "dwp.uc.households_by_area@E14001567", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9409.0, + "kind": "calibration_drift", + "ledger_value": 10498.0, + "name": "dwp.uc.households_by_area@E14001568", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5054.0, + "kind": "calibration_drift", + "ledger_value": 5636.0, + "name": "dwp.uc.households_by_area@E14001569", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5735.0, + "kind": "calibration_drift", + "ledger_value": 6360.0, + "name": "dwp.uc.households_by_area@E14001570", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10428.0, + "kind": "calibration_drift", + "ledger_value": 11636.0, + "name": "dwp.uc.households_by_area@E14001571", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5031.0, + "kind": "calibration_drift", + "ledger_value": 5617.0, + "name": "dwp.uc.households_by_area@E14001572", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8940.0, + "kind": "calibration_drift", + "ledger_value": 9981.0, + "name": "dwp.uc.households_by_area@E14001573", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12992.0, + "kind": "calibration_drift", + "ledger_value": 14543.0, + "name": "dwp.uc.households_by_area@E14001574", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5468.0, + "kind": "calibration_drift", + "ledger_value": 6122.0, + "name": "dwp.uc.households_by_area@E14001575", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19931.0, + "kind": "calibration_drift", + "ledger_value": 22205.0, + "name": "dwp.uc.households_by_area@E14001576", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8245.0, + "kind": "calibration_drift", + "ledger_value": 9194.0, + "name": "dwp.uc.households_by_area@E14001577", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7585.0, + "kind": "calibration_drift", + "ledger_value": 8461.0, + "name": "dwp.uc.households_by_area@E14001578", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5982.0, + "kind": "calibration_drift", + "ledger_value": 6680.0, + "name": "dwp.uc.households_by_area@E14001579", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3959.0, + "kind": "calibration_drift", + "ledger_value": 4411.0, + "name": "dwp.uc.households_by_area@E14001580", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9513.0, + "kind": "calibration_drift", + "ledger_value": 10613.0, + "name": "dwp.uc.households_by_area@E14001581", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3434.0, + "kind": "calibration_drift", + "ledger_value": 3832.0, + "name": "dwp.uc.households_by_area@E14001582", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8375.0, + "kind": "calibration_drift", + "ledger_value": 9337.0, + "name": "dwp.uc.households_by_area@E14001583", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9817.0, + "kind": "calibration_drift", + "ledger_value": 10934.0, + "name": "dwp.uc.households_by_area@E14001584", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11305.0, + "kind": "calibration_drift", + "ledger_value": 12622.0, + "name": "dwp.uc.households_by_area@E14001585", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5566.0, + "kind": "calibration_drift", + "ledger_value": 6217.0, + "name": "dwp.uc.households_by_area@E14001586", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4945.0, + "kind": "calibration_drift", + "ledger_value": 5515.0, + "name": "dwp.uc.households_by_area@E14001587", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6084.0, + "kind": "calibration_drift", + "ledger_value": 6767.0, + "name": "dwp.uc.households_by_area@E14001588", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4196.0, + "kind": "calibration_drift", + "ledger_value": 4631.0, + "name": "dwp.uc.households_by_area@E14001589", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6550.0, + "kind": "calibration_drift", + "ledger_value": 7291.0, + "name": "dwp.uc.households_by_area@E14001590", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5313.0, + "kind": "calibration_drift", + "ledger_value": 5919.0, + "name": "dwp.uc.households_by_area@E14001591", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5568.0, + "kind": "calibration_drift", + "ledger_value": 6205.0, + "name": "dwp.uc.households_by_area@E14001592", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3838.0, + "kind": "calibration_drift", + "ledger_value": 4273.0, + "name": "dwp.uc.households_by_area@E14001593", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13840.0, + "kind": "calibration_drift", + "ledger_value": 15432.0, + "name": "dwp.uc.households_by_area@E14001594", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 18414.0, + "kind": "calibration_drift", + "ledger_value": 20518.0, + "name": "dwp.uc.households_by_area@E14001595", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12614.0, + "kind": "calibration_drift", + "ledger_value": 14095.0, + "name": "dwp.uc.households_by_area@E14001596", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8638.0, + "kind": "calibration_drift", + "ledger_value": 9629.0, + "name": "dwp.uc.households_by_area@E14001597", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10783.0, + "kind": "calibration_drift", + "ledger_value": 12050.0, + "name": "dwp.uc.households_by_area@E14001598", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7070.0, + "kind": "calibration_drift", + "ledger_value": 7887.0, + "name": "dwp.uc.households_by_area@E14001599", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8565.0, + "kind": "calibration_drift", + "ledger_value": 9542.0, + "name": "dwp.uc.households_by_area@E14001600", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8342.0, + "kind": "calibration_drift", + "ledger_value": 9313.0, + "name": "dwp.uc.households_by_area@E14001601", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14302.0, + "kind": "calibration_drift", + "ledger_value": 15950.0, + "name": "dwp.uc.households_by_area@E14001602", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7824.0, + "kind": "calibration_drift", + "ledger_value": 8718.0, + "name": "dwp.uc.households_by_area@E14001603", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7717.0, + "kind": "calibration_drift", + "ledger_value": 8599.0, + "name": "dwp.uc.households_by_area@E14001604", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3477.0, + "kind": "calibration_drift", + "ledger_value": 3883.0, + "name": "dwp.uc.households_by_area@E14001605", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5498.0, + "kind": "calibration_drift", + "ledger_value": 6118.0, + "name": "dwp.uc.households_by_area@S12000005", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12702.0, + "kind": "calibration_drift", + "ledger_value": 14121.0, + "name": "dwp.uc.households_by_area@S12000006", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13427.0, + "kind": "calibration_drift", + "ledger_value": 14935.0, + "name": "dwp.uc.households_by_area@S12000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8447.0, + "kind": "calibration_drift", + "ledger_value": 9391.0, + "name": "dwp.uc.households_by_area@S12000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4862.0, + "kind": "calibration_drift", + "ledger_value": 5412.0, + "name": "dwp.uc.households_by_area@S12000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 1494.0, + "kind": "calibration_drift", + "ledger_value": 1657.0, + "name": "dwp.uc.households_by_area@S12000013", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14557.0, + "kind": "calibration_drift", + "ledger_value": 16193.0, + "name": "dwp.uc.households_by_area@S12000014", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17221.0, + "kind": "calibration_drift", + "ledger_value": 19188.0, + "name": "dwp.uc.households_by_area@S12000017", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9272.0, + "kind": "calibration_drift", + "ledger_value": 10313.0, + "name": "dwp.uc.households_by_area@S12000018", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8135.0, + "kind": "calibration_drift", + "ledger_value": 9057.0, + "name": "dwp.uc.households_by_area@S12000019", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6728.0, + "kind": "calibration_drift", + "ledger_value": 7503.0, + "name": "dwp.uc.households_by_area@S12000020", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16009.0, + "kind": "calibration_drift", + "ledger_value": 17847.0, + "name": "dwp.uc.households_by_area@S12000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 1187.0, + "kind": "calibration_drift", + "ledger_value": 1324.0, + "name": "dwp.uc.households_by_area@S12000023", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8627.0, + "kind": "calibration_drift", + "ledger_value": 9602.0, + "name": "dwp.uc.households_by_area@S12000026", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 1178.0, + "kind": "calibration_drift", + "ledger_value": 1313.0, + "name": "dwp.uc.households_by_area@S12000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10210.0, + "kind": "calibration_drift", + "ledger_value": 11367.0, + "name": "dwp.uc.households_by_area@S12000028", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 29567.0, + "kind": "calibration_drift", + "ledger_value": 32911.0, + "name": "dwp.uc.households_by_area@S12000029", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6307.0, + "kind": "calibration_drift", + "ledger_value": 7013.0, + "name": "dwp.uc.households_by_area@S12000030", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17953.0, + "kind": "calibration_drift", + "ledger_value": 19987.0, + "name": "dwp.uc.households_by_area@S12000033", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14389.0, + "kind": "calibration_drift", + "ledger_value": 16050.0, + "name": "dwp.uc.households_by_area@S12000034", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6299.0, + "kind": "calibration_drift", + "ledger_value": 7003.0, + "name": "dwp.uc.households_by_area@S12000035", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 36137.0, + "kind": "calibration_drift", + "ledger_value": 40256.0, + "name": "dwp.uc.households_by_area@S12000036", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16998.0, + "kind": "calibration_drift", + "ledger_value": 18919.0, + "name": "dwp.uc.households_by_area@S12000038", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11325.0, + "kind": "calibration_drift", + "ledger_value": 12592.0, + "name": "dwp.uc.households_by_area@S12000039", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17289.0, + "kind": "calibration_drift", + "ledger_value": 19223.0, + "name": "dwp.uc.households_by_area@S12000040", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9775.0, + "kind": "calibration_drift", + "ledger_value": 10872.0, + "name": "dwp.uc.households_by_area@S12000041", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17083.0, + "kind": "calibration_drift", + "ledger_value": 19052.0, + "name": "dwp.uc.households_by_area@S12000042", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5753.0, + "kind": "calibration_drift", + "ledger_value": 6402.0, + "name": "dwp.uc.households_by_area@S12000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 35501.0, + "kind": "calibration_drift", + "ledger_value": 39482.0, + "name": "dwp.uc.households_by_area@S12000047", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10274.0, + "kind": "calibration_drift", + "ledger_value": 11427.0, + "name": "dwp.uc.households_by_area@S12000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 84123.0, + "kind": "calibration_drift", + "ledger_value": 93610.0, + "name": "dwp.uc.households_by_area@S12000049", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37120.0, + "kind": "calibration_drift", + "ledger_value": 41316.0, + "name": "dwp.uc.households_by_area@S12000050", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4852.0, + "kind": "calibration_drift", + "ledger_value": 5412.0, + "name": "dwp.uc.households_by_area@S14000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 1490.0, + "kind": "calibration_drift", + "ledger_value": 1657.0, + "name": "dwp.uc.households_by_area@S14000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8117.0, + "kind": "calibration_drift", + "ledger_value": 9057.0, + "name": "dwp.uc.households_by_area@S14000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10431.0, + "kind": "calibration_drift", + "ledger_value": 11652.0, + "name": "dwp.uc.households_by_area@S14000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 2363.0, + "kind": "calibration_drift", + "ledger_value": 2639.0, + "name": "dwp.uc.households_by_area@S14000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10743.0, + "kind": "calibration_drift", + "ledger_value": 11981.0, + "name": "dwp.uc.households_by_area@S14000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7168.0, + "kind": "calibration_drift", + "ledger_value": 8004.0, + "name": "dwp.uc.households_by_area@S14000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7987.0, + "kind": "calibration_drift", + "ledger_value": 8930.0, + "name": "dwp.uc.households_by_area@S14000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10512.0, + "kind": "calibration_drift", + "ledger_value": 11709.0, + "name": "dwp.uc.households_by_area@S14000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9399.0, + "kind": "calibration_drift", + "ledger_value": 10483.0, + "name": "dwp.uc.households_by_area@S14000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7610.0, + "kind": "calibration_drift", + "ledger_value": 8486.0, + "name": "dwp.uc.households_by_area@S14000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9007.0, + "kind": "calibration_drift", + "ledger_value": 10098.0, + "name": "dwp.uc.households_by_area@S14000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6577.0, + "kind": "calibration_drift", + "ledger_value": 7322.0, + "name": "dwp.uc.households_by_area@S14000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9072.0, + "kind": "calibration_drift", + "ledger_value": 9944.0, + "name": "dwp.uc.households_by_area@S14000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7184.0, + "kind": "calibration_drift", + "ledger_value": 8014.0, + "name": "dwp.uc.households_by_area@S14000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10897.0, + "kind": "calibration_drift", + "ledger_value": 12173.0, + "name": "dwp.uc.households_by_area@S14000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9793.0, + "kind": "calibration_drift", + "ledger_value": 10952.0, + "name": "dwp.uc.households_by_area@S14000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8571.0, + "kind": "calibration_drift", + "ledger_value": 9528.0, + "name": "dwp.uc.households_by_area@S14000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8689.0, + "kind": "calibration_drift", + "ledger_value": 9681.0, + "name": "dwp.uc.households_by_area@S14000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6396.0, + "kind": "calibration_drift", + "ledger_value": 7127.0, + "name": "dwp.uc.households_by_area@S14000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12717.0, + "kind": "calibration_drift", + "ledger_value": 14169.0, + "name": "dwp.uc.households_by_area@S14000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7475.0, + "kind": "calibration_drift", + "ledger_value": 8326.0, + "name": "dwp.uc.households_by_area@S14000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7268.0, + "kind": "calibration_drift", + "ledger_value": 8122.0, + "name": "dwp.uc.households_by_area@S14000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9819.0, + "kind": "calibration_drift", + "ledger_value": 10810.0, + "name": "dwp.uc.households_by_area@S14000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9664.0, + "kind": "calibration_drift", + "ledger_value": 10754.0, + "name": "dwp.uc.households_by_area@S14000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4956.0, + "kind": "calibration_drift", + "ledger_value": 5651.0, + "name": "dwp.uc.households_by_area@S14000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7937.0, + "kind": "calibration_drift", + "ledger_value": 8851.0, + "name": "dwp.uc.households_by_area@S14000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4982.0, + "kind": "calibration_drift", + "ledger_value": 5627.0, + "name": "dwp.uc.households_by_area@S14000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9130.0, + "kind": "calibration_drift", + "ledger_value": 10187.0, + "name": "dwp.uc.households_by_area@S14000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 15060.0, + "kind": "calibration_drift", + "ledger_value": 16774.0, + "name": "dwp.uc.households_by_area@S14000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13211.0, + "kind": "calibration_drift", + "ledger_value": 14900.0, + "name": "dwp.uc.households_by_area@S14000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17639.0, + "kind": "calibration_drift", + "ledger_value": 19616.0, + "name": "dwp.uc.households_by_area@S14000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10442.0, + "kind": "calibration_drift", + "ledger_value": 11718.0, + "name": "dwp.uc.households_by_area@S14000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13417.0, + "kind": "calibration_drift", + "ledger_value": 14865.0, + "name": "dwp.uc.households_by_area@S14000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11550.0, + "kind": "calibration_drift", + "ledger_value": 12821.0, + "name": "dwp.uc.households_by_area@S14000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12443.0, + "kind": "calibration_drift", + "ledger_value": 13836.0, + "name": "dwp.uc.households_by_area@S14000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4301.0, + "kind": "calibration_drift", + "ledger_value": 4810.0, + "name": "dwp.uc.households_by_area@S14000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9999.0, + "kind": "calibration_drift", + "ledger_value": 11108.0, + "name": "dwp.uc.households_by_area@S14000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9704.0, + "kind": "calibration_drift", + "ledger_value": 10718.0, + "name": "dwp.uc.households_by_area@S14000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7917.0, + "kind": "calibration_drift", + "ledger_value": 8860.0, + "name": "dwp.uc.households_by_area@S14000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9537.0, + "kind": "calibration_drift", + "ledger_value": 10792.0, + "name": "dwp.uc.households_by_area@S14000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7135.0, + "kind": "calibration_drift", + "ledger_value": 7952.0, + "name": "dwp.uc.households_by_area@S14000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 4013.0, + "kind": "calibration_drift", + "ledger_value": 4525.0, + "name": "dwp.uc.households_by_area@S14000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6785.0, + "kind": "calibration_drift", + "ledger_value": 7563.0, + "name": "dwp.uc.households_by_area@S14000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10645.0, + "kind": "calibration_drift", + "ledger_value": 11879.0, + "name": "dwp.uc.households_by_area@S14000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5822.0, + "kind": "calibration_drift", + "ledger_value": 6484.0, + "name": "dwp.uc.households_by_area@S14000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9004.0, + "kind": "calibration_drift", + "ledger_value": 10184.0, + "name": "dwp.uc.households_by_area@S14000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9714.0, + "kind": "calibration_drift", + "ledger_value": 10805.0, + "name": "dwp.uc.households_by_area@S14000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7339.0, + "kind": "calibration_drift", + "ledger_value": 8174.0, + "name": "dwp.uc.households_by_area@S14000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8946.0, + "kind": "calibration_drift", + "ledger_value": 9999.0, + "name": "dwp.uc.households_by_area@S14000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6679.0, + "kind": "calibration_drift", + "ledger_value": 7448.0, + "name": "dwp.uc.households_by_area@S14000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11713.0, + "kind": "calibration_drift", + "ledger_value": 13031.0, + "name": "dwp.uc.households_by_area@S14000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9989.0, + "kind": "calibration_drift", + "ledger_value": 11162.0, + "name": "dwp.uc.households_by_area@S14000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7626.0, + "kind": "calibration_drift", + "ledger_value": 8503.0, + "name": "dwp.uc.households_by_area@S14000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8803.0, + "kind": "calibration_drift", + "ledger_value": 9804.0, + "name": "dwp.uc.households_by_area@S14000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10334.0, + "kind": "calibration_drift", + "ledger_value": 11524.0, + "name": "dwp.uc.households_by_area@S14000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3791.0, + "kind": "calibration_drift", + "ledger_value": 4236.0, + "name": "dwp.uc.households_by_area@S14000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6003.0, + "kind": "calibration_drift", + "ledger_value": 6684.0, + "name": "dwp.uc.households_by_area@W06000001", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9188.0, + "kind": "calibration_drift", + "ledger_value": 10236.0, + "name": "dwp.uc.households_by_area@W06000002", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10401.0, + "kind": "calibration_drift", + "ledger_value": 11571.0, + "name": "dwp.uc.households_by_area@W06000003", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9411.0, + "kind": "calibration_drift", + "ledger_value": 10472.0, + "name": "dwp.uc.households_by_area@W06000004", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12594.0, + "kind": "calibration_drift", + "ledger_value": 14030.0, + "name": "dwp.uc.households_by_area@W06000005", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 13056.0, + "kind": "calibration_drift", + "ledger_value": 14517.0, + "name": "dwp.uc.households_by_area@W06000006", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5127.0, + "kind": "calibration_drift", + "ledger_value": 5707.0, + "name": "dwp.uc.households_by_area@W06000008", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10712.0, + "kind": "calibration_drift", + "ledger_value": 11913.0, + "name": "dwp.uc.households_by_area@W06000009", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16818.0, + "kind": "calibration_drift", + "ledger_value": 18713.0, + "name": "dwp.uc.households_by_area@W06000010", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25031.0, + "kind": "calibration_drift", + "ledger_value": 27880.0, + "name": "dwp.uc.households_by_area@W06000011", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 16043.0, + "kind": "calibration_drift", + "ledger_value": 17841.0, + "name": "dwp.uc.households_by_area@W06000012", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14056.0, + "kind": "calibration_drift", + "ledger_value": 15655.0, + "name": "dwp.uc.households_by_area@W06000013", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10821.0, + "kind": "calibration_drift", + "ledger_value": 12039.0, + "name": "dwp.uc.households_by_area@W06000014", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 37177.0, + "kind": "calibration_drift", + "ledger_value": 41375.0, + "name": "dwp.uc.households_by_area@W06000015", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 25470.0, + "kind": "calibration_drift", + "ledger_value": 28338.0, + "name": "dwp.uc.households_by_area@W06000016", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 19112.0, + "kind": "calibration_drift", + "ledger_value": 21270.0, + "name": "dwp.uc.households_by_area@W06000018", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8752.0, + "kind": "calibration_drift", + "ledger_value": 9734.0, + "name": "dwp.uc.households_by_area@W06000019", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10574.0, + "kind": "calibration_drift", + "ledger_value": 11769.0, + "name": "dwp.uc.households_by_area@W06000020", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5811.0, + "kind": "calibration_drift", + "ledger_value": 6463.0, + "name": "dwp.uc.households_by_area@W06000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 17966.0, + "kind": "calibration_drift", + "ledger_value": 19992.0, + "name": "dwp.uc.households_by_area@W06000022", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8841.0, + "kind": "calibration_drift", + "ledger_value": 9836.0, + "name": "dwp.uc.households_by_area@W06000023", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7163.0, + "kind": "calibration_drift", + "ledger_value": 7968.0, + "name": "dwp.uc.households_by_area@W06000024", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11888.0, + "kind": "calibration_drift", + "ledger_value": 13260.0, + "name": "dwp.uc.households_by_area@W07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8511.0, + "kind": "calibration_drift", + "ledger_value": 9505.0, + "name": "dwp.uc.households_by_area@W07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7496.0, + "kind": "calibration_drift", + "ledger_value": 8347.0, + "name": "dwp.uc.households_by_area@W07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12823.0, + "kind": "calibration_drift", + "ledger_value": 14295.0, + "name": "dwp.uc.households_by_area@W07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6695.0, + "kind": "calibration_drift", + "ledger_value": 7467.0, + "name": "dwp.uc.households_by_area@W07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7598.0, + "kind": "calibration_drift", + "ledger_value": 8474.0, + "name": "dwp.uc.households_by_area@W07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7246.0, + "kind": "calibration_drift", + "ledger_value": 8086.0, + "name": "dwp.uc.households_by_area@W07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9864.0, + "kind": "calibration_drift", + "ledger_value": 10996.0, + "name": "dwp.uc.households_by_area@W07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12644.0, + "kind": "calibration_drift", + "ledger_value": 14100.0, + "name": "dwp.uc.households_by_area@W07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5709.0, + "kind": "calibration_drift", + "ledger_value": 6362.0, + "name": "dwp.uc.households_by_area@W07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9645.0, + "kind": "calibration_drift", + "ledger_value": 10767.0, + "name": "dwp.uc.households_by_area@W07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11600.0, + "kind": "calibration_drift", + "ledger_value": 12918.0, + "name": "dwp.uc.households_by_area@W07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6720.0, + "kind": "calibration_drift", + "ledger_value": 7497.0, + "name": "dwp.uc.households_by_area@W07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 7098.0, + "kind": "calibration_drift", + "ledger_value": 7925.0, + "name": "dwp.uc.households_by_area@W07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 11512.0, + "kind": "calibration_drift", + "ledger_value": 12833.0, + "name": "dwp.uc.households_by_area@W07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6999.0, + "kind": "calibration_drift", + "ledger_value": 7818.0, + "name": "dwp.uc.households_by_area@W07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 6576.0, + "kind": "calibration_drift", + "ledger_value": 7338.0, + "name": "dwp.uc.households_by_area@W07000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9537.0, + "kind": "calibration_drift", + "ledger_value": 10624.0, + "name": "dwp.uc.households_by_area@W07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12009.0, + "kind": "calibration_drift", + "ledger_value": 13395.0, + "name": "dwp.uc.households_by_area@W07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9088.0, + "kind": "calibration_drift", + "ledger_value": 10124.0, + "name": "dwp.uc.households_by_area@W07000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5799.0, + "kind": "calibration_drift", + "ledger_value": 6463.0, + "name": "dwp.uc.households_by_area@W07000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8114.0, + "kind": "calibration_drift", + "ledger_value": 9036.0, + "name": "dwp.uc.households_by_area@W07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10459.0, + "kind": "calibration_drift", + "ledger_value": 11658.0, + "name": "dwp.uc.households_by_area@W07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14016.0, + "kind": "calibration_drift", + "ledger_value": 15633.0, + "name": "dwp.uc.households_by_area@W07000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9029.0, + "kind": "calibration_drift", + "ledger_value": 10069.0, + "name": "dwp.uc.households_by_area@W07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9654.0, + "kind": "calibration_drift", + "ledger_value": 10807.0, + "name": "dwp.uc.households_by_area@W07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 12351.0, + "kind": "calibration_drift", + "ledger_value": 13761.0, + "name": "dwp.uc.households_by_area@W07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 14197.0, + "kind": "calibration_drift", + "ledger_value": 15852.0, + "name": "dwp.uc.households_by_area@W07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 10551.0, + "kind": "calibration_drift", + "ledger_value": 11769.0, + "name": "dwp.uc.households_by_area@W07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 8822.0, + "kind": "calibration_drift", + "ledger_value": 9831.0, + "name": "dwp.uc.households_by_area@W07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 9233.0, + "kind": "calibration_drift", + "ledger_value": 10293.0, + "name": "dwp.uc.households_by_area@W07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 5990.0, + "kind": "calibration_drift", + "ledger_value": 6684.0, + "name": "dwp.uc.households_by_area@W07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects uk-data#468 at extraction - the incumbent attaches local UC counts by row position against unrelated orderings, so its live y-frame is a permutation; the fixture joins the same publisher counts to their areas by name instead. The residual per-area gap is the incumbent's uniform national payment-distribution rescale (fixture/ours 0.8925-0.9003 across all 982 total rows) plus sub-0.5% extract-vintage noise - the same scaling class the SPI and age families carry." + }, + { + "fixture_value": 3719.0, + "kind": "calibration_drift", + "ledger_value": 4200.0, + "name": "dwp.uc.households_by_area_children_0@E14001063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3198.0, + "kind": "calibration_drift", + "ledger_value": 3623.0, + "name": "dwp.uc.households_by_area_children_0@E14001064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2269.0, + "kind": "calibration_drift", + "ledger_value": 2815.0, + "name": "dwp.uc.households_by_area_children_0@E14001065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3857.0, + "kind": "calibration_drift", + "ledger_value": 4516.0, + "name": "dwp.uc.households_by_area_children_0@E14001066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2208.0, + "kind": "calibration_drift", + "ledger_value": 2451.0, + "name": "dwp.uc.households_by_area_children_0@E14001067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4777.0, + "kind": "calibration_drift", + "ledger_value": 5471.0, + "name": "dwp.uc.households_by_area_children_0@E14001068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4352.0, + "kind": "calibration_drift", + "ledger_value": 4787.0, + "name": "dwp.uc.households_by_area_children_0@E14001069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6315.0, + "kind": "calibration_drift", + "ledger_value": 7375.0, + "name": "dwp.uc.households_by_area_children_0@E14001070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4270.0, + "kind": "calibration_drift", + "ledger_value": 4203.0, + "name": "dwp.uc.households_by_area_children_0@E14001071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3204.0, + "kind": "calibration_drift", + "ledger_value": 3485.0, + "name": "dwp.uc.households_by_area_children_0@E14001072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9389.0, + "kind": "calibration_drift", + "ledger_value": 9147.0, + "name": "dwp.uc.households_by_area_children_0@E14001073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5601.0, + "kind": "calibration_drift", + "ledger_value": 6686.0, + "name": "dwp.uc.households_by_area_children_0@E14001074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6452.0, + "kind": "calibration_drift", + "ledger_value": 7643.0, + "name": "dwp.uc.households_by_area_children_0@E14001075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3621.0, + "kind": "calibration_drift", + "ledger_value": 4601.0, + "name": "dwp.uc.households_by_area_children_0@E14001076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5063.0, + "kind": "calibration_drift", + "ledger_value": 5593.0, + "name": "dwp.uc.households_by_area_children_0@E14001077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3878.0, + "kind": "calibration_drift", + "ledger_value": 4595.0, + "name": "dwp.uc.households_by_area_children_0@E14001078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4693.0, + "kind": "calibration_drift", + "ledger_value": 5456.0, + "name": "dwp.uc.households_by_area_children_0@E14001079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2896.0, + "kind": "calibration_drift", + "ledger_value": 3965.0, + "name": "dwp.uc.households_by_area_children_0@E14001080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4020.0, + "kind": "calibration_drift", + "ledger_value": 5310.0, + "name": "dwp.uc.households_by_area_children_0@E14001081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2161.0, + "kind": "calibration_drift", + "ledger_value": 2461.0, + "name": "dwp.uc.households_by_area_children_0@E14001082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3686.0, + "kind": "calibration_drift", + "ledger_value": 4732.0, + "name": "dwp.uc.households_by_area_children_0@E14001083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5893.0, + "kind": "calibration_drift", + "ledger_value": 7357.0, + "name": "dwp.uc.households_by_area_children_0@E14001084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5974.0, + "kind": "calibration_drift", + "ledger_value": 7916.0, + "name": "dwp.uc.households_by_area_children_0@E14001085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8982.0, + "kind": "calibration_drift", + "ledger_value": 11004.0, + "name": "dwp.uc.households_by_area_children_0@E14001086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2520.0, + "kind": "calibration_drift", + "ledger_value": 2904.0, + "name": "dwp.uc.households_by_area_children_0@E14001087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3085.0, + "kind": "calibration_drift", + "ledger_value": 3781.0, + "name": "dwp.uc.households_by_area_children_0@E14001088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3779.0, + "kind": "calibration_drift", + "ledger_value": 4166.0, + "name": "dwp.uc.households_by_area_children_0@E14001089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2526.0, + "kind": "calibration_drift", + "ledger_value": 2593.0, + "name": "dwp.uc.households_by_area_children_0@E14001090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7360.0, + "kind": "calibration_drift", + "ledger_value": 9566.0, + "name": "dwp.uc.households_by_area_children_0@E14001091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7097.0, + "kind": "calibration_drift", + "ledger_value": 9466.0, + "name": "dwp.uc.households_by_area_children_0@E14001092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 10304.0, + "kind": "calibration_drift", + "ledger_value": 12914.0, + "name": "dwp.uc.households_by_area_children_0@E14001093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8605.0, + "kind": "calibration_drift", + "ledger_value": 11498.0, + "name": "dwp.uc.households_by_area_children_0@E14001094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 10259.0, + "kind": "calibration_drift", + "ledger_value": 11376.0, + "name": "dwp.uc.households_by_area_children_0@E14001095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 13884.0, + "kind": "calibration_drift", + "ledger_value": 17932.0, + "name": "dwp.uc.households_by_area_children_0@E14001096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7672.0, + "kind": "calibration_drift", + "ledger_value": 8834.0, + "name": "dwp.uc.households_by_area_children_0@E14001097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 11190.0, + "kind": "calibration_drift", + "ledger_value": 14923.0, + "name": "dwp.uc.households_by_area_children_0@E14001098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6011.0, + "kind": "calibration_drift", + "ledger_value": 7939.0, + "name": "dwp.uc.households_by_area_children_0@E14001099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9252.0, + "kind": "calibration_drift", + "ledger_value": 10990.0, + "name": "dwp.uc.households_by_area_children_0@E14001100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4728.0, + "kind": "calibration_drift", + "ledger_value": 6104.0, + "name": "dwp.uc.households_by_area_children_0@E14001101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7942.0, + "kind": "calibration_drift", + "ledger_value": 8883.0, + "name": "dwp.uc.households_by_area_children_0@E14001102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8668.0, + "kind": "calibration_drift", + "ledger_value": 9573.0, + "name": "dwp.uc.households_by_area_children_0@E14001103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4515.0, + "kind": "calibration_drift", + "ledger_value": 5688.0, + "name": "dwp.uc.households_by_area_children_0@E14001104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9037.0, + "kind": "calibration_drift", + "ledger_value": 12371.0, + "name": "dwp.uc.households_by_area_children_0@E14001105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4045.0, + "kind": "calibration_drift", + "ledger_value": 5037.0, + "name": "dwp.uc.households_by_area_children_0@E14001106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6093.0, + "kind": "calibration_drift", + "ledger_value": 7506.0, + "name": "dwp.uc.households_by_area_children_0@E14001107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4515.0, + "kind": "calibration_drift", + "ledger_value": 5469.0, + "name": "dwp.uc.households_by_area_children_0@E14001108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4500.0, + "kind": "calibration_drift", + "ledger_value": 5169.0, + "name": "dwp.uc.households_by_area_children_0@E14001109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6985.0, + "kind": "calibration_drift", + "ledger_value": 8242.0, + "name": "dwp.uc.households_by_area_children_0@E14001110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8906.0, + "kind": "calibration_drift", + "ledger_value": 9667.0, + "name": "dwp.uc.households_by_area_children_0@E14001111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3999.0, + "kind": "calibration_drift", + "ledger_value": 4357.0, + "name": "dwp.uc.households_by_area_children_0@E14001112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7345.0, + "kind": "calibration_drift", + "ledger_value": 9648.0, + "name": "dwp.uc.households_by_area_children_0@E14001113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6644.0, + "kind": "calibration_drift", + "ledger_value": 8080.0, + "name": "dwp.uc.households_by_area_children_0@E14001114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4882.0, + "kind": "calibration_drift", + "ledger_value": 6649.0, + "name": "dwp.uc.households_by_area_children_0@E14001115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4822.0, + "kind": "calibration_drift", + "ledger_value": 6516.0, + "name": "dwp.uc.households_by_area_children_0@E14001116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3167.0, + "kind": "calibration_drift", + "ledger_value": 3490.0, + "name": "dwp.uc.households_by_area_children_0@E14001117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9412.0, + "kind": "calibration_drift", + "ledger_value": 10056.0, + "name": "dwp.uc.households_by_area_children_0@E14001118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7757.0, + "kind": "calibration_drift", + "ledger_value": 8275.0, + "name": "dwp.uc.households_by_area_children_0@E14001119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9942.0, + "kind": "calibration_drift", + "ledger_value": 11971.0, + "name": "dwp.uc.households_by_area_children_0@E14001120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3225.0, + "kind": "calibration_drift", + "ledger_value": 3584.0, + "name": "dwp.uc.households_by_area_children_0@E14001121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 10594.0, + "kind": "calibration_drift", + "ledger_value": 13739.0, + "name": "dwp.uc.households_by_area_children_0@E14001122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6592.0, + "kind": "calibration_drift", + "ledger_value": 7429.0, + "name": "dwp.uc.households_by_area_children_0@E14001123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6538.0, + "kind": "calibration_drift", + "ledger_value": 7530.0, + "name": "dwp.uc.households_by_area_children_0@E14001124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2511.0, + "kind": "calibration_drift", + "ledger_value": 2882.0, + "name": "dwp.uc.households_by_area_children_0@E14001125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4226.0, + "kind": "calibration_drift", + "ledger_value": 4808.0, + "name": "dwp.uc.households_by_area_children_0@E14001126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3655.0, + "kind": "calibration_drift", + "ledger_value": 4481.0, + "name": "dwp.uc.households_by_area_children_0@E14001127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2788.0, + "kind": "calibration_drift", + "ledger_value": 3170.0, + "name": "dwp.uc.households_by_area_children_0@E14001128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5076.0, + "kind": "calibration_drift", + "ledger_value": 7138.0, + "name": "dwp.uc.households_by_area_children_0@E14001129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4206.0, + "kind": "calibration_drift", + "ledger_value": 6803.0, + "name": "dwp.uc.households_by_area_children_0@E14001130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2611.0, + "kind": "calibration_drift", + "ledger_value": 4344.0, + "name": "dwp.uc.households_by_area_children_0@E14001131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5505.0, + "kind": "calibration_drift", + "ledger_value": 7377.0, + "name": "dwp.uc.households_by_area_children_0@E14001132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4613.0, + "kind": "calibration_drift", + "ledger_value": 5911.0, + "name": "dwp.uc.households_by_area_children_0@E14001133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4158.0, + "kind": "calibration_drift", + "ledger_value": 5086.0, + "name": "dwp.uc.households_by_area_children_0@E14001134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5728.0, + "kind": "calibration_drift", + "ledger_value": 6884.0, + "name": "dwp.uc.households_by_area_children_0@E14001135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2576.0, + "kind": "calibration_drift", + "ledger_value": 2812.0, + "name": "dwp.uc.households_by_area_children_0@E14001136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2759.0, + "kind": "calibration_drift", + "ledger_value": 3353.0, + "name": "dwp.uc.households_by_area_children_0@E14001137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2546.0, + "kind": "calibration_drift", + "ledger_value": 3008.0, + "name": "dwp.uc.households_by_area_children_0@E14001138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4426.0, + "kind": "calibration_drift", + "ledger_value": 4819.0, + "name": "dwp.uc.households_by_area_children_0@E14001139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3221.0, + "kind": "calibration_drift", + "ledger_value": 3956.0, + "name": "dwp.uc.households_by_area_children_0@E14001140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3799.0, + "kind": "calibration_drift", + "ledger_value": 3764.0, + "name": "dwp.uc.households_by_area_children_0@E14001141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7153.0, + "kind": "calibration_drift", + "ledger_value": 8122.0, + "name": "dwp.uc.households_by_area_children_0@E14001142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4834.0, + "kind": "calibration_drift", + "ledger_value": 5312.0, + "name": "dwp.uc.households_by_area_children_0@E14001143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4840.0, + "kind": "calibration_drift", + "ledger_value": 5692.0, + "name": "dwp.uc.households_by_area_children_0@E14001144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5265.0, + "kind": "calibration_drift", + "ledger_value": 5804.0, + "name": "dwp.uc.households_by_area_children_0@E14001145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3208.0, + "kind": "calibration_drift", + "ledger_value": 3618.0, + "name": "dwp.uc.households_by_area_children_0@E14001146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3764.0, + "kind": "calibration_drift", + "ledger_value": 4660.0, + "name": "dwp.uc.households_by_area_children_0@E14001147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4389.0, + "kind": "calibration_drift", + "ledger_value": 5217.0, + "name": "dwp.uc.households_by_area_children_0@E14001148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3353.0, + "kind": "calibration_drift", + "ledger_value": 4425.0, + "name": "dwp.uc.households_by_area_children_0@E14001149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4183.0, + "kind": "calibration_drift", + "ledger_value": 4710.0, + "name": "dwp.uc.households_by_area_children_0@E14001150", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3968.0, + "kind": "calibration_drift", + "ledger_value": 5012.0, + "name": "dwp.uc.households_by_area_children_0@E14001151", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4079.0, + "kind": "calibration_drift", + "ledger_value": 4918.0, + "name": "dwp.uc.households_by_area_children_0@E14001152", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4445.0, + "kind": "calibration_drift", + "ledger_value": 5164.0, + "name": "dwp.uc.households_by_area_children_0@E14001153", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2776.0, + "kind": "calibration_drift", + "ledger_value": 3184.0, + "name": "dwp.uc.households_by_area_children_0@E14001154", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2796.0, + "kind": "calibration_drift", + "ledger_value": 3019.0, + "name": "dwp.uc.households_by_area_children_0@E14001155", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2446.0, + "kind": "calibration_drift", + "ledger_value": 2445.0, + "name": "dwp.uc.households_by_area_children_0@E14001156", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5014.0, + "kind": "calibration_drift", + "ledger_value": 5512.0, + "name": "dwp.uc.households_by_area_children_0@E14001157", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1979.0, + "kind": "calibration_drift", + "ledger_value": 2366.0, + "name": "dwp.uc.households_by_area_children_0@E14001158", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3454.0, + "kind": "calibration_drift", + "ledger_value": 4139.0, + "name": "dwp.uc.households_by_area_children_0@E14001159", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4420.0, + "kind": "calibration_drift", + "ledger_value": 6576.0, + "name": "dwp.uc.households_by_area_children_0@E14001160", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3069.0, + "kind": "calibration_drift", + "ledger_value": 3984.0, + "name": "dwp.uc.households_by_area_children_0@E14001161", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1953.0, + "kind": "calibration_drift", + "ledger_value": 2202.0, + "name": "dwp.uc.households_by_area_children_0@E14001162", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3312.0, + "kind": "calibration_drift", + "ledger_value": 4524.0, + "name": "dwp.uc.households_by_area_children_0@E14001163", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2131.0, + "kind": "calibration_drift", + "ledger_value": 2308.0, + "name": "dwp.uc.households_by_area_children_0@E14001164", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4423.0, + "kind": "calibration_drift", + "ledger_value": 5680.0, + "name": "dwp.uc.households_by_area_children_0@E14001165", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3560.0, + "kind": "calibration_drift", + "ledger_value": 3999.0, + "name": "dwp.uc.households_by_area_children_0@E14001166", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4337.0, + "kind": "calibration_drift", + "ledger_value": 5095.0, + "name": "dwp.uc.households_by_area_children_0@E14001167", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2918.0, + "kind": "calibration_drift", + "ledger_value": 3359.0, + "name": "dwp.uc.households_by_area_children_0@E14001168", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4024.0, + "kind": "calibration_drift", + "ledger_value": 4703.0, + "name": "dwp.uc.households_by_area_children_0@E14001169", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3764.0, + "kind": "calibration_drift", + "ledger_value": 4417.0, + "name": "dwp.uc.households_by_area_children_0@E14001170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2202.0, + "kind": "calibration_drift", + "ledger_value": 2626.0, + "name": "dwp.uc.households_by_area_children_0@E14001171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4365.0, + "kind": "calibration_drift", + "ledger_value": 6924.0, + "name": "dwp.uc.households_by_area_children_0@E14001172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3509.0, + "kind": "calibration_drift", + "ledger_value": 4437.0, + "name": "dwp.uc.households_by_area_children_0@E14001173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5233.0, + "kind": "calibration_drift", + "ledger_value": 6788.0, + "name": "dwp.uc.households_by_area_children_0@E14001174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5373.0, + "kind": "calibration_drift", + "ledger_value": 7518.0, + "name": "dwp.uc.households_by_area_children_0@E14001175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4895.0, + "kind": "calibration_drift", + "ledger_value": 5577.0, + "name": "dwp.uc.households_by_area_children_0@E14001176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2959.0, + "kind": "calibration_drift", + "ledger_value": 3342.0, + "name": "dwp.uc.households_by_area_children_0@E14001177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2367.0, + "kind": "calibration_drift", + "ledger_value": 2764.0, + "name": "dwp.uc.households_by_area_children_0@E14001178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4953.0, + "kind": "calibration_drift", + "ledger_value": 5329.0, + "name": "dwp.uc.households_by_area_children_0@E14001179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8300.0, + "kind": "calibration_drift", + "ledger_value": 9179.0, + "name": "dwp.uc.households_by_area_children_0@E14001180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5170.0, + "kind": "calibration_drift", + "ledger_value": 6052.0, + "name": "dwp.uc.households_by_area_children_0@E14001181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5550.0, + "kind": "calibration_drift", + "ledger_value": 7008.0, + "name": "dwp.uc.households_by_area_children_0@E14001182", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3844.0, + "kind": "calibration_drift", + "ledger_value": 4444.0, + "name": "dwp.uc.households_by_area_children_0@E14001183", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5724.0, + "kind": "calibration_drift", + "ledger_value": 6144.0, + "name": "dwp.uc.households_by_area_children_0@E14001184", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4792.0, + "kind": "calibration_drift", + "ledger_value": 5452.0, + "name": "dwp.uc.households_by_area_children_0@E14001185", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6111.0, + "kind": "calibration_drift", + "ledger_value": 6997.0, + "name": "dwp.uc.households_by_area_children_0@E14001186", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3698.0, + "kind": "calibration_drift", + "ledger_value": 4218.0, + "name": "dwp.uc.households_by_area_children_0@E14001187", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9346.0, + "kind": "calibration_drift", + "ledger_value": 10987.0, + "name": "dwp.uc.households_by_area_children_0@E14001188", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7034.0, + "kind": "calibration_drift", + "ledger_value": 6994.0, + "name": "dwp.uc.households_by_area_children_0@E14001189", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5081.0, + "kind": "calibration_drift", + "ledger_value": 6243.0, + "name": "dwp.uc.households_by_area_children_0@E14001190", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4195.0, + "kind": "calibration_drift", + "ledger_value": 4268.0, + "name": "dwp.uc.households_by_area_children_0@E14001191", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3067.0, + "kind": "calibration_drift", + "ledger_value": 3244.0, + "name": "dwp.uc.households_by_area_children_0@E14001192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5149.0, + "kind": "calibration_drift", + "ledger_value": 6103.0, + "name": "dwp.uc.households_by_area_children_0@E14001193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8436.0, + "kind": "calibration_drift", + "ledger_value": 9927.0, + "name": "dwp.uc.households_by_area_children_0@E14001194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2024.0, + "kind": "calibration_drift", + "ledger_value": 2307.0, + "name": "dwp.uc.households_by_area_children_0@E14001195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7013.0, + "kind": "calibration_drift", + "ledger_value": 7640.0, + "name": "dwp.uc.households_by_area_children_0@E14001196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2931.0, + "kind": "calibration_drift", + "ledger_value": 2975.0, + "name": "dwp.uc.households_by_area_children_0@E14001197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6782.0, + "kind": "calibration_drift", + "ledger_value": 8669.0, + "name": "dwp.uc.households_by_area_children_0@E14001198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3669.0, + "kind": "calibration_drift", + "ledger_value": 3925.0, + "name": "dwp.uc.households_by_area_children_0@E14001199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5555.0, + "kind": "calibration_drift", + "ledger_value": 6377.0, + "name": "dwp.uc.households_by_area_children_0@E14001200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2098.0, + "kind": "calibration_drift", + "ledger_value": 2385.0, + "name": "dwp.uc.households_by_area_children_0@E14001201", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4792.0, + "kind": "calibration_drift", + "ledger_value": 5594.0, + "name": "dwp.uc.households_by_area_children_0@E14001202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3307.0, + "kind": "calibration_drift", + "ledger_value": 3643.0, + "name": "dwp.uc.households_by_area_children_0@E14001203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5953.0, + "kind": "calibration_drift", + "ledger_value": 6833.0, + "name": "dwp.uc.households_by_area_children_0@E14001204", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5903.0, + "kind": "calibration_drift", + "ledger_value": 7868.0, + "name": "dwp.uc.households_by_area_children_0@E14001205", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4053.0, + "kind": "calibration_drift", + "ledger_value": 4258.0, + "name": "dwp.uc.households_by_area_children_0@E14001206", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7237.0, + "kind": "calibration_drift", + "ledger_value": 10166.0, + "name": "dwp.uc.households_by_area_children_0@E14001207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7821.0, + "kind": "calibration_drift", + "ledger_value": 9415.0, + "name": "dwp.uc.households_by_area_children_0@E14001208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6995.0, + "kind": "calibration_drift", + "ledger_value": 8508.0, + "name": "dwp.uc.households_by_area_children_0@E14001209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2815.0, + "kind": "calibration_drift", + "ledger_value": 3055.0, + "name": "dwp.uc.households_by_area_children_0@E14001210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6487.0, + "kind": "calibration_drift", + "ledger_value": 8431.0, + "name": "dwp.uc.households_by_area_children_0@E14001211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2256.0, + "kind": "calibration_drift", + "ledger_value": 2414.0, + "name": "dwp.uc.households_by_area_children_0@E14001212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8437.0, + "kind": "calibration_drift", + "ledger_value": 8653.0, + "name": "dwp.uc.households_by_area_children_0@E14001213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2053.0, + "kind": "calibration_drift", + "ledger_value": 2144.0, + "name": "dwp.uc.households_by_area_children_0@E14001214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2666.0, + "kind": "calibration_drift", + "ledger_value": 2844.0, + "name": "dwp.uc.households_by_area_children_0@E14001215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6724.0, + "kind": "calibration_drift", + "ledger_value": 8322.0, + "name": "dwp.uc.households_by_area_children_0@E14001216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2726.0, + "kind": "calibration_drift", + "ledger_value": 2646.0, + "name": "dwp.uc.households_by_area_children_0@E14001217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3212.0, + "kind": "calibration_drift", + "ledger_value": 3870.0, + "name": "dwp.uc.households_by_area_children_0@E14001218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5061.0, + "kind": "calibration_drift", + "ledger_value": 6571.0, + "name": "dwp.uc.households_by_area_children_0@E14001219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2577.0, + "kind": "calibration_drift", + "ledger_value": 2761.0, + "name": "dwp.uc.households_by_area_children_0@E14001220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9492.0, + "kind": "calibration_drift", + "ledger_value": 10905.0, + "name": "dwp.uc.households_by_area_children_0@E14001221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4541.0, + "kind": "calibration_drift", + "ledger_value": 5266.0, + "name": "dwp.uc.households_by_area_children_0@E14001222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4956.0, + "kind": "calibration_drift", + "ledger_value": 5812.0, + "name": "dwp.uc.households_by_area_children_0@E14001223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2878.0, + "kind": "calibration_drift", + "ledger_value": 3246.0, + "name": "dwp.uc.households_by_area_children_0@E14001224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9247.0, + "kind": "calibration_drift", + "ledger_value": 9648.0, + "name": "dwp.uc.households_by_area_children_0@E14001225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3242.0, + "kind": "calibration_drift", + "ledger_value": 3700.0, + "name": "dwp.uc.households_by_area_children_0@E14001226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2411.0, + "kind": "calibration_drift", + "ledger_value": 2764.0, + "name": "dwp.uc.households_by_area_children_0@E14001227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4419.0, + "kind": "calibration_drift", + "ledger_value": 5403.0, + "name": "dwp.uc.households_by_area_children_0@E14001228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8446.0, + "kind": "calibration_drift", + "ledger_value": 9970.0, + "name": "dwp.uc.households_by_area_children_0@E14001229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2320.0, + "kind": "calibration_drift", + "ledger_value": 2659.0, + "name": "dwp.uc.households_by_area_children_0@E14001230", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3617.0, + "kind": "calibration_drift", + "ledger_value": 4949.0, + "name": "dwp.uc.households_by_area_children_0@E14001231", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3261.0, + "kind": "calibration_drift", + "ledger_value": 3634.0, + "name": "dwp.uc.households_by_area_children_0@E14001232", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2867.0, + "kind": "calibration_drift", + "ledger_value": 3316.0, + "name": "dwp.uc.households_by_area_children_0@E14001233", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2162.0, + "kind": "calibration_drift", + "ledger_value": 2382.0, + "name": "dwp.uc.households_by_area_children_0@E14001234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3734.0, + "kind": "calibration_drift", + "ledger_value": 3876.0, + "name": "dwp.uc.households_by_area_children_0@E14001235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7786.0, + "kind": "calibration_drift", + "ledger_value": 8738.0, + "name": "dwp.uc.households_by_area_children_0@E14001236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2893.0, + "kind": "calibration_drift", + "ledger_value": 3227.0, + "name": "dwp.uc.households_by_area_children_0@E14001237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5785.0, + "kind": "calibration_drift", + "ledger_value": 7746.0, + "name": "dwp.uc.households_by_area_children_0@E14001238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4156.0, + "kind": "calibration_drift", + "ledger_value": 5205.0, + "name": "dwp.uc.households_by_area_children_0@E14001239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2986.0, + "kind": "calibration_drift", + "ledger_value": 3526.0, + "name": "dwp.uc.households_by_area_children_0@E14001240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2957.0, + "kind": "calibration_drift", + "ledger_value": 3390.0, + "name": "dwp.uc.households_by_area_children_0@E14001241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3054.0, + "kind": "calibration_drift", + "ledger_value": 3766.0, + "name": "dwp.uc.households_by_area_children_0@E14001242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3569.0, + "kind": "calibration_drift", + "ledger_value": 4332.0, + "name": "dwp.uc.households_by_area_children_0@E14001243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5378.0, + "kind": "calibration_drift", + "ledger_value": 7121.0, + "name": "dwp.uc.households_by_area_children_0@E14001244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3852.0, + "kind": "calibration_drift", + "ledger_value": 4545.0, + "name": "dwp.uc.households_by_area_children_0@E14001245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4557.0, + "kind": "calibration_drift", + "ledger_value": 5185.0, + "name": "dwp.uc.households_by_area_children_0@E14001246", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2836.0, + "kind": "calibration_drift", + "ledger_value": 3380.0, + "name": "dwp.uc.households_by_area_children_0@E14001247", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5576.0, + "kind": "calibration_drift", + "ledger_value": 6748.0, + "name": "dwp.uc.households_by_area_children_0@E14001248", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2091.0, + "kind": "calibration_drift", + "ledger_value": 2346.0, + "name": "dwp.uc.households_by_area_children_0@E14001249", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2595.0, + "kind": "calibration_drift", + "ledger_value": 2727.0, + "name": "dwp.uc.households_by_area_children_0@E14001250", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8409.0, + "kind": "calibration_drift", + "ledger_value": 9223.0, + "name": "dwp.uc.households_by_area_children_0@E14001251", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3856.0, + "kind": "calibration_drift", + "ledger_value": 4375.0, + "name": "dwp.uc.households_by_area_children_0@E14001252", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3593.0, + "kind": "calibration_drift", + "ledger_value": 3861.0, + "name": "dwp.uc.households_by_area_children_0@E14001253", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5037.0, + "kind": "calibration_drift", + "ledger_value": 5569.0, + "name": "dwp.uc.households_by_area_children_0@E14001254", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7500.0, + "kind": "calibration_drift", + "ledger_value": 9110.0, + "name": "dwp.uc.households_by_area_children_0@E14001255", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6011.0, + "kind": "calibration_drift", + "ledger_value": 7585.0, + "name": "dwp.uc.households_by_area_children_0@E14001256", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6199.0, + "kind": "calibration_drift", + "ledger_value": 7674.0, + "name": "dwp.uc.households_by_area_children_0@E14001257", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2240.0, + "kind": "calibration_drift", + "ledger_value": 2829.0, + "name": "dwp.uc.households_by_area_children_0@E14001258", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8757.0, + "kind": "calibration_drift", + "ledger_value": 10840.0, + "name": "dwp.uc.households_by_area_children_0@E14001259", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7901.0, + "kind": "calibration_drift", + "ledger_value": 10979.0, + "name": "dwp.uc.households_by_area_children_0@E14001260", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4426.0, + "kind": "calibration_drift", + "ledger_value": 4822.0, + "name": "dwp.uc.households_by_area_children_0@E14001261", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6935.0, + "kind": "calibration_drift", + "ledger_value": 8337.0, + "name": "dwp.uc.households_by_area_children_0@E14001262", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2585.0, + "kind": "calibration_drift", + "ledger_value": 2381.0, + "name": "dwp.uc.households_by_area_children_0@E14001263", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5468.0, + "kind": "calibration_drift", + "ledger_value": 8180.0, + "name": "dwp.uc.households_by_area_children_0@E14001264", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4773.0, + "kind": "calibration_drift", + "ledger_value": 6980.0, + "name": "dwp.uc.households_by_area_children_0@E14001265", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2872.0, + "kind": "calibration_drift", + "ledger_value": 3117.0, + "name": "dwp.uc.households_by_area_children_0@E14001266", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5312.0, + "kind": "calibration_drift", + "ledger_value": 5847.0, + "name": "dwp.uc.households_by_area_children_0@E14001267", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1599.0, + "kind": "calibration_drift", + "ledger_value": 1740.0, + "name": "dwp.uc.households_by_area_children_0@E14001268", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2689.0, + "kind": "calibration_drift", + "ledger_value": 3329.0, + "name": "dwp.uc.households_by_area_children_0@E14001269", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4330.0, + "kind": "calibration_drift", + "ledger_value": 4795.0, + "name": "dwp.uc.households_by_area_children_0@E14001270", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5631.0, + "kind": "calibration_drift", + "ledger_value": 6515.0, + "name": "dwp.uc.households_by_area_children_0@E14001271", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6488.0, + "kind": "calibration_drift", + "ledger_value": 8466.0, + "name": "dwp.uc.households_by_area_children_0@E14001272", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3276.0, + "kind": "calibration_drift", + "ledger_value": 3820.0, + "name": "dwp.uc.households_by_area_children_0@E14001273", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6078.0, + "kind": "calibration_drift", + "ledger_value": 7931.0, + "name": "dwp.uc.households_by_area_children_0@E14001274", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4183.0, + "kind": "calibration_drift", + "ledger_value": 4657.0, + "name": "dwp.uc.households_by_area_children_0@E14001275", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7369.0, + "kind": "calibration_drift", + "ledger_value": 8264.0, + "name": "dwp.uc.households_by_area_children_0@E14001276", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3155.0, + "kind": "calibration_drift", + "ledger_value": 3785.0, + "name": "dwp.uc.households_by_area_children_0@E14001277", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4386.0, + "kind": "calibration_drift", + "ledger_value": 4811.0, + "name": "dwp.uc.households_by_area_children_0@E14001278", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7163.0, + "kind": "calibration_drift", + "ledger_value": 8552.0, + "name": "dwp.uc.households_by_area_children_0@E14001279", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1855.0, + "kind": "calibration_drift", + "ledger_value": 2007.0, + "name": "dwp.uc.households_by_area_children_0@E14001280", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3323.0, + "kind": "calibration_drift", + "ledger_value": 3744.0, + "name": "dwp.uc.households_by_area_children_0@E14001281", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3980.0, + "kind": "calibration_drift", + "ledger_value": 4827.0, + "name": "dwp.uc.households_by_area_children_0@E14001282", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2817.0, + "kind": "calibration_drift", + "ledger_value": 3051.0, + "name": "dwp.uc.households_by_area_children_0@E14001283", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3655.0, + "kind": "calibration_drift", + "ledger_value": 4329.0, + "name": "dwp.uc.households_by_area_children_0@E14001284", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2471.0, + "kind": "calibration_drift", + "ledger_value": 2957.0, + "name": "dwp.uc.households_by_area_children_0@E14001285", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6224.0, + "kind": "calibration_drift", + "ledger_value": 6938.0, + "name": "dwp.uc.households_by_area_children_0@E14001286", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2997.0, + "kind": "calibration_drift", + "ledger_value": 3621.0, + "name": "dwp.uc.households_by_area_children_0@E14001287", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3200.0, + "kind": "calibration_drift", + "ledger_value": 3667.0, + "name": "dwp.uc.households_by_area_children_0@E14001288", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2675.0, + "kind": "calibration_drift", + "ledger_value": 2923.0, + "name": "dwp.uc.households_by_area_children_0@E14001289", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6096.0, + "kind": "calibration_drift", + "ledger_value": 8570.0, + "name": "dwp.uc.households_by_area_children_0@E14001290", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2331.0, + "kind": "calibration_drift", + "ledger_value": 2609.0, + "name": "dwp.uc.households_by_area_children_0@E14001291", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3927.0, + "kind": "calibration_drift", + "ledger_value": 4434.0, + "name": "dwp.uc.households_by_area_children_0@E14001292", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4324.0, + "kind": "calibration_drift", + "ledger_value": 6187.0, + "name": "dwp.uc.households_by_area_children_0@E14001293", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2462.0, + "kind": "calibration_drift", + "ledger_value": 2712.0, + "name": "dwp.uc.households_by_area_children_0@E14001294", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6050.0, + "kind": "calibration_drift", + "ledger_value": 7428.0, + "name": "dwp.uc.households_by_area_children_0@E14001295", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4321.0, + "kind": "calibration_drift", + "ledger_value": 6326.0, + "name": "dwp.uc.households_by_area_children_0@E14001296", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7047.0, + "kind": "calibration_drift", + "ledger_value": 8589.0, + "name": "dwp.uc.households_by_area_children_0@E14001297", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2979.0, + "kind": "calibration_drift", + "ledger_value": 3306.0, + "name": "dwp.uc.households_by_area_children_0@E14001298", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5843.0, + "kind": "calibration_drift", + "ledger_value": 6874.0, + "name": "dwp.uc.households_by_area_children_0@E14001299", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5224.0, + "kind": "calibration_drift", + "ledger_value": 5887.0, + "name": "dwp.uc.households_by_area_children_0@E14001300", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7390.0, + "kind": "calibration_drift", + "ledger_value": 7569.0, + "name": "dwp.uc.households_by_area_children_0@E14001301", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5962.0, + "kind": "calibration_drift", + "ledger_value": 6953.0, + "name": "dwp.uc.households_by_area_children_0@E14001302", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3188.0, + "kind": "calibration_drift", + "ledger_value": 4209.0, + "name": "dwp.uc.households_by_area_children_0@E14001303", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2817.0, + "kind": "calibration_drift", + "ledger_value": 3275.0, + "name": "dwp.uc.households_by_area_children_0@E14001304", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6697.0, + "kind": "calibration_drift", + "ledger_value": 9498.0, + "name": "dwp.uc.households_by_area_children_0@E14001305", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6918.0, + "kind": "calibration_drift", + "ledger_value": 9468.0, + "name": "dwp.uc.households_by_area_children_0@E14001306", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5701.0, + "kind": "calibration_drift", + "ledger_value": 7067.0, + "name": "dwp.uc.households_by_area_children_0@E14001307", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4489.0, + "kind": "calibration_drift", + "ledger_value": 4943.0, + "name": "dwp.uc.households_by_area_children_0@E14001308", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2079.0, + "kind": "calibration_drift", + "ledger_value": 2175.0, + "name": "dwp.uc.households_by_area_children_0@E14001309", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5261.0, + "kind": "calibration_drift", + "ledger_value": 8357.0, + "name": "dwp.uc.households_by_area_children_0@E14001310", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4499.0, + "kind": "calibration_drift", + "ledger_value": 5018.0, + "name": "dwp.uc.households_by_area_children_0@E14001311", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3817.0, + "kind": "calibration_drift", + "ledger_value": 4786.0, + "name": "dwp.uc.households_by_area_children_0@E14001312", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7361.0, + "kind": "calibration_drift", + "ledger_value": 8326.0, + "name": "dwp.uc.households_by_area_children_0@E14001313", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6946.0, + "kind": "calibration_drift", + "ledger_value": 8860.0, + "name": "dwp.uc.households_by_area_children_0@E14001314", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5692.0, + "kind": "calibration_drift", + "ledger_value": 7270.0, + "name": "dwp.uc.households_by_area_children_0@E14001315", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2282.0, + "kind": "calibration_drift", + "ledger_value": 2616.0, + "name": "dwp.uc.households_by_area_children_0@E14001316", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6663.0, + "kind": "calibration_drift", + "ledger_value": 8146.0, + "name": "dwp.uc.households_by_area_children_0@E14001317", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3121.0, + "kind": "calibration_drift", + "ledger_value": 3879.0, + "name": "dwp.uc.households_by_area_children_0@E14001318", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4103.0, + "kind": "calibration_drift", + "ledger_value": 6105.0, + "name": "dwp.uc.households_by_area_children_0@E14001319", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7193.0, + "kind": "calibration_drift", + "ledger_value": 7829.0, + "name": "dwp.uc.households_by_area_children_0@E14001320", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3599.0, + "kind": "calibration_drift", + "ledger_value": 4540.0, + "name": "dwp.uc.households_by_area_children_0@E14001321", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2219.0, + "kind": "calibration_drift", + "ledger_value": 2582.0, + "name": "dwp.uc.households_by_area_children_0@E14001322", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 10116.0, + "kind": "calibration_drift", + "ledger_value": 11480.0, + "name": "dwp.uc.households_by_area_children_0@E14001323", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3917.0, + "kind": "calibration_drift", + "ledger_value": 4478.0, + "name": "dwp.uc.households_by_area_children_0@E14001324", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5448.0, + "kind": "calibration_drift", + "ledger_value": 6475.0, + "name": "dwp.uc.households_by_area_children_0@E14001325", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6334.0, + "kind": "calibration_drift", + "ledger_value": 6382.0, + "name": "dwp.uc.households_by_area_children_0@E14001326", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6775.0, + "kind": "calibration_drift", + "ledger_value": 7985.0, + "name": "dwp.uc.households_by_area_children_0@E14001327", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8474.0, + "kind": "calibration_drift", + "ledger_value": 9556.0, + "name": "dwp.uc.households_by_area_children_0@E14001328", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5656.0, + "kind": "calibration_drift", + "ledger_value": 6753.0, + "name": "dwp.uc.households_by_area_children_0@E14001329", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3155.0, + "kind": "calibration_drift", + "ledger_value": 3682.0, + "name": "dwp.uc.households_by_area_children_0@E14001330", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8013.0, + "kind": "calibration_drift", + "ledger_value": 10364.0, + "name": "dwp.uc.households_by_area_children_0@E14001331", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7104.0, + "kind": "calibration_drift", + "ledger_value": 9674.0, + "name": "dwp.uc.households_by_area_children_0@E14001332", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4870.0, + "kind": "calibration_drift", + "ledger_value": 6556.0, + "name": "dwp.uc.households_by_area_children_0@E14001333", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5712.0, + "kind": "calibration_drift", + "ledger_value": 7103.0, + "name": "dwp.uc.households_by_area_children_0@E14001334", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2773.0, + "kind": "calibration_drift", + "ledger_value": 3085.0, + "name": "dwp.uc.households_by_area_children_0@E14001335", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5601.0, + "kind": "calibration_drift", + "ledger_value": 7066.0, + "name": "dwp.uc.households_by_area_children_0@E14001336", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4808.0, + "kind": "calibration_drift", + "ledger_value": 6056.0, + "name": "dwp.uc.households_by_area_children_0@E14001337", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9218.0, + "kind": "calibration_drift", + "ledger_value": 13236.0, + "name": "dwp.uc.households_by_area_children_0@E14001338", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7708.0, + "kind": "calibration_drift", + "ledger_value": 9419.0, + "name": "dwp.uc.households_by_area_children_0@E14001339", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6097.0, + "kind": "calibration_drift", + "ledger_value": 8977.0, + "name": "dwp.uc.households_by_area_children_0@E14001340", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6644.0, + "kind": "calibration_drift", + "ledger_value": 8297.0, + "name": "dwp.uc.households_by_area_children_0@E14001341", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3371.0, + "kind": "calibration_drift", + "ledger_value": 4151.0, + "name": "dwp.uc.households_by_area_children_0@E14001342", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3678.0, + "kind": "calibration_drift", + "ledger_value": 4380.0, + "name": "dwp.uc.households_by_area_children_0@E14001343", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4814.0, + "kind": "calibration_drift", + "ledger_value": 6099.0, + "name": "dwp.uc.households_by_area_children_0@E14001344", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5599.0, + "kind": "calibration_drift", + "ledger_value": 5771.0, + "name": "dwp.uc.households_by_area_children_0@E14001345", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7603.0, + "kind": "calibration_drift", + "ledger_value": 8633.0, + "name": "dwp.uc.households_by_area_children_0@E14001346", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2589.0, + "kind": "calibration_drift", + "ledger_value": 3315.0, + "name": "dwp.uc.households_by_area_children_0@E14001347", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2322.0, + "kind": "calibration_drift", + "ledger_value": 2679.0, + "name": "dwp.uc.households_by_area_children_0@E14001348", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4003.0, + "kind": "calibration_drift", + "ledger_value": 4572.0, + "name": "dwp.uc.households_by_area_children_0@E14001349", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4166.0, + "kind": "calibration_drift", + "ledger_value": 4893.0, + "name": "dwp.uc.households_by_area_children_0@E14001350", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2640.0, + "kind": "calibration_drift", + "ledger_value": 3070.0, + "name": "dwp.uc.households_by_area_children_0@E14001351", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8007.0, + "kind": "calibration_drift", + "ledger_value": 9978.0, + "name": "dwp.uc.households_by_area_children_0@E14001352", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7498.0, + "kind": "calibration_drift", + "ledger_value": 10415.0, + "name": "dwp.uc.households_by_area_children_0@E14001353", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3437.0, + "kind": "calibration_drift", + "ledger_value": 5004.0, + "name": "dwp.uc.households_by_area_children_0@E14001354", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5489.0, + "kind": "calibration_drift", + "ledger_value": 6545.0, + "name": "dwp.uc.households_by_area_children_0@E14001355", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2693.0, + "kind": "calibration_drift", + "ledger_value": 3159.0, + "name": "dwp.uc.households_by_area_children_0@E14001356", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3042.0, + "kind": "calibration_drift", + "ledger_value": 3206.0, + "name": "dwp.uc.households_by_area_children_0@E14001357", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4276.0, + "kind": "calibration_drift", + "ledger_value": 4908.0, + "name": "dwp.uc.households_by_area_children_0@E14001358", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2458.0, + "kind": "calibration_drift", + "ledger_value": 2345.0, + "name": "dwp.uc.households_by_area_children_0@E14001359", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1586.0, + "kind": "calibration_drift", + "ledger_value": 1779.0, + "name": "dwp.uc.households_by_area_children_0@E14001360", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3928.0, + "kind": "calibration_drift", + "ledger_value": 4558.0, + "name": "dwp.uc.households_by_area_children_0@E14001361", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2139.0, + "kind": "calibration_drift", + "ledger_value": 2429.0, + "name": "dwp.uc.households_by_area_children_0@E14001362", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2482.0, + "kind": "calibration_drift", + "ledger_value": 2699.0, + "name": "dwp.uc.households_by_area_children_0@E14001363", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2645.0, + "kind": "calibration_drift", + "ledger_value": 2696.0, + "name": "dwp.uc.households_by_area_children_0@E14001364", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2848.0, + "kind": "calibration_drift", + "ledger_value": 3065.0, + "name": "dwp.uc.households_by_area_children_0@E14001365", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2265.0, + "kind": "calibration_drift", + "ledger_value": 2466.0, + "name": "dwp.uc.households_by_area_children_0@E14001366", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8821.0, + "kind": "calibration_drift", + "ledger_value": 10687.0, + "name": "dwp.uc.households_by_area_children_0@E14001367", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4690.0, + "kind": "calibration_drift", + "ledger_value": 5780.0, + "name": "dwp.uc.households_by_area_children_0@E14001368", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5892.0, + "kind": "calibration_drift", + "ledger_value": 6472.0, + "name": "dwp.uc.households_by_area_children_0@E14001369", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3706.0, + "kind": "calibration_drift", + "ledger_value": 4041.0, + "name": "dwp.uc.households_by_area_children_0@E14001370", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6230.0, + "kind": "calibration_drift", + "ledger_value": 7555.0, + "name": "dwp.uc.households_by_area_children_0@E14001371", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3825.0, + "kind": "calibration_drift", + "ledger_value": 4671.0, + "name": "dwp.uc.households_by_area_children_0@E14001372", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2532.0, + "kind": "calibration_drift", + "ledger_value": 2850.0, + "name": "dwp.uc.households_by_area_children_0@E14001373", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2057.0, + "kind": "calibration_drift", + "ledger_value": 2395.0, + "name": "dwp.uc.households_by_area_children_0@E14001374", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3492.0, + "kind": "calibration_drift", + "ledger_value": 4104.0, + "name": "dwp.uc.households_by_area_children_0@E14001375", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2814.0, + "kind": "calibration_drift", + "ledger_value": 3151.0, + "name": "dwp.uc.households_by_area_children_0@E14001376", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8555.0, + "kind": "calibration_drift", + "ledger_value": 10488.0, + "name": "dwp.uc.households_by_area_children_0@E14001377", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7246.0, + "kind": "calibration_drift", + "ledger_value": 9544.0, + "name": "dwp.uc.households_by_area_children_0@E14001378", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3072.0, + "kind": "calibration_drift", + "ledger_value": 4006.0, + "name": "dwp.uc.households_by_area_children_0@E14001379", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3667.0, + "kind": "calibration_drift", + "ledger_value": 4463.0, + "name": "dwp.uc.households_by_area_children_0@E14001380", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3090.0, + "kind": "calibration_drift", + "ledger_value": 3574.0, + "name": "dwp.uc.households_by_area_children_0@E14001381", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5216.0, + "kind": "calibration_drift", + "ledger_value": 6343.0, + "name": "dwp.uc.households_by_area_children_0@E14001382", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5113.0, + "kind": "calibration_drift", + "ledger_value": 5730.0, + "name": "dwp.uc.households_by_area_children_0@E14001383", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2899.0, + "kind": "calibration_drift", + "ledger_value": 3040.0, + "name": "dwp.uc.households_by_area_children_0@E14001384", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3800.0, + "kind": "calibration_drift", + "ledger_value": 4335.0, + "name": "dwp.uc.households_by_area_children_0@E14001385", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2359.0, + "kind": "calibration_drift", + "ledger_value": 2413.0, + "name": "dwp.uc.households_by_area_children_0@E14001386", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3617.0, + "kind": "calibration_drift", + "ledger_value": 4331.0, + "name": "dwp.uc.households_by_area_children_0@E14001387", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2477.0, + "kind": "calibration_drift", + "ledger_value": 2605.0, + "name": "dwp.uc.households_by_area_children_0@E14001388", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4708.0, + "kind": "calibration_drift", + "ledger_value": 5884.0, + "name": "dwp.uc.households_by_area_children_0@E14001389", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4456.0, + "kind": "calibration_drift", + "ledger_value": 5040.0, + "name": "dwp.uc.households_by_area_children_0@E14001390", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3234.0, + "kind": "calibration_drift", + "ledger_value": 3841.0, + "name": "dwp.uc.households_by_area_children_0@E14001391", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1808.0, + "kind": "calibration_drift", + "ledger_value": 1896.0, + "name": "dwp.uc.households_by_area_children_0@E14001392", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2985.0, + "kind": "calibration_drift", + "ledger_value": 3280.0, + "name": "dwp.uc.households_by_area_children_0@E14001393", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2398.0, + "kind": "calibration_drift", + "ledger_value": 2705.0, + "name": "dwp.uc.households_by_area_children_0@E14001394", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2471.0, + "kind": "calibration_drift", + "ledger_value": 2795.0, + "name": "dwp.uc.households_by_area_children_0@E14001395", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2732.0, + "kind": "calibration_drift", + "ledger_value": 3275.0, + "name": "dwp.uc.households_by_area_children_0@E14001396", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2916.0, + "kind": "calibration_drift", + "ledger_value": 3630.0, + "name": "dwp.uc.households_by_area_children_0@E14001397", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3261.0, + "kind": "calibration_drift", + "ledger_value": 3780.0, + "name": "dwp.uc.households_by_area_children_0@E14001398", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1951.0, + "kind": "calibration_drift", + "ledger_value": 2243.0, + "name": "dwp.uc.households_by_area_children_0@E14001399", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3867.0, + "kind": "calibration_drift", + "ledger_value": 4257.0, + "name": "dwp.uc.households_by_area_children_0@E14001400", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4895.0, + "kind": "calibration_drift", + "ledger_value": 5009.0, + "name": "dwp.uc.households_by_area_children_0@E14001401", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2588.0, + "kind": "calibration_drift", + "ledger_value": 2648.0, + "name": "dwp.uc.households_by_area_children_0@E14001402", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3366.0, + "kind": "calibration_drift", + "ledger_value": 3501.0, + "name": "dwp.uc.households_by_area_children_0@E14001403", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3339.0, + "kind": "calibration_drift", + "ledger_value": 3716.0, + "name": "dwp.uc.households_by_area_children_0@E14001404", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4040.0, + "kind": "calibration_drift", + "ledger_value": 4678.0, + "name": "dwp.uc.households_by_area_children_0@E14001405", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7003.0, + "kind": "calibration_drift", + "ledger_value": 8257.0, + "name": "dwp.uc.households_by_area_children_0@E14001406", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4015.0, + "kind": "calibration_drift", + "ledger_value": 4139.0, + "name": "dwp.uc.households_by_area_children_0@E14001407", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4158.0, + "kind": "calibration_drift", + "ledger_value": 5038.0, + "name": "dwp.uc.households_by_area_children_0@E14001408", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5059.0, + "kind": "calibration_drift", + "ledger_value": 6977.0, + "name": "dwp.uc.households_by_area_children_0@E14001409", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8085.0, + "kind": "calibration_drift", + "ledger_value": 11100.0, + "name": "dwp.uc.households_by_area_children_0@E14001410", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7829.0, + "kind": "calibration_drift", + "ledger_value": 8658.0, + "name": "dwp.uc.households_by_area_children_0@E14001411", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5432.0, + "kind": "calibration_drift", + "ledger_value": 6571.0, + "name": "dwp.uc.households_by_area_children_0@E14001412", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4804.0, + "kind": "calibration_drift", + "ledger_value": 5539.0, + "name": "dwp.uc.households_by_area_children_0@E14001413", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2612.0, + "kind": "calibration_drift", + "ledger_value": 2856.0, + "name": "dwp.uc.households_by_area_children_0@E14001414", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6730.0, + "kind": "calibration_drift", + "ledger_value": 7175.0, + "name": "dwp.uc.households_by_area_children_0@E14001415", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7688.0, + "kind": "calibration_drift", + "ledger_value": 8192.0, + "name": "dwp.uc.households_by_area_children_0@E14001416", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3320.0, + "kind": "calibration_drift", + "ledger_value": 4019.0, + "name": "dwp.uc.households_by_area_children_0@E14001417", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2816.0, + "kind": "calibration_drift", + "ledger_value": 3319.0, + "name": "dwp.uc.households_by_area_children_0@E14001418", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4449.0, + "kind": "calibration_drift", + "ledger_value": 5501.0, + "name": "dwp.uc.households_by_area_children_0@E14001419", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2110.0, + "kind": "calibration_drift", + "ledger_value": 2641.0, + "name": "dwp.uc.households_by_area_children_0@E14001420", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7493.0, + "kind": "calibration_drift", + "ledger_value": 9973.0, + "name": "dwp.uc.households_by_area_children_0@E14001421", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5369.0, + "kind": "calibration_drift", + "ledger_value": 5766.0, + "name": "dwp.uc.households_by_area_children_0@E14001422", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2638.0, + "kind": "calibration_drift", + "ledger_value": 3201.0, + "name": "dwp.uc.households_by_area_children_0@E14001423", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2812.0, + "kind": "calibration_drift", + "ledger_value": 3437.0, + "name": "dwp.uc.households_by_area_children_0@E14001424", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8508.0, + "kind": "calibration_drift", + "ledger_value": 9443.0, + "name": "dwp.uc.households_by_area_children_0@E14001425", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5025.0, + "kind": "calibration_drift", + "ledger_value": 5471.0, + "name": "dwp.uc.households_by_area_children_0@E14001426", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6381.0, + "kind": "calibration_drift", + "ledger_value": 9312.0, + "name": "dwp.uc.households_by_area_children_0@E14001427", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5343.0, + "kind": "calibration_drift", + "ledger_value": 6233.0, + "name": "dwp.uc.households_by_area_children_0@E14001428", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3529.0, + "kind": "calibration_drift", + "ledger_value": 4240.0, + "name": "dwp.uc.households_by_area_children_0@E14001429", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8667.0, + "kind": "calibration_drift", + "ledger_value": 9691.0, + "name": "dwp.uc.households_by_area_children_0@E14001430", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4511.0, + "kind": "calibration_drift", + "ledger_value": 5035.0, + "name": "dwp.uc.households_by_area_children_0@E14001431", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5986.0, + "kind": "calibration_drift", + "ledger_value": 7701.0, + "name": "dwp.uc.households_by_area_children_0@E14001432", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7414.0, + "kind": "calibration_drift", + "ledger_value": 9098.0, + "name": "dwp.uc.households_by_area_children_0@E14001433", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4426.0, + "kind": "calibration_drift", + "ledger_value": 5527.0, + "name": "dwp.uc.households_by_area_children_0@E14001434", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8704.0, + "kind": "calibration_drift", + "ledger_value": 11916.0, + "name": "dwp.uc.households_by_area_children_0@E14001435", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5052.0, + "kind": "calibration_drift", + "ledger_value": 5938.0, + "name": "dwp.uc.households_by_area_children_0@E14001436", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2224.0, + "kind": "calibration_drift", + "ledger_value": 2453.0, + "name": "dwp.uc.households_by_area_children_0@E14001437", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4632.0, + "kind": "calibration_drift", + "ledger_value": 6002.0, + "name": "dwp.uc.households_by_area_children_0@E14001438", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2716.0, + "kind": "calibration_drift", + "ledger_value": 2843.0, + "name": "dwp.uc.households_by_area_children_0@E14001439", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5459.0, + "kind": "calibration_drift", + "ledger_value": 6869.0, + "name": "dwp.uc.households_by_area_children_0@E14001440", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4109.0, + "kind": "calibration_drift", + "ledger_value": 4708.0, + "name": "dwp.uc.households_by_area_children_0@E14001441", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2412.0, + "kind": "calibration_drift", + "ledger_value": 2757.0, + "name": "dwp.uc.households_by_area_children_0@E14001442", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2552.0, + "kind": "calibration_drift", + "ledger_value": 2693.0, + "name": "dwp.uc.households_by_area_children_0@E14001443", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2396.0, + "kind": "calibration_drift", + "ledger_value": 2602.0, + "name": "dwp.uc.households_by_area_children_0@E14001444", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2577.0, + "kind": "calibration_drift", + "ledger_value": 3272.0, + "name": "dwp.uc.households_by_area_children_0@E14001445", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6973.0, + "kind": "calibration_drift", + "ledger_value": 7834.0, + "name": "dwp.uc.households_by_area_children_0@E14001446", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4523.0, + "kind": "calibration_drift", + "ledger_value": 5116.0, + "name": "dwp.uc.households_by_area_children_0@E14001447", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4515.0, + "kind": "calibration_drift", + "ledger_value": 4882.0, + "name": "dwp.uc.households_by_area_children_0@E14001448", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2427.0, + "kind": "calibration_drift", + "ledger_value": 2794.0, + "name": "dwp.uc.households_by_area_children_0@E14001449", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4582.0, + "kind": "calibration_drift", + "ledger_value": 5492.0, + "name": "dwp.uc.households_by_area_children_0@E14001450", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3660.0, + "kind": "calibration_drift", + "ledger_value": 4048.0, + "name": "dwp.uc.households_by_area_children_0@E14001451", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7357.0, + "kind": "calibration_drift", + "ledger_value": 9078.0, + "name": "dwp.uc.households_by_area_children_0@E14001452", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3876.0, + "kind": "calibration_drift", + "ledger_value": 4470.0, + "name": "dwp.uc.households_by_area_children_0@E14001453", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2488.0, + "kind": "calibration_drift", + "ledger_value": 2930.0, + "name": "dwp.uc.households_by_area_children_0@E14001454", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4726.0, + "kind": "calibration_drift", + "ledger_value": 5769.0, + "name": "dwp.uc.households_by_area_children_0@E14001455", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2719.0, + "kind": "calibration_drift", + "ledger_value": 3089.0, + "name": "dwp.uc.households_by_area_children_0@E14001456", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2187.0, + "kind": "calibration_drift", + "ledger_value": 2645.0, + "name": "dwp.uc.households_by_area_children_0@E14001457", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2200.0, + "kind": "calibration_drift", + "ledger_value": 2417.0, + "name": "dwp.uc.households_by_area_children_0@E14001458", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8083.0, + "kind": "calibration_drift", + "ledger_value": 10608.0, + "name": "dwp.uc.households_by_area_children_0@E14001459", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2741.0, + "kind": "calibration_drift", + "ledger_value": 3259.0, + "name": "dwp.uc.households_by_area_children_0@E14001460", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4368.0, + "kind": "calibration_drift", + "ledger_value": 5590.0, + "name": "dwp.uc.households_by_area_children_0@E14001461", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5467.0, + "kind": "calibration_drift", + "ledger_value": 6149.0, + "name": "dwp.uc.households_by_area_children_0@E14001462", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2329.0, + "kind": "calibration_drift", + "ledger_value": 2877.0, + "name": "dwp.uc.households_by_area_children_0@E14001463", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3044.0, + "kind": "calibration_drift", + "ledger_value": 3206.0, + "name": "dwp.uc.households_by_area_children_0@E14001464", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2427.0, + "kind": "calibration_drift", + "ledger_value": 2676.0, + "name": "dwp.uc.households_by_area_children_0@E14001465", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8787.0, + "kind": "calibration_drift", + "ledger_value": 10025.0, + "name": "dwp.uc.households_by_area_children_0@E14001466", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3379.0, + "kind": "calibration_drift", + "ledger_value": 5520.0, + "name": "dwp.uc.households_by_area_children_0@E14001467", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1466.0, + "kind": "calibration_drift", + "ledger_value": 2009.0, + "name": "dwp.uc.households_by_area_children_0@E14001468", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6892.0, + "kind": "calibration_drift", + "ledger_value": 8319.0, + "name": "dwp.uc.households_by_area_children_0@E14001469", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5882.0, + "kind": "calibration_drift", + "ledger_value": 6811.0, + "name": "dwp.uc.households_by_area_children_0@E14001470", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4115.0, + "kind": "calibration_drift", + "ledger_value": 4593.0, + "name": "dwp.uc.households_by_area_children_0@E14001471", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3371.0, + "kind": "calibration_drift", + "ledger_value": 3957.0, + "name": "dwp.uc.households_by_area_children_0@E14001472", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3284.0, + "kind": "calibration_drift", + "ledger_value": 3805.0, + "name": "dwp.uc.households_by_area_children_0@E14001473", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5579.0, + "kind": "calibration_drift", + "ledger_value": 6376.0, + "name": "dwp.uc.households_by_area_children_0@E14001474", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2233.0, + "kind": "calibration_drift", + "ledger_value": 2625.0, + "name": "dwp.uc.households_by_area_children_0@E14001475", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2777.0, + "kind": "calibration_drift", + "ledger_value": 2990.0, + "name": "dwp.uc.households_by_area_children_0@E14001476", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6949.0, + "kind": "calibration_drift", + "ledger_value": 6932.0, + "name": "dwp.uc.households_by_area_children_0@E14001477", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7155.0, + "kind": "calibration_drift", + "ledger_value": 7662.0, + "name": "dwp.uc.households_by_area_children_0@E14001478", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2339.0, + "kind": "calibration_drift", + "ledger_value": 2809.0, + "name": "dwp.uc.households_by_area_children_0@E14001479", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4465.0, + "kind": "calibration_drift", + "ledger_value": 4841.0, + "name": "dwp.uc.households_by_area_children_0@E14001480", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2231.0, + "kind": "calibration_drift", + "ledger_value": 2445.0, + "name": "dwp.uc.households_by_area_children_0@E14001481", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2080.0, + "kind": "calibration_drift", + "ledger_value": 2301.0, + "name": "dwp.uc.households_by_area_children_0@E14001482", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3312.0, + "kind": "calibration_drift", + "ledger_value": 3488.0, + "name": "dwp.uc.households_by_area_children_0@E14001483", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3012.0, + "kind": "calibration_drift", + "ledger_value": 3545.0, + "name": "dwp.uc.households_by_area_children_0@E14001484", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3853.0, + "kind": "calibration_drift", + "ledger_value": 4772.0, + "name": "dwp.uc.households_by_area_children_0@E14001485", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3274.0, + "kind": "calibration_drift", + "ledger_value": 3861.0, + "name": "dwp.uc.households_by_area_children_0@E14001486", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4097.0, + "kind": "calibration_drift", + "ledger_value": 4431.0, + "name": "dwp.uc.households_by_area_children_0@E14001487", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2612.0, + "kind": "calibration_drift", + "ledger_value": 2660.0, + "name": "dwp.uc.households_by_area_children_0@E14001488", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2556.0, + "kind": "calibration_drift", + "ledger_value": 2729.0, + "name": "dwp.uc.households_by_area_children_0@E14001489", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2124.0, + "kind": "calibration_drift", + "ledger_value": 2160.0, + "name": "dwp.uc.households_by_area_children_0@E14001490", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2834.0, + "kind": "calibration_drift", + "ledger_value": 3178.0, + "name": "dwp.uc.households_by_area_children_0@E14001491", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5472.0, + "kind": "calibration_drift", + "ledger_value": 7360.0, + "name": "dwp.uc.households_by_area_children_0@E14001492", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2422.0, + "kind": "calibration_drift", + "ledger_value": 2798.0, + "name": "dwp.uc.households_by_area_children_0@E14001493", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2653.0, + "kind": "calibration_drift", + "ledger_value": 2850.0, + "name": "dwp.uc.households_by_area_children_0@E14001494", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2320.0, + "kind": "calibration_drift", + "ledger_value": 2420.0, + "name": "dwp.uc.households_by_area_children_0@E14001495", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2517.0, + "kind": "calibration_drift", + "ledger_value": 2929.0, + "name": "dwp.uc.households_by_area_children_0@E14001496", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3652.0, + "kind": "calibration_drift", + "ledger_value": 4002.0, + "name": "dwp.uc.households_by_area_children_0@E14001497", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3476.0, + "kind": "calibration_drift", + "ledger_value": 3985.0, + "name": "dwp.uc.households_by_area_children_0@E14001498", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5554.0, + "kind": "calibration_drift", + "ledger_value": 6708.0, + "name": "dwp.uc.households_by_area_children_0@E14001499", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5963.0, + "kind": "calibration_drift", + "ledger_value": 7489.0, + "name": "dwp.uc.households_by_area_children_0@E14001500", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5924.0, + "kind": "calibration_drift", + "ledger_value": 7483.0, + "name": "dwp.uc.households_by_area_children_0@E14001501", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3754.0, + "kind": "calibration_drift", + "ledger_value": 4677.0, + "name": "dwp.uc.households_by_area_children_0@E14001502", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7734.0, + "kind": "calibration_drift", + "ledger_value": 10047.0, + "name": "dwp.uc.households_by_area_children_0@E14001503", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3910.0, + "kind": "calibration_drift", + "ledger_value": 5057.0, + "name": "dwp.uc.households_by_area_children_0@E14001504", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3460.0, + "kind": "calibration_drift", + "ledger_value": 3834.0, + "name": "dwp.uc.households_by_area_children_0@E14001505", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4052.0, + "kind": "calibration_drift", + "ledger_value": 4589.0, + "name": "dwp.uc.households_by_area_children_0@E14001506", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2708.0, + "kind": "calibration_drift", + "ledger_value": 3235.0, + "name": "dwp.uc.households_by_area_children_0@E14001507", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4450.0, + "kind": "calibration_drift", + "ledger_value": 5458.0, + "name": "dwp.uc.households_by_area_children_0@E14001508", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4993.0, + "kind": "calibration_drift", + "ledger_value": 5969.0, + "name": "dwp.uc.households_by_area_children_0@E14001509", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5293.0, + "kind": "calibration_drift", + "ledger_value": 6804.0, + "name": "dwp.uc.households_by_area_children_0@E14001510", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3389.0, + "kind": "calibration_drift", + "ledger_value": 4247.0, + "name": "dwp.uc.households_by_area_children_0@E14001511", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2885.0, + "kind": "calibration_drift", + "ledger_value": 3018.0, + "name": "dwp.uc.households_by_area_children_0@E14001512", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3184.0, + "kind": "calibration_drift", + "ledger_value": 3618.0, + "name": "dwp.uc.households_by_area_children_0@E14001513", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2250.0, + "kind": "calibration_drift", + "ledger_value": 2615.0, + "name": "dwp.uc.households_by_area_children_0@E14001514", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5248.0, + "kind": "calibration_drift", + "ledger_value": 6043.0, + "name": "dwp.uc.households_by_area_children_0@E14001515", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4156.0, + "kind": "calibration_drift", + "ledger_value": 4748.0, + "name": "dwp.uc.households_by_area_children_0@E14001516", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5802.0, + "kind": "calibration_drift", + "ledger_value": 7110.0, + "name": "dwp.uc.households_by_area_children_0@E14001517", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6341.0, + "kind": "calibration_drift", + "ledger_value": 7960.0, + "name": "dwp.uc.households_by_area_children_0@E14001518", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2293.0, + "kind": "calibration_drift", + "ledger_value": 2469.0, + "name": "dwp.uc.households_by_area_children_0@E14001519", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7359.0, + "kind": "calibration_drift", + "ledger_value": 8999.0, + "name": "dwp.uc.households_by_area_children_0@E14001520", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5589.0, + "kind": "calibration_drift", + "ledger_value": 6279.0, + "name": "dwp.uc.households_by_area_children_0@E14001521", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3845.0, + "kind": "calibration_drift", + "ledger_value": 4124.0, + "name": "dwp.uc.households_by_area_children_0@E14001522", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2553.0, + "kind": "calibration_drift", + "ledger_value": 2737.0, + "name": "dwp.uc.households_by_area_children_0@E14001523", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4441.0, + "kind": "calibration_drift", + "ledger_value": 5377.0, + "name": "dwp.uc.households_by_area_children_0@E14001524", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7833.0, + "kind": "calibration_drift", + "ledger_value": 9711.0, + "name": "dwp.uc.households_by_area_children_0@E14001525", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2619.0, + "kind": "calibration_drift", + "ledger_value": 2927.0, + "name": "dwp.uc.households_by_area_children_0@E14001526", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6913.0, + "kind": "calibration_drift", + "ledger_value": 9242.0, + "name": "dwp.uc.households_by_area_children_0@E14001527", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4824.0, + "kind": "calibration_drift", + "ledger_value": 6101.0, + "name": "dwp.uc.households_by_area_children_0@E14001528", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2668.0, + "kind": "calibration_drift", + "ledger_value": 3153.0, + "name": "dwp.uc.households_by_area_children_0@E14001529", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2706.0, + "kind": "calibration_drift", + "ledger_value": 3120.0, + "name": "dwp.uc.households_by_area_children_0@E14001530", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5650.0, + "kind": "calibration_drift", + "ledger_value": 7912.0, + "name": "dwp.uc.households_by_area_children_0@E14001531", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2123.0, + "kind": "calibration_drift", + "ledger_value": 2322.0, + "name": "dwp.uc.households_by_area_children_0@E14001532", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2320.0, + "kind": "calibration_drift", + "ledger_value": 2397.0, + "name": "dwp.uc.households_by_area_children_0@E14001533", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3098.0, + "kind": "calibration_drift", + "ledger_value": 3432.0, + "name": "dwp.uc.households_by_area_children_0@E14001534", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2338.0, + "kind": "calibration_drift", + "ledger_value": 2959.0, + "name": "dwp.uc.households_by_area_children_0@E14001535", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4016.0, + "kind": "calibration_drift", + "ledger_value": 4378.0, + "name": "dwp.uc.households_by_area_children_0@E14001536", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4824.0, + "kind": "calibration_drift", + "ledger_value": 5913.0, + "name": "dwp.uc.households_by_area_children_0@E14001537", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3899.0, + "kind": "calibration_drift", + "ledger_value": 4252.0, + "name": "dwp.uc.households_by_area_children_0@E14001538", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2159.0, + "kind": "calibration_drift", + "ledger_value": 2571.0, + "name": "dwp.uc.households_by_area_children_0@E14001539", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3722.0, + "kind": "calibration_drift", + "ledger_value": 4374.0, + "name": "dwp.uc.households_by_area_children_0@E14001540", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6032.0, + "kind": "calibration_drift", + "ledger_value": 6634.0, + "name": "dwp.uc.households_by_area_children_0@E14001541", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2813.0, + "kind": "calibration_drift", + "ledger_value": 2934.0, + "name": "dwp.uc.households_by_area_children_0@E14001542", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3793.0, + "kind": "calibration_drift", + "ledger_value": 4101.0, + "name": "dwp.uc.households_by_area_children_0@E14001543", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2714.0, + "kind": "calibration_drift", + "ledger_value": 2999.0, + "name": "dwp.uc.households_by_area_children_0@E14001544", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2880.0, + "kind": "calibration_drift", + "ledger_value": 2783.0, + "name": "dwp.uc.households_by_area_children_0@E14001545", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5933.0, + "kind": "calibration_drift", + "ledger_value": 6179.0, + "name": "dwp.uc.households_by_area_children_0@E14001546", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7721.0, + "kind": "calibration_drift", + "ledger_value": 8551.0, + "name": "dwp.uc.households_by_area_children_0@E14001547", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3029.0, + "kind": "calibration_drift", + "ledger_value": 3533.0, + "name": "dwp.uc.households_by_area_children_0@E14001548", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2528.0, + "kind": "calibration_drift", + "ledger_value": 2782.0, + "name": "dwp.uc.households_by_area_children_0@E14001549", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4050.0, + "kind": "calibration_drift", + "ledger_value": 5496.0, + "name": "dwp.uc.households_by_area_children_0@E14001550", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5160.0, + "kind": "calibration_drift", + "ledger_value": 6803.0, + "name": "dwp.uc.households_by_area_children_0@E14001551", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3182.0, + "kind": "calibration_drift", + "ledger_value": 3734.0, + "name": "dwp.uc.households_by_area_children_0@E14001552", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 11715.0, + "kind": "calibration_drift", + "ledger_value": 15293.0, + "name": "dwp.uc.households_by_area_children_0@E14001553", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3122.0, + "kind": "calibration_drift", + "ledger_value": 3854.0, + "name": "dwp.uc.households_by_area_children_0@E14001554", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2962.0, + "kind": "calibration_drift", + "ledger_value": 3466.0, + "name": "dwp.uc.households_by_area_children_0@E14001555", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2627.0, + "kind": "calibration_drift", + "ledger_value": 3321.0, + "name": "dwp.uc.households_by_area_children_0@E14001556", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3690.0, + "kind": "calibration_drift", + "ledger_value": 4921.0, + "name": "dwp.uc.households_by_area_children_0@E14001557", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4771.0, + "kind": "calibration_drift", + "ledger_value": 5572.0, + "name": "dwp.uc.households_by_area_children_0@E14001558", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6493.0, + "kind": "calibration_drift", + "ledger_value": 8968.0, + "name": "dwp.uc.households_by_area_children_0@E14001559", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5167.0, + "kind": "calibration_drift", + "ledger_value": 6144.0, + "name": "dwp.uc.households_by_area_children_0@E14001560", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5472.0, + "kind": "calibration_drift", + "ledger_value": 6870.0, + "name": "dwp.uc.households_by_area_children_0@E14001561", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9002.0, + "kind": "calibration_drift", + "ledger_value": 9819.0, + "name": "dwp.uc.households_by_area_children_0@E14001562", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7238.0, + "kind": "calibration_drift", + "ledger_value": 8736.0, + "name": "dwp.uc.households_by_area_children_0@E14001563", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4327.0, + "kind": "calibration_drift", + "ledger_value": 5302.0, + "name": "dwp.uc.households_by_area_children_0@E14001564", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3428.0, + "kind": "calibration_drift", + "ledger_value": 4304.0, + "name": "dwp.uc.households_by_area_children_0@E14001565", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3376.0, + "kind": "calibration_drift", + "ledger_value": 4161.0, + "name": "dwp.uc.households_by_area_children_0@E14001566", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5578.0, + "kind": "calibration_drift", + "ledger_value": 6762.0, + "name": "dwp.uc.households_by_area_children_0@E14001567", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4573.0, + "kind": "calibration_drift", + "ledger_value": 5264.0, + "name": "dwp.uc.households_by_area_children_0@E14001568", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2456.0, + "kind": "calibration_drift", + "ledger_value": 2815.0, + "name": "dwp.uc.households_by_area_children_0@E14001569", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2787.0, + "kind": "calibration_drift", + "ledger_value": 3015.0, + "name": "dwp.uc.households_by_area_children_0@E14001570", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5068.0, + "kind": "calibration_drift", + "ledger_value": 5535.0, + "name": "dwp.uc.households_by_area_children_0@E14001571", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2445.0, + "kind": "calibration_drift", + "ledger_value": 2823.0, + "name": "dwp.uc.households_by_area_children_0@E14001572", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4344.0, + "kind": "calibration_drift", + "ledger_value": 5056.0, + "name": "dwp.uc.households_by_area_children_0@E14001573", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6313.0, + "kind": "calibration_drift", + "ledger_value": 7184.0, + "name": "dwp.uc.households_by_area_children_0@E14001574", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2657.0, + "kind": "calibration_drift", + "ledger_value": 3071.0, + "name": "dwp.uc.households_by_area_children_0@E14001575", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9686.0, + "kind": "calibration_drift", + "ledger_value": 11068.0, + "name": "dwp.uc.households_by_area_children_0@E14001576", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4007.0, + "kind": "calibration_drift", + "ledger_value": 4732.0, + "name": "dwp.uc.households_by_area_children_0@E14001577", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3686.0, + "kind": "calibration_drift", + "ledger_value": 4019.0, + "name": "dwp.uc.households_by_area_children_0@E14001578", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2907.0, + "kind": "calibration_drift", + "ledger_value": 3315.0, + "name": "dwp.uc.households_by_area_children_0@E14001579", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1924.0, + "kind": "calibration_drift", + "ledger_value": 2258.0, + "name": "dwp.uc.households_by_area_children_0@E14001580", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4623.0, + "kind": "calibration_drift", + "ledger_value": 5778.0, + "name": "dwp.uc.households_by_area_children_0@E14001581", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1669.0, + "kind": "calibration_drift", + "ledger_value": 1835.0, + "name": "dwp.uc.households_by_area_children_0@E14001582", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4070.0, + "kind": "calibration_drift", + "ledger_value": 5216.0, + "name": "dwp.uc.households_by_area_children_0@E14001583", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4771.0, + "kind": "calibration_drift", + "ledger_value": 5819.0, + "name": "dwp.uc.households_by_area_children_0@E14001584", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5494.0, + "kind": "calibration_drift", + "ledger_value": 6822.0, + "name": "dwp.uc.households_by_area_children_0@E14001585", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2705.0, + "kind": "calibration_drift", + "ledger_value": 3462.0, + "name": "dwp.uc.households_by_area_children_0@E14001586", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2403.0, + "kind": "calibration_drift", + "ledger_value": 2905.0, + "name": "dwp.uc.households_by_area_children_0@E14001587", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2956.0, + "kind": "calibration_drift", + "ledger_value": 3377.0, + "name": "dwp.uc.households_by_area_children_0@E14001588", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2039.0, + "kind": "calibration_drift", + "ledger_value": 2456.0, + "name": "dwp.uc.households_by_area_children_0@E14001589", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3183.0, + "kind": "calibration_drift", + "ledger_value": 3376.0, + "name": "dwp.uc.households_by_area_children_0@E14001590", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2582.0, + "kind": "calibration_drift", + "ledger_value": 2633.0, + "name": "dwp.uc.households_by_area_children_0@E14001591", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2706.0, + "kind": "calibration_drift", + "ledger_value": 2971.0, + "name": "dwp.uc.households_by_area_children_0@E14001592", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1865.0, + "kind": "calibration_drift", + "ledger_value": 1949.0, + "name": "dwp.uc.households_by_area_children_0@E14001593", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6726.0, + "kind": "calibration_drift", + "ledger_value": 7373.0, + "name": "dwp.uc.households_by_area_children_0@E14001594", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8948.0, + "kind": "calibration_drift", + "ledger_value": 9876.0, + "name": "dwp.uc.households_by_area_children_0@E14001595", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6130.0, + "kind": "calibration_drift", + "ledger_value": 7852.0, + "name": "dwp.uc.households_by_area_children_0@E14001596", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4198.0, + "kind": "calibration_drift", + "ledger_value": 5026.0, + "name": "dwp.uc.households_by_area_children_0@E14001597", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5240.0, + "kind": "calibration_drift", + "ledger_value": 6409.0, + "name": "dwp.uc.households_by_area_children_0@E14001598", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3436.0, + "kind": "calibration_drift", + "ledger_value": 4241.0, + "name": "dwp.uc.households_by_area_children_0@E14001599", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4162.0, + "kind": "calibration_drift", + "ledger_value": 4702.0, + "name": "dwp.uc.households_by_area_children_0@E14001600", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4054.0, + "kind": "calibration_drift", + "ledger_value": 4717.0, + "name": "dwp.uc.households_by_area_children_0@E14001601", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6950.0, + "kind": "calibration_drift", + "ledger_value": 8002.0, + "name": "dwp.uc.households_by_area_children_0@E14001602", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3802.0, + "kind": "calibration_drift", + "ledger_value": 4379.0, + "name": "dwp.uc.households_by_area_children_0@E14001603", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3750.0, + "kind": "calibration_drift", + "ledger_value": 4775.0, + "name": "dwp.uc.households_by_area_children_0@E14001604", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1690.0, + "kind": "calibration_drift", + "ledger_value": 1895.0, + "name": "dwp.uc.households_by_area_children_0@E14001605", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2639.0, + "kind": "calibration_drift", + "ledger_value": 2807.0, + "name": "dwp.uc.households_by_area_children_0@S14000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 810.0, + "kind": "calibration_drift", + "ledger_value": 991.0, + "name": "dwp.uc.households_by_area_children_0@S14000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4415.0, + "kind": "calibration_drift", + "ledger_value": 4674.0, + "name": "dwp.uc.households_by_area_children_0@S14000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5673.0, + "kind": "calibration_drift", + "ledger_value": 6981.0, + "name": "dwp.uc.households_by_area_children_0@S14000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1285.0, + "kind": "calibration_drift", + "ledger_value": 1521.0, + "name": "dwp.uc.households_by_area_children_0@S14000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5843.0, + "kind": "calibration_drift", + "ledger_value": 7083.0, + "name": "dwp.uc.households_by_area_children_0@S14000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3898.0, + "kind": "calibration_drift", + "ledger_value": 5169.0, + "name": "dwp.uc.households_by_area_children_0@S14000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4344.0, + "kind": "calibration_drift", + "ledger_value": 5079.0, + "name": "dwp.uc.households_by_area_children_0@S14000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5717.0, + "kind": "calibration_drift", + "ledger_value": 6498.0, + "name": "dwp.uc.households_by_area_children_0@S14000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5112.0, + "kind": "calibration_drift", + "ledger_value": 6002.0, + "name": "dwp.uc.households_by_area_children_0@S14000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4139.0, + "kind": "calibration_drift", + "ledger_value": 4685.0, + "name": "dwp.uc.households_by_area_children_0@S14000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4899.0, + "kind": "calibration_drift", + "ledger_value": 5378.0, + "name": "dwp.uc.households_by_area_children_0@S14000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3577.0, + "kind": "calibration_drift", + "ledger_value": 4392.0, + "name": "dwp.uc.households_by_area_children_0@S14000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4934.0, + "kind": "calibration_drift", + "ledger_value": 5379.0, + "name": "dwp.uc.households_by_area_children_0@S14000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3907.0, + "kind": "calibration_drift", + "ledger_value": 4599.0, + "name": "dwp.uc.households_by_area_children_0@S14000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5927.0, + "kind": "calibration_drift", + "ledger_value": 6950.0, + "name": "dwp.uc.households_by_area_children_0@S14000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5326.0, + "kind": "calibration_drift", + "ledger_value": 6361.0, + "name": "dwp.uc.households_by_area_children_0@S14000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4662.0, + "kind": "calibration_drift", + "ledger_value": 5188.0, + "name": "dwp.uc.households_by_area_children_0@S14000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4726.0, + "kind": "calibration_drift", + "ledger_value": 5600.0, + "name": "dwp.uc.households_by_area_children_0@S14000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3478.0, + "kind": "calibration_drift", + "ledger_value": 3963.0, + "name": "dwp.uc.households_by_area_children_0@S14000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6916.0, + "kind": "calibration_drift", + "ledger_value": 8914.0, + "name": "dwp.uc.households_by_area_children_0@S14000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4066.0, + "kind": "calibration_drift", + "ledger_value": 4524.0, + "name": "dwp.uc.households_by_area_children_0@S14000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3953.0, + "kind": "calibration_drift", + "ledger_value": 4515.0, + "name": "dwp.uc.households_by_area_children_0@S14000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5340.0, + "kind": "calibration_drift", + "ledger_value": 6869.0, + "name": "dwp.uc.households_by_area_children_0@S14000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5256.0, + "kind": "calibration_drift", + "ledger_value": 6676.0, + "name": "dwp.uc.households_by_area_children_0@S14000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2696.0, + "kind": "calibration_drift", + "ledger_value": 3292.0, + "name": "dwp.uc.households_by_area_children_0@S14000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4317.0, + "kind": "calibration_drift", + "ledger_value": 5480.0, + "name": "dwp.uc.households_by_area_children_0@S14000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2710.0, + "kind": "calibration_drift", + "ledger_value": 2946.0, + "name": "dwp.uc.households_by_area_children_0@S14000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4966.0, + "kind": "calibration_drift", + "ledger_value": 5815.0, + "name": "dwp.uc.households_by_area_children_0@S14000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 8191.0, + "kind": "calibration_drift", + "ledger_value": 9782.0, + "name": "dwp.uc.households_by_area_children_0@S14000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7185.0, + "kind": "calibration_drift", + "ledger_value": 9812.0, + "name": "dwp.uc.households_by_area_children_0@S14000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 9593.0, + "kind": "calibration_drift", + "ledger_value": 11577.0, + "name": "dwp.uc.households_by_area_children_0@S14000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5679.0, + "kind": "calibration_drift", + "ledger_value": 7025.0, + "name": "dwp.uc.households_by_area_children_0@S14000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7297.0, + "kind": "calibration_drift", + "ledger_value": 8610.0, + "name": "dwp.uc.households_by_area_children_0@S14000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6282.0, + "kind": "calibration_drift", + "ledger_value": 7933.0, + "name": "dwp.uc.households_by_area_children_0@S14000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6768.0, + "kind": "calibration_drift", + "ledger_value": 7636.0, + "name": "dwp.uc.households_by_area_children_0@S14000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2339.0, + "kind": "calibration_drift", + "ledger_value": 2490.0, + "name": "dwp.uc.households_by_area_children_0@S14000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5438.0, + "kind": "calibration_drift", + "ledger_value": 6384.0, + "name": "dwp.uc.households_by_area_children_0@S14000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5278.0, + "kind": "calibration_drift", + "ledger_value": 6564.0, + "name": "dwp.uc.households_by_area_children_0@S14000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4306.0, + "kind": "calibration_drift", + "ledger_value": 5043.0, + "name": "dwp.uc.households_by_area_children_0@S14000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5187.0, + "kind": "calibration_drift", + "ledger_value": 5788.0, + "name": "dwp.uc.households_by_area_children_0@S14000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3880.0, + "kind": "calibration_drift", + "ledger_value": 4201.0, + "name": "dwp.uc.households_by_area_children_0@S14000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2183.0, + "kind": "calibration_drift", + "ledger_value": 2494.0, + "name": "dwp.uc.households_by_area_children_0@S14000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3690.0, + "kind": "calibration_drift", + "ledger_value": 4037.0, + "name": "dwp.uc.households_by_area_children_0@S14000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5789.0, + "kind": "calibration_drift", + "ledger_value": 6866.0, + "name": "dwp.uc.households_by_area_children_0@S14000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3167.0, + "kind": "calibration_drift", + "ledger_value": 3627.0, + "name": "dwp.uc.households_by_area_children_0@S14000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4897.0, + "kind": "calibration_drift", + "ledger_value": 5845.0, + "name": "dwp.uc.households_by_area_children_0@S14000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5283.0, + "kind": "calibration_drift", + "ledger_value": 6432.0, + "name": "dwp.uc.households_by_area_children_0@S14000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3992.0, + "kind": "calibration_drift", + "ledger_value": 4599.0, + "name": "dwp.uc.households_by_area_children_0@S14000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4865.0, + "kind": "calibration_drift", + "ledger_value": 5766.0, + "name": "dwp.uc.households_by_area_children_0@S14000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3633.0, + "kind": "calibration_drift", + "ledger_value": 4330.0, + "name": "dwp.uc.households_by_area_children_0@S14000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6370.0, + "kind": "calibration_drift", + "ledger_value": 7578.0, + "name": "dwp.uc.households_by_area_children_0@S14000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5433.0, + "kind": "calibration_drift", + "ledger_value": 6708.0, + "name": "dwp.uc.households_by_area_children_0@S14000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4148.0, + "kind": "calibration_drift", + "ledger_value": 4811.0, + "name": "dwp.uc.households_by_area_children_0@S14000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4788.0, + "kind": "calibration_drift", + "ledger_value": 5559.0, + "name": "dwp.uc.households_by_area_children_0@S14000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5620.0, + "kind": "calibration_drift", + "ledger_value": 6731.0, + "name": "dwp.uc.households_by_area_children_0@S14000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2062.0, + "kind": "calibration_drift", + "ledger_value": 2171.0, + "name": "dwp.uc.households_by_area_children_0@S14000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5959.0, + "kind": "calibration_drift", + "ledger_value": 7245.0, + "name": "dwp.uc.households_by_area_children_0@W07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4267.0, + "kind": "calibration_drift", + "ledger_value": 4695.0, + "name": "dwp.uc.households_by_area_children_0@W07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3758.0, + "kind": "calibration_drift", + "ledger_value": 4614.0, + "name": "dwp.uc.households_by_area_children_0@W07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6428.0, + "kind": "calibration_drift", + "ledger_value": 7826.0, + "name": "dwp.uc.households_by_area_children_0@W07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3356.0, + "kind": "calibration_drift", + "ledger_value": 4044.0, + "name": "dwp.uc.households_by_area_children_0@W07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3809.0, + "kind": "calibration_drift", + "ledger_value": 4629.0, + "name": "dwp.uc.households_by_area_children_0@W07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3632.0, + "kind": "calibration_drift", + "ledger_value": 4375.0, + "name": "dwp.uc.households_by_area_children_0@W07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4945.0, + "kind": "calibration_drift", + "ledger_value": 5870.0, + "name": "dwp.uc.households_by_area_children_0@W07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6339.0, + "kind": "calibration_drift", + "ledger_value": 7824.0, + "name": "dwp.uc.households_by_area_children_0@W07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2862.0, + "kind": "calibration_drift", + "ledger_value": 3413.0, + "name": "dwp.uc.households_by_area_children_0@W07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4835.0, + "kind": "calibration_drift", + "ledger_value": 6171.0, + "name": "dwp.uc.households_by_area_children_0@W07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5815.0, + "kind": "calibration_drift", + "ledger_value": 6855.0, + "name": "dwp.uc.households_by_area_children_0@W07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3369.0, + "kind": "calibration_drift", + "ledger_value": 4033.0, + "name": "dwp.uc.households_by_area_children_0@W07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3558.0, + "kind": "calibration_drift", + "ledger_value": 4119.0, + "name": "dwp.uc.households_by_area_children_0@W07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5771.0, + "kind": "calibration_drift", + "ledger_value": 7026.0, + "name": "dwp.uc.households_by_area_children_0@W07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3509.0, + "kind": "calibration_drift", + "ledger_value": 4105.0, + "name": "dwp.uc.households_by_area_children_0@W07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3297.0, + "kind": "calibration_drift", + "ledger_value": 3875.0, + "name": "dwp.uc.households_by_area_children_0@W07000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4781.0, + "kind": "calibration_drift", + "ledger_value": 5584.0, + "name": "dwp.uc.households_by_area_children_0@W07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6020.0, + "kind": "calibration_drift", + "ledger_value": 7054.0, + "name": "dwp.uc.households_by_area_children_0@W07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4556.0, + "kind": "calibration_drift", + "ledger_value": 5303.0, + "name": "dwp.uc.households_by_area_children_0@W07000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2907.0, + "kind": "calibration_drift", + "ledger_value": 3506.0, + "name": "dwp.uc.households_by_area_children_0@W07000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4068.0, + "kind": "calibration_drift", + "ledger_value": 4532.0, + "name": "dwp.uc.households_by_area_children_0@W07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5243.0, + "kind": "calibration_drift", + "ledger_value": 6375.0, + "name": "dwp.uc.households_by_area_children_0@W07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7026.0, + "kind": "calibration_drift", + "ledger_value": 8047.0, + "name": "dwp.uc.households_by_area_children_0@W07000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4526.0, + "kind": "calibration_drift", + "ledger_value": 5299.0, + "name": "dwp.uc.households_by_area_children_0@W07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4840.0, + "kind": "calibration_drift", + "ledger_value": 5754.0, + "name": "dwp.uc.households_by_area_children_0@W07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 6192.0, + "kind": "calibration_drift", + "ledger_value": 7362.0, + "name": "dwp.uc.households_by_area_children_0@W07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 7117.0, + "kind": "calibration_drift", + "ledger_value": 9406.0, + "name": "dwp.uc.households_by_area_children_0@W07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5289.0, + "kind": "calibration_drift", + "ledger_value": 6224.0, + "name": "dwp.uc.households_by_area_children_0@W07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4422.0, + "kind": "calibration_drift", + "ledger_value": 5142.0, + "name": "dwp.uc.households_by_area_children_0@W07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4628.0, + "kind": "calibration_drift", + "ledger_value": 5209.0, + "name": "dwp.uc.households_by_area_children_0@W07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3003.0, + "kind": "calibration_drift", + "ledger_value": 3528.0, + "name": "dwp.uc.households_by_area_children_0@W07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1593.0, + "kind": "calibration_drift", + "ledger_value": 1760.0, + "name": "dwp.uc.households_by_area_children_1@E14001063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1369.0, + "kind": "calibration_drift", + "ledger_value": 1490.0, + "name": "dwp.uc.households_by_area_children_1@E14001064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 972.0, + "kind": "calibration_drift", + "ledger_value": 1030.0, + "name": "dwp.uc.households_by_area_children_1@E14001065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1652.0, + "kind": "calibration_drift", + "ledger_value": 1818.0, + "name": "dwp.uc.households_by_area_children_1@E14001066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 945.0, + "kind": "calibration_drift", + "ledger_value": 1071.0, + "name": "dwp.uc.households_by_area_children_1@E14001067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2046.0, + "kind": "calibration_drift", + "ledger_value": 2237.0, + "name": "dwp.uc.households_by_area_children_1@E14001068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1864.0, + "kind": "calibration_drift", + "ledger_value": 2032.0, + "name": "dwp.uc.households_by_area_children_1@E14001069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2705.0, + "kind": "calibration_drift", + "ledger_value": 2828.0, + "name": "dwp.uc.households_by_area_children_1@E14001070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1829.0, + "kind": "calibration_drift", + "ledger_value": 1849.0, + "name": "dwp.uc.households_by_area_children_1@E14001071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1373.0, + "kind": "calibration_drift", + "ledger_value": 1574.0, + "name": "dwp.uc.households_by_area_children_1@E14001072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4021.0, + "kind": "calibration_drift", + "ledger_value": 4640.0, + "name": "dwp.uc.households_by_area_children_1@E14001073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2399.0, + "kind": "calibration_drift", + "ledger_value": 2616.0, + "name": "dwp.uc.households_by_area_children_1@E14001074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2763.0, + "kind": "calibration_drift", + "ledger_value": 2899.0, + "name": "dwp.uc.households_by_area_children_1@E14001075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1551.0, + "kind": "calibration_drift", + "ledger_value": 1580.0, + "name": "dwp.uc.households_by_area_children_1@E14001076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2169.0, + "kind": "calibration_drift", + "ledger_value": 2296.0, + "name": "dwp.uc.households_by_area_children_1@E14001077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1661.0, + "kind": "calibration_drift", + "ledger_value": 1792.0, + "name": "dwp.uc.households_by_area_children_1@E14001078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2010.0, + "kind": "calibration_drift", + "ledger_value": 2115.0, + "name": "dwp.uc.households_by_area_children_1@E14001079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1240.0, + "kind": "calibration_drift", + "ledger_value": 1172.0, + "name": "dwp.uc.households_by_area_children_1@E14001080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1722.0, + "kind": "calibration_drift", + "ledger_value": 1725.0, + "name": "dwp.uc.households_by_area_children_1@E14001081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 926.0, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "dwp.uc.households_by_area_children_1@E14001082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1578.0, + "kind": "calibration_drift", + "ledger_value": 1826.0, + "name": "dwp.uc.households_by_area_children_1@E14001083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2524.0, + "kind": "calibration_drift", + "ledger_value": 2444.0, + "name": "dwp.uc.households_by_area_children_1@E14001084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2558.0, + "kind": "calibration_drift", + "ledger_value": 2437.0, + "name": "dwp.uc.households_by_area_children_1@E14001085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3847.0, + "kind": "calibration_drift", + "ledger_value": 3310.0, + "name": "dwp.uc.households_by_area_children_1@E14001086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1079.0, + "kind": "calibration_drift", + "ledger_value": 1150.0, + "name": "dwp.uc.households_by_area_children_1@E14001087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1321.0, + "kind": "calibration_drift", + "ledger_value": 1372.0, + "name": "dwp.uc.households_by_area_children_1@E14001088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1619.0, + "kind": "calibration_drift", + "ledger_value": 1802.0, + "name": "dwp.uc.households_by_area_children_1@E14001089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1082.0, + "kind": "calibration_drift", + "ledger_value": 1302.0, + "name": "dwp.uc.households_by_area_children_1@E14001090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3152.0, + "kind": "calibration_drift", + "ledger_value": 3099.0, + "name": "dwp.uc.households_by_area_children_1@E14001091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3040.0, + "kind": "calibration_drift", + "ledger_value": 2608.0, + "name": "dwp.uc.households_by_area_children_1@E14001092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4413.0, + "kind": "calibration_drift", + "ledger_value": 3973.0, + "name": "dwp.uc.households_by_area_children_1@E14001093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3685.0, + "kind": "calibration_drift", + "ledger_value": 2715.0, + "name": "dwp.uc.households_by_area_children_1@E14001094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4394.0, + "kind": "calibration_drift", + "ledger_value": 3923.0, + "name": "dwp.uc.households_by_area_children_1@E14001095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5946.0, + "kind": "calibration_drift", + "ledger_value": 4421.0, + "name": "dwp.uc.households_by_area_children_1@E14001096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3286.0, + "kind": "calibration_drift", + "ledger_value": 3265.0, + "name": "dwp.uc.households_by_area_children_1@E14001097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4792.0, + "kind": "calibration_drift", + "ledger_value": 4062.0, + "name": "dwp.uc.households_by_area_children_1@E14001098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2574.0, + "kind": "calibration_drift", + "ledger_value": 2246.0, + "name": "dwp.uc.households_by_area_children_1@E14001099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3962.0, + "kind": "calibration_drift", + "ledger_value": 3294.0, + "name": "dwp.uc.households_by_area_children_1@E14001100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2025.0, + "kind": "calibration_drift", + "ledger_value": 1947.0, + "name": "dwp.uc.households_by_area_children_1@E14001101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3401.0, + "kind": "calibration_drift", + "ledger_value": 3039.0, + "name": "dwp.uc.households_by_area_children_1@E14001102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3713.0, + "kind": "calibration_drift", + "ledger_value": 3537.0, + "name": "dwp.uc.households_by_area_children_1@E14001103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1933.0, + "kind": "calibration_drift", + "ledger_value": 1986.0, + "name": "dwp.uc.households_by_area_children_1@E14001104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3871.0, + "kind": "calibration_drift", + "ledger_value": 3551.0, + "name": "dwp.uc.households_by_area_children_1@E14001105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1732.0, + "kind": "calibration_drift", + "ledger_value": 1878.0, + "name": "dwp.uc.households_by_area_children_1@E14001106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2610.0, + "kind": "calibration_drift", + "ledger_value": 2714.0, + "name": "dwp.uc.households_by_area_children_1@E14001107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1934.0, + "kind": "calibration_drift", + "ledger_value": 2099.0, + "name": "dwp.uc.households_by_area_children_1@E14001108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1928.0, + "kind": "calibration_drift", + "ledger_value": 2112.0, + "name": "dwp.uc.households_by_area_children_1@E14001109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2991.0, + "kind": "calibration_drift", + "ledger_value": 2900.0, + "name": "dwp.uc.households_by_area_children_1@E14001110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3815.0, + "kind": "calibration_drift", + "ledger_value": 3707.0, + "name": "dwp.uc.households_by_area_children_1@E14001111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1713.0, + "kind": "calibration_drift", + "ledger_value": 1829.0, + "name": "dwp.uc.households_by_area_children_1@E14001112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3145.0, + "kind": "calibration_drift", + "ledger_value": 3066.0, + "name": "dwp.uc.households_by_area_children_1@E14001113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2845.0, + "kind": "calibration_drift", + "ledger_value": 3064.0, + "name": "dwp.uc.households_by_area_children_1@E14001114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2091.0, + "kind": "calibration_drift", + "ledger_value": 2154.0, + "name": "dwp.uc.households_by_area_children_1@E14001115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2065.0, + "kind": "calibration_drift", + "ledger_value": 2017.0, + "name": "dwp.uc.households_by_area_children_1@E14001116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1356.0, + "kind": "calibration_drift", + "ledger_value": 1572.0, + "name": "dwp.uc.households_by_area_children_1@E14001117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4031.0, + "kind": "calibration_drift", + "ledger_value": 3779.0, + "name": "dwp.uc.households_by_area_children_1@E14001118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3323.0, + "kind": "calibration_drift", + "ledger_value": 3368.0, + "name": "dwp.uc.households_by_area_children_1@E14001119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4258.0, + "kind": "calibration_drift", + "ledger_value": 3454.0, + "name": "dwp.uc.households_by_area_children_1@E14001120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1381.0, + "kind": "calibration_drift", + "ledger_value": 1548.0, + "name": "dwp.uc.households_by_area_children_1@E14001121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4537.0, + "kind": "calibration_drift", + "ledger_value": 4308.0, + "name": "dwp.uc.households_by_area_children_1@E14001122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2823.0, + "kind": "calibration_drift", + "ledger_value": 3179.0, + "name": "dwp.uc.households_by_area_children_1@E14001123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2800.0, + "kind": "calibration_drift", + "ledger_value": 3158.0, + "name": "dwp.uc.households_by_area_children_1@E14001124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1075.0, + "kind": "calibration_drift", + "ledger_value": 1219.0, + "name": "dwp.uc.households_by_area_children_1@E14001125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1810.0, + "kind": "calibration_drift", + "ledger_value": 1857.0, + "name": "dwp.uc.households_by_area_children_1@E14001126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1565.0, + "kind": "calibration_drift", + "ledger_value": 1606.0, + "name": "dwp.uc.households_by_area_children_1@E14001127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1194.0, + "kind": "calibration_drift", + "ledger_value": 1302.0, + "name": "dwp.uc.households_by_area_children_1@E14001128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2174.0, + "kind": "calibration_drift", + "ledger_value": 2012.0, + "name": "dwp.uc.households_by_area_children_1@E14001129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1801.0, + "kind": "calibration_drift", + "ledger_value": 1479.0, + "name": "dwp.uc.households_by_area_children_1@E14001130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1118.0, + "kind": "calibration_drift", + "ledger_value": 803.0, + "name": "dwp.uc.households_by_area_children_1@E14001131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2358.0, + "kind": "calibration_drift", + "ledger_value": 2035.0, + "name": "dwp.uc.households_by_area_children_1@E14001132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1976.0, + "kind": "calibration_drift", + "ledger_value": 1902.0, + "name": "dwp.uc.households_by_area_children_1@E14001133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1781.0, + "kind": "calibration_drift", + "ledger_value": 1748.0, + "name": "dwp.uc.households_by_area_children_1@E14001134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2453.0, + "kind": "calibration_drift", + "ledger_value": 2375.0, + "name": "dwp.uc.households_by_area_children_1@E14001135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1103.0, + "kind": "calibration_drift", + "ledger_value": 1252.0, + "name": "dwp.uc.households_by_area_children_1@E14001136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1182.0, + "kind": "calibration_drift", + "ledger_value": 1309.0, + "name": "dwp.uc.households_by_area_children_1@E14001137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1091.0, + "kind": "calibration_drift", + "ledger_value": 1141.0, + "name": "dwp.uc.households_by_area_children_1@E14001138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1896.0, + "kind": "calibration_drift", + "ledger_value": 2269.0, + "name": "dwp.uc.households_by_area_children_1@E14001139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1380.0, + "kind": "calibration_drift", + "ledger_value": 1418.0, + "name": "dwp.uc.households_by_area_children_1@E14001140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1627.0, + "kind": "calibration_drift", + "ledger_value": 1928.0, + "name": "dwp.uc.households_by_area_children_1@E14001141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3063.0, + "kind": "calibration_drift", + "ledger_value": 3094.0, + "name": "dwp.uc.households_by_area_children_1@E14001142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2071.0, + "kind": "calibration_drift", + "ledger_value": 2240.0, + "name": "dwp.uc.households_by_area_children_1@E14001143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2073.0, + "kind": "calibration_drift", + "ledger_value": 2101.0, + "name": "dwp.uc.households_by_area_children_1@E14001144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2255.0, + "kind": "calibration_drift", + "ledger_value": 2258.0, + "name": "dwp.uc.households_by_area_children_1@E14001145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1374.0, + "kind": "calibration_drift", + "ledger_value": 1551.0, + "name": "dwp.uc.households_by_area_children_1@E14001146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1612.0, + "kind": "calibration_drift", + "ledger_value": 1748.0, + "name": "dwp.uc.households_by_area_children_1@E14001147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1879.0, + "kind": "calibration_drift", + "ledger_value": 1947.0, + "name": "dwp.uc.households_by_area_children_1@E14001148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1436.0, + "kind": "calibration_drift", + "ledger_value": 1369.0, + "name": "dwp.uc.households_by_area_children_1@E14001149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1792.0, + "kind": "calibration_drift", + "ledger_value": 1994.0, + "name": "dwp.uc.households_by_area_children_1@E14001150", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1699.0, + "kind": "calibration_drift", + "ledger_value": 1654.0, + "name": "dwp.uc.households_by_area_children_1@E14001151", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1747.0, + "kind": "calibration_drift", + "ledger_value": 1907.0, + "name": "dwp.uc.households_by_area_children_1@E14001152", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1904.0, + "kind": "calibration_drift", + "ledger_value": 2012.0, + "name": "dwp.uc.households_by_area_children_1@E14001153", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1189.0, + "kind": "calibration_drift", + "ledger_value": 1212.0, + "name": "dwp.uc.households_by_area_children_1@E14001154", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1198.0, + "kind": "calibration_drift", + "ledger_value": 1373.0, + "name": "dwp.uc.households_by_area_children_1@E14001155", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1047.0, + "kind": "calibration_drift", + "ledger_value": 1294.0, + "name": "dwp.uc.households_by_area_children_1@E14001156", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2147.0, + "kind": "calibration_drift", + "ledger_value": 2273.0, + "name": "dwp.uc.households_by_area_children_1@E14001157", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 847.0, + "kind": "calibration_drift", + "ledger_value": 876.0, + "name": "dwp.uc.households_by_area_children_1@E14001158", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1479.0, + "kind": "calibration_drift", + "ledger_value": 1553.0, + "name": "dwp.uc.households_by_area_children_1@E14001159", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1893.0, + "kind": "calibration_drift", + "ledger_value": 1699.0, + "name": "dwp.uc.households_by_area_children_1@E14001160", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1314.0, + "kind": "calibration_drift", + "ledger_value": 1311.0, + "name": "dwp.uc.households_by_area_children_1@E14001161", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 836.0, + "kind": "calibration_drift", + "ledger_value": 960.0, + "name": "dwp.uc.households_by_area_children_1@E14001162", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1418.0, + "kind": "calibration_drift", + "ledger_value": 1356.0, + "name": "dwp.uc.households_by_area_children_1@E14001163", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 913.0, + "kind": "calibration_drift", + "ledger_value": 1055.0, + "name": "dwp.uc.households_by_area_children_1@E14001164", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1894.0, + "kind": "calibration_drift", + "ledger_value": 1895.0, + "name": "dwp.uc.households_by_area_children_1@E14001165", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1525.0, + "kind": "calibration_drift", + "ledger_value": 1740.0, + "name": "dwp.uc.households_by_area_children_1@E14001166", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1857.0, + "kind": "calibration_drift", + "ledger_value": 2099.0, + "name": "dwp.uc.households_by_area_children_1@E14001167", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1250.0, + "kind": "calibration_drift", + "ledger_value": 1350.0, + "name": "dwp.uc.households_by_area_children_1@E14001168", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1723.0, + "kind": "calibration_drift", + "ledger_value": 1969.0, + "name": "dwp.uc.households_by_area_children_1@E14001169", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1612.0, + "kind": "calibration_drift", + "ledger_value": 1818.0, + "name": "dwp.uc.households_by_area_children_1@E14001170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 943.0, + "kind": "calibration_drift", + "ledger_value": 1014.0, + "name": "dwp.uc.households_by_area_children_1@E14001171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1869.0, + "kind": "calibration_drift", + "ledger_value": 1545.0, + "name": "dwp.uc.households_by_area_children_1@E14001172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1503.0, + "kind": "calibration_drift", + "ledger_value": 1536.0, + "name": "dwp.uc.households_by_area_children_1@E14001173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2242.0, + "kind": "calibration_drift", + "ledger_value": 2055.0, + "name": "dwp.uc.households_by_area_children_1@E14001174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2301.0, + "kind": "calibration_drift", + "ledger_value": 2207.0, + "name": "dwp.uc.households_by_area_children_1@E14001175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2097.0, + "kind": "calibration_drift", + "ledger_value": 2272.0, + "name": "dwp.uc.households_by_area_children_1@E14001176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1267.0, + "kind": "calibration_drift", + "ledger_value": 1388.0, + "name": "dwp.uc.households_by_area_children_1@E14001177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1013.0, + "kind": "calibration_drift", + "ledger_value": 1083.0, + "name": "dwp.uc.households_by_area_children_1@E14001178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2121.0, + "kind": "calibration_drift", + "ledger_value": 2441.0, + "name": "dwp.uc.households_by_area_children_1@E14001179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3555.0, + "kind": "calibration_drift", + "ledger_value": 3785.0, + "name": "dwp.uc.households_by_area_children_1@E14001180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2214.0, + "kind": "calibration_drift", + "ledger_value": 2250.0, + "name": "dwp.uc.households_by_area_children_1@E14001181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2377.0, + "kind": "calibration_drift", + "ledger_value": 2181.0, + "name": "dwp.uc.households_by_area_children_1@E14001182", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1646.0, + "kind": "calibration_drift", + "ledger_value": 1902.0, + "name": "dwp.uc.households_by_area_children_1@E14001183", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2451.0, + "kind": "calibration_drift", + "ledger_value": 2658.0, + "name": "dwp.uc.households_by_area_children_1@E14001184", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2052.0, + "kind": "calibration_drift", + "ledger_value": 2291.0, + "name": "dwp.uc.households_by_area_children_1@E14001185", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2618.0, + "kind": "calibration_drift", + "ledger_value": 2736.0, + "name": "dwp.uc.households_by_area_children_1@E14001186", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1584.0, + "kind": "calibration_drift", + "ledger_value": 1982.0, + "name": "dwp.uc.households_by_area_children_1@E14001187", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4003.0, + "kind": "calibration_drift", + "ledger_value": 4676.0, + "name": "dwp.uc.households_by_area_children_1@E14001188", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3012.0, + "kind": "calibration_drift", + "ledger_value": 3404.0, + "name": "dwp.uc.households_by_area_children_1@E14001189", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2176.0, + "kind": "calibration_drift", + "ledger_value": 2247.0, + "name": "dwp.uc.households_by_area_children_1@E14001190", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1797.0, + "kind": "calibration_drift", + "ledger_value": 2085.0, + "name": "dwp.uc.households_by_area_children_1@E14001191", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1314.0, + "kind": "calibration_drift", + "ledger_value": 1570.0, + "name": "dwp.uc.households_by_area_children_1@E14001192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2205.0, + "kind": "calibration_drift", + "ledger_value": 2398.0, + "name": "dwp.uc.households_by_area_children_1@E14001193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3613.0, + "kind": "calibration_drift", + "ledger_value": 3431.0, + "name": "dwp.uc.households_by_area_children_1@E14001194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 1005.0, + "name": "dwp.uc.households_by_area_children_1@E14001195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3004.0, + "kind": "calibration_drift", + "ledger_value": 2857.0, + "name": "dwp.uc.households_by_area_children_1@E14001196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1256.0, + "kind": "calibration_drift", + "ledger_value": 1466.0, + "name": "dwp.uc.households_by_area_children_1@E14001197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2904.0, + "kind": "calibration_drift", + "ledger_value": 2845.0, + "name": "dwp.uc.households_by_area_children_1@E14001198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1572.0, + "kind": "calibration_drift", + "ledger_value": 1803.0, + "name": "dwp.uc.households_by_area_children_1@E14001199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2379.0, + "kind": "calibration_drift", + "ledger_value": 2558.0, + "name": "dwp.uc.households_by_area_children_1@E14001200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 899.0, + "kind": "calibration_drift", + "ledger_value": 972.0, + "name": "dwp.uc.households_by_area_children_1@E14001201", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2053.0, + "kind": "calibration_drift", + "ledger_value": 2242.0, + "name": "dwp.uc.households_by_area_children_1@E14001202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1416.0, + "kind": "calibration_drift", + "ledger_value": 1630.0, + "name": "dwp.uc.households_by_area_children_1@E14001203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2550.0, + "kind": "calibration_drift", + "ledger_value": 2577.0, + "name": "dwp.uc.households_by_area_children_1@E14001204", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2528.0, + "kind": "calibration_drift", + "ledger_value": 2659.0, + "name": "dwp.uc.households_by_area_children_1@E14001205", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1736.0, + "kind": "calibration_drift", + "ledger_value": 2033.0, + "name": "dwp.uc.households_by_area_children_1@E14001206", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3100.0, + "kind": "calibration_drift", + "ledger_value": 2885.0, + "name": "dwp.uc.households_by_area_children_1@E14001207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3350.0, + "kind": "calibration_drift", + "ledger_value": 3455.0, + "name": "dwp.uc.households_by_area_children_1@E14001208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2996.0, + "kind": "calibration_drift", + "ledger_value": 2969.0, + "name": "dwp.uc.households_by_area_children_1@E14001209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1206.0, + "kind": "calibration_drift", + "ledger_value": 1269.0, + "name": "dwp.uc.households_by_area_children_1@E14001210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2778.0, + "kind": "calibration_drift", + "ledger_value": 2862.0, + "name": "dwp.uc.households_by_area_children_1@E14001211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 966.0, + "kind": "calibration_drift", + "ledger_value": 1143.0, + "name": "dwp.uc.households_by_area_children_1@E14001212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3613.0, + "kind": "calibration_drift", + "ledger_value": 3799.0, + "name": "dwp.uc.households_by_area_children_1@E14001213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 879.0, + "kind": "calibration_drift", + "ledger_value": 988.0, + "name": "dwp.uc.households_by_area_children_1@E14001214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1142.0, + "kind": "calibration_drift", + "ledger_value": 1268.0, + "name": "dwp.uc.households_by_area_children_1@E14001215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2880.0, + "kind": "calibration_drift", + "ledger_value": 3047.0, + "name": "dwp.uc.households_by_area_children_1@E14001216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1168.0, + "kind": "calibration_drift", + "ledger_value": 1282.0, + "name": "dwp.uc.households_by_area_children_1@E14001217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1375.0, + "kind": "calibration_drift", + "ledger_value": 1502.0, + "name": "dwp.uc.households_by_area_children_1@E14001218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2168.0, + "kind": "calibration_drift", + "ledger_value": 2125.0, + "name": "dwp.uc.households_by_area_children_1@E14001219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1103.0, + "kind": "calibration_drift", + "ledger_value": 1254.0, + "name": "dwp.uc.households_by_area_children_1@E14001220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4066.0, + "kind": "calibration_drift", + "ledger_value": 4544.0, + "name": "dwp.uc.households_by_area_children_1@E14001221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1945.0, + "kind": "calibration_drift", + "ledger_value": 2077.0, + "name": "dwp.uc.households_by_area_children_1@E14001222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2123.0, + "kind": "calibration_drift", + "ledger_value": 2271.0, + "name": "dwp.uc.households_by_area_children_1@E14001223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1233.0, + "kind": "calibration_drift", + "ledger_value": 1367.0, + "name": "dwp.uc.households_by_area_children_1@E14001224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3960.0, + "kind": "calibration_drift", + "ledger_value": 4791.0, + "name": "dwp.uc.households_by_area_children_1@E14001225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1389.0, + "kind": "calibration_drift", + "ledger_value": 1642.0, + "name": "dwp.uc.households_by_area_children_1@E14001226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1033.0, + "kind": "calibration_drift", + "ledger_value": 1151.0, + "name": "dwp.uc.households_by_area_children_1@E14001227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1892.0, + "kind": "calibration_drift", + "ledger_value": 2020.0, + "name": "dwp.uc.households_by_area_children_1@E14001228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3617.0, + "kind": "calibration_drift", + "ledger_value": 3801.0, + "name": "dwp.uc.households_by_area_children_1@E14001229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 993.0, + "kind": "calibration_drift", + "ledger_value": 1141.0, + "name": "dwp.uc.households_by_area_children_1@E14001230", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1549.0, + "kind": "calibration_drift", + "ledger_value": 1357.0, + "name": "dwp.uc.households_by_area_children_1@E14001231", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1397.0, + "kind": "calibration_drift", + "ledger_value": 1593.0, + "name": "dwp.uc.households_by_area_children_1@E14001232", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1228.0, + "kind": "calibration_drift", + "ledger_value": 1373.0, + "name": "dwp.uc.households_by_area_children_1@E14001233", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 926.0, + "kind": "calibration_drift", + "ledger_value": 1033.0, + "name": "dwp.uc.households_by_area_children_1@E14001234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1599.0, + "kind": "calibration_drift", + "ledger_value": 1775.0, + "name": "dwp.uc.households_by_area_children_1@E14001235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3335.0, + "kind": "calibration_drift", + "ledger_value": 3552.0, + "name": "dwp.uc.households_by_area_children_1@E14001236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1239.0, + "kind": "calibration_drift", + "ledger_value": 1594.0, + "name": "dwp.uc.households_by_area_children_1@E14001237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2478.0, + "kind": "calibration_drift", + "ledger_value": 2536.0, + "name": "dwp.uc.households_by_area_children_1@E14001238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1780.0, + "kind": "calibration_drift", + "ledger_value": 1824.0, + "name": "dwp.uc.households_by_area_children_1@E14001239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1279.0, + "kind": "calibration_drift", + "ledger_value": 1334.0, + "name": "dwp.uc.households_by_area_children_1@E14001240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1267.0, + "kind": "calibration_drift", + "ledger_value": 1339.0, + "name": "dwp.uc.households_by_area_children_1@E14001241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1308.0, + "kind": "calibration_drift", + "ledger_value": 1422.0, + "name": "dwp.uc.households_by_area_children_1@E14001242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1529.0, + "kind": "calibration_drift", + "ledger_value": 1534.0, + "name": "dwp.uc.households_by_area_children_1@E14001243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2303.0, + "kind": "calibration_drift", + "ledger_value": 2204.0, + "name": "dwp.uc.households_by_area_children_1@E14001244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1649.0, + "kind": "calibration_drift", + "ledger_value": 1844.0, + "name": "dwp.uc.households_by_area_children_1@E14001245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1952.0, + "kind": "calibration_drift", + "ledger_value": 2063.0, + "name": "dwp.uc.households_by_area_children_1@E14001246", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1214.0, + "kind": "calibration_drift", + "ledger_value": 1265.0, + "name": "dwp.uc.households_by_area_children_1@E14001247", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2388.0, + "kind": "calibration_drift", + "ledger_value": 2434.0, + "name": "dwp.uc.households_by_area_children_1@E14001248", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 895.0, + "kind": "calibration_drift", + "ledger_value": 1006.0, + "name": "dwp.uc.households_by_area_children_1@E14001249", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1111.0, + "kind": "calibration_drift", + "ledger_value": 1393.0, + "name": "dwp.uc.households_by_area_children_1@E14001250", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3602.0, + "kind": "calibration_drift", + "ledger_value": 3544.0, + "name": "dwp.uc.households_by_area_children_1@E14001251", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1651.0, + "kind": "calibration_drift", + "ledger_value": 1831.0, + "name": "dwp.uc.households_by_area_children_1@E14001252", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1539.0, + "kind": "calibration_drift", + "ledger_value": 1779.0, + "name": "dwp.uc.households_by_area_children_1@E14001253", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2158.0, + "kind": "calibration_drift", + "ledger_value": 2294.0, + "name": "dwp.uc.households_by_area_children_1@E14001254", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3212.0, + "kind": "calibration_drift", + "ledger_value": 3286.0, + "name": "dwp.uc.households_by_area_children_1@E14001255", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2575.0, + "kind": "calibration_drift", + "ledger_value": 2609.0, + "name": "dwp.uc.households_by_area_children_1@E14001256", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2655.0, + "kind": "calibration_drift", + "ledger_value": 2799.0, + "name": "dwp.uc.households_by_area_children_1@E14001257", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 959.0, + "kind": "calibration_drift", + "ledger_value": 999.0, + "name": "dwp.uc.households_by_area_children_1@E14001258", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3751.0, + "kind": "calibration_drift", + "ledger_value": 3419.0, + "name": "dwp.uc.households_by_area_children_1@E14001259", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3384.0, + "kind": "calibration_drift", + "ledger_value": 3144.0, + "name": "dwp.uc.households_by_area_children_1@E14001260", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1896.0, + "kind": "calibration_drift", + "ledger_value": 1945.0, + "name": "dwp.uc.households_by_area_children_1@E14001261", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2970.0, + "kind": "calibration_drift", + "ledger_value": 2885.0, + "name": "dwp.uc.households_by_area_children_1@E14001262", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1107.0, + "kind": "calibration_drift", + "ledger_value": 1404.0, + "name": "dwp.uc.households_by_area_children_1@E14001263", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2342.0, + "kind": "calibration_drift", + "ledger_value": 2055.0, + "name": "dwp.uc.households_by_area_children_1@E14001264", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2044.0, + "kind": "calibration_drift", + "ledger_value": 1836.0, + "name": "dwp.uc.households_by_area_children_1@E14001265", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1230.0, + "kind": "calibration_drift", + "ledger_value": 1374.0, + "name": "dwp.uc.households_by_area_children_1@E14001266", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2275.0, + "kind": "calibration_drift", + "ledger_value": 2533.0, + "name": "dwp.uc.households_by_area_children_1@E14001267", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 685.0, + "kind": "calibration_drift", + "ledger_value": 787.0, + "name": "dwp.uc.households_by_area_children_1@E14001268", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1152.0, + "kind": "calibration_drift", + "ledger_value": 1318.0, + "name": "dwp.uc.households_by_area_children_1@E14001269", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1855.0, + "kind": "calibration_drift", + "ledger_value": 1959.0, + "name": "dwp.uc.households_by_area_children_1@E14001270", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2412.0, + "kind": "calibration_drift", + "ledger_value": 2585.0, + "name": "dwp.uc.households_by_area_children_1@E14001271", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2779.0, + "kind": "calibration_drift", + "ledger_value": 2716.0, + "name": "dwp.uc.households_by_area_children_1@E14001272", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1403.0, + "kind": "calibration_drift", + "ledger_value": 1457.0, + "name": "dwp.uc.households_by_area_children_1@E14001273", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2603.0, + "kind": "calibration_drift", + "ledger_value": 2634.0, + "name": "dwp.uc.households_by_area_children_1@E14001274", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1792.0, + "kind": "calibration_drift", + "ledger_value": 1989.0, + "name": "dwp.uc.households_by_area_children_1@E14001275", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3156.0, + "kind": "calibration_drift", + "ledger_value": 3162.0, + "name": "dwp.uc.households_by_area_children_1@E14001276", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1351.0, + "kind": "calibration_drift", + "ledger_value": 1467.0, + "name": "dwp.uc.households_by_area_children_1@E14001277", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1879.0, + "kind": "calibration_drift", + "ledger_value": 2132.0, + "name": "dwp.uc.households_by_area_children_1@E14001278", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3068.0, + "kind": "calibration_drift", + "ledger_value": 3393.0, + "name": "dwp.uc.households_by_area_children_1@E14001279", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 794.0, + "kind": "calibration_drift", + "ledger_value": 916.0, + "name": "dwp.uc.households_by_area_children_1@E14001280", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1423.0, + "kind": "calibration_drift", + "ledger_value": 1582.0, + "name": "dwp.uc.households_by_area_children_1@E14001281", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1704.0, + "kind": "calibration_drift", + "ledger_value": 1756.0, + "name": "dwp.uc.households_by_area_children_1@E14001282", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1207.0, + "kind": "calibration_drift", + "ledger_value": 1518.0, + "name": "dwp.uc.households_by_area_children_1@E14001283", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1565.0, + "kind": "calibration_drift", + "ledger_value": 1732.0, + "name": "dwp.uc.households_by_area_children_1@E14001284", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1058.0, + "kind": "calibration_drift", + "ledger_value": 1226.0, + "name": "dwp.uc.households_by_area_children_1@E14001285", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2666.0, + "kind": "calibration_drift", + "ledger_value": 2848.0, + "name": "dwp.uc.households_by_area_children_1@E14001286", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1284.0, + "kind": "calibration_drift", + "ledger_value": 1376.0, + "name": "dwp.uc.households_by_area_children_1@E14001287", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1370.0, + "kind": "calibration_drift", + "ledger_value": 1553.0, + "name": "dwp.uc.households_by_area_children_1@E14001288", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1146.0, + "kind": "calibration_drift", + "ledger_value": 1319.0, + "name": "dwp.uc.households_by_area_children_1@E14001289", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2611.0, + "kind": "calibration_drift", + "ledger_value": 2335.0, + "name": "dwp.uc.households_by_area_children_1@E14001290", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 998.0, + "kind": "calibration_drift", + "ledger_value": 1093.0, + "name": "dwp.uc.households_by_area_children_1@E14001291", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1682.0, + "kind": "calibration_drift", + "ledger_value": 1840.0, + "name": "dwp.uc.households_by_area_children_1@E14001292", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1852.0, + "kind": "calibration_drift", + "ledger_value": 1897.0, + "name": "dwp.uc.households_by_area_children_1@E14001293", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1055.0, + "kind": "calibration_drift", + "ledger_value": 1169.0, + "name": "dwp.uc.households_by_area_children_1@E14001294", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2591.0, + "kind": "calibration_drift", + "ledger_value": 3008.0, + "name": "dwp.uc.households_by_area_children_1@E14001295", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1850.0, + "kind": "calibration_drift", + "ledger_value": 1767.0, + "name": "dwp.uc.households_by_area_children_1@E14001296", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3018.0, + "kind": "calibration_drift", + "ledger_value": 2881.0, + "name": "dwp.uc.households_by_area_children_1@E14001297", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1276.0, + "kind": "calibration_drift", + "ledger_value": 1435.0, + "name": "dwp.uc.households_by_area_children_1@E14001298", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2503.0, + "kind": "calibration_drift", + "ledger_value": 2485.0, + "name": "dwp.uc.households_by_area_children_1@E14001299", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2237.0, + "kind": "calibration_drift", + "ledger_value": 2432.0, + "name": "dwp.uc.households_by_area_children_1@E14001300", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3165.0, + "kind": "calibration_drift", + "ledger_value": 3481.0, + "name": "dwp.uc.households_by_area_children_1@E14001301", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2554.0, + "kind": "calibration_drift", + "ledger_value": 2639.0, + "name": "dwp.uc.households_by_area_children_1@E14001302", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1365.0, + "kind": "calibration_drift", + "ledger_value": 1381.0, + "name": "dwp.uc.households_by_area_children_1@E14001303", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1206.0, + "kind": "calibration_drift", + "ledger_value": 1338.0, + "name": "dwp.uc.households_by_area_children_1@E14001304", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2868.0, + "kind": "calibration_drift", + "ledger_value": 2578.0, + "name": "dwp.uc.households_by_area_children_1@E14001305", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2963.0, + "kind": "calibration_drift", + "ledger_value": 2826.0, + "name": "dwp.uc.households_by_area_children_1@E14001306", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2442.0, + "kind": "calibration_drift", + "ledger_value": 2610.0, + "name": "dwp.uc.households_by_area_children_1@E14001307", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1922.0, + "kind": "calibration_drift", + "ledger_value": 1928.0, + "name": "dwp.uc.households_by_area_children_1@E14001308", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 890.0, + "kind": "calibration_drift", + "ledger_value": 1037.0, + "name": "dwp.uc.households_by_area_children_1@E14001309", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2253.0, + "kind": "calibration_drift", + "ledger_value": 1819.0, + "name": "dwp.uc.households_by_area_children_1@E14001310", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1927.0, + "kind": "calibration_drift", + "ledger_value": 2159.0, + "name": "dwp.uc.households_by_area_children_1@E14001311", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1635.0, + "kind": "calibration_drift", + "ledger_value": 1781.0, + "name": "dwp.uc.households_by_area_children_1@E14001312", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3152.0, + "kind": "calibration_drift", + "ledger_value": 3393.0, + "name": "dwp.uc.households_by_area_children_1@E14001313", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2975.0, + "kind": "calibration_drift", + "ledger_value": 2927.0, + "name": "dwp.uc.households_by_area_children_1@E14001314", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2438.0, + "kind": "calibration_drift", + "ledger_value": 2494.0, + "name": "dwp.uc.households_by_area_children_1@E14001315", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 977.0, + "kind": "calibration_drift", + "ledger_value": 1041.0, + "name": "dwp.uc.households_by_area_children_1@E14001316", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2854.0, + "kind": "calibration_drift", + "ledger_value": 2921.0, + "name": "dwp.uc.households_by_area_children_1@E14001317", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1336.0, + "kind": "calibration_drift", + "ledger_value": 1365.0, + "name": "dwp.uc.households_by_area_children_1@E14001318", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1757.0, + "kind": "calibration_drift", + "ledger_value": 1415.0, + "name": "dwp.uc.households_by_area_children_1@E14001319", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3080.0, + "kind": "calibration_drift", + "ledger_value": 3121.0, + "name": "dwp.uc.households_by_area_children_1@E14001320", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1541.0, + "kind": "calibration_drift", + "ledger_value": 1483.0, + "name": "dwp.uc.households_by_area_children_1@E14001321", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 951.0, + "kind": "calibration_drift", + "ledger_value": 1052.0, + "name": "dwp.uc.households_by_area_children_1@E14001322", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4333.0, + "kind": "calibration_drift", + "ledger_value": 4352.0, + "name": "dwp.uc.households_by_area_children_1@E14001323", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1678.0, + "kind": "calibration_drift", + "ledger_value": 1897.0, + "name": "dwp.uc.households_by_area_children_1@E14001324", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2333.0, + "kind": "calibration_drift", + "ledger_value": 2405.0, + "name": "dwp.uc.households_by_area_children_1@E14001325", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2713.0, + "kind": "calibration_drift", + "ledger_value": 2824.0, + "name": "dwp.uc.households_by_area_children_1@E14001326", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2901.0, + "kind": "calibration_drift", + "ledger_value": 2703.0, + "name": "dwp.uc.households_by_area_children_1@E14001327", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3629.0, + "kind": "calibration_drift", + "ledger_value": 3745.0, + "name": "dwp.uc.households_by_area_children_1@E14001328", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2423.0, + "kind": "calibration_drift", + "ledger_value": 2695.0, + "name": "dwp.uc.households_by_area_children_1@E14001329", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1351.0, + "kind": "calibration_drift", + "ledger_value": 1507.0, + "name": "dwp.uc.households_by_area_children_1@E14001330", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3432.0, + "kind": "calibration_drift", + "ledger_value": 3555.0, + "name": "dwp.uc.households_by_area_children_1@E14001331", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3042.0, + "kind": "calibration_drift", + "ledger_value": 3067.0, + "name": "dwp.uc.households_by_area_children_1@E14001332", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2086.0, + "kind": "calibration_drift", + "ledger_value": 2124.0, + "name": "dwp.uc.households_by_area_children_1@E14001333", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2446.0, + "kind": "calibration_drift", + "ledger_value": 2690.0, + "name": "dwp.uc.households_by_area_children_1@E14001334", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1187.0, + "kind": "calibration_drift", + "ledger_value": 1339.0, + "name": "dwp.uc.households_by_area_children_1@E14001335", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2399.0, + "kind": "calibration_drift", + "ledger_value": 2454.0, + "name": "dwp.uc.households_by_area_children_1@E14001336", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2059.0, + "kind": "calibration_drift", + "ledger_value": 2086.0, + "name": "dwp.uc.households_by_area_children_1@E14001337", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3948.0, + "kind": "calibration_drift", + "ledger_value": 3433.0, + "name": "dwp.uc.households_by_area_children_1@E14001338", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3301.0, + "kind": "calibration_drift", + "ledger_value": 3377.0, + "name": "dwp.uc.households_by_area_children_1@E14001339", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2611.0, + "kind": "calibration_drift", + "ledger_value": 2105.0, + "name": "dwp.uc.households_by_area_children_1@E14001340", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2845.0, + "kind": "calibration_drift", + "ledger_value": 2895.0, + "name": "dwp.uc.households_by_area_children_1@E14001341", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1444.0, + "kind": "calibration_drift", + "ledger_value": 1412.0, + "name": "dwp.uc.households_by_area_children_1@E14001342", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1575.0, + "kind": "calibration_drift", + "ledger_value": 1656.0, + "name": "dwp.uc.households_by_area_children_1@E14001343", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2062.0, + "kind": "calibration_drift", + "ledger_value": 1935.0, + "name": "dwp.uc.households_by_area_children_1@E14001344", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2398.0, + "kind": "calibration_drift", + "ledger_value": 2252.0, + "name": "dwp.uc.households_by_area_children_1@E14001345", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3256.0, + "kind": "calibration_drift", + "ledger_value": 3211.0, + "name": "dwp.uc.households_by_area_children_1@E14001346", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1109.0, + "kind": "calibration_drift", + "ledger_value": 1172.0, + "name": "dwp.uc.households_by_area_children_1@E14001347", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 995.0, + "kind": "calibration_drift", + "ledger_value": 1085.0, + "name": "dwp.uc.households_by_area_children_1@E14001348", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1715.0, + "kind": "calibration_drift", + "ledger_value": 1995.0, + "name": "dwp.uc.households_by_area_children_1@E14001349", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1784.0, + "kind": "calibration_drift", + "ledger_value": 2027.0, + "name": "dwp.uc.households_by_area_children_1@E14001350", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1131.0, + "kind": "calibration_drift", + "ledger_value": 1226.0, + "name": "dwp.uc.households_by_area_children_1@E14001351", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3429.0, + "kind": "calibration_drift", + "ledger_value": 3062.0, + "name": "dwp.uc.households_by_area_children_1@E14001352", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3211.0, + "kind": "calibration_drift", + "ledger_value": 2389.0, + "name": "dwp.uc.households_by_area_children_1@E14001353", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1472.0, + "kind": "calibration_drift", + "ledger_value": 1139.0, + "name": "dwp.uc.households_by_area_children_1@E14001354", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2351.0, + "kind": "calibration_drift", + "ledger_value": 2534.0, + "name": "dwp.uc.households_by_area_children_1@E14001355", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1153.0, + "kind": "calibration_drift", + "ledger_value": 1197.0, + "name": "dwp.uc.households_by_area_children_1@E14001356", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1303.0, + "kind": "calibration_drift", + "ledger_value": 1554.0, + "name": "dwp.uc.households_by_area_children_1@E14001357", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1831.0, + "kind": "calibration_drift", + "ledger_value": 1964.0, + "name": "dwp.uc.households_by_area_children_1@E14001358", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1053.0, + "kind": "calibration_drift", + "ledger_value": 1303.0, + "name": "dwp.uc.households_by_area_children_1@E14001359", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 679.0, + "kind": "calibration_drift", + "ledger_value": 1012.0, + "name": "dwp.uc.households_by_area_children_1@E14001360", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1682.0, + "kind": "calibration_drift", + "ledger_value": 1799.0, + "name": "dwp.uc.households_by_area_children_1@E14001361", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 916.0, + "kind": "calibration_drift", + "ledger_value": 1041.0, + "name": "dwp.uc.households_by_area_children_1@E14001362", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1063.0, + "kind": "calibration_drift", + "ledger_value": 1210.0, + "name": "dwp.uc.households_by_area_children_1@E14001363", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1133.0, + "kind": "calibration_drift", + "ledger_value": 1330.0, + "name": "dwp.uc.households_by_area_children_1@E14001364", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1220.0, + "kind": "calibration_drift", + "ledger_value": 1351.0, + "name": "dwp.uc.households_by_area_children_1@E14001365", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 970.0, + "kind": "calibration_drift", + "ledger_value": 1089.0, + "name": "dwp.uc.households_by_area_children_1@E14001366", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3778.0, + "kind": "calibration_drift", + "ledger_value": 3496.0, + "name": "dwp.uc.households_by_area_children_1@E14001367", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2009.0, + "kind": "calibration_drift", + "ledger_value": 2169.0, + "name": "dwp.uc.households_by_area_children_1@E14001368", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2523.0, + "kind": "calibration_drift", + "ledger_value": 2811.0, + "name": "dwp.uc.households_by_area_children_1@E14001369", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1587.0, + "kind": "calibration_drift", + "ledger_value": 1802.0, + "name": "dwp.uc.households_by_area_children_1@E14001370", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2668.0, + "kind": "calibration_drift", + "ledger_value": 2798.0, + "name": "dwp.uc.households_by_area_children_1@E14001371", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1638.0, + "kind": "calibration_drift", + "ledger_value": 1687.0, + "name": "dwp.uc.households_by_area_children_1@E14001372", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1085.0, + "kind": "calibration_drift", + "ledger_value": 1193.0, + "name": "dwp.uc.households_by_area_children_1@E14001373", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 881.0, + "kind": "calibration_drift", + "ledger_value": 969.0, + "name": "dwp.uc.households_by_area_children_1@E14001374", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1495.0, + "kind": "calibration_drift", + "ledger_value": 1540.0, + "name": "dwp.uc.households_by_area_children_1@E14001375", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1205.0, + "kind": "calibration_drift", + "ledger_value": 1357.0, + "name": "dwp.uc.households_by_area_children_1@E14001376", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3664.0, + "kind": "calibration_drift", + "ledger_value": 3473.0, + "name": "dwp.uc.households_by_area_children_1@E14001377", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3104.0, + "kind": "calibration_drift", + "ledger_value": 3161.0, + "name": "dwp.uc.households_by_area_children_1@E14001378", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1316.0, + "kind": "calibration_drift", + "ledger_value": 1298.0, + "name": "dwp.uc.households_by_area_children_1@E14001379", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1571.0, + "kind": "calibration_drift", + "ledger_value": 1680.0, + "name": "dwp.uc.households_by_area_children_1@E14001380", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1324.0, + "kind": "calibration_drift", + "ledger_value": 1475.0, + "name": "dwp.uc.households_by_area_children_1@E14001381", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2234.0, + "kind": "calibration_drift", + "ledger_value": 2418.0, + "name": "dwp.uc.households_by_area_children_1@E14001382", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2190.0, + "kind": "calibration_drift", + "ledger_value": 2437.0, + "name": "dwp.uc.households_by_area_children_1@E14001383", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1241.0, + "kind": "calibration_drift", + "ledger_value": 1401.0, + "name": "dwp.uc.households_by_area_children_1@E14001384", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1627.0, + "kind": "calibration_drift", + "ledger_value": 1684.0, + "name": "dwp.uc.households_by_area_children_1@E14001385", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1010.0, + "kind": "calibration_drift", + "ledger_value": 1175.0, + "name": "dwp.uc.households_by_area_children_1@E14001386", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1549.0, + "kind": "calibration_drift", + "ledger_value": 1595.0, + "name": "dwp.uc.households_by_area_children_1@E14001387", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1061.0, + "kind": "calibration_drift", + "ledger_value": 1198.0, + "name": "dwp.uc.households_by_area_children_1@E14001388", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2016.0, + "kind": "calibration_drift", + "ledger_value": 2127.0, + "name": "dwp.uc.households_by_area_children_1@E14001389", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1908.0, + "kind": "calibration_drift", + "ledger_value": 2117.0, + "name": "dwp.uc.households_by_area_children_1@E14001390", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1385.0, + "kind": "calibration_drift", + "ledger_value": 1440.0, + "name": "dwp.uc.households_by_area_children_1@E14001391", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 774.0, + "kind": "calibration_drift", + "ledger_value": 901.0, + "name": "dwp.uc.households_by_area_children_1@E14001392", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1279.0, + "kind": "calibration_drift", + "ledger_value": 1406.0, + "name": "dwp.uc.households_by_area_children_1@E14001393", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1027.0, + "kind": "calibration_drift", + "ledger_value": 1112.0, + "name": "dwp.uc.households_by_area_children_1@E14001394", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1058.0, + "kind": "calibration_drift", + "ledger_value": 1147.0, + "name": "dwp.uc.households_by_area_children_1@E14001395", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1170.0, + "kind": "calibration_drift", + "ledger_value": 1236.0, + "name": "dwp.uc.households_by_area_children_1@E14001396", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1249.0, + "kind": "calibration_drift", + "ledger_value": 1290.0, + "name": "dwp.uc.households_by_area_children_1@E14001397", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1397.0, + "kind": "calibration_drift", + "ledger_value": 1542.0, + "name": "dwp.uc.households_by_area_children_1@E14001398", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 836.0, + "kind": "calibration_drift", + "ledger_value": 961.0, + "name": "dwp.uc.households_by_area_children_1@E14001399", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1656.0, + "kind": "calibration_drift", + "ledger_value": 1934.0, + "name": "dwp.uc.households_by_area_children_1@E14001400", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2096.0, + "kind": "calibration_drift", + "ledger_value": 2477.0, + "name": "dwp.uc.households_by_area_children_1@E14001401", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1109.0, + "kind": "calibration_drift", + "ledger_value": 1362.0, + "name": "dwp.uc.households_by_area_children_1@E14001402", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1442.0, + "kind": "calibration_drift", + "ledger_value": 1710.0, + "name": "dwp.uc.households_by_area_children_1@E14001403", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1430.0, + "kind": "calibration_drift", + "ledger_value": 1587.0, + "name": "dwp.uc.households_by_area_children_1@E14001404", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1730.0, + "kind": "calibration_drift", + "ledger_value": 1980.0, + "name": "dwp.uc.households_by_area_children_1@E14001405", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2999.0, + "kind": "calibration_drift", + "ledger_value": 3254.0, + "name": "dwp.uc.households_by_area_children_1@E14001406", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1719.0, + "kind": "calibration_drift", + "ledger_value": 2072.0, + "name": "dwp.uc.households_by_area_children_1@E14001407", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1781.0, + "kind": "calibration_drift", + "ledger_value": 1859.0, + "name": "dwp.uc.households_by_area_children_1@E14001408", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2166.0, + "kind": "calibration_drift", + "ledger_value": 1980.0, + "name": "dwp.uc.households_by_area_children_1@E14001409", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3463.0, + "kind": "calibration_drift", + "ledger_value": 2823.0, + "name": "dwp.uc.households_by_area_children_1@E14001410", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3353.0, + "kind": "calibration_drift", + "ledger_value": 3564.0, + "name": "dwp.uc.households_by_area_children_1@E14001411", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2326.0, + "kind": "calibration_drift", + "ledger_value": 2203.0, + "name": "dwp.uc.households_by_area_children_1@E14001412", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2057.0, + "kind": "calibration_drift", + "ledger_value": 2270.0, + "name": "dwp.uc.households_by_area_children_1@E14001413", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1118.0, + "kind": "calibration_drift", + "ledger_value": 1358.0, + "name": "dwp.uc.households_by_area_children_1@E14001414", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2883.0, + "kind": "calibration_drift", + "ledger_value": 2934.0, + "name": "dwp.uc.households_by_area_children_1@E14001415", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3293.0, + "kind": "calibration_drift", + "ledger_value": 3313.0, + "name": "dwp.uc.households_by_area_children_1@E14001416", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1422.0, + "kind": "calibration_drift", + "ledger_value": 1428.0, + "name": "dwp.uc.households_by_area_children_1@E14001417", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1206.0, + "kind": "calibration_drift", + "ledger_value": 1340.0, + "name": "dwp.uc.households_by_area_children_1@E14001418", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1906.0, + "kind": "calibration_drift", + "ledger_value": 1781.0, + "name": "dwp.uc.households_by_area_children_1@E14001419", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 903.0, + "kind": "calibration_drift", + "ledger_value": 936.0, + "name": "dwp.uc.households_by_area_children_1@E14001420", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3209.0, + "kind": "calibration_drift", + "ledger_value": 3299.0, + "name": "dwp.uc.households_by_area_children_1@E14001421", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2299.0, + "kind": "calibration_drift", + "ledger_value": 2387.0, + "name": "dwp.uc.households_by_area_children_1@E14001422", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1130.0, + "kind": "calibration_drift", + "ledger_value": 1198.0, + "name": "dwp.uc.households_by_area_children_1@E14001423", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1204.0, + "kind": "calibration_drift", + "ledger_value": 1249.0, + "name": "dwp.uc.households_by_area_children_1@E14001424", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3644.0, + "kind": "calibration_drift", + "ledger_value": 3820.0, + "name": "dwp.uc.households_by_area_children_1@E14001425", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2152.0, + "kind": "calibration_drift", + "ledger_value": 2433.0, + "name": "dwp.uc.households_by_area_children_1@E14001426", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2733.0, + "kind": "calibration_drift", + "ledger_value": 2441.0, + "name": "dwp.uc.households_by_area_children_1@E14001427", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2288.0, + "kind": "calibration_drift", + "ledger_value": 2366.0, + "name": "dwp.uc.households_by_area_children_1@E14001428", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1511.0, + "kind": "calibration_drift", + "ledger_value": 1666.0, + "name": "dwp.uc.households_by_area_children_1@E14001429", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3712.0, + "kind": "calibration_drift", + "ledger_value": 3555.0, + "name": "dwp.uc.households_by_area_children_1@E14001430", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1932.0, + "kind": "calibration_drift", + "ledger_value": 2127.0, + "name": "dwp.uc.households_by_area_children_1@E14001431", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2564.0, + "kind": "calibration_drift", + "ledger_value": 2511.0, + "name": "dwp.uc.households_by_area_children_1@E14001432", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3175.0, + "kind": "calibration_drift", + "ledger_value": 3067.0, + "name": "dwp.uc.households_by_area_children_1@E14001433", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1896.0, + "kind": "calibration_drift", + "ledger_value": 1891.0, + "name": "dwp.uc.households_by_area_children_1@E14001434", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3728.0, + "kind": "calibration_drift", + "ledger_value": 3387.0, + "name": "dwp.uc.households_by_area_children_1@E14001435", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2163.0, + "kind": "calibration_drift", + "ledger_value": 2328.0, + "name": "dwp.uc.households_by_area_children_1@E14001436", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 952.0, + "kind": "calibration_drift", + "ledger_value": 1074.0, + "name": "dwp.uc.households_by_area_children_1@E14001437", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1984.0, + "kind": "calibration_drift", + "ledger_value": 2007.0, + "name": "dwp.uc.households_by_area_children_1@E14001438", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1163.0, + "kind": "calibration_drift", + "ledger_value": 1306.0, + "name": "dwp.uc.households_by_area_children_1@E14001439", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2338.0, + "kind": "calibration_drift", + "ledger_value": 2376.0, + "name": "dwp.uc.households_by_area_children_1@E14001440", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1760.0, + "kind": "calibration_drift", + "ledger_value": 1856.0, + "name": "dwp.uc.households_by_area_children_1@E14001441", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1033.0, + "kind": "calibration_drift", + "ledger_value": 1160.0, + "name": "dwp.uc.households_by_area_children_1@E14001442", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1093.0, + "kind": "calibration_drift", + "ledger_value": 1317.0, + "name": "dwp.uc.households_by_area_children_1@E14001443", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1026.0, + "kind": "calibration_drift", + "ledger_value": 1205.0, + "name": "dwp.uc.households_by_area_children_1@E14001444", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1104.0, + "kind": "calibration_drift", + "ledger_value": 1217.0, + "name": "dwp.uc.households_by_area_children_1@E14001445", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2987.0, + "kind": "calibration_drift", + "ledger_value": 2885.0, + "name": "dwp.uc.households_by_area_children_1@E14001446", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1937.0, + "kind": "calibration_drift", + "ledger_value": 2146.0, + "name": "dwp.uc.households_by_area_children_1@E14001447", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1934.0, + "kind": "calibration_drift", + "ledger_value": 2347.0, + "name": "dwp.uc.households_by_area_children_1@E14001448", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1040.0, + "kind": "calibration_drift", + "ledger_value": 1094.0, + "name": "dwp.uc.households_by_area_children_1@E14001449", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1963.0, + "kind": "calibration_drift", + "ledger_value": 2135.0, + "name": "dwp.uc.households_by_area_children_1@E14001450", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1568.0, + "kind": "calibration_drift", + "ledger_value": 1668.0, + "name": "dwp.uc.households_by_area_children_1@E14001451", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3151.0, + "kind": "calibration_drift", + "ledger_value": 3156.0, + "name": "dwp.uc.households_by_area_children_1@E14001452", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1660.0, + "kind": "calibration_drift", + "ledger_value": 1932.0, + "name": "dwp.uc.households_by_area_children_1@E14001453", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1065.0, + "kind": "calibration_drift", + "ledger_value": 1207.0, + "name": "dwp.uc.households_by_area_children_1@E14001454", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2024.0, + "kind": "calibration_drift", + "ledger_value": 2119.0, + "name": "dwp.uc.households_by_area_children_1@E14001455", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1164.0, + "kind": "calibration_drift", + "ledger_value": 1385.0, + "name": "dwp.uc.households_by_area_children_1@E14001456", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 937.0, + "kind": "calibration_drift", + "ledger_value": 1036.0, + "name": "dwp.uc.households_by_area_children_1@E14001457", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 943.0, + "kind": "calibration_drift", + "ledger_value": 1080.0, + "name": "dwp.uc.households_by_area_children_1@E14001458", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3462.0, + "kind": "calibration_drift", + "ledger_value": 3164.0, + "name": "dwp.uc.households_by_area_children_1@E14001459", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1174.0, + "kind": "calibration_drift", + "ledger_value": 1231.0, + "name": "dwp.uc.households_by_area_children_1@E14001460", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1871.0, + "kind": "calibration_drift", + "ledger_value": 1908.0, + "name": "dwp.uc.households_by_area_children_1@E14001461", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2341.0, + "kind": "calibration_drift", + "ledger_value": 2482.0, + "name": "dwp.uc.households_by_area_children_1@E14001462", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 998.0, + "kind": "calibration_drift", + "ledger_value": 1007.0, + "name": "dwp.uc.households_by_area_children_1@E14001463", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1303.0, + "kind": "calibration_drift", + "ledger_value": 1559.0, + "name": "dwp.uc.households_by_area_children_1@E14001464", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1040.0, + "kind": "calibration_drift", + "ledger_value": 1151.0, + "name": "dwp.uc.households_by_area_children_1@E14001465", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3764.0, + "kind": "calibration_drift", + "ledger_value": 3656.0, + "name": "dwp.uc.households_by_area_children_1@E14001466", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1447.0, + "kind": "calibration_drift", + "ledger_value": 928.0, + "name": "dwp.uc.households_by_area_children_1@E14001467", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 628.0, + "kind": "calibration_drift", + "ledger_value": 585.0, + "name": "dwp.uc.households_by_area_children_1@E14001468", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2951.0, + "kind": "calibration_drift", + "ledger_value": 2959.0, + "name": "dwp.uc.households_by_area_children_1@E14001469", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2519.0, + "kind": "calibration_drift", + "ledger_value": 2568.0, + "name": "dwp.uc.households_by_area_children_1@E14001470", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1763.0, + "kind": "calibration_drift", + "ledger_value": 1999.0, + "name": "dwp.uc.households_by_area_children_1@E14001471", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1443.0, + "kind": "calibration_drift", + "ledger_value": 1639.0, + "name": "dwp.uc.households_by_area_children_1@E14001472", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1406.0, + "kind": "calibration_drift", + "ledger_value": 1505.0, + "name": "dwp.uc.households_by_area_children_1@E14001473", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2389.0, + "kind": "calibration_drift", + "ledger_value": 2450.0, + "name": "dwp.uc.households_by_area_children_1@E14001474", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 957.0, + "kind": "calibration_drift", + "ledger_value": 1010.0, + "name": "dwp.uc.households_by_area_children_1@E14001475", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1189.0, + "kind": "calibration_drift", + "ledger_value": 1339.0, + "name": "dwp.uc.households_by_area_children_1@E14001476", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2976.0, + "kind": "calibration_drift", + "ledger_value": 3359.0, + "name": "dwp.uc.households_by_area_children_1@E14001477", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3064.0, + "kind": "calibration_drift", + "ledger_value": 3054.0, + "name": "dwp.uc.households_by_area_children_1@E14001478", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1002.0, + "kind": "calibration_drift", + "ledger_value": 1089.0, + "name": "dwp.uc.households_by_area_children_1@E14001479", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1912.0, + "kind": "calibration_drift", + "ledger_value": 2024.0, + "name": "dwp.uc.households_by_area_children_1@E14001480", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 956.0, + "kind": "calibration_drift", + "ledger_value": 1083.0, + "name": "dwp.uc.households_by_area_children_1@E14001481", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 891.0, + "kind": "calibration_drift", + "ledger_value": 967.0, + "name": "dwp.uc.households_by_area_children_1@E14001482", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1419.0, + "kind": "calibration_drift", + "ledger_value": 1628.0, + "name": "dwp.uc.households_by_area_children_1@E14001483", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1290.0, + "kind": "calibration_drift", + "ledger_value": 1363.0, + "name": "dwp.uc.households_by_area_children_1@E14001484", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1650.0, + "kind": "calibration_drift", + "ledger_value": 1670.0, + "name": "dwp.uc.households_by_area_children_1@E14001485", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1402.0, + "kind": "calibration_drift", + "ledger_value": 1487.0, + "name": "dwp.uc.households_by_area_children_1@E14001486", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1755.0, + "kind": "calibration_drift", + "ledger_value": 2047.0, + "name": "dwp.uc.households_by_area_children_1@E14001487", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1119.0, + "kind": "calibration_drift", + "ledger_value": 1326.0, + "name": "dwp.uc.households_by_area_children_1@E14001488", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1094.0, + "kind": "calibration_drift", + "ledger_value": 1236.0, + "name": "dwp.uc.households_by_area_children_1@E14001489", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 910.0, + "kind": "calibration_drift", + "ledger_value": 1090.0, + "name": "dwp.uc.households_by_area_children_1@E14001490", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1213.0, + "kind": "calibration_drift", + "ledger_value": 1393.0, + "name": "dwp.uc.households_by_area_children_1@E14001491", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2343.0, + "kind": "calibration_drift", + "ledger_value": 2178.0, + "name": "dwp.uc.households_by_area_children_1@E14001492", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1038.0, + "kind": "calibration_drift", + "ledger_value": 1133.0, + "name": "dwp.uc.households_by_area_children_1@E14001493", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1137.0, + "kind": "calibration_drift", + "ledger_value": 1310.0, + "name": "dwp.uc.households_by_area_children_1@E14001494", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 993.0, + "kind": "calibration_drift", + "ledger_value": 1155.0, + "name": "dwp.uc.households_by_area_children_1@E14001495", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1078.0, + "kind": "calibration_drift", + "ledger_value": 1201.0, + "name": "dwp.uc.households_by_area_children_1@E14001496", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1564.0, + "kind": "calibration_drift", + "ledger_value": 1707.0, + "name": "dwp.uc.households_by_area_children_1@E14001497", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1489.0, + "kind": "calibration_drift", + "ledger_value": 1695.0, + "name": "dwp.uc.households_by_area_children_1@E14001498", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2379.0, + "kind": "calibration_drift", + "ledger_value": 2527.0, + "name": "dwp.uc.households_by_area_children_1@E14001499", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2554.0, + "kind": "calibration_drift", + "ledger_value": 2514.0, + "name": "dwp.uc.households_by_area_children_1@E14001500", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2537.0, + "kind": "calibration_drift", + "ledger_value": 2484.0, + "name": "dwp.uc.households_by_area_children_1@E14001501", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3312.0, + "kind": "calibration_drift", + "ledger_value": 3600.0, + "name": "dwp.uc.households_by_area_children_1@E14001503", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1675.0, + "kind": "calibration_drift", + "ledger_value": 1703.0, + "name": "dwp.uc.households_by_area_children_1@E14001504", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1482.0, + "kind": "calibration_drift", + "ledger_value": 1717.0, + "name": "dwp.uc.households_by_area_children_1@E14001505", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1735.0, + "kind": "calibration_drift", + "ledger_value": 1897.0, + "name": "dwp.uc.households_by_area_children_1@E14001506", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1160.0, + "kind": "calibration_drift", + "ledger_value": 1266.0, + "name": "dwp.uc.households_by_area_children_1@E14001507", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1906.0, + "kind": "calibration_drift", + "ledger_value": 1929.0, + "name": "dwp.uc.households_by_area_children_1@E14001508", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2138.0, + "kind": "calibration_drift", + "ledger_value": 2243.0, + "name": "dwp.uc.households_by_area_children_1@E14001509", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2267.0, + "kind": "calibration_drift", + "ledger_value": 2370.0, + "name": "dwp.uc.households_by_area_children_1@E14001510", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1452.0, + "kind": "calibration_drift", + "ledger_value": 1482.0, + "name": "dwp.uc.households_by_area_children_1@E14001511", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1236.0, + "kind": "calibration_drift", + "ledger_value": 1491.0, + "name": "dwp.uc.households_by_area_children_1@E14001512", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1364.0, + "kind": "calibration_drift", + "ledger_value": 1464.0, + "name": "dwp.uc.households_by_area_children_1@E14001513", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 964.0, + "kind": "calibration_drift", + "ledger_value": 1037.0, + "name": "dwp.uc.households_by_area_children_1@E14001514", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2248.0, + "kind": "calibration_drift", + "ledger_value": 2379.0, + "name": "dwp.uc.households_by_area_children_1@E14001515", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1780.0, + "kind": "calibration_drift", + "ledger_value": 1861.0, + "name": "dwp.uc.households_by_area_children_1@E14001516", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2485.0, + "kind": "calibration_drift", + "ledger_value": 2582.0, + "name": "dwp.uc.households_by_area_children_1@E14001517", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2716.0, + "kind": "calibration_drift", + "ledger_value": 2727.0, + "name": "dwp.uc.households_by_area_children_1@E14001518", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 982.0, + "kind": "calibration_drift", + "ledger_value": 1200.0, + "name": "dwp.uc.households_by_area_children_1@E14001519", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3152.0, + "kind": "calibration_drift", + "ledger_value": 3056.0, + "name": "dwp.uc.households_by_area_children_1@E14001520", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2393.0, + "kind": "calibration_drift", + "ledger_value": 2443.0, + "name": "dwp.uc.households_by_area_children_1@E14001521", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1647.0, + "kind": "calibration_drift", + "ledger_value": 1746.0, + "name": "dwp.uc.households_by_area_children_1@E14001522", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1094.0, + "kind": "calibration_drift", + "ledger_value": 1290.0, + "name": "dwp.uc.households_by_area_children_1@E14001523", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1902.0, + "kind": "calibration_drift", + "ledger_value": 1862.0, + "name": "dwp.uc.households_by_area_children_1@E14001524", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3355.0, + "kind": "calibration_drift", + "ledger_value": 3421.0, + "name": "dwp.uc.households_by_area_children_1@E14001525", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1122.0, + "kind": "calibration_drift", + "ledger_value": 1308.0, + "name": "dwp.uc.households_by_area_children_1@E14001526", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2961.0, + "kind": "calibration_drift", + "ledger_value": 3077.0, + "name": "dwp.uc.households_by_area_children_1@E14001527", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2066.0, + "kind": "calibration_drift", + "ledger_value": 2005.0, + "name": "dwp.uc.households_by_area_children_1@E14001528", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1143.0, + "kind": "calibration_drift", + "ledger_value": 1230.0, + "name": "dwp.uc.households_by_area_children_1@E14001529", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1159.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_1@E14001530", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2419.0, + "kind": "calibration_drift", + "ledger_value": 2222.0, + "name": "dwp.uc.households_by_area_children_1@E14001531", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 909.0, + "kind": "calibration_drift", + "ledger_value": 1003.0, + "name": "dwp.uc.households_by_area_children_1@E14001532", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 994.0, + "kind": "calibration_drift", + "ledger_value": 1160.0, + "name": "dwp.uc.households_by_area_children_1@E14001533", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1327.0, + "kind": "calibration_drift", + "ledger_value": 1574.0, + "name": "dwp.uc.households_by_area_children_1@E14001534", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1001.0, + "kind": "calibration_drift", + "ledger_value": 1028.0, + "name": "dwp.uc.households_by_area_children_1@E14001535", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1720.0, + "kind": "calibration_drift", + "ledger_value": 1927.0, + "name": "dwp.uc.households_by_area_children_1@E14001536", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2066.0, + "kind": "calibration_drift", + "ledger_value": 2230.0, + "name": "dwp.uc.households_by_area_children_1@E14001537", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1670.0, + "kind": "calibration_drift", + "ledger_value": 1884.0, + "name": "dwp.uc.households_by_area_children_1@E14001538", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 925.0, + "kind": "calibration_drift", + "ledger_value": 1017.0, + "name": "dwp.uc.households_by_area_children_1@E14001539", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1594.0, + "kind": "calibration_drift", + "ledger_value": 1727.0, + "name": "dwp.uc.households_by_area_children_1@E14001540", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2583.0, + "kind": "calibration_drift", + "ledger_value": 2758.0, + "name": "dwp.uc.households_by_area_children_1@E14001541", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1205.0, + "kind": "calibration_drift", + "ledger_value": 1337.0, + "name": "dwp.uc.households_by_area_children_1@E14001542", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1624.0, + "kind": "calibration_drift", + "ledger_value": 1763.0, + "name": "dwp.uc.households_by_area_children_1@E14001543", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1162.0, + "kind": "calibration_drift", + "ledger_value": 1256.0, + "name": "dwp.uc.households_by_area_children_1@E14001544", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1234.0, + "kind": "calibration_drift", + "ledger_value": 1356.0, + "name": "dwp.uc.households_by_area_children_1@E14001545", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2541.0, + "kind": "calibration_drift", + "ledger_value": 2878.0, + "name": "dwp.uc.households_by_area_children_1@E14001546", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3307.0, + "kind": "calibration_drift", + "ledger_value": 3318.0, + "name": "dwp.uc.households_by_area_children_1@E14001547", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1297.0, + "kind": "calibration_drift", + "ledger_value": 1331.0, + "name": "dwp.uc.households_by_area_children_1@E14001548", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1083.0, + "kind": "calibration_drift", + "ledger_value": 1160.0, + "name": "dwp.uc.households_by_area_children_1@E14001549", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1735.0, + "kind": "calibration_drift", + "ledger_value": 1727.0, + "name": "dwp.uc.households_by_area_children_1@E14001550", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2210.0, + "kind": "calibration_drift", + "ledger_value": 2203.0, + "name": "dwp.uc.households_by_area_children_1@E14001551", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1363.0, + "kind": "calibration_drift", + "ledger_value": 1422.0, + "name": "dwp.uc.households_by_area_children_1@E14001552", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5017.0, + "kind": "calibration_drift", + "ledger_value": 5204.0, + "name": "dwp.uc.households_by_area_children_1@E14001553", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1337.0, + "kind": "calibration_drift", + "ledger_value": 1413.0, + "name": "dwp.uc.households_by_area_children_1@E14001554", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1268.0, + "kind": "calibration_drift", + "ledger_value": 1421.0, + "name": "dwp.uc.households_by_area_children_1@E14001555", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1125.0, + "kind": "calibration_drift", + "ledger_value": 1281.0, + "name": "dwp.uc.households_by_area_children_1@E14001556", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1580.0, + "kind": "calibration_drift", + "ledger_value": 1566.0, + "name": "dwp.uc.households_by_area_children_1@E14001557", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2043.0, + "kind": "calibration_drift", + "ledger_value": 2149.0, + "name": "dwp.uc.households_by_area_children_1@E14001558", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2781.0, + "kind": "calibration_drift", + "ledger_value": 2647.0, + "name": "dwp.uc.households_by_area_children_1@E14001559", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2213.0, + "kind": "calibration_drift", + "ledger_value": 2257.0, + "name": "dwp.uc.households_by_area_children_1@E14001560", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2344.0, + "kind": "calibration_drift", + "ledger_value": 2375.0, + "name": "dwp.uc.households_by_area_children_1@E14001561", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3855.0, + "kind": "calibration_drift", + "ledger_value": 3726.0, + "name": "dwp.uc.households_by_area_children_1@E14001562", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3100.0, + "kind": "calibration_drift", + "ledger_value": 3329.0, + "name": "dwp.uc.households_by_area_children_1@E14001563", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1853.0, + "kind": "calibration_drift", + "ledger_value": 1953.0, + "name": "dwp.uc.households_by_area_children_1@E14001564", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1468.0, + "kind": "calibration_drift", + "ledger_value": 1600.0, + "name": "dwp.uc.households_by_area_children_1@E14001565", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1446.0, + "kind": "calibration_drift", + "ledger_value": 1637.0, + "name": "dwp.uc.households_by_area_children_1@E14001566", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2389.0, + "kind": "calibration_drift", + "ledger_value": 2726.0, + "name": "dwp.uc.households_by_area_children_1@E14001567", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1958.0, + "kind": "calibration_drift", + "ledger_value": 2192.0, + "name": "dwp.uc.households_by_area_children_1@E14001568", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1052.0, + "kind": "calibration_drift", + "ledger_value": 1122.0, + "name": "dwp.uc.households_by_area_children_1@E14001569", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1194.0, + "kind": "calibration_drift", + "ledger_value": 1290.0, + "name": "dwp.uc.households_by_area_children_1@E14001570", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2170.0, + "kind": "calibration_drift", + "ledger_value": 2500.0, + "name": "dwp.uc.households_by_area_children_1@E14001571", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1047.0, + "kind": "calibration_drift", + "ledger_value": 1129.0, + "name": "dwp.uc.households_by_area_children_1@E14001572", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1861.0, + "kind": "calibration_drift", + "ledger_value": 2018.0, + "name": "dwp.uc.households_by_area_children_1@E14001573", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2704.0, + "kind": "calibration_drift", + "ledger_value": 2797.0, + "name": "dwp.uc.households_by_area_children_1@E14001574", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1138.0, + "kind": "calibration_drift", + "ledger_value": 1202.0, + "name": "dwp.uc.households_by_area_children_1@E14001575", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4148.0, + "kind": "calibration_drift", + "ledger_value": 4499.0, + "name": "dwp.uc.households_by_area_children_1@E14001576", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1716.0, + "kind": "calibration_drift", + "ledger_value": 1815.0, + "name": "dwp.uc.households_by_area_children_1@E14001577", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1579.0, + "kind": "calibration_drift", + "ledger_value": 1812.0, + "name": "dwp.uc.households_by_area_children_1@E14001578", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1245.0, + "kind": "calibration_drift", + "ledger_value": 1383.0, + "name": "dwp.uc.households_by_area_children_1@E14001579", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 824.0, + "kind": "calibration_drift", + "ledger_value": 934.0, + "name": "dwp.uc.households_by_area_children_1@E14001580", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1980.0, + "kind": "calibration_drift", + "ledger_value": 2107.0, + "name": "dwp.uc.households_by_area_children_1@E14001581", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 715.0, + "kind": "calibration_drift", + "ledger_value": 823.0, + "name": "dwp.uc.households_by_area_children_1@E14001582", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1743.0, + "kind": "calibration_drift", + "ledger_value": 1734.0, + "name": "dwp.uc.households_by_area_children_1@E14001583", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2043.0, + "kind": "calibration_drift", + "ledger_value": 2171.0, + "name": "dwp.uc.households_by_area_children_1@E14001584", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2353.0, + "kind": "calibration_drift", + "ledger_value": 2464.0, + "name": "dwp.uc.households_by_area_children_1@E14001585", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1158.0, + "kind": "calibration_drift", + "ledger_value": 1211.0, + "name": "dwp.uc.households_by_area_children_1@E14001586", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1029.0, + "kind": "calibration_drift", + "ledger_value": 1068.0, + "name": "dwp.uc.households_by_area_children_1@E14001587", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1266.0, + "kind": "calibration_drift", + "ledger_value": 1348.0, + "name": "dwp.uc.households_by_area_children_1@E14001588", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 873.0, + "kind": "calibration_drift", + "ledger_value": 946.0, + "name": "dwp.uc.households_by_area_children_1@E14001589", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1363.0, + "kind": "calibration_drift", + "ledger_value": 1545.0, + "name": "dwp.uc.households_by_area_children_1@E14001590", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1106.0, + "kind": "calibration_drift", + "ledger_value": 1251.0, + "name": "dwp.uc.households_by_area_children_1@E14001591", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1159.0, + "kind": "calibration_drift", + "ledger_value": 1283.0, + "name": "dwp.uc.households_by_area_children_1@E14001592", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 799.0, + "kind": "calibration_drift", + "ledger_value": 933.0, + "name": "dwp.uc.households_by_area_children_1@E14001593", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2880.0, + "kind": "calibration_drift", + "ledger_value": 3038.0, + "name": "dwp.uc.households_by_area_children_1@E14001594", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3833.0, + "kind": "calibration_drift", + "ledger_value": 3940.0, + "name": "dwp.uc.households_by_area_children_1@E14001595", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2625.0, + "kind": "calibration_drift", + "ledger_value": 2447.0, + "name": "dwp.uc.households_by_area_children_1@E14001596", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1798.0, + "kind": "calibration_drift", + "ledger_value": 1928.0, + "name": "dwp.uc.households_by_area_children_1@E14001597", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2244.0, + "kind": "calibration_drift", + "ledger_value": 2338.0, + "name": "dwp.uc.households_by_area_children_1@E14001598", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1471.0, + "kind": "calibration_drift", + "ledger_value": 1581.0, + "name": "dwp.uc.households_by_area_children_1@E14001599", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1783.0, + "kind": "calibration_drift", + "ledger_value": 1911.0, + "name": "dwp.uc.households_by_area_children_1@E14001600", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1736.0, + "kind": "calibration_drift", + "ledger_value": 1843.0, + "name": "dwp.uc.households_by_area_children_1@E14001601", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2977.0, + "kind": "calibration_drift", + "ledger_value": 3244.0, + "name": "dwp.uc.households_by_area_children_1@E14001602", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1628.0, + "kind": "calibration_drift", + "ledger_value": 1720.0, + "name": "dwp.uc.households_by_area_children_1@E14001603", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1606.0, + "kind": "calibration_drift", + "ledger_value": 1654.0, + "name": "dwp.uc.households_by_area_children_1@E14001604", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 724.0, + "kind": "calibration_drift", + "ledger_value": 841.0, + "name": "dwp.uc.households_by_area_children_1@E14001605", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 979.0, + "kind": "calibration_drift", + "ledger_value": 1113.0, + "name": "dwp.uc.households_by_area_children_1@S14000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 300.0, + "kind": "calibration_drift", + "ledger_value": 286.0, + "name": "dwp.uc.households_by_area_children_1@S14000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1637.0, + "kind": "calibration_drift", + "ledger_value": 1873.0, + "name": "dwp.uc.households_by_area_children_1@S14000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2103.0, + "kind": "calibration_drift", + "ledger_value": 2174.0, + "name": "dwp.uc.households_by_area_children_1@S14000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 477.0, + "kind": "calibration_drift", + "ledger_value": 447.0, + "name": "dwp.uc.households_by_area_children_1@S14000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2166.0, + "kind": "calibration_drift", + "ledger_value": 2303.0, + "name": "dwp.uc.households_by_area_children_1@S14000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1446.0, + "kind": "calibration_drift", + "ledger_value": 1399.0, + "name": "dwp.uc.households_by_area_children_1@S14000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1611.0, + "kind": "calibration_drift", + "ledger_value": 1700.0, + "name": "dwp.uc.households_by_area_children_1@S14000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2120.0, + "kind": "calibration_drift", + "ledger_value": 2293.0, + "name": "dwp.uc.households_by_area_children_1@S14000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1895.0, + "kind": "calibration_drift", + "ledger_value": 1966.0, + "name": "dwp.uc.households_by_area_children_1@S14000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1534.0, + "kind": "calibration_drift", + "ledger_value": 1641.0, + "name": "dwp.uc.households_by_area_children_1@S14000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1816.0, + "kind": "calibration_drift", + "ledger_value": 2079.0, + "name": "dwp.uc.households_by_area_children_1@S14000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1326.0, + "kind": "calibration_drift", + "ledger_value": 1215.0, + "name": "dwp.uc.households_by_area_children_1@S14000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1829.0, + "kind": "calibration_drift", + "ledger_value": 2031.0, + "name": "dwp.uc.households_by_area_children_1@S14000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1449.0, + "kind": "calibration_drift", + "ledger_value": 1432.0, + "name": "dwp.uc.households_by_area_children_1@S14000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2197.0, + "kind": "calibration_drift", + "ledger_value": 2446.0, + "name": "dwp.uc.households_by_area_children_1@S14000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1975.0, + "kind": "calibration_drift", + "ledger_value": 2039.0, + "name": "dwp.uc.households_by_area_children_1@S14000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1728.0, + "kind": "calibration_drift", + "ledger_value": 1859.0, + "name": "dwp.uc.households_by_area_children_1@S14000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1752.0, + "kind": "calibration_drift", + "ledger_value": 1745.0, + "name": "dwp.uc.households_by_area_children_1@S14000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1290.0, + "kind": "calibration_drift", + "ledger_value": 1353.0, + "name": "dwp.uc.households_by_area_children_1@S14000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2565.0, + "kind": "calibration_drift", + "ledger_value": 2479.0, + "name": "dwp.uc.households_by_area_children_1@S14000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1507.0, + "kind": "calibration_drift", + "ledger_value": 1637.0, + "name": "dwp.uc.households_by_area_children_1@S14000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1466.0, + "kind": "calibration_drift", + "ledger_value": 1512.0, + "name": "dwp.uc.households_by_area_children_1@S14000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1980.0, + "kind": "calibration_drift", + "ledger_value": 1915.0, + "name": "dwp.uc.households_by_area_children_1@S14000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1949.0, + "kind": "calibration_drift", + "ledger_value": 2021.0, + "name": "dwp.uc.households_by_area_children_1@S14000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 999.0, + "kind": "calibration_drift", + "ledger_value": 1005.0, + "name": "dwp.uc.households_by_area_children_1@S14000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1601.0, + "kind": "calibration_drift", + "ledger_value": 1582.0, + "name": "dwp.uc.households_by_area_children_1@S14000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1005.0, + "kind": "calibration_drift", + "ledger_value": 1193.0, + "name": "dwp.uc.households_by_area_children_1@S14000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1841.0, + "kind": "calibration_drift", + "ledger_value": 1907.0, + "name": "dwp.uc.households_by_area_children_1@S14000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3037.0, + "kind": "calibration_drift", + "ledger_value": 3058.0, + "name": "dwp.uc.households_by_area_children_1@S14000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2664.0, + "kind": "calibration_drift", + "ledger_value": 2342.0, + "name": "dwp.uc.households_by_area_children_1@S14000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3557.0, + "kind": "calibration_drift", + "ledger_value": 3589.0, + "name": "dwp.uc.households_by_area_children_1@S14000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2106.0, + "kind": "calibration_drift", + "ledger_value": 2048.0, + "name": "dwp.uc.households_by_area_children_1@S14000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2706.0, + "kind": "calibration_drift", + "ledger_value": 2602.0, + "name": "dwp.uc.households_by_area_children_1@S14000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2329.0, + "kind": "calibration_drift", + "ledger_value": 2162.0, + "name": "dwp.uc.households_by_area_children_1@S14000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2509.0, + "kind": "calibration_drift", + "ledger_value": 2692.0, + "name": "dwp.uc.households_by_area_children_1@S14000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 925.0, + "name": "dwp.uc.households_by_area_children_1@S14000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2016.0, + "kind": "calibration_drift", + "ledger_value": 2171.0, + "name": "dwp.uc.households_by_area_children_1@S14000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1957.0, + "kind": "calibration_drift", + "ledger_value": 1917.0, + "name": "dwp.uc.households_by_area_children_1@S14000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1597.0, + "kind": "calibration_drift", + "ledger_value": 1743.0, + "name": "dwp.uc.households_by_area_children_1@S14000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1923.0, + "kind": "calibration_drift", + "ledger_value": 2128.0, + "name": "dwp.uc.households_by_area_children_1@S14000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1439.0, + "kind": "calibration_drift", + "ledger_value": 1584.0, + "name": "dwp.uc.households_by_area_children_1@S14000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 809.0, + "kind": "calibration_drift", + "ledger_value": 867.0, + "name": "dwp.uc.households_by_area_children_1@S14000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1368.0, + "kind": "calibration_drift", + "ledger_value": 1477.0, + "name": "dwp.uc.households_by_area_children_1@S14000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2147.0, + "kind": "calibration_drift", + "ledger_value": 2242.0, + "name": "dwp.uc.households_by_area_children_1@S14000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1174.0, + "kind": "calibration_drift", + "ledger_value": 1266.0, + "name": "dwp.uc.households_by_area_children_1@S14000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1816.0, + "kind": "calibration_drift", + "ledger_value": 1905.0, + "name": "dwp.uc.households_by_area_children_1@S14000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1959.0, + "kind": "calibration_drift", + "ledger_value": 2030.0, + "name": "dwp.uc.households_by_area_children_1@S14000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1480.0, + "kind": "calibration_drift", + "ledger_value": 1586.0, + "name": "dwp.uc.households_by_area_children_1@S14000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1804.0, + "kind": "calibration_drift", + "ledger_value": 1939.0, + "name": "dwp.uc.households_by_area_children_1@S14000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1347.0, + "kind": "calibration_drift", + "ledger_value": 1399.0, + "name": "dwp.uc.households_by_area_children_1@S14000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2362.0, + "kind": "calibration_drift", + "ledger_value": 2499.0, + "name": "dwp.uc.households_by_area_children_1@S14000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2014.0, + "kind": "calibration_drift", + "ledger_value": 1943.0, + "name": "dwp.uc.households_by_area_children_1@S14000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1538.0, + "kind": "calibration_drift", + "ledger_value": 1545.0, + "name": "dwp.uc.households_by_area_children_1@S14000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1775.0, + "kind": "calibration_drift", + "ledger_value": 1952.0, + "name": "dwp.uc.households_by_area_children_1@S14000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2084.0, + "kind": "calibration_drift", + "ledger_value": 2106.0, + "name": "dwp.uc.households_by_area_children_1@S14000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 764.0, + "kind": "calibration_drift", + "ledger_value": 817.0, + "name": "dwp.uc.households_by_area_children_1@S14000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2437.0, + "kind": "calibration_drift", + "ledger_value": 2537.0, + "name": "dwp.uc.households_by_area_children_1@W07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1745.0, + "kind": "calibration_drift", + "ledger_value": 2018.0, + "name": "dwp.uc.households_by_area_children_1@W07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1537.0, + "kind": "calibration_drift", + "ledger_value": 1584.0, + "name": "dwp.uc.households_by_area_children_1@W07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2629.0, + "kind": "calibration_drift", + "ledger_value": 2871.0, + "name": "dwp.uc.households_by_area_children_1@W07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1373.0, + "kind": "calibration_drift", + "ledger_value": 1433.0, + "name": "dwp.uc.households_by_area_children_1@W07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1558.0, + "kind": "calibration_drift", + "ledger_value": 1702.0, + "name": "dwp.uc.households_by_area_children_1@W07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1486.0, + "kind": "calibration_drift", + "ledger_value": 1518.0, + "name": "dwp.uc.households_by_area_children_1@W07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2022.0, + "kind": "calibration_drift", + "ledger_value": 2115.0, + "name": "dwp.uc.households_by_area_children_1@W07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2592.0, + "kind": "calibration_drift", + "ledger_value": 2365.0, + "name": "dwp.uc.households_by_area_children_1@W07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1170.0, + "kind": "calibration_drift", + "ledger_value": 1240.0, + "name": "dwp.uc.households_by_area_children_1@W07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1977.0, + "kind": "calibration_drift", + "ledger_value": 1831.0, + "name": "dwp.uc.households_by_area_children_1@W07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2378.0, + "kind": "calibration_drift", + "ledger_value": 2314.0, + "name": "dwp.uc.households_by_area_children_1@W07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1378.0, + "kind": "calibration_drift", + "ledger_value": 1389.0, + "name": "dwp.uc.households_by_area_children_1@W07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1455.0, + "kind": "calibration_drift", + "ledger_value": 1493.0, + "name": "dwp.uc.households_by_area_children_1@W07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2360.0, + "kind": "calibration_drift", + "ledger_value": 2344.0, + "name": "dwp.uc.households_by_area_children_1@W07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1435.0, + "kind": "calibration_drift", + "ledger_value": 1422.0, + "name": "dwp.uc.households_by_area_children_1@W07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1348.0, + "kind": "calibration_drift", + "ledger_value": 1488.0, + "name": "dwp.uc.households_by_area_children_1@W07000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1955.0, + "kind": "calibration_drift", + "ledger_value": 2079.0, + "name": "dwp.uc.households_by_area_children_1@W07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2462.0, + "kind": "calibration_drift", + "ledger_value": 2748.0, + "name": "dwp.uc.households_by_area_children_1@W07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1863.0, + "kind": "calibration_drift", + "ledger_value": 1953.0, + "name": "dwp.uc.households_by_area_children_1@W07000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1189.0, + "kind": "calibration_drift", + "ledger_value": 1276.0, + "name": "dwp.uc.households_by_area_children_1@W07000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1663.0, + "kind": "calibration_drift", + "ledger_value": 1849.0, + "name": "dwp.uc.households_by_area_children_1@W07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2144.0, + "kind": "calibration_drift", + "ledger_value": 2348.0, + "name": "dwp.uc.households_by_area_children_1@W07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2874.0, + "kind": "calibration_drift", + "ledger_value": 3040.0, + "name": "dwp.uc.households_by_area_children_1@W07000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1851.0, + "kind": "calibration_drift", + "ledger_value": 1967.0, + "name": "dwp.uc.households_by_area_children_1@W07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1979.0, + "kind": "calibration_drift", + "ledger_value": 2244.0, + "name": "dwp.uc.households_by_area_children_1@W07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2532.0, + "kind": "calibration_drift", + "ledger_value": 2747.0, + "name": "dwp.uc.households_by_area_children_1@W07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2911.0, + "kind": "calibration_drift", + "ledger_value": 2776.0, + "name": "dwp.uc.households_by_area_children_1@W07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2163.0, + "kind": "calibration_drift", + "ledger_value": 2339.0, + "name": "dwp.uc.households_by_area_children_1@W07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1809.0, + "kind": "calibration_drift", + "ledger_value": 2032.0, + "name": "dwp.uc.households_by_area_children_1@W07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1893.0, + "kind": "calibration_drift", + "ledger_value": 2094.0, + "name": "dwp.uc.households_by_area_children_1@W07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1228.0, + "kind": "calibration_drift", + "ledger_value": 1241.0, + "name": "dwp.uc.households_by_area_children_1@W07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1389.0, + "kind": "calibration_drift", + "ledger_value": 1550.0, + "name": "dwp.uc.households_by_area_children_2@E14001063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1195.0, + "kind": "calibration_drift", + "ledger_value": 1361.0, + "name": "dwp.uc.households_by_area_children_2@E14001064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 847.0, + "kind": "calibration_drift", + "ledger_value": 881.0, + "name": "dwp.uc.households_by_area_children_2@E14001065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1441.0, + "kind": "calibration_drift", + "ledger_value": 1546.0, + "name": "dwp.uc.households_by_area_children_2@E14001066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 825.0, + "kind": "calibration_drift", + "ledger_value": 984.0, + "name": "dwp.uc.households_by_area_children_2@E14001067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1785.0, + "kind": "calibration_drift", + "ledger_value": 1924.0, + "name": "dwp.uc.households_by_area_children_2@E14001068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1626.0, + "kind": "calibration_drift", + "ledger_value": 1951.0, + "name": "dwp.uc.households_by_area_children_2@E14001069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2360.0, + "kind": "calibration_drift", + "ledger_value": 2428.0, + "name": "dwp.uc.households_by_area_children_2@E14001070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1595.0, + "kind": "calibration_drift", + "ledger_value": 1777.0, + "name": "dwp.uc.households_by_area_children_2@E14001071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1197.0, + "kind": "calibration_drift", + "ledger_value": 1358.0, + "name": "dwp.uc.households_by_area_children_2@E14001072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3507.0, + "kind": "calibration_drift", + "ledger_value": 4426.0, + "name": "dwp.uc.households_by_area_children_2@E14001073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2092.0, + "kind": "calibration_drift", + "ledger_value": 2191.0, + "name": "dwp.uc.households_by_area_children_2@E14001074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2411.0, + "kind": "calibration_drift", + "ledger_value": 2656.0, + "name": "dwp.uc.households_by_area_children_2@E14001075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1353.0, + "kind": "calibration_drift", + "ledger_value": 1338.0, + "name": "dwp.uc.households_by_area_children_2@E14001076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1892.0, + "kind": "calibration_drift", + "ledger_value": 2099.0, + "name": "dwp.uc.households_by_area_children_2@E14001077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1449.0, + "kind": "calibration_drift", + "ledger_value": 1662.0, + "name": "dwp.uc.households_by_area_children_2@E14001078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1753.0, + "kind": "calibration_drift", + "ledger_value": 1968.0, + "name": "dwp.uc.households_by_area_children_2@E14001079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1082.0, + "kind": "calibration_drift", + "ledger_value": 1002.0, + "name": "dwp.uc.households_by_area_children_2@E14001080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1502.0, + "kind": "calibration_drift", + "ledger_value": 1226.0, + "name": "dwp.uc.households_by_area_children_2@E14001081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 807.0, + "kind": "calibration_drift", + "ledger_value": 917.0, + "name": "dwp.uc.households_by_area_children_2@E14001082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1377.0, + "kind": "calibration_drift", + "ledger_value": 1310.0, + "name": "dwp.uc.households_by_area_children_2@E14001083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2201.0, + "kind": "calibration_drift", + "ledger_value": 2141.0, + "name": "dwp.uc.households_by_area_children_2@E14001084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2232.0, + "kind": "calibration_drift", + "ledger_value": 1878.0, + "name": "dwp.uc.households_by_area_children_2@E14001085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3356.0, + "kind": "calibration_drift", + "ledger_value": 3257.0, + "name": "dwp.uc.households_by_area_children_2@E14001086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 941.0, + "kind": "calibration_drift", + "ledger_value": 1106.0, + "name": "dwp.uc.households_by_area_children_2@E14001087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1153.0, + "kind": "calibration_drift", + "ledger_value": 1204.0, + "name": "dwp.uc.households_by_area_children_2@E14001088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1412.0, + "kind": "calibration_drift", + "ledger_value": 1563.0, + "name": "dwp.uc.households_by_area_children_2@E14001089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 944.0, + "kind": "calibration_drift", + "ledger_value": 1198.0, + "name": "dwp.uc.households_by_area_children_2@E14001090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2750.0, + "kind": "calibration_drift", + "ledger_value": 2533.0, + "name": "dwp.uc.households_by_area_children_2@E14001091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2651.0, + "kind": "calibration_drift", + "ledger_value": 2271.0, + "name": "dwp.uc.households_by_area_children_2@E14001092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3849.0, + "kind": "calibration_drift", + "ledger_value": 3631.0, + "name": "dwp.uc.households_by_area_children_2@E14001093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3215.0, + "kind": "calibration_drift", + "ledger_value": 2642.0, + "name": "dwp.uc.households_by_area_children_2@E14001094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3833.0, + "kind": "calibration_drift", + "ledger_value": 3875.0, + "name": "dwp.uc.households_by_area_children_2@E14001095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 5187.0, + "kind": "calibration_drift", + "ledger_value": 4134.0, + "name": "dwp.uc.households_by_area_children_2@E14001096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2866.0, + "kind": "calibration_drift", + "ledger_value": 3055.0, + "name": "dwp.uc.households_by_area_children_2@E14001097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4181.0, + "kind": "calibration_drift", + "ledger_value": 3591.0, + "name": "dwp.uc.households_by_area_children_2@E14001098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2246.0, + "kind": "calibration_drift", + "ledger_value": 2010.0, + "name": "dwp.uc.households_by_area_children_2@E14001099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3457.0, + "kind": "calibration_drift", + "ledger_value": 3155.0, + "name": "dwp.uc.households_by_area_children_2@E14001100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1767.0, + "kind": "calibration_drift", + "ledger_value": 1709.0, + "name": "dwp.uc.households_by_area_children_2@E14001101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2967.0, + "kind": "calibration_drift", + "ledger_value": 3068.0, + "name": "dwp.uc.households_by_area_children_2@E14001102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3238.0, + "kind": "calibration_drift", + "ledger_value": 3385.0, + "name": "dwp.uc.households_by_area_children_2@E14001103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1687.0, + "kind": "calibration_drift", + "ledger_value": 1668.0, + "name": "dwp.uc.households_by_area_children_2@E14001104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3376.0, + "kind": "calibration_drift", + "ledger_value": 2907.0, + "name": "dwp.uc.households_by_area_children_2@E14001105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1511.0, + "kind": "calibration_drift", + "ledger_value": 1486.0, + "name": "dwp.uc.households_by_area_children_2@E14001106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2276.0, + "kind": "calibration_drift", + "ledger_value": 2283.0, + "name": "dwp.uc.households_by_area_children_2@E14001107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1687.0, + "kind": "calibration_drift", + "ledger_value": 1747.0, + "name": "dwp.uc.households_by_area_children_2@E14001108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1681.0, + "kind": "calibration_drift", + "ledger_value": 1859.0, + "name": "dwp.uc.households_by_area_children_2@E14001109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2610.0, + "kind": "calibration_drift", + "ledger_value": 2632.0, + "name": "dwp.uc.households_by_area_children_2@E14001110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3327.0, + "kind": "calibration_drift", + "ledger_value": 3588.0, + "name": "dwp.uc.households_by_area_children_2@E14001111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1494.0, + "kind": "calibration_drift", + "ledger_value": 1727.0, + "name": "dwp.uc.households_by_area_children_2@E14001112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2744.0, + "kind": "calibration_drift", + "ledger_value": 2595.0, + "name": "dwp.uc.households_by_area_children_2@E14001113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2482.0, + "kind": "calibration_drift", + "ledger_value": 2544.0, + "name": "dwp.uc.households_by_area_children_2@E14001114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1824.0, + "kind": "calibration_drift", + "ledger_value": 1627.0, + "name": "dwp.uc.households_by_area_children_2@E14001115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1802.0, + "kind": "calibration_drift", + "ledger_value": 1597.0, + "name": "dwp.uc.households_by_area_children_2@E14001116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1183.0, + "kind": "calibration_drift", + "ledger_value": 1422.0, + "name": "dwp.uc.households_by_area_children_2@E14001117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3517.0, + "kind": "calibration_drift", + "ledger_value": 3783.0, + "name": "dwp.uc.households_by_area_children_2@E14001118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2898.0, + "kind": "calibration_drift", + "ledger_value": 3341.0, + "name": "dwp.uc.households_by_area_children_2@E14001119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3714.0, + "kind": "calibration_drift", + "ledger_value": 3377.0, + "name": "dwp.uc.households_by_area_children_2@E14001120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1205.0, + "kind": "calibration_drift", + "ledger_value": 1327.0, + "name": "dwp.uc.households_by_area_children_2@E14001121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3958.0, + "kind": "calibration_drift", + "ledger_value": 3357.0, + "name": "dwp.uc.households_by_area_children_2@E14001122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2463.0, + "kind": "calibration_drift", + "ledger_value": 2706.0, + "name": "dwp.uc.households_by_area_children_2@E14001123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2442.0, + "kind": "calibration_drift", + "ledger_value": 2648.0, + "name": "dwp.uc.households_by_area_children_2@E14001124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 938.0, + "kind": "calibration_drift", + "ledger_value": 1067.0, + "name": "dwp.uc.households_by_area_children_2@E14001125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1579.0, + "kind": "calibration_drift", + "ledger_value": 1807.0, + "name": "dwp.uc.households_by_area_children_2@E14001126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1366.0, + "kind": "calibration_drift", + "ledger_value": 1331.0, + "name": "dwp.uc.households_by_area_children_2@E14001127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1042.0, + "kind": "calibration_drift", + "ledger_value": 1166.0, + "name": "dwp.uc.households_by_area_children_2@E14001128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1897.0, + "kind": "calibration_drift", + "ledger_value": 1540.0, + "name": "dwp.uc.households_by_area_children_2@E14001129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1571.0, + "kind": "calibration_drift", + "ledger_value": 977.0, + "name": "dwp.uc.households_by_area_children_2@E14001130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 975.0, + "kind": "calibration_drift", + "ledger_value": 468.0, + "name": "dwp.uc.households_by_area_children_2@E14001131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2056.0, + "kind": "calibration_drift", + "ledger_value": 1745.0, + "name": "dwp.uc.households_by_area_children_2@E14001132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1724.0, + "kind": "calibration_drift", + "ledger_value": 1654.0, + "name": "dwp.uc.households_by_area_children_2@E14001133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1553.0, + "kind": "calibration_drift", + "ledger_value": 1574.0, + "name": "dwp.uc.households_by_area_children_2@E14001134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2140.0, + "kind": "calibration_drift", + "ledger_value": 2149.0, + "name": "dwp.uc.households_by_area_children_2@E14001135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 963.0, + "kind": "calibration_drift", + "ledger_value": 1214.0, + "name": "dwp.uc.households_by_area_children_2@E14001136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1031.0, + "kind": "calibration_drift", + "ledger_value": 1111.0, + "name": "dwp.uc.households_by_area_children_2@E14001137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 951.0, + "kind": "calibration_drift", + "ledger_value": 1065.0, + "name": "dwp.uc.households_by_area_children_2@E14001138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1653.0, + "kind": "calibration_drift", + "ledger_value": 2060.0, + "name": "dwp.uc.households_by_area_children_2@E14001139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1203.0, + "kind": "calibration_drift", + "ledger_value": 1244.0, + "name": "dwp.uc.households_by_area_children_2@E14001140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1419.0, + "kind": "calibration_drift", + "ledger_value": 1817.0, + "name": "dwp.uc.households_by_area_children_2@E14001141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2672.0, + "kind": "calibration_drift", + "ledger_value": 2833.0, + "name": "dwp.uc.households_by_area_children_2@E14001142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1806.0, + "kind": "calibration_drift", + "ledger_value": 2010.0, + "name": "dwp.uc.households_by_area_children_2@E14001143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1808.0, + "kind": "calibration_drift", + "ledger_value": 1882.0, + "name": "dwp.uc.households_by_area_children_2@E14001144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1967.0, + "kind": "calibration_drift", + "ledger_value": 1984.0, + "name": "dwp.uc.households_by_area_children_2@E14001145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1198.0, + "kind": "calibration_drift", + "ledger_value": 1385.0, + "name": "dwp.uc.households_by_area_children_2@E14001146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1406.0, + "kind": "calibration_drift", + "ledger_value": 1337.0, + "name": "dwp.uc.households_by_area_children_2@E14001147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1640.0, + "kind": "calibration_drift", + "ledger_value": 1774.0, + "name": "dwp.uc.households_by_area_children_2@E14001148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1252.0, + "kind": "calibration_drift", + "ledger_value": 1126.0, + "name": "dwp.uc.households_by_area_children_2@E14001149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1563.0, + "kind": "calibration_drift", + "ledger_value": 1775.0, + "name": "dwp.uc.households_by_area_children_2@E14001150", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1482.0, + "kind": "calibration_drift", + "ledger_value": 1454.0, + "name": "dwp.uc.households_by_area_children_2@E14001151", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1524.0, + "kind": "calibration_drift", + "ledger_value": 1532.0, + "name": "dwp.uc.households_by_area_children_2@E14001152", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1661.0, + "kind": "calibration_drift", + "ledger_value": 1871.0, + "name": "dwp.uc.households_by_area_children_2@E14001153", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1037.0, + "kind": "calibration_drift", + "ledger_value": 1200.0, + "name": "dwp.uc.households_by_area_children_2@E14001154", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1045.0, + "kind": "calibration_drift", + "ledger_value": 1239.0, + "name": "dwp.uc.households_by_area_children_2@E14001155", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 914.0, + "kind": "calibration_drift", + "ledger_value": 1105.0, + "name": "dwp.uc.households_by_area_children_2@E14001156", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1873.0, + "kind": "calibration_drift", + "ledger_value": 2157.0, + "name": "dwp.uc.households_by_area_children_2@E14001157", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 739.0, + "kind": "calibration_drift", + "ledger_value": 836.0, + "name": "dwp.uc.households_by_area_children_2@E14001158", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1290.0, + "kind": "calibration_drift", + "ledger_value": 1358.0, + "name": "dwp.uc.households_by_area_children_2@E14001159", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1651.0, + "kind": "calibration_drift", + "ledger_value": 1144.0, + "name": "dwp.uc.households_by_area_children_2@E14001160", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1147.0, + "kind": "calibration_drift", + "ledger_value": 1097.0, + "name": "dwp.uc.households_by_area_children_2@E14001161", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 729.0, + "kind": "calibration_drift", + "ledger_value": 844.0, + "name": "dwp.uc.households_by_area_children_2@E14001162", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1237.0, + "kind": "calibration_drift", + "ledger_value": 1062.0, + "name": "dwp.uc.households_by_area_children_2@E14001163", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 796.0, + "kind": "calibration_drift", + "ledger_value": 965.0, + "name": "dwp.uc.households_by_area_children_2@E14001164", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1652.0, + "kind": "calibration_drift", + "ledger_value": 1552.0, + "name": "dwp.uc.households_by_area_children_2@E14001165", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1330.0, + "kind": "calibration_drift", + "ledger_value": 1508.0, + "name": "dwp.uc.households_by_area_children_2@E14001166", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1620.0, + "kind": "calibration_drift", + "ledger_value": 1694.0, + "name": "dwp.uc.households_by_area_children_2@E14001167", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1090.0, + "kind": "calibration_drift", + "ledger_value": 1258.0, + "name": "dwp.uc.households_by_area_children_2@E14001168", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1503.0, + "kind": "calibration_drift", + "ledger_value": 1551.0, + "name": "dwp.uc.households_by_area_children_2@E14001169", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1406.0, + "kind": "calibration_drift", + "ledger_value": 1493.0, + "name": "dwp.uc.households_by_area_children_2@E14001170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 823.0, + "kind": "calibration_drift", + "ledger_value": 897.0, + "name": "dwp.uc.households_by_area_children_2@E14001171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1631.0, + "kind": "calibration_drift", + "ledger_value": 963.0, + "name": "dwp.uc.households_by_area_children_2@E14001172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1311.0, + "kind": "calibration_drift", + "ledger_value": 1262.0, + "name": "dwp.uc.households_by_area_children_2@E14001173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1955.0, + "kind": "calibration_drift", + "ledger_value": 1827.0, + "name": "dwp.uc.households_by_area_children_2@E14001174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2007.0, + "kind": "calibration_drift", + "ledger_value": 1526.0, + "name": "dwp.uc.households_by_area_children_2@E14001175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1829.0, + "kind": "calibration_drift", + "ledger_value": 2053.0, + "name": "dwp.uc.households_by_area_children_2@E14001176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1105.0, + "kind": "calibration_drift", + "ledger_value": 1228.0, + "name": "dwp.uc.households_by_area_children_2@E14001177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 884.0, + "kind": "calibration_drift", + "ledger_value": 961.0, + "name": "dwp.uc.households_by_area_children_2@E14001178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1850.0, + "kind": "calibration_drift", + "ledger_value": 2193.0, + "name": "dwp.uc.households_by_area_children_2@E14001179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3101.0, + "kind": "calibration_drift", + "ledger_value": 3477.0, + "name": "dwp.uc.households_by_area_children_2@E14001180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1932.0, + "kind": "calibration_drift", + "ledger_value": 2107.0, + "name": "dwp.uc.households_by_area_children_2@E14001181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2073.0, + "kind": "calibration_drift", + "ledger_value": 1913.0, + "name": "dwp.uc.households_by_area_children_2@E14001182", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1436.0, + "kind": "calibration_drift", + "ledger_value": 1621.0, + "name": "dwp.uc.households_by_area_children_2@E14001183", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2138.0, + "kind": "calibration_drift", + "ledger_value": 2445.0, + "name": "dwp.uc.households_by_area_children_2@E14001184", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1790.0, + "kind": "calibration_drift", + "ledger_value": 2041.0, + "name": "dwp.uc.households_by_area_children_2@E14001185", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2283.0, + "kind": "calibration_drift", + "ledger_value": 2444.0, + "name": "dwp.uc.households_by_area_children_2@E14001186", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1382.0, + "kind": "calibration_drift", + "ledger_value": 1523.0, + "name": "dwp.uc.households_by_area_children_2@E14001187", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3492.0, + "kind": "calibration_drift", + "ledger_value": 3439.0, + "name": "dwp.uc.households_by_area_children_2@E14001188", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2628.0, + "kind": "calibration_drift", + "ledger_value": 3255.0, + "name": "dwp.uc.households_by_area_children_2@E14001189", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1898.0, + "kind": "calibration_drift", + "ledger_value": 1936.0, + "name": "dwp.uc.households_by_area_children_2@E14001190", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1567.0, + "kind": "calibration_drift", + "ledger_value": 2030.0, + "name": "dwp.uc.households_by_area_children_2@E14001191", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1146.0, + "kind": "calibration_drift", + "ledger_value": 1426.0, + "name": "dwp.uc.households_by_area_children_2@E14001192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1924.0, + "kind": "calibration_drift", + "ledger_value": 1976.0, + "name": "dwp.uc.households_by_area_children_2@E14001193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3151.0, + "kind": "calibration_drift", + "ledger_value": 3268.0, + "name": "dwp.uc.households_by_area_children_2@E14001194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 756.0, + "kind": "calibration_drift", + "ledger_value": 862.0, + "name": "dwp.uc.households_by_area_children_2@E14001195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2620.0, + "kind": "calibration_drift", + "ledger_value": 2816.0, + "name": "dwp.uc.households_by_area_children_2@E14001196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1095.0, + "kind": "calibration_drift", + "ledger_value": 1360.0, + "name": "dwp.uc.households_by_area_children_2@E14001197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2534.0, + "kind": "calibration_drift", + "ledger_value": 2484.0, + "name": "dwp.uc.households_by_area_children_2@E14001198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1371.0, + "kind": "calibration_drift", + "ledger_value": 1571.0, + "name": "dwp.uc.households_by_area_children_2@E14001199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2076.0, + "kind": "calibration_drift", + "ledger_value": 2303.0, + "name": "dwp.uc.households_by_area_children_2@E14001200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 784.0, + "kind": "calibration_drift", + "ledger_value": 945.0, + "name": "dwp.uc.households_by_area_children_2@E14001201", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1790.0, + "kind": "calibration_drift", + "ledger_value": 1891.0, + "name": "dwp.uc.households_by_area_children_2@E14001202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1235.0, + "kind": "calibration_drift", + "ledger_value": 1447.0, + "name": "dwp.uc.households_by_area_children_2@E14001203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2224.0, + "kind": "calibration_drift", + "ledger_value": 2355.0, + "name": "dwp.uc.households_by_area_children_2@E14001204", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2206.0, + "kind": "calibration_drift", + "ledger_value": 1792.0, + "name": "dwp.uc.households_by_area_children_2@E14001205", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1514.0, + "kind": "calibration_drift", + "ledger_value": 1885.0, + "name": "dwp.uc.households_by_area_children_2@E14001206", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2704.0, + "kind": "calibration_drift", + "ledger_value": 2076.0, + "name": "dwp.uc.households_by_area_children_2@E14001207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2922.0, + "kind": "calibration_drift", + "ledger_value": 2900.0, + "name": "dwp.uc.households_by_area_children_2@E14001208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2614.0, + "kind": "calibration_drift", + "ledger_value": 2747.0, + "name": "dwp.uc.households_by_area_children_2@E14001209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1052.0, + "kind": "calibration_drift", + "ledger_value": 1221.0, + "name": "dwp.uc.households_by_area_children_2@E14001210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2424.0, + "kind": "calibration_drift", + "ledger_value": 2261.0, + "name": "dwp.uc.households_by_area_children_2@E14001211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 843.0, + "kind": "calibration_drift", + "ledger_value": 1067.0, + "name": "dwp.uc.households_by_area_children_2@E14001212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3152.0, + "kind": "calibration_drift", + "ledger_value": 3757.0, + "name": "dwp.uc.households_by_area_children_2@E14001213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 767.0, + "kind": "calibration_drift", + "ledger_value": 876.0, + "name": "dwp.uc.households_by_area_children_2@E14001214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 996.0, + "kind": "calibration_drift", + "ledger_value": 1188.0, + "name": "dwp.uc.households_by_area_children_2@E14001215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2512.0, + "kind": "calibration_drift", + "ledger_value": 2515.0, + "name": "dwp.uc.households_by_area_children_2@E14001216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1018.0, + "kind": "calibration_drift", + "ledger_value": 1223.0, + "name": "dwp.uc.households_by_area_children_2@E14001217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1200.0, + "kind": "calibration_drift", + "ledger_value": 1284.0, + "name": "dwp.uc.households_by_area_children_2@E14001218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1891.0, + "kind": "calibration_drift", + "ledger_value": 1803.0, + "name": "dwp.uc.households_by_area_children_2@E14001219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 963.0, + "kind": "calibration_drift", + "ledger_value": 1213.0, + "name": "dwp.uc.households_by_area_children_2@E14001220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3546.0, + "kind": "calibration_drift", + "ledger_value": 3780.0, + "name": "dwp.uc.households_by_area_children_2@E14001221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1696.0, + "kind": "calibration_drift", + "ledger_value": 1929.0, + "name": "dwp.uc.households_by_area_children_2@E14001222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1852.0, + "kind": "calibration_drift", + "ledger_value": 1882.0, + "name": "dwp.uc.households_by_area_children_2@E14001223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1075.0, + "kind": "calibration_drift", + "ledger_value": 1249.0, + "name": "dwp.uc.households_by_area_children_2@E14001224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3455.0, + "kind": "calibration_drift", + "ledger_value": 4131.0, + "name": "dwp.uc.households_by_area_children_2@E14001225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1211.0, + "kind": "calibration_drift", + "ledger_value": 1384.0, + "name": "dwp.uc.households_by_area_children_2@E14001226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 901.0, + "kind": "calibration_drift", + "ledger_value": 1063.0, + "name": "dwp.uc.households_by_area_children_2@E14001227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1651.0, + "kind": "calibration_drift", + "ledger_value": 1692.0, + "name": "dwp.uc.households_by_area_children_2@E14001228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3155.0, + "kind": "calibration_drift", + "ledger_value": 3302.0, + "name": "dwp.uc.households_by_area_children_2@E14001229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 978.0, + "name": "dwp.uc.households_by_area_children_2@E14001230", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1351.0, + "kind": "calibration_drift", + "ledger_value": 1122.0, + "name": "dwp.uc.households_by_area_children_2@E14001231", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1218.0, + "kind": "calibration_drift", + "ledger_value": 1550.0, + "name": "dwp.uc.households_by_area_children_2@E14001232", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1071.0, + "kind": "calibration_drift", + "ledger_value": 1199.0, + "name": "dwp.uc.households_by_area_children_2@E14001233", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 808.0, + "kind": "calibration_drift", + "ledger_value": 993.0, + "name": "dwp.uc.households_by_area_children_2@E14001234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1395.0, + "kind": "calibration_drift", + "ledger_value": 1685.0, + "name": "dwp.uc.households_by_area_children_2@E14001235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2909.0, + "kind": "calibration_drift", + "ledger_value": 3372.0, + "name": "dwp.uc.households_by_area_children_2@E14001236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1081.0, + "kind": "calibration_drift", + "ledger_value": 1405.0, + "name": "dwp.uc.households_by_area_children_2@E14001237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2161.0, + "kind": "calibration_drift", + "ledger_value": 1747.0, + "name": "dwp.uc.households_by_area_children_2@E14001238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1553.0, + "kind": "calibration_drift", + "ledger_value": 1505.0, + "name": "dwp.uc.households_by_area_children_2@E14001239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1115.0, + "kind": "calibration_drift", + "ledger_value": 1242.0, + "name": "dwp.uc.households_by_area_children_2@E14001240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1105.0, + "kind": "calibration_drift", + "ledger_value": 1285.0, + "name": "dwp.uc.households_by_area_children_2@E14001241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1141.0, + "kind": "calibration_drift", + "ledger_value": 1159.0, + "name": "dwp.uc.households_by_area_children_2@E14001242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1334.0, + "kind": "calibration_drift", + "ledger_value": 1349.0, + "name": "dwp.uc.households_by_area_children_2@E14001243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2009.0, + "kind": "calibration_drift", + "ledger_value": 1627.0, + "name": "dwp.uc.households_by_area_children_2@E14001244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1439.0, + "kind": "calibration_drift", + "ledger_value": 1585.0, + "name": "dwp.uc.households_by_area_children_2@E14001245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1703.0, + "kind": "calibration_drift", + "ledger_value": 1930.0, + "name": "dwp.uc.households_by_area_children_2@E14001246", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1059.0, + "kind": "calibration_drift", + "ledger_value": 1186.0, + "name": "dwp.uc.households_by_area_children_2@E14001247", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2083.0, + "kind": "calibration_drift", + "ledger_value": 2145.0, + "name": "dwp.uc.households_by_area_children_2@E14001248", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 781.0, + "kind": "calibration_drift", + "ledger_value": 900.0, + "name": "dwp.uc.households_by_area_children_2@E14001249", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 970.0, + "kind": "calibration_drift", + "ledger_value": 1222.0, + "name": "dwp.uc.households_by_area_children_2@E14001250", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3142.0, + "kind": "calibration_drift", + "ledger_value": 3403.0, + "name": "dwp.uc.households_by_area_children_2@E14001251", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1440.0, + "kind": "calibration_drift", + "ledger_value": 1586.0, + "name": "dwp.uc.households_by_area_children_2@E14001252", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1342.0, + "kind": "calibration_drift", + "ledger_value": 1589.0, + "name": "dwp.uc.households_by_area_children_2@E14001253", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1882.0, + "kind": "calibration_drift", + "ledger_value": 2191.0, + "name": "dwp.uc.households_by_area_children_2@E14001254", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2802.0, + "kind": "calibration_drift", + "ledger_value": 2854.0, + "name": "dwp.uc.households_by_area_children_2@E14001255", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2246.0, + "kind": "calibration_drift", + "ledger_value": 2212.0, + "name": "dwp.uc.households_by_area_children_2@E14001256", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2316.0, + "kind": "calibration_drift", + "ledger_value": 2198.0, + "name": "dwp.uc.households_by_area_children_2@E14001257", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 837.0, + "kind": "calibration_drift", + "ledger_value": 820.0, + "name": "dwp.uc.households_by_area_children_2@E14001258", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3272.0, + "kind": "calibration_drift", + "ledger_value": 2523.0, + "name": "dwp.uc.households_by_area_children_2@E14001259", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2952.0, + "kind": "calibration_drift", + "ledger_value": 2325.0, + "name": "dwp.uc.households_by_area_children_2@E14001260", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1653.0, + "kind": "calibration_drift", + "ledger_value": 1984.0, + "name": "dwp.uc.households_by_area_children_2@E14001261", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2591.0, + "kind": "calibration_drift", + "ledger_value": 2586.0, + "name": "dwp.uc.households_by_area_children_2@E14001262", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 966.0, + "kind": "calibration_drift", + "ledger_value": 1401.0, + "name": "dwp.uc.households_by_area_children_2@E14001263", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2043.0, + "kind": "calibration_drift", + "ledger_value": 1459.0, + "name": "dwp.uc.households_by_area_children_2@E14001264", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1783.0, + "kind": "calibration_drift", + "ledger_value": 1266.0, + "name": "dwp.uc.households_by_area_children_2@E14001265", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1073.0, + "kind": "calibration_drift", + "ledger_value": 1329.0, + "name": "dwp.uc.households_by_area_children_2@E14001266", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1984.0, + "kind": "calibration_drift", + "ledger_value": 2289.0, + "name": "dwp.uc.households_by_area_children_2@E14001267", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 598.0, + "kind": "calibration_drift", + "ledger_value": 719.0, + "name": "dwp.uc.households_by_area_children_2@E14001268", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1005.0, + "kind": "calibration_drift", + "ledger_value": 1004.0, + "name": "dwp.uc.households_by_area_children_2@E14001269", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1618.0, + "kind": "calibration_drift", + "ledger_value": 1718.0, + "name": "dwp.uc.households_by_area_children_2@E14001270", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2104.0, + "kind": "calibration_drift", + "ledger_value": 2207.0, + "name": "dwp.uc.households_by_area_children_2@E14001271", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2424.0, + "kind": "calibration_drift", + "ledger_value": 2220.0, + "name": "dwp.uc.households_by_area_children_2@E14001272", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1224.0, + "kind": "calibration_drift", + "ledger_value": 1333.0, + "name": "dwp.uc.households_by_area_children_2@E14001273", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2271.0, + "kind": "calibration_drift", + "ledger_value": 2082.0, + "name": "dwp.uc.households_by_area_children_2@E14001274", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1563.0, + "kind": "calibration_drift", + "ledger_value": 1715.0, + "name": "dwp.uc.households_by_area_children_2@E14001275", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2753.0, + "kind": "calibration_drift", + "ledger_value": 3109.0, + "name": "dwp.uc.households_by_area_children_2@E14001276", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1179.0, + "kind": "calibration_drift", + "ledger_value": 1276.0, + "name": "dwp.uc.households_by_area_children_2@E14001277", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1639.0, + "kind": "calibration_drift", + "ledger_value": 1890.0, + "name": "dwp.uc.households_by_area_children_2@E14001278", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2676.0, + "kind": "calibration_drift", + "ledger_value": 2591.0, + "name": "dwp.uc.households_by_area_children_2@E14001279", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 693.0, + "kind": "calibration_drift", + "ledger_value": 800.0, + "name": "dwp.uc.households_by_area_children_2@E14001280", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1241.0, + "kind": "calibration_drift", + "ledger_value": 1425.0, + "name": "dwp.uc.households_by_area_children_2@E14001281", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1487.0, + "kind": "calibration_drift", + "ledger_value": 1559.0, + "name": "dwp.uc.households_by_area_children_2@E14001282", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1053.0, + "kind": "calibration_drift", + "ledger_value": 1299.0, + "name": "dwp.uc.households_by_area_children_2@E14001283", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1366.0, + "kind": "calibration_drift", + "ledger_value": 1486.0, + "name": "dwp.uc.households_by_area_children_2@E14001284", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 923.0, + "kind": "calibration_drift", + "ledger_value": 964.0, + "name": "dwp.uc.households_by_area_children_2@E14001285", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2325.0, + "kind": "calibration_drift", + "ledger_value": 2537.0, + "name": "dwp.uc.households_by_area_children_2@E14001286", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1120.0, + "kind": "calibration_drift", + "ledger_value": 1230.0, + "name": "dwp.uc.households_by_area_children_2@E14001287", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1196.0, + "kind": "calibration_drift", + "ledger_value": 1343.0, + "name": "dwp.uc.households_by_area_children_2@E14001288", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 999.0, + "kind": "calibration_drift", + "ledger_value": 1186.0, + "name": "dwp.uc.households_by_area_children_2@E14001289", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2277.0, + "kind": "calibration_drift", + "ledger_value": 1817.0, + "name": "dwp.uc.households_by_area_children_2@E14001290", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 871.0, + "kind": "calibration_drift", + "ledger_value": 1028.0, + "name": "dwp.uc.households_by_area_children_2@E14001291", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1467.0, + "kind": "calibration_drift", + "ledger_value": 1629.0, + "name": "dwp.uc.households_by_area_children_2@E14001292", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1616.0, + "kind": "calibration_drift", + "ledger_value": 1285.0, + "name": "dwp.uc.households_by_area_children_2@E14001293", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 920.0, + "kind": "calibration_drift", + "ledger_value": 1210.0, + "name": "dwp.uc.households_by_area_children_2@E14001294", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2260.0, + "kind": "calibration_drift", + "ledger_value": 2244.0, + "name": "dwp.uc.households_by_area_children_2@E14001295", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1614.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_2@E14001296", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2633.0, + "kind": "calibration_drift", + "ledger_value": 2573.0, + "name": "dwp.uc.households_by_area_children_2@E14001297", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1113.0, + "kind": "calibration_drift", + "ledger_value": 1275.0, + "name": "dwp.uc.households_by_area_children_2@E14001298", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2183.0, + "kind": "calibration_drift", + "ledger_value": 2193.0, + "name": "dwp.uc.households_by_area_children_2@E14001299", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1951.0, + "kind": "calibration_drift", + "ledger_value": 2242.0, + "name": "dwp.uc.households_by_area_children_2@E14001300", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2761.0, + "kind": "calibration_drift", + "ledger_value": 3393.0, + "name": "dwp.uc.households_by_area_children_2@E14001301", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2228.0, + "kind": "calibration_drift", + "ledger_value": 2493.0, + "name": "dwp.uc.households_by_area_children_2@E14001302", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1191.0, + "kind": "calibration_drift", + "ledger_value": 1113.0, + "name": "dwp.uc.households_by_area_children_2@E14001303", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1052.0, + "kind": "calibration_drift", + "ledger_value": 1091.0, + "name": "dwp.uc.households_by_area_children_2@E14001304", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2502.0, + "kind": "calibration_drift", + "ledger_value": 1914.0, + "name": "dwp.uc.households_by_area_children_2@E14001305", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2585.0, + "kind": "calibration_drift", + "ledger_value": 2209.0, + "name": "dwp.uc.households_by_area_children_2@E14001306", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2130.0, + "kind": "calibration_drift", + "ledger_value": 2257.0, + "name": "dwp.uc.households_by_area_children_2@E14001307", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1677.0, + "kind": "calibration_drift", + "ledger_value": 1868.0, + "name": "dwp.uc.households_by_area_children_2@E14001308", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 777.0, + "kind": "calibration_drift", + "ledger_value": 881.0, + "name": "dwp.uc.households_by_area_children_2@E14001309", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1966.0, + "kind": "calibration_drift", + "ledger_value": 1199.0, + "name": "dwp.uc.households_by_area_children_2@E14001310", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1681.0, + "kind": "calibration_drift", + "ledger_value": 1964.0, + "name": "dwp.uc.households_by_area_children_2@E14001311", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1426.0, + "kind": "calibration_drift", + "ledger_value": 1422.0, + "name": "dwp.uc.households_by_area_children_2@E14001312", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2750.0, + "kind": "calibration_drift", + "ledger_value": 3019.0, + "name": "dwp.uc.households_by_area_children_2@E14001313", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2595.0, + "kind": "calibration_drift", + "ledger_value": 2436.0, + "name": "dwp.uc.households_by_area_children_2@E14001314", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2126.0, + "kind": "calibration_drift", + "ledger_value": 2109.0, + "name": "dwp.uc.households_by_area_children_2@E14001315", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 853.0, + "kind": "calibration_drift", + "ledger_value": 988.0, + "name": "dwp.uc.households_by_area_children_2@E14001316", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2490.0, + "kind": "calibration_drift", + "ledger_value": 2614.0, + "name": "dwp.uc.households_by_area_children_2@E14001317", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1166.0, + "kind": "calibration_drift", + "ledger_value": 1178.0, + "name": "dwp.uc.households_by_area_children_2@E14001318", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1533.0, + "kind": "calibration_drift", + "ledger_value": 1123.0, + "name": "dwp.uc.households_by_area_children_2@E14001319", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2687.0, + "kind": "calibration_drift", + "ledger_value": 3038.0, + "name": "dwp.uc.households_by_area_children_2@E14001320", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1344.0, + "kind": "calibration_drift", + "ledger_value": 1234.0, + "name": "dwp.uc.households_by_area_children_2@E14001321", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 829.0, + "kind": "calibration_drift", + "ledger_value": 979.0, + "name": "dwp.uc.households_by_area_children_2@E14001322", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3779.0, + "kind": "calibration_drift", + "ledger_value": 3933.0, + "name": "dwp.uc.households_by_area_children_2@E14001323", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1463.0, + "kind": "calibration_drift", + "ledger_value": 1679.0, + "name": "dwp.uc.households_by_area_children_2@E14001324", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2035.0, + "kind": "calibration_drift", + "ledger_value": 2127.0, + "name": "dwp.uc.households_by_area_children_2@E14001325", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2367.0, + "kind": "calibration_drift", + "ledger_value": 3168.0, + "name": "dwp.uc.households_by_area_children_2@E14001326", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2531.0, + "kind": "calibration_drift", + "ledger_value": 2636.0, + "name": "dwp.uc.households_by_area_children_2@E14001327", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3166.0, + "kind": "calibration_drift", + "ledger_value": 3386.0, + "name": "dwp.uc.households_by_area_children_2@E14001328", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2113.0, + "kind": "calibration_drift", + "ledger_value": 2184.0, + "name": "dwp.uc.households_by_area_children_2@E14001329", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1179.0, + "kind": "calibration_drift", + "ledger_value": 1322.0, + "name": "dwp.uc.households_by_area_children_2@E14001330", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2994.0, + "kind": "calibration_drift", + "ledger_value": 2718.0, + "name": "dwp.uc.households_by_area_children_2@E14001331", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2654.0, + "kind": "calibration_drift", + "ledger_value": 2139.0, + "name": "dwp.uc.households_by_area_children_2@E14001332", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1820.0, + "kind": "calibration_drift", + "ledger_value": 1571.0, + "name": "dwp.uc.households_by_area_children_2@E14001333", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2134.0, + "kind": "calibration_drift", + "ledger_value": 2041.0, + "name": "dwp.uc.households_by_area_children_2@E14001334", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1036.0, + "kind": "calibration_drift", + "ledger_value": 1193.0, + "name": "dwp.uc.households_by_area_children_2@E14001335", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2092.0, + "kind": "calibration_drift", + "ledger_value": 2032.0, + "name": "dwp.uc.households_by_area_children_2@E14001336", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1796.0, + "kind": "calibration_drift", + "ledger_value": 1798.0, + "name": "dwp.uc.households_by_area_children_2@E14001337", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3444.0, + "kind": "calibration_drift", + "ledger_value": 2740.0, + "name": "dwp.uc.households_by_area_children_2@E14001338", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2880.0, + "kind": "calibration_drift", + "ledger_value": 3057.0, + "name": "dwp.uc.households_by_area_children_2@E14001339", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2278.0, + "kind": "calibration_drift", + "ledger_value": 1631.0, + "name": "dwp.uc.households_by_area_children_2@E14001340", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2482.0, + "kind": "calibration_drift", + "ledger_value": 2536.0, + "name": "dwp.uc.households_by_area_children_2@E14001341", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1259.0, + "kind": "calibration_drift", + "ledger_value": 1315.0, + "name": "dwp.uc.households_by_area_children_2@E14001342", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1374.0, + "kind": "calibration_drift", + "ledger_value": 1421.0, + "name": "dwp.uc.households_by_area_children_2@E14001343", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1798.0, + "kind": "calibration_drift", + "ledger_value": 1773.0, + "name": "dwp.uc.households_by_area_children_2@E14001344", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2091.0, + "kind": "calibration_drift", + "ledger_value": 2399.0, + "name": "dwp.uc.households_by_area_children_2@E14001345", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2841.0, + "kind": "calibration_drift", + "ledger_value": 3027.0, + "name": "dwp.uc.households_by_area_children_2@E14001346", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 967.0, + "kind": "calibration_drift", + "ledger_value": 942.0, + "name": "dwp.uc.households_by_area_children_2@E14001347", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 868.0, + "kind": "calibration_drift", + "ledger_value": 989.0, + "name": "dwp.uc.households_by_area_children_2@E14001348", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1496.0, + "kind": "calibration_drift", + "ledger_value": 1695.0, + "name": "dwp.uc.households_by_area_children_2@E14001349", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1556.0, + "kind": "calibration_drift", + "ledger_value": 1634.0, + "name": "dwp.uc.households_by_area_children_2@E14001350", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 986.0, + "kind": "calibration_drift", + "ledger_value": 1108.0, + "name": "dwp.uc.households_by_area_children_2@E14001351", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2991.0, + "kind": "calibration_drift", + "ledger_value": 2801.0, + "name": "dwp.uc.households_by_area_children_2@E14001352", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2801.0, + "kind": "calibration_drift", + "ledger_value": 2141.0, + "name": "dwp.uc.households_by_area_children_2@E14001353", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1284.0, + "kind": "calibration_drift", + "ledger_value": 963.0, + "name": "dwp.uc.households_by_area_children_2@E14001354", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2051.0, + "kind": "calibration_drift", + "ledger_value": 2120.0, + "name": "dwp.uc.households_by_area_children_2@E14001355", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1006.0, + "kind": "calibration_drift", + "ledger_value": 1093.0, + "name": "dwp.uc.households_by_area_children_2@E14001356", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1137.0, + "kind": "calibration_drift", + "ledger_value": 1420.0, + "name": "dwp.uc.households_by_area_children_2@E14001357", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1598.0, + "kind": "calibration_drift", + "ledger_value": 1701.0, + "name": "dwp.uc.households_by_area_children_2@E14001358", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 919.0, + "kind": "calibration_drift", + "ledger_value": 1265.0, + "name": "dwp.uc.households_by_area_children_2@E14001359", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 592.0, + "kind": "calibration_drift", + "ledger_value": 959.0, + "name": "dwp.uc.households_by_area_children_2@E14001360", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1467.0, + "kind": "calibration_drift", + "ledger_value": 1576.0, + "name": "dwp.uc.households_by_area_children_2@E14001361", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 799.0, + "kind": "calibration_drift", + "ledger_value": 943.0, + "name": "dwp.uc.households_by_area_children_2@E14001362", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 927.0, + "kind": "calibration_drift", + "ledger_value": 1096.0, + "name": "dwp.uc.households_by_area_children_2@E14001363", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 988.0, + "kind": "calibration_drift", + "ledger_value": 1276.0, + "name": "dwp.uc.households_by_area_children_2@E14001364", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1064.0, + "kind": "calibration_drift", + "ledger_value": 1259.0, + "name": "dwp.uc.households_by_area_children_2@E14001365", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 846.0, + "kind": "calibration_drift", + "ledger_value": 1075.0, + "name": "dwp.uc.households_by_area_children_2@E14001366", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3296.0, + "kind": "calibration_drift", + "ledger_value": 3299.0, + "name": "dwp.uc.households_by_area_children_2@E14001367", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1752.0, + "kind": "calibration_drift", + "ledger_value": 1749.0, + "name": "dwp.uc.households_by_area_children_2@E14001368", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2201.0, + "kind": "calibration_drift", + "ledger_value": 2467.0, + "name": "dwp.uc.households_by_area_children_2@E14001369", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1385.0, + "kind": "calibration_drift", + "ledger_value": 1631.0, + "name": "dwp.uc.households_by_area_children_2@E14001370", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2328.0, + "kind": "calibration_drift", + "ledger_value": 2356.0, + "name": "dwp.uc.households_by_area_children_2@E14001371", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1429.0, + "kind": "calibration_drift", + "ledger_value": 1464.0, + "name": "dwp.uc.households_by_area_children_2@E14001372", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 946.0, + "kind": "calibration_drift", + "ledger_value": 1072.0, + "name": "dwp.uc.households_by_area_children_2@E14001373", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 769.0, + "kind": "calibration_drift", + "ledger_value": 878.0, + "name": "dwp.uc.households_by_area_children_2@E14001374", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1305.0, + "kind": "calibration_drift", + "ledger_value": 1395.0, + "name": "dwp.uc.households_by_area_children_2@E14001375", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1052.0, + "kind": "calibration_drift", + "ledger_value": 1125.0, + "name": "dwp.uc.households_by_area_children_2@E14001376", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3196.0, + "kind": "calibration_drift", + "ledger_value": 3159.0, + "name": "dwp.uc.households_by_area_children_2@E14001377", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2707.0, + "kind": "calibration_drift", + "ledger_value": 2500.0, + "name": "dwp.uc.households_by_area_children_2@E14001378", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1148.0, + "kind": "calibration_drift", + "ledger_value": 1043.0, + "name": "dwp.uc.households_by_area_children_2@E14001379", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1370.0, + "kind": "calibration_drift", + "ledger_value": 1385.0, + "name": "dwp.uc.households_by_area_children_2@E14001380", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1155.0, + "kind": "calibration_drift", + "ledger_value": 1366.0, + "name": "dwp.uc.households_by_area_children_2@E14001381", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1948.0, + "kind": "calibration_drift", + "ledger_value": 1951.0, + "name": "dwp.uc.households_by_area_children_2@E14001382", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1910.0, + "kind": "calibration_drift", + "ledger_value": 2175.0, + "name": "dwp.uc.households_by_area_children_2@E14001383", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1083.0, + "kind": "calibration_drift", + "ledger_value": 1396.0, + "name": "dwp.uc.households_by_area_children_2@E14001384", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1420.0, + "kind": "calibration_drift", + "ledger_value": 1641.0, + "name": "dwp.uc.households_by_area_children_2@E14001385", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 881.0, + "kind": "calibration_drift", + "ledger_value": 1158.0, + "name": "dwp.uc.households_by_area_children_2@E14001386", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1351.0, + "kind": "calibration_drift", + "ledger_value": 1505.0, + "name": "dwp.uc.households_by_area_children_2@E14001387", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 926.0, + "kind": "calibration_drift", + "ledger_value": 1180.0, + "name": "dwp.uc.households_by_area_children_2@E14001388", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1759.0, + "kind": "calibration_drift", + "ledger_value": 1749.0, + "name": "dwp.uc.households_by_area_children_2@E14001389", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1665.0, + "kind": "calibration_drift", + "ledger_value": 1875.0, + "name": "dwp.uc.households_by_area_children_2@E14001390", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1208.0, + "kind": "calibration_drift", + "ledger_value": 1380.0, + "name": "dwp.uc.households_by_area_children_2@E14001391", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 676.0, + "kind": "calibration_drift", + "ledger_value": 884.0, + "name": "dwp.uc.households_by_area_children_2@E14001392", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1115.0, + "kind": "calibration_drift", + "ledger_value": 1312.0, + "name": "dwp.uc.households_by_area_children_2@E14001393", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 896.0, + "kind": "calibration_drift", + "ledger_value": 1079.0, + "name": "dwp.uc.households_by_area_children_2@E14001394", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 923.0, + "kind": "calibration_drift", + "ledger_value": 1037.0, + "name": "dwp.uc.households_by_area_children_2@E14001395", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1020.0, + "kind": "calibration_drift", + "ledger_value": 1064.0, + "name": "dwp.uc.households_by_area_children_2@E14001396", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1090.0, + "kind": "calibration_drift", + "ledger_value": 1160.0, + "name": "dwp.uc.households_by_area_children_2@E14001397", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1218.0, + "kind": "calibration_drift", + "ledger_value": 1274.0, + "name": "dwp.uc.households_by_area_children_2@E14001398", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 729.0, + "kind": "calibration_drift", + "ledger_value": 854.0, + "name": "dwp.uc.households_by_area_children_2@E14001399", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1445.0, + "kind": "calibration_drift", + "ledger_value": 1668.0, + "name": "dwp.uc.households_by_area_children_2@E14001400", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1829.0, + "kind": "calibration_drift", + "ledger_value": 2322.0, + "name": "dwp.uc.households_by_area_children_2@E14001401", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 967.0, + "kind": "calibration_drift", + "ledger_value": 1225.0, + "name": "dwp.uc.households_by_area_children_2@E14001402", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1258.0, + "kind": "calibration_drift", + "ledger_value": 1568.0, + "name": "dwp.uc.households_by_area_children_2@E14001403", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1247.0, + "kind": "calibration_drift", + "ledger_value": 1461.0, + "name": "dwp.uc.households_by_area_children_2@E14001404", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1510.0, + "kind": "calibration_drift", + "ledger_value": 1620.0, + "name": "dwp.uc.households_by_area_children_2@E14001405", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2617.0, + "kind": "calibration_drift", + "ledger_value": 2761.0, + "name": "dwp.uc.households_by_area_children_2@E14001406", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1500.0, + "kind": "calibration_drift", + "ledger_value": 1766.0, + "name": "dwp.uc.households_by_area_children_2@E14001407", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1553.0, + "kind": "calibration_drift", + "ledger_value": 1663.0, + "name": "dwp.uc.households_by_area_children_2@E14001408", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1890.0, + "kind": "calibration_drift", + "ledger_value": 1608.0, + "name": "dwp.uc.households_by_area_children_2@E14001409", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3020.0, + "kind": "calibration_drift", + "ledger_value": 2574.0, + "name": "dwp.uc.households_by_area_children_2@E14001410", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2925.0, + "kind": "calibration_drift", + "ledger_value": 3199.0, + "name": "dwp.uc.households_by_area_children_2@E14001411", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2029.0, + "kind": "calibration_drift", + "ledger_value": 2059.0, + "name": "dwp.uc.households_by_area_children_2@E14001412", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1795.0, + "kind": "calibration_drift", + "ledger_value": 1915.0, + "name": "dwp.uc.households_by_area_children_2@E14001413", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 976.0, + "kind": "calibration_drift", + "ledger_value": 1162.0, + "name": "dwp.uc.households_by_area_children_2@E14001414", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2515.0, + "kind": "calibration_drift", + "ledger_value": 2776.0, + "name": "dwp.uc.households_by_area_children_2@E14001415", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2872.0, + "kind": "calibration_drift", + "ledger_value": 3281.0, + "name": "dwp.uc.households_by_area_children_2@E14001416", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1241.0, + "kind": "calibration_drift", + "ledger_value": 1293.0, + "name": "dwp.uc.households_by_area_children_2@E14001417", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1052.0, + "kind": "calibration_drift", + "ledger_value": 1176.0, + "name": "dwp.uc.households_by_area_children_2@E14001418", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1662.0, + "kind": "calibration_drift", + "ledger_value": 1602.0, + "name": "dwp.uc.households_by_area_children_2@E14001419", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 788.0, + "kind": "calibration_drift", + "ledger_value": 802.0, + "name": "dwp.uc.households_by_area_children_2@E14001420", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2799.0, + "kind": "calibration_drift", + "ledger_value": 2403.0, + "name": "dwp.uc.households_by_area_children_2@E14001421", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2006.0, + "kind": "calibration_drift", + "ledger_value": 2194.0, + "name": "dwp.uc.households_by_area_children_2@E14001422", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 985.0, + "kind": "calibration_drift", + "ledger_value": 1019.0, + "name": "dwp.uc.households_by_area_children_2@E14001423", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1050.0, + "kind": "calibration_drift", + "ledger_value": 1126.0, + "name": "dwp.uc.households_by_area_children_2@E14001424", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3179.0, + "kind": "calibration_drift", + "ledger_value": 3528.0, + "name": "dwp.uc.households_by_area_children_2@E14001425", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1878.0, + "kind": "calibration_drift", + "ledger_value": 2201.0, + "name": "dwp.uc.households_by_area_children_2@E14001426", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2384.0, + "kind": "calibration_drift", + "ledger_value": 1808.0, + "name": "dwp.uc.households_by_area_children_2@E14001427", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1996.0, + "kind": "calibration_drift", + "ledger_value": 2248.0, + "name": "dwp.uc.households_by_area_children_2@E14001428", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1318.0, + "kind": "calibration_drift", + "ledger_value": 1390.0, + "name": "dwp.uc.households_by_area_children_2@E14001429", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3238.0, + "kind": "calibration_drift", + "ledger_value": 3457.0, + "name": "dwp.uc.households_by_area_children_2@E14001430", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1685.0, + "kind": "calibration_drift", + "ledger_value": 1918.0, + "name": "dwp.uc.households_by_area_children_2@E14001431", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2236.0, + "kind": "calibration_drift", + "ledger_value": 2137.0, + "name": "dwp.uc.households_by_area_children_2@E14001432", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2770.0, + "kind": "calibration_drift", + "ledger_value": 2736.0, + "name": "dwp.uc.households_by_area_children_2@E14001433", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1653.0, + "kind": "calibration_drift", + "ledger_value": 1581.0, + "name": "dwp.uc.households_by_area_children_2@E14001434", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3252.0, + "kind": "calibration_drift", + "ledger_value": 2660.0, + "name": "dwp.uc.households_by_area_children_2@E14001435", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1887.0, + "kind": "calibration_drift", + "ledger_value": 2026.0, + "name": "dwp.uc.households_by_area_children_2@E14001436", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 831.0, + "kind": "calibration_drift", + "ledger_value": 1041.0, + "name": "dwp.uc.households_by_area_children_2@E14001437", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1730.0, + "kind": "calibration_drift", + "ledger_value": 1566.0, + "name": "dwp.uc.households_by_area_children_2@E14001438", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1015.0, + "kind": "calibration_drift", + "ledger_value": 1214.0, + "name": "dwp.uc.households_by_area_children_2@E14001439", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2040.0, + "kind": "calibration_drift", + "ledger_value": 1954.0, + "name": "dwp.uc.households_by_area_children_2@E14001440", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1535.0, + "kind": "calibration_drift", + "ledger_value": 1734.0, + "name": "dwp.uc.households_by_area_children_2@E14001441", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 901.0, + "kind": "calibration_drift", + "ledger_value": 1074.0, + "name": "dwp.uc.households_by_area_children_2@E14001442", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 953.0, + "kind": "calibration_drift", + "ledger_value": 1161.0, + "name": "dwp.uc.households_by_area_children_2@E14001443", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 895.0, + "kind": "calibration_drift", + "ledger_value": 1013.0, + "name": "dwp.uc.households_by_area_children_2@E14001444", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 963.0, + "kind": "calibration_drift", + "ledger_value": 941.0, + "name": "dwp.uc.households_by_area_children_2@E14001445", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2605.0, + "kind": "calibration_drift", + "ledger_value": 2750.0, + "name": "dwp.uc.households_by_area_children_2@E14001446", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1690.0, + "kind": "calibration_drift", + "ledger_value": 1910.0, + "name": "dwp.uc.households_by_area_children_2@E14001447", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1687.0, + "kind": "calibration_drift", + "ledger_value": 1913.0, + "name": "dwp.uc.households_by_area_children_2@E14001448", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 907.0, + "kind": "calibration_drift", + "ledger_value": 1017.0, + "name": "dwp.uc.households_by_area_children_2@E14001449", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1712.0, + "kind": "calibration_drift", + "ledger_value": 1742.0, + "name": "dwp.uc.households_by_area_children_2@E14001450", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1367.0, + "kind": "calibration_drift", + "ledger_value": 1570.0, + "name": "dwp.uc.households_by_area_children_2@E14001451", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2749.0, + "kind": "calibration_drift", + "ledger_value": 2819.0, + "name": "dwp.uc.households_by_area_children_2@E14001452", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1448.0, + "kind": "calibration_drift", + "ledger_value": 1647.0, + "name": "dwp.uc.households_by_area_children_2@E14001453", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 929.0, + "kind": "calibration_drift", + "ledger_value": 963.0, + "name": "dwp.uc.households_by_area_children_2@E14001454", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1766.0, + "kind": "calibration_drift", + "ledger_value": 1796.0, + "name": "dwp.uc.households_by_area_children_2@E14001455", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1016.0, + "kind": "calibration_drift", + "ledger_value": 1157.0, + "name": "dwp.uc.households_by_area_children_2@E14001456", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 817.0, + "kind": "calibration_drift", + "ledger_value": 904.0, + "name": "dwp.uc.households_by_area_children_2@E14001457", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 822.0, + "kind": "calibration_drift", + "ledger_value": 987.0, + "name": "dwp.uc.households_by_area_children_2@E14001458", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3020.0, + "kind": "calibration_drift", + "ledger_value": 2569.0, + "name": "dwp.uc.households_by_area_children_2@E14001459", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1024.0, + "kind": "calibration_drift", + "ledger_value": 1121.0, + "name": "dwp.uc.households_by_area_children_2@E14001460", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1632.0, + "kind": "calibration_drift", + "ledger_value": 1579.0, + "name": "dwp.uc.households_by_area_children_2@E14001461", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2043.0, + "kind": "calibration_drift", + "ledger_value": 2312.0, + "name": "dwp.uc.households_by_area_children_2@E14001462", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 870.0, + "kind": "calibration_drift", + "ledger_value": 910.0, + "name": "dwp.uc.households_by_area_children_2@E14001463", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1137.0, + "kind": "calibration_drift", + "ledger_value": 1393.0, + "name": "dwp.uc.households_by_area_children_2@E14001464", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 907.0, + "kind": "calibration_drift", + "ledger_value": 1054.0, + "name": "dwp.uc.households_by_area_children_2@E14001465", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3283.0, + "kind": "calibration_drift", + "ledger_value": 3511.0, + "name": "dwp.uc.households_by_area_children_2@E14001466", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1262.0, + "kind": "calibration_drift", + "ledger_value": 714.0, + "name": "dwp.uc.households_by_area_children_2@E14001467", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 547.0, + "kind": "calibration_drift", + "ledger_value": 497.0, + "name": "dwp.uc.households_by_area_children_2@E14001468", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2575.0, + "kind": "calibration_drift", + "ledger_value": 2579.0, + "name": "dwp.uc.households_by_area_children_2@E14001469", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2197.0, + "kind": "calibration_drift", + "ledger_value": 2343.0, + "name": "dwp.uc.households_by_area_children_2@E14001470", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1537.0, + "kind": "calibration_drift", + "ledger_value": 1717.0, + "name": "dwp.uc.households_by_area_children_2@E14001471", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1259.0, + "kind": "calibration_drift", + "ledger_value": 1370.0, + "name": "dwp.uc.households_by_area_children_2@E14001472", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1227.0, + "kind": "calibration_drift", + "ledger_value": 1289.0, + "name": "dwp.uc.households_by_area_children_2@E14001473", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2084.0, + "kind": "calibration_drift", + "ledger_value": 2231.0, + "name": "dwp.uc.households_by_area_children_2@E14001474", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 834.0, + "kind": "calibration_drift", + "ledger_value": 964.0, + "name": "dwp.uc.households_by_area_children_2@E14001475", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1037.0, + "kind": "calibration_drift", + "ledger_value": 1241.0, + "name": "dwp.uc.households_by_area_children_2@E14001476", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2596.0, + "kind": "calibration_drift", + "ledger_value": 2985.0, + "name": "dwp.uc.households_by_area_children_2@E14001477", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2673.0, + "kind": "calibration_drift", + "ledger_value": 2991.0, + "name": "dwp.uc.households_by_area_children_2@E14001478", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 874.0, + "kind": "calibration_drift", + "ledger_value": 986.0, + "name": "dwp.uc.households_by_area_children_2@E14001479", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1668.0, + "kind": "calibration_drift", + "ledger_value": 2008.0, + "name": "dwp.uc.households_by_area_children_2@E14001480", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 834.0, + "kind": "calibration_drift", + "ledger_value": 979.0, + "name": "dwp.uc.households_by_area_children_2@E14001481", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 777.0, + "kind": "calibration_drift", + "ledger_value": 921.0, + "name": "dwp.uc.households_by_area_children_2@E14001482", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1237.0, + "kind": "calibration_drift", + "ledger_value": 1528.0, + "name": "dwp.uc.households_by_area_children_2@E14001483", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1126.0, + "kind": "calibration_drift", + "ledger_value": 1234.0, + "name": "dwp.uc.households_by_area_children_2@E14001484", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1440.0, + "kind": "calibration_drift", + "ledger_value": 1511.0, + "name": "dwp.uc.households_by_area_children_2@E14001485", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1223.0, + "kind": "calibration_drift", + "ledger_value": 1374.0, + "name": "dwp.uc.households_by_area_children_2@E14001486", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1530.0, + "kind": "calibration_drift", + "ledger_value": 1818.0, + "name": "dwp.uc.households_by_area_children_2@E14001487", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 976.0, + "kind": "calibration_drift", + "ledger_value": 1284.0, + "name": "dwp.uc.households_by_area_children_2@E14001488", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 955.0, + "kind": "calibration_drift", + "ledger_value": 1231.0, + "name": "dwp.uc.households_by_area_children_2@E14001489", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 794.0, + "kind": "calibration_drift", + "ledger_value": 1061.0, + "name": "dwp.uc.households_by_area_children_2@E14001490", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1059.0, + "kind": "calibration_drift", + "ledger_value": 1181.0, + "name": "dwp.uc.households_by_area_children_2@E14001491", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2044.0, + "kind": "calibration_drift", + "ledger_value": 1887.0, + "name": "dwp.uc.households_by_area_children_2@E14001492", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 905.0, + "kind": "calibration_drift", + "ledger_value": 1012.0, + "name": "dwp.uc.households_by_area_children_2@E14001493", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 991.0, + "kind": "calibration_drift", + "ledger_value": 1209.0, + "name": "dwp.uc.households_by_area_children_2@E14001494", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 1123.0, + "name": "dwp.uc.households_by_area_children_2@E14001495", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 941.0, + "kind": "calibration_drift", + "ledger_value": 1068.0, + "name": "dwp.uc.households_by_area_children_2@E14001496", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1365.0, + "kind": "calibration_drift", + "ledger_value": 1605.0, + "name": "dwp.uc.households_by_area_children_2@E14001497", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1299.0, + "kind": "calibration_drift", + "ledger_value": 1428.0, + "name": "dwp.uc.households_by_area_children_2@E14001498", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2075.0, + "kind": "calibration_drift", + "ledger_value": 2129.0, + "name": "dwp.uc.households_by_area_children_2@E14001499", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2228.0, + "kind": "calibration_drift", + "ledger_value": 2160.0, + "name": "dwp.uc.households_by_area_children_2@E14001500", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2214.0, + "kind": "calibration_drift", + "ledger_value": 2199.0, + "name": "dwp.uc.households_by_area_children_2@E14001501", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1402.0, + "kind": "calibration_drift", + "ledger_value": 1434.0, + "name": "dwp.uc.households_by_area_children_2@E14001502", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2890.0, + "kind": "calibration_drift", + "ledger_value": 2782.0, + "name": "dwp.uc.households_by_area_children_2@E14001503", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1461.0, + "kind": "calibration_drift", + "ledger_value": 1431.0, + "name": "dwp.uc.households_by_area_children_2@E14001504", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1293.0, + "kind": "calibration_drift", + "ledger_value": 1482.0, + "name": "dwp.uc.households_by_area_children_2@E14001505", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1514.0, + "kind": "calibration_drift", + "ledger_value": 1698.0, + "name": "dwp.uc.households_by_area_children_2@E14001506", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1011.0, + "kind": "calibration_drift", + "ledger_value": 1053.0, + "name": "dwp.uc.households_by_area_children_2@E14001507", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1663.0, + "kind": "calibration_drift", + "ledger_value": 1778.0, + "name": "dwp.uc.households_by_area_children_2@E14001508", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1865.0, + "kind": "calibration_drift", + "ledger_value": 1983.0, + "name": "dwp.uc.households_by_area_children_2@E14001509", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1978.0, + "kind": "calibration_drift", + "ledger_value": 1843.0, + "name": "dwp.uc.households_by_area_children_2@E14001510", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1266.0, + "kind": "calibration_drift", + "ledger_value": 1284.0, + "name": "dwp.uc.households_by_area_children_2@E14001511", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1078.0, + "kind": "calibration_drift", + "ledger_value": 1324.0, + "name": "dwp.uc.households_by_area_children_2@E14001512", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1190.0, + "kind": "calibration_drift", + "ledger_value": 1374.0, + "name": "dwp.uc.households_by_area_children_2@E14001513", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 840.0, + "kind": "calibration_drift", + "ledger_value": 917.0, + "name": "dwp.uc.households_by_area_children_2@E14001514", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1961.0, + "kind": "calibration_drift", + "ledger_value": 2131.0, + "name": "dwp.uc.households_by_area_children_2@E14001515", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1553.0, + "kind": "calibration_drift", + "ledger_value": 1748.0, + "name": "dwp.uc.households_by_area_children_2@E14001516", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2168.0, + "kind": "calibration_drift", + "ledger_value": 2153.0, + "name": "dwp.uc.households_by_area_children_2@E14001517", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2369.0, + "kind": "calibration_drift", + "ledger_value": 2343.0, + "name": "dwp.uc.households_by_area_children_2@E14001518", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 857.0, + "kind": "calibration_drift", + "ledger_value": 1040.0, + "name": "dwp.uc.households_by_area_children_2@E14001519", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2749.0, + "kind": "calibration_drift", + "ledger_value": 2680.0, + "name": "dwp.uc.households_by_area_children_2@E14001520", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2088.0, + "kind": "calibration_drift", + "ledger_value": 2345.0, + "name": "dwp.uc.households_by_area_children_2@E14001521", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1437.0, + "kind": "calibration_drift", + "ledger_value": 1608.0, + "name": "dwp.uc.households_by_area_children_2@E14001522", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 954.0, + "kind": "calibration_drift", + "ledger_value": 1154.0, + "name": "dwp.uc.households_by_area_children_2@E14001523", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1659.0, + "kind": "calibration_drift", + "ledger_value": 1667.0, + "name": "dwp.uc.households_by_area_children_2@E14001524", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2927.0, + "kind": "calibration_drift", + "ledger_value": 2903.0, + "name": "dwp.uc.households_by_area_children_2@E14001525", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 979.0, + "kind": "calibration_drift", + "ledger_value": 1119.0, + "name": "dwp.uc.households_by_area_children_2@E14001526", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2582.0, + "kind": "calibration_drift", + "ledger_value": 2174.0, + "name": "dwp.uc.households_by_area_children_2@E14001527", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1802.0, + "kind": "calibration_drift", + "ledger_value": 1629.0, + "name": "dwp.uc.households_by_area_children_2@E14001528", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 997.0, + "kind": "calibration_drift", + "ledger_value": 1114.0, + "name": "dwp.uc.households_by_area_children_2@E14001529", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1011.0, + "kind": "calibration_drift", + "ledger_value": 1142.0, + "name": "dwp.uc.households_by_area_children_2@E14001530", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2111.0, + "kind": "calibration_drift", + "ledger_value": 1716.0, + "name": "dwp.uc.households_by_area_children_2@E14001531", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 793.0, + "kind": "calibration_drift", + "ledger_value": 1002.0, + "name": "dwp.uc.households_by_area_children_2@E14001532", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 1066.0, + "name": "dwp.uc.households_by_area_children_2@E14001533", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1158.0, + "kind": "calibration_drift", + "ledger_value": 1419.0, + "name": "dwp.uc.households_by_area_children_2@E14001534", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 873.0, + "kind": "calibration_drift", + "ledger_value": 883.0, + "name": "dwp.uc.households_by_area_children_2@E14001535", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1500.0, + "kind": "calibration_drift", + "ledger_value": 1793.0, + "name": "dwp.uc.households_by_area_children_2@E14001536", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1802.0, + "kind": "calibration_drift", + "ledger_value": 1960.0, + "name": "dwp.uc.households_by_area_children_2@E14001537", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1457.0, + "kind": "calibration_drift", + "ledger_value": 1724.0, + "name": "dwp.uc.households_by_area_children_2@E14001538", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 807.0, + "kind": "calibration_drift", + "ledger_value": 857.0, + "name": "dwp.uc.households_by_area_children_2@E14001539", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1390.0, + "kind": "calibration_drift", + "ledger_value": 1494.0, + "name": "dwp.uc.households_by_area_children_2@E14001540", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2253.0, + "kind": "calibration_drift", + "ledger_value": 2419.0, + "name": "dwp.uc.households_by_area_children_2@E14001541", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1051.0, + "kind": "calibration_drift", + "ledger_value": 1358.0, + "name": "dwp.uc.households_by_area_children_2@E14001542", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1417.0, + "kind": "calibration_drift", + "ledger_value": 1638.0, + "name": "dwp.uc.households_by_area_children_2@E14001543", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1014.0, + "kind": "calibration_drift", + "ledger_value": 1247.0, + "name": "dwp.uc.households_by_area_children_2@E14001544", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1076.0, + "kind": "calibration_drift", + "ledger_value": 1295.0, + "name": "dwp.uc.households_by_area_children_2@E14001545", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2217.0, + "kind": "calibration_drift", + "ledger_value": 2717.0, + "name": "dwp.uc.households_by_area_children_2@E14001546", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2884.0, + "kind": "calibration_drift", + "ledger_value": 3337.0, + "name": "dwp.uc.households_by_area_children_2@E14001547", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1132.0, + "kind": "calibration_drift", + "ledger_value": 1266.0, + "name": "dwp.uc.households_by_area_children_2@E14001548", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 944.0, + "kind": "calibration_drift", + "ledger_value": 1129.0, + "name": "dwp.uc.households_by_area_children_2@E14001549", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1513.0, + "kind": "calibration_drift", + "ledger_value": 1206.0, + "name": "dwp.uc.households_by_area_children_2@E14001550", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1928.0, + "kind": "calibration_drift", + "ledger_value": 1807.0, + "name": "dwp.uc.households_by_area_children_2@E14001551", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1189.0, + "kind": "calibration_drift", + "ledger_value": 1321.0, + "name": "dwp.uc.households_by_area_children_2@E14001552", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 4377.0, + "kind": "calibration_drift", + "ledger_value": 3600.0, + "name": "dwp.uc.households_by_area_children_2@E14001553", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1166.0, + "kind": "calibration_drift", + "ledger_value": 1212.0, + "name": "dwp.uc.households_by_area_children_2@E14001554", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1106.0, + "kind": "calibration_drift", + "ledger_value": 1197.0, + "name": "dwp.uc.households_by_area_children_2@E14001555", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 982.0, + "kind": "calibration_drift", + "ledger_value": 931.0, + "name": "dwp.uc.households_by_area_children_2@E14001556", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1378.0, + "kind": "calibration_drift", + "ledger_value": 1286.0, + "name": "dwp.uc.households_by_area_children_2@E14001557", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1783.0, + "kind": "calibration_drift", + "ledger_value": 1842.0, + "name": "dwp.uc.households_by_area_children_2@E14001558", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2426.0, + "kind": "calibration_drift", + "ledger_value": 1908.0, + "name": "dwp.uc.households_by_area_children_2@E14001559", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1931.0, + "kind": "calibration_drift", + "ledger_value": 1970.0, + "name": "dwp.uc.households_by_area_children_2@E14001560", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2044.0, + "kind": "calibration_drift", + "ledger_value": 2003.0, + "name": "dwp.uc.households_by_area_children_2@E14001561", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3363.0, + "kind": "calibration_drift", + "ledger_value": 3621.0, + "name": "dwp.uc.households_by_area_children_2@E14001562", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2704.0, + "kind": "calibration_drift", + "ledger_value": 2637.0, + "name": "dwp.uc.households_by_area_children_2@E14001563", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1617.0, + "kind": "calibration_drift", + "ledger_value": 1728.0, + "name": "dwp.uc.households_by_area_children_2@E14001564", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1281.0, + "kind": "calibration_drift", + "ledger_value": 1289.0, + "name": "dwp.uc.households_by_area_children_2@E14001565", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1262.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_2@E14001566", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2084.0, + "kind": "calibration_drift", + "ledger_value": 2078.0, + "name": "dwp.uc.households_by_area_children_2@E14001567", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1708.0, + "kind": "calibration_drift", + "ledger_value": 1838.0, + "name": "dwp.uc.households_by_area_children_2@E14001568", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 918.0, + "kind": "calibration_drift", + "ledger_value": 1072.0, + "name": "dwp.uc.households_by_area_children_2@E14001569", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1041.0, + "kind": "calibration_drift", + "ledger_value": 1152.0, + "name": "dwp.uc.households_by_area_children_2@E14001570", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1893.0, + "kind": "calibration_drift", + "ledger_value": 2095.0, + "name": "dwp.uc.households_by_area_children_2@E14001571", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 913.0, + "kind": "calibration_drift", + "ledger_value": 1025.0, + "name": "dwp.uc.households_by_area_children_2@E14001572", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1623.0, + "kind": "calibration_drift", + "ledger_value": 1849.0, + "name": "dwp.uc.households_by_area_children_2@E14001573", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2359.0, + "kind": "calibration_drift", + "ledger_value": 2600.0, + "name": "dwp.uc.households_by_area_children_2@E14001574", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 993.0, + "kind": "calibration_drift", + "ledger_value": 1157.0, + "name": "dwp.uc.households_by_area_children_2@E14001575", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3618.0, + "kind": "calibration_drift", + "ledger_value": 3855.0, + "name": "dwp.uc.households_by_area_children_2@E14001576", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1497.0, + "kind": "calibration_drift", + "ledger_value": 1646.0, + "name": "dwp.uc.households_by_area_children_2@E14001577", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1377.0, + "kind": "calibration_drift", + "ledger_value": 1582.0, + "name": "dwp.uc.households_by_area_children_2@E14001578", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1086.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_2@E14001579", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 719.0, + "kind": "calibration_drift", + "ledger_value": 812.0, + "name": "dwp.uc.households_by_area_children_2@E14001580", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1727.0, + "kind": "calibration_drift", + "ledger_value": 1760.0, + "name": "dwp.uc.households_by_area_children_2@E14001581", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 623.0, + "kind": "calibration_drift", + "ledger_value": 779.0, + "name": "dwp.uc.households_by_area_children_2@E14001582", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1520.0, + "kind": "calibration_drift", + "ledger_value": 1460.0, + "name": "dwp.uc.households_by_area_children_2@E14001583", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1782.0, + "kind": "calibration_drift", + "ledger_value": 1812.0, + "name": "dwp.uc.households_by_area_children_2@E14001584", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2052.0, + "kind": "calibration_drift", + "ledger_value": 2030.0, + "name": "dwp.uc.households_by_area_children_2@E14001585", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 898.0, + "kind": "calibration_drift", + "ledger_value": 913.0, + "name": "dwp.uc.households_by_area_children_2@E14001587", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1105.0, + "kind": "calibration_drift", + "ledger_value": 1205.0, + "name": "dwp.uc.households_by_area_children_2@E14001588", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 762.0, + "kind": "calibration_drift", + "ledger_value": 798.0, + "name": "dwp.uc.households_by_area_children_2@E14001589", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1189.0, + "kind": "calibration_drift", + "ledger_value": 1420.0, + "name": "dwp.uc.households_by_area_children_2@E14001590", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 964.0, + "kind": "calibration_drift", + "ledger_value": 1184.0, + "name": "dwp.uc.households_by_area_children_2@E14001591", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1011.0, + "kind": "calibration_drift", + "ledger_value": 1159.0, + "name": "dwp.uc.households_by_area_children_2@E14001592", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 697.0, + "kind": "calibration_drift", + "ledger_value": 855.0, + "name": "dwp.uc.households_by_area_children_2@E14001593", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2513.0, + "kind": "calibration_drift", + "ledger_value": 2925.0, + "name": "dwp.uc.households_by_area_children_2@E14001594", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3343.0, + "kind": "calibration_drift", + "ledger_value": 3813.0, + "name": "dwp.uc.households_by_area_children_2@E14001595", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2290.0, + "kind": "calibration_drift", + "ledger_value": 2161.0, + "name": "dwp.uc.households_by_area_children_2@E14001596", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1568.0, + "kind": "calibration_drift", + "ledger_value": 1622.0, + "name": "dwp.uc.households_by_area_children_2@E14001597", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1958.0, + "kind": "calibration_drift", + "ledger_value": 1987.0, + "name": "dwp.uc.households_by_area_children_2@E14001598", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1284.0, + "kind": "calibration_drift", + "ledger_value": 1345.0, + "name": "dwp.uc.households_by_area_children_2@E14001599", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1555.0, + "kind": "calibration_drift", + "ledger_value": 1637.0, + "name": "dwp.uc.households_by_area_children_2@E14001600", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1515.0, + "kind": "calibration_drift", + "ledger_value": 1638.0, + "name": "dwp.uc.households_by_area_children_2@E14001601", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2596.0, + "kind": "calibration_drift", + "ledger_value": 2836.0, + "name": "dwp.uc.households_by_area_children_2@E14001602", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1421.0, + "kind": "calibration_drift", + "ledger_value": 1628.0, + "name": "dwp.uc.households_by_area_children_2@E14001603", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1401.0, + "kind": "calibration_drift", + "ledger_value": 1312.0, + "name": "dwp.uc.households_by_area_children_2@E14001604", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 631.0, + "kind": "calibration_drift", + "ledger_value": 759.0, + "name": "dwp.uc.households_by_area_children_2@E14001605", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 780.0, + "kind": "calibration_drift", + "ledger_value": 917.0, + "name": "dwp.uc.households_by_area_children_2@S14000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 240.0, + "kind": "calibration_drift", + "ledger_value": 236.0, + "name": "dwp.uc.households_by_area_children_2@S14000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1305.0, + "kind": "calibration_drift", + "ledger_value": 1604.0, + "name": "dwp.uc.households_by_area_children_2@S14000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1678.0, + "kind": "calibration_drift", + "ledger_value": 1629.0, + "name": "dwp.uc.households_by_area_children_2@S14000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 380.0, + "kind": "calibration_drift", + "ledger_value": 403.0, + "name": "dwp.uc.households_by_area_children_2@S14000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1728.0, + "kind": "calibration_drift", + "ledger_value": 1746.0, + "name": "dwp.uc.households_by_area_children_2@S14000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1153.0, + "kind": "calibration_drift", + "ledger_value": 968.0, + "name": "dwp.uc.households_by_area_children_2@S14000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1284.0, + "kind": "calibration_drift", + "ledger_value": 1346.0, + "name": "dwp.uc.households_by_area_children_2@S14000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1691.0, + "kind": "calibration_drift", + "ledger_value": 1823.0, + "name": "dwp.uc.households_by_area_children_2@S14000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1512.0, + "kind": "calibration_drift", + "ledger_value": 1655.0, + "name": "dwp.uc.households_by_area_children_2@S14000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1224.0, + "kind": "calibration_drift", + "ledger_value": 1380.0, + "name": "dwp.uc.households_by_area_children_2@S14000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1449.0, + "kind": "calibration_drift", + "ledger_value": 1748.0, + "name": "dwp.uc.households_by_area_children_2@S14000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1058.0, + "kind": "calibration_drift", + "ledger_value": 1087.0, + "name": "dwp.uc.households_by_area_children_2@S14000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1459.0, + "kind": "calibration_drift", + "ledger_value": 1686.0, + "name": "dwp.uc.households_by_area_children_2@S14000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1155.0, + "kind": "calibration_drift", + "ledger_value": 1206.0, + "name": "dwp.uc.households_by_area_children_2@S14000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1753.0, + "kind": "calibration_drift", + "ledger_value": 1786.0, + "name": "dwp.uc.households_by_area_children_2@S14000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1575.0, + "kind": "calibration_drift", + "ledger_value": 1622.0, + "name": "dwp.uc.households_by_area_children_2@S14000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1378.0, + "kind": "calibration_drift", + "ledger_value": 1595.0, + "name": "dwp.uc.households_by_area_children_2@S14000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1397.0, + "kind": "calibration_drift", + "ledger_value": 1428.0, + "name": "dwp.uc.households_by_area_children_2@S14000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1029.0, + "kind": "calibration_drift", + "ledger_value": 1097.0, + "name": "dwp.uc.households_by_area_children_2@S14000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2045.0, + "kind": "calibration_drift", + "ledger_value": 1725.0, + "name": "dwp.uc.households_by_area_children_2@S14000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1202.0, + "kind": "calibration_drift", + "ledger_value": 1451.0, + "name": "dwp.uc.households_by_area_children_2@S14000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1169.0, + "kind": "calibration_drift", + "ledger_value": 1391.0, + "name": "dwp.uc.households_by_area_children_2@S14000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1579.0, + "kind": "calibration_drift", + "ledger_value": 1340.0, + "name": "dwp.uc.households_by_area_children_2@S14000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1554.0, + "kind": "calibration_drift", + "ledger_value": 1354.0, + "name": "dwp.uc.households_by_area_children_2@S14000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 797.0, + "kind": "calibration_drift", + "ledger_value": 851.0, + "name": "dwp.uc.households_by_area_children_2@S14000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1276.0, + "kind": "calibration_drift", + "ledger_value": 1083.0, + "name": "dwp.uc.households_by_area_children_2@S14000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 801.0, + "kind": "calibration_drift", + "ledger_value": 969.0, + "name": "dwp.uc.households_by_area_children_2@S14000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1468.0, + "kind": "calibration_drift", + "ledger_value": 1557.0, + "name": "dwp.uc.households_by_area_children_2@S14000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2422.0, + "kind": "calibration_drift", + "ledger_value": 2408.0, + "name": "dwp.uc.households_by_area_children_2@S14000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2125.0, + "kind": "calibration_drift", + "ledger_value": 1714.0, + "name": "dwp.uc.households_by_area_children_2@S14000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2837.0, + "kind": "calibration_drift", + "ledger_value": 2809.0, + "name": "dwp.uc.households_by_area_children_2@S14000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1679.0, + "kind": "calibration_drift", + "ledger_value": 1663.0, + "name": "dwp.uc.households_by_area_children_2@S14000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2158.0, + "kind": "calibration_drift", + "ledger_value": 2156.0, + "name": "dwp.uc.households_by_area_children_2@S14000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1857.0, + "kind": "calibration_drift", + "ledger_value": 1639.0, + "name": "dwp.uc.households_by_area_children_2@S14000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2001.0, + "kind": "calibration_drift", + "ledger_value": 2178.0, + "name": "dwp.uc.households_by_area_children_2@S14000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 692.0, + "kind": "calibration_drift", + "ledger_value": 918.0, + "name": "dwp.uc.households_by_area_children_2@S14000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1608.0, + "kind": "calibration_drift", + "ledger_value": 1645.0, + "name": "dwp.uc.households_by_area_children_2@S14000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1560.0, + "kind": "calibration_drift", + "ledger_value": 1494.0, + "name": "dwp.uc.households_by_area_children_2@S14000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1273.0, + "kind": "calibration_drift", + "ledger_value": 1333.0, + "name": "dwp.uc.households_by_area_children_2@S14000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1534.0, + "kind": "calibration_drift", + "ledger_value": 1835.0, + "name": "dwp.uc.households_by_area_children_2@S14000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1148.0, + "kind": "calibration_drift", + "ledger_value": 1384.0, + "name": "dwp.uc.households_by_area_children_2@S14000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 645.0, + "kind": "calibration_drift", + "ledger_value": 805.0, + "name": "dwp.uc.households_by_area_children_2@S14000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1091.0, + "kind": "calibration_drift", + "ledger_value": 1305.0, + "name": "dwp.uc.households_by_area_children_2@S14000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1712.0, + "kind": "calibration_drift", + "ledger_value": 1818.0, + "name": "dwp.uc.households_by_area_children_2@S14000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 936.0, + "kind": "calibration_drift", + "ledger_value": 1002.0, + "name": "dwp.uc.households_by_area_children_2@S14000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1448.0, + "kind": "calibration_drift", + "ledger_value": 1552.0, + "name": "dwp.uc.households_by_area_children_2@S14000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1562.0, + "kind": "calibration_drift", + "ledger_value": 1571.0, + "name": "dwp.uc.households_by_area_children_2@S14000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1180.0, + "kind": "calibration_drift", + "ledger_value": 1275.0, + "name": "dwp.uc.households_by_area_children_2@S14000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1439.0, + "kind": "calibration_drift", + "ledger_value": 1545.0, + "name": "dwp.uc.households_by_area_children_2@S14000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1074.0, + "kind": "calibration_drift", + "ledger_value": 1152.0, + "name": "dwp.uc.households_by_area_children_2@S14000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1884.0, + "kind": "calibration_drift", + "ledger_value": 1885.0, + "name": "dwp.uc.households_by_area_children_2@S14000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1607.0, + "kind": "calibration_drift", + "ledger_value": 1644.0, + "name": "dwp.uc.households_by_area_children_2@S14000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1226.0, + "kind": "calibration_drift", + "ledger_value": 1363.0, + "name": "dwp.uc.households_by_area_children_2@S14000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1416.0, + "kind": "calibration_drift", + "ledger_value": 1499.0, + "name": "dwp.uc.households_by_area_children_2@S14000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1662.0, + "kind": "calibration_drift", + "ledger_value": 1745.0, + "name": "dwp.uc.households_by_area_children_2@S14000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 610.0, + "kind": "calibration_drift", + "ledger_value": 838.0, + "name": "dwp.uc.households_by_area_children_2@S14000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2103.0, + "kind": "calibration_drift", + "ledger_value": 2109.0, + "name": "dwp.uc.households_by_area_children_2@W07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1505.0, + "kind": "calibration_drift", + "ledger_value": 1716.0, + "name": "dwp.uc.households_by_area_children_2@W07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1326.0, + "kind": "calibration_drift", + "ledger_value": 1305.0, + "name": "dwp.uc.households_by_area_children_2@W07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2268.0, + "kind": "calibration_drift", + "ledger_value": 2313.0, + "name": "dwp.uc.households_by_area_children_2@W07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1184.0, + "kind": "calibration_drift", + "ledger_value": 1290.0, + "name": "dwp.uc.households_by_area_children_2@W07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1344.0, + "kind": "calibration_drift", + "ledger_value": 1365.0, + "name": "dwp.uc.households_by_area_children_2@W07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1282.0, + "kind": "calibration_drift", + "ledger_value": 1349.0, + "name": "dwp.uc.households_by_area_children_2@W07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1745.0, + "kind": "calibration_drift", + "ledger_value": 1910.0, + "name": "dwp.uc.households_by_area_children_2@W07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2236.0, + "kind": "calibration_drift", + "ledger_value": 2211.0, + "name": "dwp.uc.households_by_area_children_2@W07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1010.0, + "kind": "calibration_drift", + "ledger_value": 1075.0, + "name": "dwp.uc.households_by_area_children_2@W07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1706.0, + "kind": "calibration_drift", + "ledger_value": 1568.0, + "name": "dwp.uc.households_by_area_children_2@W07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2052.0, + "kind": "calibration_drift", + "ledger_value": 2200.0, + "name": "dwp.uc.households_by_area_children_2@W07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1188.0, + "kind": "calibration_drift", + "ledger_value": 1283.0, + "name": "dwp.uc.households_by_area_children_2@W07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1256.0, + "kind": "calibration_drift", + "ledger_value": 1396.0, + "name": "dwp.uc.households_by_area_children_2@W07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2036.0, + "kind": "calibration_drift", + "ledger_value": 2008.0, + "name": "dwp.uc.households_by_area_children_2@W07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1238.0, + "kind": "calibration_drift", + "ledger_value": 1325.0, + "name": "dwp.uc.households_by_area_children_2@W07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1163.0, + "kind": "calibration_drift", + "ledger_value": 1281.0, + "name": "dwp.uc.households_by_area_children_2@W07000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1687.0, + "kind": "calibration_drift", + "ledger_value": 1839.0, + "name": "dwp.uc.households_by_area_children_2@W07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2124.0, + "kind": "calibration_drift", + "ledger_value": 2292.0, + "name": "dwp.uc.households_by_area_children_2@W07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1607.0, + "kind": "calibration_drift", + "ledger_value": 1733.0, + "name": "dwp.uc.households_by_area_children_2@W07000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1026.0, + "kind": "calibration_drift", + "ledger_value": 1072.0, + "name": "dwp.uc.households_by_area_children_2@W07000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1435.0, + "kind": "calibration_drift", + "ledger_value": 1635.0, + "name": "dwp.uc.households_by_area_children_2@W07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1850.0, + "kind": "calibration_drift", + "ledger_value": 1887.0, + "name": "dwp.uc.households_by_area_children_2@W07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2479.0, + "kind": "calibration_drift", + "ledger_value": 2711.0, + "name": "dwp.uc.households_by_area_children_2@W07000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1597.0, + "kind": "calibration_drift", + "ledger_value": 1743.0, + "name": "dwp.uc.households_by_area_children_2@W07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1707.0, + "kind": "calibration_drift", + "ledger_value": 1834.0, + "name": "dwp.uc.households_by_area_children_2@W07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2184.0, + "kind": "calibration_drift", + "ledger_value": 2291.0, + "name": "dwp.uc.households_by_area_children_2@W07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2511.0, + "kind": "calibration_drift", + "ledger_value": 2323.0, + "name": "dwp.uc.households_by_area_children_2@W07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1866.0, + "kind": "calibration_drift", + "ledger_value": 1968.0, + "name": "dwp.uc.households_by_area_children_2@W07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1560.0, + "kind": "calibration_drift", + "ledger_value": 1644.0, + "name": "dwp.uc.households_by_area_children_2@W07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1633.0, + "kind": "calibration_drift", + "ledger_value": 1857.0, + "name": "dwp.uc.households_by_area_children_2@W07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1059.0, + "kind": "calibration_drift", + "ledger_value": 1093.0, + "name": "dwp.uc.households_by_area_children_2@W07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 952.0, + "kind": "calibration_drift", + "ledger_value": 1034.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 818.0, + "kind": "calibration_drift", + "ledger_value": 876.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 581.0, + "kind": "calibration_drift", + "ledger_value": 481.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 987.0, + "kind": "calibration_drift", + "ledger_value": 977.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 565.0, + "kind": "calibration_drift", + "ledger_value": 554.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1223.0, + "kind": "calibration_drift", + "ledger_value": 1346.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1114.0, + "kind": "calibration_drift", + "ledger_value": 1276.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1616.0, + "kind": "calibration_drift", + "ledger_value": 1871.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1093.0, + "kind": "calibration_drift", + "ledger_value": 1230.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 820.0, + "kind": "calibration_drift", + "ledger_value": 937.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2403.0, + "kind": "calibration_drift", + "ledger_value": 3327.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1433.0, + "kind": "calibration_drift", + "ledger_value": 1362.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1651.0, + "kind": "calibration_drift", + "ledger_value": 1593.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 927.0, + "kind": "calibration_drift", + "ledger_value": 785.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1296.0, + "kind": "calibration_drift", + "ledger_value": 1631.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 992.0, + "kind": "calibration_drift", + "ledger_value": 1018.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1201.0, + "kind": "calibration_drift", + "ledger_value": 1234.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 741.0, + "kind": "calibration_drift", + "ledger_value": 503.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1029.0, + "kind": "calibration_drift", + "ledger_value": 976.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 553.0, + "kind": "calibration_drift", + "ledger_value": 589.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 943.0, + "kind": "calibration_drift", + "ledger_value": 603.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1508.0, + "kind": "calibration_drift", + "ledger_value": 1454.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1529.0, + "kind": "calibration_drift", + "ledger_value": 1392.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2299.0, + "kind": "calibration_drift", + "ledger_value": 3068.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 645.0, + "kind": "calibration_drift", + "ledger_value": 611.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 789.0, + "kind": "calibration_drift", + "ledger_value": 723.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 967.0, + "kind": "calibration_drift", + "ledger_value": 1018.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 646.0, + "kind": "calibration_drift", + "ledger_value": 703.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1883.0, + "kind": "calibration_drift", + "ledger_value": 1672.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1816.0, + "kind": "calibration_drift", + "ledger_value": 1917.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2637.0, + "kind": "calibration_drift", + "ledger_value": 3151.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2202.0, + "kind": "calibration_drift", + "ledger_value": 3194.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2625.0, + "kind": "calibration_drift", + "ledger_value": 4292.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 3553.0, + "kind": "calibration_drift", + "ledger_value": 5117.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1964.0, + "kind": "calibration_drift", + "ledger_value": 2447.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2864.0, + "kind": "calibration_drift", + "ledger_value": 3601.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1538.0, + "kind": "calibration_drift", + "ledger_value": 1635.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2368.0, + "kind": "calibration_drift", + "ledger_value": 3573.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1210.0, + "kind": "calibration_drift", + "ledger_value": 1078.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2032.0, + "kind": "calibration_drift", + "ledger_value": 3241.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2218.0, + "kind": "calibration_drift", + "ledger_value": 3270.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1155.0, + "kind": "calibration_drift", + "ledger_value": 1014.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2313.0, + "kind": "calibration_drift", + "ledger_value": 1909.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1035.0, + "kind": "calibration_drift", + "ledger_value": 878.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1559.0, + "kind": "calibration_drift", + "ledger_value": 1467.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1156.0, + "kind": "calibration_drift", + "ledger_value": 1054.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1152.0, + "kind": "calibration_drift", + "ledger_value": 1192.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1788.0, + "kind": "calibration_drift", + "ledger_value": 2273.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2279.0, + "kind": "calibration_drift", + "ledger_value": 3439.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1024.0, + "kind": "calibration_drift", + "ledger_value": 1266.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1880.0, + "kind": "calibration_drift", + "ledger_value": 1528.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001113", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1700.0, + "kind": "calibration_drift", + "ledger_value": 1539.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001114", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1250.0, + "kind": "calibration_drift", + "ledger_value": 774.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001115", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1234.0, + "kind": "calibration_drift", + "ledger_value": 934.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001116", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 810.0, + "kind": "calibration_drift", + "ledger_value": 789.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001117", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2409.0, + "kind": "calibration_drift", + "ledger_value": 4106.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001118", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1985.0, + "kind": "calibration_drift", + "ledger_value": 2799.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001119", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2544.0, + "kind": "calibration_drift", + "ledger_value": 3836.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001120", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 825.0, + "kind": "calibration_drift", + "ledger_value": 932.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001121", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2711.0, + "kind": "calibration_drift", + "ledger_value": 2986.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001122", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1687.0, + "kind": "calibration_drift", + "ledger_value": 1832.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001123", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1673.0, + "kind": "calibration_drift", + "ledger_value": 1637.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001124", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 643.0, + "kind": "calibration_drift", + "ledger_value": 605.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001125", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1082.0, + "kind": "calibration_drift", + "ledger_value": 1220.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001126", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 935.0, + "kind": "calibration_drift", + "ledger_value": 940.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001127", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 714.0, + "kind": "calibration_drift", + "ledger_value": 745.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001128", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1299.0, + "kind": "calibration_drift", + "ledger_value": 967.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001129", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1077.0, + "kind": "calibration_drift", + "ledger_value": 407.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001130", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 668.0, + "kind": "calibration_drift", + "ledger_value": 389.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001131", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1409.0, + "kind": "calibration_drift", + "ledger_value": 1490.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001132", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1181.0, + "kind": "calibration_drift", + "ledger_value": 1160.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001133", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1064.0, + "kind": "calibration_drift", + "ledger_value": 1127.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001134", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1466.0, + "kind": "calibration_drift", + "ledger_value": 1717.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001135", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 659.0, + "kind": "calibration_drift", + "ledger_value": 633.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001136", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 706.0, + "kind": "calibration_drift", + "ledger_value": 565.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001137", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 652.0, + "kind": "calibration_drift", + "ledger_value": 635.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001138", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1133.0, + "kind": "calibration_drift", + "ledger_value": 1034.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001139", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 824.0, + "kind": "calibration_drift", + "ledger_value": 774.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001140", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 972.0, + "kind": "calibration_drift", + "ledger_value": 1298.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001141", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1831.0, + "kind": "calibration_drift", + "ledger_value": 2359.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001142", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1237.0, + "kind": "calibration_drift", + "ledger_value": 1520.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001143", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1238.0, + "kind": "calibration_drift", + "ledger_value": 1463.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001144", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1348.0, + "kind": "calibration_drift", + "ledger_value": 1995.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001145", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 821.0, + "kind": "calibration_drift", + "ledger_value": 820.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001146", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 963.0, + "kind": "calibration_drift", + "ledger_value": 844.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001147", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1123.0, + "kind": "calibration_drift", + "ledger_value": 1118.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001148", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 858.0, + "kind": "calibration_drift", + "ledger_value": 776.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001149", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1071.0, + "kind": "calibration_drift", + "ledger_value": 1119.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001150", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1016.0, + "kind": "calibration_drift", + "ledger_value": 1005.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001151", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1044.0, + "kind": "calibration_drift", + "ledger_value": 1006.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001152", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1138.0, + "kind": "calibration_drift", + "ledger_value": 1157.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001153", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 711.0, + "kind": "calibration_drift", + "ledger_value": 767.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001154", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 716.0, + "kind": "calibration_drift", + "ledger_value": 792.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001155", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 626.0, + "kind": "calibration_drift", + "ledger_value": 764.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001156", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1283.0, + "kind": "calibration_drift", + "ledger_value": 1554.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001157", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 506.0, + "kind": "calibration_drift", + "ledger_value": 478.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001158", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 884.0, + "kind": "calibration_drift", + "ledger_value": 876.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001159", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1131.0, + "kind": "calibration_drift", + "ledger_value": 703.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001160", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 785.0, + "kind": "calibration_drift", + "ledger_value": 656.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001161", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 500.0, + "kind": "calibration_drift", + "ledger_value": 473.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001162", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 848.0, + "kind": "calibration_drift", + "ledger_value": 659.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001163", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 546.0, + "kind": "calibration_drift", + "ledger_value": 477.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001164", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1132.0, + "kind": "calibration_drift", + "ledger_value": 1009.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001165", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 911.0, + "kind": "calibration_drift", + "ledger_value": 928.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001166", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1110.0, + "kind": "calibration_drift", + "ledger_value": 1082.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001167", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 747.0, + "kind": "calibration_drift", + "ledger_value": 776.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001168", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1030.0, + "kind": "calibration_drift", + "ledger_value": 966.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001169", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 963.0, + "kind": "calibration_drift", + "ledger_value": 912.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001170", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 563.0, + "kind": "calibration_drift", + "ledger_value": 521.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001171", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1117.0, + "kind": "calibration_drift", + "ledger_value": 607.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001172", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 898.0, + "kind": "calibration_drift", + "ledger_value": 763.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001173", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1339.0, + "kind": "calibration_drift", + "ledger_value": 1332.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001174", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1375.0, + "kind": "calibration_drift", + "ledger_value": 1075.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001175", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1253.0, + "kind": "calibration_drift", + "ledger_value": 1328.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001176", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 757.0, + "kind": "calibration_drift", + "ledger_value": 778.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001177", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 606.0, + "kind": "calibration_drift", + "ledger_value": 619.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001178", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1268.0, + "kind": "calibration_drift", + "ledger_value": 1399.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001179", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2124.0, + "kind": "calibration_drift", + "ledger_value": 2610.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001180", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1323.0, + "kind": "calibration_drift", + "ledger_value": 1479.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001181", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1420.0, + "kind": "calibration_drift", + "ledger_value": 1655.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001182", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 984.0, + "kind": "calibration_drift", + "ledger_value": 846.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001183", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1465.0, + "kind": "calibration_drift", + "ledger_value": 1856.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001184", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1227.0, + "kind": "calibration_drift", + "ledger_value": 1283.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001185", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1564.0, + "kind": "calibration_drift", + "ledger_value": 1856.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001186", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 946.0, + "kind": "calibration_drift", + "ledger_value": 811.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001187", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2392.0, + "kind": "calibration_drift", + "ledger_value": 2343.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001188", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1800.0, + "kind": "calibration_drift", + "ledger_value": 2496.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001189", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1301.0, + "kind": "calibration_drift", + "ledger_value": 1190.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001190", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1073.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001191", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 785.0, + "kind": "calibration_drift", + "ledger_value": 801.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001192", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1318.0, + "kind": "calibration_drift", + "ledger_value": 1350.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001193", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2159.0, + "kind": "calibration_drift", + "ledger_value": 2782.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001194", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 518.0, + "kind": "calibration_drift", + "ledger_value": 478.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001195", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1795.0, + "kind": "calibration_drift", + "ledger_value": 2712.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001196", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 750.0, + "kind": "calibration_drift", + "ledger_value": 938.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001197", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1736.0, + "kind": "calibration_drift", + "ledger_value": 1560.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001198", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 939.0, + "kind": "calibration_drift", + "ledger_value": 1107.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001199", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1422.0, + "kind": "calibration_drift", + "ledger_value": 1502.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001200", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 537.0, + "kind": "calibration_drift", + "ledger_value": 519.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001201", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1227.0, + "kind": "calibration_drift", + "ledger_value": 1271.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001202", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 846.0, + "kind": "calibration_drift", + "ledger_value": 872.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001203", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1523.0, + "kind": "calibration_drift", + "ledger_value": 1918.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001204", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1511.0, + "kind": "calibration_drift", + "ledger_value": 1261.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001205", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1038.0, + "kind": "calibration_drift", + "ledger_value": 1140.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001206", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1852.0, + "kind": "calibration_drift", + "ledger_value": 1440.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001207", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2001.0, + "kind": "calibration_drift", + "ledger_value": 2185.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001208", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1790.0, + "kind": "calibration_drift", + "ledger_value": 1818.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001209", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 720.0, + "kind": "calibration_drift", + "ledger_value": 902.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001210", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1660.0, + "kind": "calibration_drift", + "ledger_value": 1322.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001211", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 577.0, + "kind": "calibration_drift", + "ledger_value": 578.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001212", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2159.0, + "kind": "calibration_drift", + "ledger_value": 3195.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001213", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 525.0, + "kind": "calibration_drift", + "ledger_value": 541.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001214", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 682.0, + "kind": "calibration_drift", + "ledger_value": 717.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001215", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1721.0, + "kind": "calibration_drift", + "ledger_value": 1563.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001216", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 698.0, + "kind": "calibration_drift", + "ledger_value": 904.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001217", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 822.0, + "kind": "calibration_drift", + "ledger_value": 705.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001218", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1295.0, + "kind": "calibration_drift", + "ledger_value": 1125.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001219", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 659.0, + "kind": "calibration_drift", + "ledger_value": 684.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001220", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2429.0, + "kind": "calibration_drift", + "ledger_value": 2559.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001221", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1162.0, + "kind": "calibration_drift", + "ledger_value": 1133.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001222", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1268.0, + "kind": "calibration_drift", + "ledger_value": 1427.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001223", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 737.0, + "kind": "calibration_drift", + "ledger_value": 742.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001224", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2367.0, + "kind": "calibration_drift", + "ledger_value": 2664.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001225", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 830.0, + "kind": "calibration_drift", + "ledger_value": 712.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001226", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 617.0, + "kind": "calibration_drift", + "ledger_value": 561.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001227", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1131.0, + "kind": "calibration_drift", + "ledger_value": 1014.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001228", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2162.0, + "kind": "calibration_drift", + "ledger_value": 2451.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001229", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 594.0, + "kind": "calibration_drift", + "ledger_value": 552.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001230", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 926.0, + "kind": "calibration_drift", + "ledger_value": 689.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001231", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 835.0, + "kind": "calibration_drift", + "ledger_value": 880.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001232", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 734.0, + "kind": "calibration_drift", + "ledger_value": 682.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001233", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 553.0, + "kind": "calibration_drift", + "ledger_value": 570.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001234", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 956.0, + "kind": "calibration_drift", + "ledger_value": 1230.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001235", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1993.0, + "kind": "calibration_drift", + "ledger_value": 2269.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001236", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 740.0, + "kind": "calibration_drift", + "ledger_value": 806.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001237", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1480.0, + "kind": "calibration_drift", + "ledger_value": 1288.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001238", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1064.0, + "kind": "calibration_drift", + "ledger_value": 1015.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001239", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 764.0, + "kind": "calibration_drift", + "ledger_value": 751.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001240", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 757.0, + "kind": "calibration_drift", + "ledger_value": 778.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001241", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 782.0, + "kind": "calibration_drift", + "ledger_value": 661.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001242", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 913.0, + "kind": "calibration_drift", + "ledger_value": 978.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001243", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1377.0, + "kind": "calibration_drift", + "ledger_value": 1296.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001244", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 986.0, + "kind": "calibration_drift", + "ledger_value": 860.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001245", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1166.0, + "kind": "calibration_drift", + "ledger_value": 1285.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001246", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 726.0, + "kind": "calibration_drift", + "ledger_value": 675.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001247", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1427.0, + "kind": "calibration_drift", + "ledger_value": 1470.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001248", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 535.0, + "kind": "calibration_drift", + "ledger_value": 536.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001249", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 664.0, + "kind": "calibration_drift", + "ledger_value": 644.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001250", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2152.0, + "kind": "calibration_drift", + "ledger_value": 3070.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001251", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 987.0, + "kind": "calibration_drift", + "ledger_value": 1048.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001252", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 919.0, + "kind": "calibration_drift", + "ledger_value": 1025.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001253", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1289.0, + "kind": "calibration_drift", + "ledger_value": 1515.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001254", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1919.0, + "kind": "calibration_drift", + "ledger_value": 1954.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001255", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1538.0, + "kind": "calibration_drift", + "ledger_value": 1390.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001256", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1587.0, + "kind": "calibration_drift", + "ledger_value": 1556.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001257", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 573.0, + "kind": "calibration_drift", + "ledger_value": 504.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001258", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2241.0, + "kind": "calibration_drift", + "ledger_value": 3318.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001259", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2022.0, + "kind": "calibration_drift", + "ledger_value": 1685.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001260", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1133.0, + "kind": "calibration_drift", + "ledger_value": 1453.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001261", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1775.0, + "kind": "calibration_drift", + "ledger_value": 2131.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001262", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 661.0, + "kind": "calibration_drift", + "ledger_value": 748.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001263", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1399.0, + "kind": "calibration_drift", + "ledger_value": 928.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001264", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1222.0, + "kind": "calibration_drift", + "ledger_value": 883.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001265", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 735.0, + "kind": "calibration_drift", + "ledger_value": 772.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001266", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1359.0, + "kind": "calibration_drift", + "ledger_value": 1511.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001267", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 409.0, + "kind": "calibration_drift", + "ledger_value": 441.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001268", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 688.0, + "kind": "calibration_drift", + "ledger_value": 512.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001269", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1108.0, + "kind": "calibration_drift", + "ledger_value": 1590.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001270", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1441.0, + "kind": "calibration_drift", + "ledger_value": 1642.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001271", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1661.0, + "kind": "calibration_drift", + "ledger_value": 1475.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001272", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 838.0, + "kind": "calibration_drift", + "ledger_value": 891.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001273", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1555.0, + "kind": "calibration_drift", + "ledger_value": 1312.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001274", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1071.0, + "kind": "calibration_drift", + "ledger_value": 1235.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001275", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1886.0, + "kind": "calibration_drift", + "ledger_value": 2367.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001276", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 807.0, + "kind": "calibration_drift", + "ledger_value": 715.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001277", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1122.0, + "kind": "calibration_drift", + "ledger_value": 1234.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001278", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1833.0, + "kind": "calibration_drift", + "ledger_value": 1982.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001279", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 475.0, + "kind": "calibration_drift", + "ledger_value": 531.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001280", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 850.0, + "kind": "calibration_drift", + "ledger_value": 870.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001281", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1018.0, + "kind": "calibration_drift", + "ledger_value": 990.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001282", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 721.0, + "kind": "calibration_drift", + "ledger_value": 604.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001283", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 935.0, + "kind": "calibration_drift", + "ledger_value": 855.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001284", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 632.0, + "kind": "calibration_drift", + "ledger_value": 514.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001285", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1593.0, + "kind": "calibration_drift", + "ledger_value": 1961.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001286", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 767.0, + "kind": "calibration_drift", + "ledger_value": 648.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001287", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 819.0, + "kind": "calibration_drift", + "ledger_value": 779.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001288", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 684.0, + "kind": "calibration_drift", + "ledger_value": 706.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001289", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1560.0, + "kind": "calibration_drift", + "ledger_value": 1306.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001290", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 596.0, + "kind": "calibration_drift", + "ledger_value": 616.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001291", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1005.0, + "kind": "calibration_drift", + "ledger_value": 1124.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001292", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1107.0, + "kind": "calibration_drift", + "ledger_value": 571.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001293", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 630.0, + "kind": "calibration_drift", + "ledger_value": 556.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001294", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1549.0, + "kind": "calibration_drift", + "ledger_value": 1206.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001295", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1106.0, + "kind": "calibration_drift", + "ledger_value": 570.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001296", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1804.0, + "kind": "calibration_drift", + "ledger_value": 2171.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001297", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 762.0, + "kind": "calibration_drift", + "ledger_value": 833.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001298", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1495.0, + "kind": "calibration_drift", + "ledger_value": 1844.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001299", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1337.0, + "kind": "calibration_drift", + "ledger_value": 1484.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001300", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1891.0, + "kind": "calibration_drift", + "ledger_value": 2532.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001301", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1526.0, + "kind": "calibration_drift", + "ledger_value": 1585.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001302", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 816.0, + "kind": "calibration_drift", + "ledger_value": 620.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001303", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 721.0, + "kind": "calibration_drift", + "ledger_value": 759.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001304", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1714.0, + "kind": "calibration_drift", + "ledger_value": 1406.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001305", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1770.0, + "kind": "calibration_drift", + "ledger_value": 1430.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001306", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1459.0, + "kind": "calibration_drift", + "ledger_value": 1243.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001307", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1149.0, + "kind": "calibration_drift", + "ledger_value": 1570.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001308", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 532.0, + "kind": "calibration_drift", + "ledger_value": 529.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001309", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1346.0, + "kind": "calibration_drift", + "ledger_value": 721.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001310", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1152.0, + "kind": "calibration_drift", + "ledger_value": 1182.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001311", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 977.0, + "kind": "calibration_drift", + "ledger_value": 772.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001312", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1884.0, + "kind": "calibration_drift", + "ledger_value": 2006.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001313", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1778.0, + "kind": "calibration_drift", + "ledger_value": 1753.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001314", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1457.0, + "kind": "calibration_drift", + "ledger_value": 1284.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001315", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 584.0, + "kind": "calibration_drift", + "ledger_value": 537.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001316", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1705.0, + "kind": "calibration_drift", + "ledger_value": 1601.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001317", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 799.0, + "kind": "calibration_drift", + "ledger_value": 726.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001318", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1050.0, + "kind": "calibration_drift", + "ledger_value": 985.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001319", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1841.0, + "kind": "calibration_drift", + "ledger_value": 2506.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001320", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 921.0, + "kind": "calibration_drift", + "ledger_value": 1010.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001321", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 568.0, + "kind": "calibration_drift", + "ledger_value": 485.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001322", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2589.0, + "kind": "calibration_drift", + "ledger_value": 3323.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001323", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1003.0, + "kind": "calibration_drift", + "ledger_value": 937.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001324", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1394.0, + "kind": "calibration_drift", + "ledger_value": 1414.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001325", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1621.0, + "kind": "calibration_drift", + "ledger_value": 2194.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001326", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1734.0, + "kind": "calibration_drift", + "ledger_value": 2207.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001327", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2169.0, + "kind": "calibration_drift", + "ledger_value": 2755.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001328", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1448.0, + "kind": "calibration_drift", + "ledger_value": 1324.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001329", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 807.0, + "kind": "calibration_drift", + "ledger_value": 734.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001330", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2051.0, + "kind": "calibration_drift", + "ledger_value": 1750.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001331", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1818.0, + "kind": "calibration_drift", + "ledger_value": 1424.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001332", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1246.0, + "kind": "calibration_drift", + "ledger_value": 928.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001333", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1462.0, + "kind": "calibration_drift", + "ledger_value": 1284.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001334", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 710.0, + "kind": "calibration_drift", + "ledger_value": 741.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001335", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1433.0, + "kind": "calibration_drift", + "ledger_value": 1304.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001336", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1231.0, + "kind": "calibration_drift", + "ledger_value": 1088.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001337", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2359.0, + "kind": "calibration_drift", + "ledger_value": 1887.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001338", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1972.0, + "kind": "calibration_drift", + "ledger_value": 1853.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001339", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1561.0, + "kind": "calibration_drift", + "ledger_value": 1200.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001340", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1700.0, + "kind": "calibration_drift", + "ledger_value": 1477.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001341", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 863.0, + "kind": "calibration_drift", + "ledger_value": 847.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001342", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 942.0, + "kind": "calibration_drift", + "ledger_value": 971.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001343", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1232.0, + "kind": "calibration_drift", + "ledger_value": 1221.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001344", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1433.0, + "kind": "calibration_drift", + "ledger_value": 2422.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001345", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1946.0, + "kind": "calibration_drift", + "ledger_value": 2579.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001346", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 662.0, + "kind": "calibration_drift", + "ledger_value": 509.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001347", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 594.0, + "kind": "calibration_drift", + "ledger_value": 576.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001348", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1024.0, + "kind": "calibration_drift", + "ledger_value": 942.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001349", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1066.0, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001350", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 676.0, + "kind": "calibration_drift", + "ledger_value": 666.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001351", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2049.0, + "kind": "calibration_drift", + "ledger_value": 2626.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001352", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1919.0, + "kind": "calibration_drift", + "ledger_value": 2350.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001353", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 879.0, + "kind": "calibration_drift", + "ledger_value": 799.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001354", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1405.0, + "kind": "calibration_drift", + "ledger_value": 1361.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001355", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 689.0, + "kind": "calibration_drift", + "ledger_value": 708.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001356", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 779.0, + "kind": "calibration_drift", + "ledger_value": 821.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001357", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1094.0, + "kind": "calibration_drift", + "ledger_value": 1124.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001358", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 629.0, + "kind": "calibration_drift", + "ledger_value": 734.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001359", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 406.0, + "kind": "calibration_drift", + "ledger_value": 635.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001360", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1005.0, + "kind": "calibration_drift", + "ledger_value": 1080.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001361", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 548.0, + "kind": "calibration_drift", + "ledger_value": 512.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001362", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 635.0, + "kind": "calibration_drift", + "ledger_value": 681.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001363", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 677.0, + "kind": "calibration_drift", + "ledger_value": 775.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001364", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 729.0, + "kind": "calibration_drift", + "ledger_value": 872.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001365", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 580.0, + "kind": "calibration_drift", + "ledger_value": 571.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001366", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2257.0, + "kind": "calibration_drift", + "ledger_value": 2650.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001367", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1200.0, + "kind": "calibration_drift", + "ledger_value": 1185.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001368", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1508.0, + "kind": "calibration_drift", + "ledger_value": 1612.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001369", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 948.0, + "kind": "calibration_drift", + "ledger_value": 1170.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001370", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1594.0, + "kind": "calibration_drift", + "ledger_value": 1583.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001371", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 979.0, + "kind": "calibration_drift", + "ledger_value": 952.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001372", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 648.0, + "kind": "calibration_drift", + "ledger_value": 701.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001373", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 527.0, + "kind": "calibration_drift", + "ledger_value": 486.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001374", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 894.0, + "kind": "calibration_drift", + "ledger_value": 958.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001375", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 720.0, + "kind": "calibration_drift", + "ledger_value": 820.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001376", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2190.0, + "kind": "calibration_drift", + "ledger_value": 2522.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001377", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1855.0, + "kind": "calibration_drift", + "ledger_value": 1448.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001378", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 786.0, + "kind": "calibration_drift", + "ledger_value": 687.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001379", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 939.0, + "kind": "calibration_drift", + "ledger_value": 886.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001380", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 791.0, + "kind": "calibration_drift", + "ledger_value": 661.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001381", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1335.0, + "kind": "calibration_drift", + "ledger_value": 1296.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001382", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1309.0, + "kind": "calibration_drift", + "ledger_value": 1395.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001383", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 742.0, + "kind": "calibration_drift", + "ledger_value": 919.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001384", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 973.0, + "kind": "calibration_drift", + "ledger_value": 1054.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001385", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 604.0, + "kind": "calibration_drift", + "ledger_value": 685.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001386", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 926.0, + "kind": "calibration_drift", + "ledger_value": 908.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001387", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 634.0, + "kind": "calibration_drift", + "ledger_value": 679.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001388", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1205.0, + "kind": "calibration_drift", + "ledger_value": 1041.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001389", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1140.0, + "kind": "calibration_drift", + "ledger_value": 1191.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001390", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 828.0, + "kind": "calibration_drift", + "ledger_value": 757.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001391", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 764.0, + "kind": "calibration_drift", + "ledger_value": 846.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001393", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 614.0, + "kind": "calibration_drift", + "ledger_value": 608.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001394", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 633.0, + "kind": "calibration_drift", + "ledger_value": 694.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001395", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 699.0, + "kind": "calibration_drift", + "ledger_value": 675.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001396", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 746.0, + "kind": "calibration_drift", + "ledger_value": 602.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001397", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 835.0, + "kind": "calibration_drift", + "ledger_value": 887.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001398", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 499.0, + "kind": "calibration_drift", + "ledger_value": 424.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001399", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 989.0, + "kind": "calibration_drift", + "ledger_value": 1011.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001400", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1253.0, + "kind": "calibration_drift", + "ledger_value": 1468.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001401", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 662.0, + "kind": "calibration_drift", + "ledger_value": 716.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001402", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 861.0, + "kind": "calibration_drift", + "ledger_value": 953.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001403", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 854.0, + "kind": "calibration_drift", + "ledger_value": 882.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001404", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1034.0, + "kind": "calibration_drift", + "ledger_value": 999.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001405", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1792.0, + "kind": "calibration_drift", + "ledger_value": 1774.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001406", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1027.0, + "kind": "calibration_drift", + "ledger_value": 1221.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001407", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1064.0, + "kind": "calibration_drift", + "ledger_value": 980.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001408", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1295.0, + "kind": "calibration_drift", + "ledger_value": 1054.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001409", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2069.0, + "kind": "calibration_drift", + "ledger_value": 2065.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001410", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2004.0, + "kind": "calibration_drift", + "ledger_value": 2523.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001411", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1390.0, + "kind": "calibration_drift", + "ledger_value": 1611.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001412", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1229.0, + "kind": "calibration_drift", + "ledger_value": 1305.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001413", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 668.0, + "kind": "calibration_drift", + "ledger_value": 616.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001414", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1722.0, + "kind": "calibration_drift", + "ledger_value": 2396.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001415", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1967.0, + "kind": "calibration_drift", + "ledger_value": 3007.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001416", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 850.0, + "kind": "calibration_drift", + "ledger_value": 868.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001417", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 721.0, + "kind": "calibration_drift", + "ledger_value": 638.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001418", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1139.0, + "kind": "calibration_drift", + "ledger_value": 1323.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001419", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 540.0, + "kind": "calibration_drift", + "ledger_value": 464.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001420", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1918.0, + "kind": "calibration_drift", + "ledger_value": 1708.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001421", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1374.0, + "kind": "calibration_drift", + "ledger_value": 1993.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001422", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 675.0, + "kind": "calibration_drift", + "ledger_value": 615.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001423", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 720.0, + "kind": "calibration_drift", + "ledger_value": 631.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001424", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2178.0, + "kind": "calibration_drift", + "ledger_value": 2730.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001425", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1286.0, + "kind": "calibration_drift", + "ledger_value": 1421.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001426", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1633.0, + "kind": "calibration_drift", + "ledger_value": 1107.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001427", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1368.0, + "kind": "calibration_drift", + "ledger_value": 1398.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001428", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 903.0, + "kind": "calibration_drift", + "ledger_value": 819.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001429", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2218.0, + "kind": "calibration_drift", + "ledger_value": 2986.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001430", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1155.0, + "kind": "calibration_drift", + "ledger_value": 1276.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001431", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1532.0, + "kind": "calibration_drift", + "ledger_value": 1382.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001432", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1897.0, + "kind": "calibration_drift", + "ledger_value": 2109.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001433", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1133.0, + "kind": "calibration_drift", + "ledger_value": 1186.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001434", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2227.0, + "kind": "calibration_drift", + "ledger_value": 1882.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001435", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1293.0, + "kind": "calibration_drift", + "ledger_value": 1294.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001436", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 569.0, + "kind": "calibration_drift", + "ledger_value": 519.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001437", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1185.0, + "kind": "calibration_drift", + "ledger_value": 1059.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001438", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 695.0, + "kind": "calibration_drift", + "ledger_value": 873.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001439", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1397.0, + "kind": "calibration_drift", + "ledger_value": 1320.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001440", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1051.0, + "kind": "calibration_drift", + "ledger_value": 1128.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001441", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 617.0, + "kind": "calibration_drift", + "ledger_value": 640.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001442", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 653.0, + "kind": "calibration_drift", + "ledger_value": 675.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001443", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 613.0, + "kind": "calibration_drift", + "ledger_value": 682.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001444", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 660.0, + "kind": "calibration_drift", + "ledger_value": 485.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001445", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1785.0, + "kind": "calibration_drift", + "ledger_value": 2554.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001446", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1158.0, + "kind": "calibration_drift", + "ledger_value": 1218.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001447", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1156.0, + "kind": "calibration_drift", + "ledger_value": 1222.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001448", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 621.0, + "kind": "calibration_drift", + "ledger_value": 669.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001449", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1173.0, + "kind": "calibration_drift", + "ledger_value": 1132.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001450", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 937.0, + "kind": "calibration_drift", + "ledger_value": 998.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001451", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1883.0, + "kind": "calibration_drift", + "ledger_value": 1956.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001452", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 992.0, + "kind": "calibration_drift", + "ledger_value": 990.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001453", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 637.0, + "kind": "calibration_drift", + "ledger_value": 610.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001454", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1210.0, + "kind": "calibration_drift", + "ledger_value": 1154.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001455", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 696.0, + "kind": "calibration_drift", + "ledger_value": 662.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001456", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 560.0, + "kind": "calibration_drift", + "ledger_value": 446.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001457", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 563.0, + "kind": "calibration_drift", + "ledger_value": 579.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001458", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2069.0, + "kind": "calibration_drift", + "ledger_value": 2208.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001459", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 702.0, + "kind": "calibration_drift", + "ledger_value": 680.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001460", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1118.0, + "kind": "calibration_drift", + "ledger_value": 935.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001461", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1399.0, + "kind": "calibration_drift", + "ledger_value": 1588.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001462", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 596.0, + "kind": "calibration_drift", + "ledger_value": 556.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001463", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 779.0, + "kind": "calibration_drift", + "ledger_value": 822.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001464", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 621.0, + "kind": "calibration_drift", + "ledger_value": 691.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001465", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2249.0, + "kind": "calibration_drift", + "ledger_value": 2913.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001466", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 865.0, + "kind": "calibration_drift", + "ledger_value": 730.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001467", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 375.0, + "kind": "calibration_drift", + "ledger_value": 276.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001468", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1764.0, + "kind": "calibration_drift", + "ledger_value": 1907.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001469", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1505.0, + "kind": "calibration_drift", + "ledger_value": 1771.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001470", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1053.0, + "kind": "calibration_drift", + "ledger_value": 1117.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001471", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 863.0, + "kind": "calibration_drift", + "ledger_value": 817.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001472", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 840.0, + "kind": "calibration_drift", + "ledger_value": 932.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001473", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1428.0, + "kind": "calibration_drift", + "ledger_value": 1740.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001474", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 572.0, + "kind": "calibration_drift", + "ledger_value": 527.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001475", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 711.0, + "kind": "calibration_drift", + "ledger_value": 787.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001476", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1779.0, + "kind": "calibration_drift", + "ledger_value": 2672.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001477", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1831.0, + "kind": "calibration_drift", + "ledger_value": 2679.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001478", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 599.0, + "kind": "calibration_drift", + "ledger_value": 597.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001479", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1143.0, + "kind": "calibration_drift", + "ledger_value": 1374.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001480", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 571.0, + "kind": "calibration_drift", + "ledger_value": 628.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001481", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 532.0, + "kind": "calibration_drift", + "ledger_value": 565.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001482", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 848.0, + "kind": "calibration_drift", + "ledger_value": 946.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001483", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 771.0, + "kind": "calibration_drift", + "ledger_value": 742.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001484", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 986.0, + "kind": "calibration_drift", + "ledger_value": 878.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001485", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 838.0, + "kind": "calibration_drift", + "ledger_value": 792.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001486", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1048.0, + "kind": "calibration_drift", + "ledger_value": 1118.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001487", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 668.0, + "kind": "calibration_drift", + "ledger_value": 717.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001488", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 654.0, + "kind": "calibration_drift", + "ledger_value": 663.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001489", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 544.0, + "kind": "calibration_drift", + "ledger_value": 572.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001490", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 725.0, + "kind": "calibration_drift", + "ledger_value": 758.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001491", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1400.0, + "kind": "calibration_drift", + "ledger_value": 1109.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001492", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 620.0, + "kind": "calibration_drift", + "ledger_value": 626.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001493", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 679.0, + "kind": "calibration_drift", + "ledger_value": 720.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001494", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 594.0, + "kind": "calibration_drift", + "ledger_value": 619.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001495", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 644.0, + "kind": "calibration_drift", + "ledger_value": 591.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001496", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 935.0, + "kind": "calibration_drift", + "ledger_value": 1058.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001497", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 889.0, + "kind": "calibration_drift", + "ledger_value": 885.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001498", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1421.0, + "kind": "calibration_drift", + "ledger_value": 1388.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001499", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1526.0, + "kind": "calibration_drift", + "ledger_value": 1514.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001500", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1516.0, + "kind": "calibration_drift", + "ledger_value": 1419.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001501", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 961.0, + "kind": "calibration_drift", + "ledger_value": 905.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001502", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1979.0, + "kind": "calibration_drift", + "ledger_value": 1362.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001503", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1001.0, + "kind": "calibration_drift", + "ledger_value": 784.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001504", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 886.0, + "kind": "calibration_drift", + "ledger_value": 938.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001505", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1037.0, + "kind": "calibration_drift", + "ledger_value": 1168.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001506", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 693.0, + "kind": "calibration_drift", + "ledger_value": 656.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001507", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1139.0, + "kind": "calibration_drift", + "ledger_value": 1042.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001508", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1278.0, + "kind": "calibration_drift", + "ledger_value": 1224.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001509", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1355.0, + "kind": "calibration_drift", + "ledger_value": 1163.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001510", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 867.0, + "kind": "calibration_drift", + "ledger_value": 764.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001511", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 738.0, + "kind": "calibration_drift", + "ledger_value": 797.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001512", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 815.0, + "kind": "calibration_drift", + "ledger_value": 840.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001513", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 576.0, + "kind": "calibration_drift", + "ledger_value": 592.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001514", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1343.0, + "kind": "calibration_drift", + "ledger_value": 1480.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001515", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1064.0, + "kind": "calibration_drift", + "ledger_value": 1174.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001516", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1485.0, + "kind": "calibration_drift", + "ledger_value": 1469.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001517", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1623.0, + "kind": "calibration_drift", + "ledger_value": 1529.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001518", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 587.0, + "kind": "calibration_drift", + "ledger_value": 575.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001519", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1883.0, + "kind": "calibration_drift", + "ledger_value": 2054.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001520", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1430.0, + "kind": "calibration_drift", + "ledger_value": 1860.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001521", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 984.0, + "kind": "calibration_drift", + "ledger_value": 1343.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001522", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 653.0, + "kind": "calibration_drift", + "ledger_value": 681.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001523", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1137.0, + "kind": "calibration_drift", + "ledger_value": 1238.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001524", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2005.0, + "kind": "calibration_drift", + "ledger_value": 2182.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001525", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 670.0, + "kind": "calibration_drift", + "ledger_value": 650.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001526", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1769.0, + "kind": "calibration_drift", + "ledger_value": 1394.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001527", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1234.0, + "kind": "calibration_drift", + "ledger_value": 1335.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001528", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 683.0, + "kind": "calibration_drift", + "ledger_value": 628.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001529", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 693.0, + "kind": "calibration_drift", + "ledger_value": 738.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001530", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1446.0, + "kind": "calibration_drift", + "ledger_value": 1116.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001531", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 543.0, + "kind": "calibration_drift", + "ledger_value": 534.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001532", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 594.0, + "kind": "calibration_drift", + "ledger_value": 707.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001533", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 793.0, + "kind": "calibration_drift", + "ledger_value": 694.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001534", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 598.0, + "kind": "calibration_drift", + "ledger_value": 498.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001535", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1028.0, + "kind": "calibration_drift", + "ledger_value": 1117.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001536", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1234.0, + "kind": "calibration_drift", + "ledger_value": 1182.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001537", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 998.0, + "kind": "calibration_drift", + "ledger_value": 1078.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001538", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 553.0, + "kind": "calibration_drift", + "ledger_value": 527.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001539", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 953.0, + "kind": "calibration_drift", + "ledger_value": 946.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001540", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1544.0, + "kind": "calibration_drift", + "ledger_value": 2012.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001541", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 720.0, + "kind": "calibration_drift", + "ledger_value": 847.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001542", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 971.0, + "kind": "calibration_drift", + "ledger_value": 1230.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001543", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 695.0, + "kind": "calibration_drift", + "ledger_value": 720.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001544", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 737.0, + "kind": "calibration_drift", + "ledger_value": 775.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001545", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1518.0, + "kind": "calibration_drift", + "ledger_value": 1858.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001546", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1976.0, + "kind": "calibration_drift", + "ledger_value": 2521.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001547", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 775.0, + "kind": "calibration_drift", + "ledger_value": 819.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001548", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 647.0, + "kind": "calibration_drift", + "ledger_value": 739.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001549", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1037.0, + "kind": "calibration_drift", + "ledger_value": 871.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001550", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1320.0, + "kind": "calibration_drift", + "ledger_value": 1027.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001551", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 814.0, + "kind": "calibration_drift", + "ledger_value": 824.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001552", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2998.0, + "kind": "calibration_drift", + "ledger_value": 2836.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001553", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 799.0, + "kind": "calibration_drift", + "ledger_value": 693.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001554", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 758.0, + "kind": "calibration_drift", + "ledger_value": 707.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001555", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 672.0, + "kind": "calibration_drift", + "ledger_value": 487.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001556", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 944.0, + "kind": "calibration_drift", + "ledger_value": 680.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001557", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1221.0, + "kind": "calibration_drift", + "ledger_value": 1382.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001558", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1661.0, + "kind": "calibration_drift", + "ledger_value": 1362.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001559", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1322.0, + "kind": "calibration_drift", + "ledger_value": 1477.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001560", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1400.0, + "kind": "calibration_drift", + "ledger_value": 1358.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001561", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2304.0, + "kind": "calibration_drift", + "ledger_value": 3474.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001562", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1852.0, + "kind": "calibration_drift", + "ledger_value": 1938.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001563", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1108.0, + "kind": "calibration_drift", + "ledger_value": 953.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001564", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 877.0, + "kind": "calibration_drift", + "ledger_value": 690.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001565", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 864.0, + "kind": "calibration_drift", + "ledger_value": 714.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001566", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1428.0, + "kind": "calibration_drift", + "ledger_value": 1225.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001567", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1170.0, + "kind": "calibration_drift", + "ledger_value": 1200.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001568", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 628.0, + "kind": "calibration_drift", + "ledger_value": 622.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001569", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 713.0, + "kind": "calibration_drift", + "ledger_value": 901.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001570", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1297.0, + "kind": "calibration_drift", + "ledger_value": 1495.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001571", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 626.0, + "kind": "calibration_drift", + "ledger_value": 636.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001572", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1112.0, + "kind": "calibration_drift", + "ledger_value": 1055.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001573", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1616.0, + "kind": "calibration_drift", + "ledger_value": 1955.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001574", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 680.0, + "kind": "calibration_drift", + "ledger_value": 696.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001575", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2479.0, + "kind": "calibration_drift", + "ledger_value": 2776.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001576", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1025.0, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001577", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 943.0, + "kind": "calibration_drift", + "ledger_value": 1046.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001578", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 744.0, + "kind": "calibration_drift", + "ledger_value": 739.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001579", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 492.0, + "kind": "calibration_drift", + "ledger_value": 403.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001580", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1183.0, + "kind": "calibration_drift", + "ledger_value": 966.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001581", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 427.0, + "kind": "calibration_drift", + "ledger_value": 401.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001582", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1042.0, + "kind": "calibration_drift", + "ledger_value": 925.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001583", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1221.0, + "kind": "calibration_drift", + "ledger_value": 1126.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001584", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1406.0, + "kind": "calibration_drift", + "ledger_value": 1310.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001585", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 692.0, + "kind": "calibration_drift", + "ledger_value": 536.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001586", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 615.0, + "kind": "calibration_drift", + "ledger_value": 627.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001587", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 757.0, + "kind": "calibration_drift", + "ledger_value": 838.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001588", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 522.0, + "kind": "calibration_drift", + "ledger_value": 425.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001589", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 815.0, + "kind": "calibration_drift", + "ledger_value": 951.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001590", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 661.0, + "kind": "calibration_drift", + "ledger_value": 849.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001591", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 692.0, + "kind": "calibration_drift", + "ledger_value": 793.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001592", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 477.0, + "kind": "calibration_drift", + "ledger_value": 541.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001593", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1721.0, + "kind": "calibration_drift", + "ledger_value": 2101.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001594", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 2290.0, + "kind": "calibration_drift", + "ledger_value": 2883.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001595", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1569.0, + "kind": "calibration_drift", + "ledger_value": 1621.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001596", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1074.0, + "kind": "calibration_drift", + "ledger_value": 1057.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001597", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1341.0, + "kind": "calibration_drift", + "ledger_value": 1309.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001598", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 879.0, + "kind": "calibration_drift", + "ledger_value": 711.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001599", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1065.0, + "kind": "calibration_drift", + "ledger_value": 1290.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001600", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1037.0, + "kind": "calibration_drift", + "ledger_value": 1112.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001601", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1779.0, + "kind": "calibration_drift", + "ledger_value": 1863.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001602", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 973.0, + "kind": "calibration_drift", + "ledger_value": 990.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001603", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 960.0, + "kind": "calibration_drift", + "ledger_value": 856.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001604", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 432.0, + "kind": "calibration_drift", + "ledger_value": 388.0, + "name": "dwp.uc.households_by_area_children_3plus@E14001605", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 454.0, + "kind": "calibration_drift", + "ledger_value": 589.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000021", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 140.0, + "kind": "calibration_drift", + "ledger_value": 146.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000027", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 760.0, + "kind": "calibration_drift", + "ledger_value": 894.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000045", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 977.0, + "kind": "calibration_drift", + "ledger_value": 869.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000048", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 221.0, + "kind": "calibration_drift", + "ledger_value": 258.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000051", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1006.0, + "kind": "calibration_drift", + "ledger_value": 843.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000060", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 671.0, + "kind": "calibration_drift", + "ledger_value": 465.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000061", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 748.0, + "kind": "calibration_drift", + "ledger_value": 799.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000062", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 984.0, + "kind": "calibration_drift", + "ledger_value": 1085.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000063", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 880.0, + "kind": "calibration_drift", + "ledger_value": 860.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000064", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 713.0, + "kind": "calibration_drift", + "ledger_value": 775.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000065", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 843.0, + "kind": "calibration_drift", + "ledger_value": 895.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000066", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 616.0, + "kind": "calibration_drift", + "ledger_value": 622.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000067", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 850.0, + "kind": "calibration_drift", + "ledger_value": 843.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000068", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 673.0, + "kind": "calibration_drift", + "ledger_value": 785.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000069", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1020.0, + "kind": "calibration_drift", + "ledger_value": 985.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000070", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 917.0, + "kind": "calibration_drift", + "ledger_value": 926.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000071", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 803.0, + "kind": "calibration_drift", + "ledger_value": 882.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000072", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 814.0, + "kind": "calibration_drift", + "ledger_value": 907.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000073", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 599.0, + "kind": "calibration_drift", + "ledger_value": 720.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000074", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1191.0, + "kind": "calibration_drift", + "ledger_value": 1045.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000075", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 700.0, + "kind": "calibration_drift", + "ledger_value": 723.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000076", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 680.0, + "kind": "calibration_drift", + "ledger_value": 701.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000077", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 920.0, + "kind": "calibration_drift", + "ledger_value": 683.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000078", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 905.0, + "kind": "calibration_drift", + "ledger_value": 691.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000079", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 464.0, + "kind": "calibration_drift", + "ledger_value": 499.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000080", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 743.0, + "kind": "calibration_drift", + "ledger_value": 700.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 466.0, + "kind": "calibration_drift", + "ledger_value": 521.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 855.0, + "kind": "calibration_drift", + "ledger_value": 897.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1410.0, + "kind": "calibration_drift", + "ledger_value": 1526.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1237.0, + "kind": "calibration_drift", + "ledger_value": 1033.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1652.0, + "kind": "calibration_drift", + "ledger_value": 1637.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 978.0, + "kind": "calibration_drift", + "ledger_value": 974.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1256.0, + "kind": "calibration_drift", + "ledger_value": 1497.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1082.0, + "kind": "calibration_drift", + "ledger_value": 1077.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1165.0, + "kind": "calibration_drift", + "ledger_value": 1328.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 403.0, + "kind": "calibration_drift", + "ledger_value": 476.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 937.0, + "kind": "calibration_drift", + "ledger_value": 909.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 909.0, + "kind": "calibration_drift", + "ledger_value": 745.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 741.0, + "kind": "calibration_drift", + "ledger_value": 743.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 893.0, + "kind": "calibration_drift", + "ledger_value": 1039.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 668.0, + "kind": "calibration_drift", + "ledger_value": 786.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 376.0, + "kind": "calibration_drift", + "ledger_value": 355.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 636.0, + "kind": "calibration_drift", + "ledger_value": 750.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 997.0, + "kind": "calibration_drift", + "ledger_value": 939.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 545.0, + "kind": "calibration_drift", + "ledger_value": 587.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 843.0, + "kind": "calibration_drift", + "ledger_value": 878.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 910.0, + "kind": "calibration_drift", + "ledger_value": 773.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 687.0, + "kind": "calibration_drift", + "ledger_value": 714.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 838.0, + "kind": "calibration_drift", + "ledger_value": 749.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 625.0, + "kind": "calibration_drift", + "ledger_value": 561.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1097.0, + "kind": "calibration_drift", + "ledger_value": 1065.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 935.0, + "kind": "calibration_drift", + "ledger_value": 865.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 714.0, + "kind": "calibration_drift", + "ledger_value": 781.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 824.0, + "kind": "calibration_drift", + "ledger_value": 791.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 968.0, + "kind": "calibration_drift", + "ledger_value": 935.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 355.0, + "kind": "calibration_drift", + "ledger_value": 412.0, + "name": "dwp.uc.households_by_area_children_3plus@S14000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1389.0, + "kind": "calibration_drift", + "ledger_value": 1368.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000081", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 994.0, + "kind": "calibration_drift", + "ledger_value": 1075.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000082", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 875.0, + "kind": "calibration_drift", + "ledger_value": 846.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000083", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1498.0, + "kind": "calibration_drift", + "ledger_value": 1277.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000084", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 782.0, + "kind": "calibration_drift", + "ledger_value": 699.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000085", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 887.0, + "kind": "calibration_drift", + "ledger_value": 772.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000086", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 846.0, + "kind": "calibration_drift", + "ledger_value": 848.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000087", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1152.0, + "kind": "calibration_drift", + "ledger_value": 1095.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000088", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1477.0, + "kind": "calibration_drift", + "ledger_value": 1701.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000089", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 667.0, + "kind": "calibration_drift", + "ledger_value": 631.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000090", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1127.0, + "kind": "calibration_drift", + "ledger_value": 1197.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000091", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1355.0, + "kind": "calibration_drift", + "ledger_value": 1544.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000092", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 785.0, + "kind": "calibration_drift", + "ledger_value": 794.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000093", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 829.0, + "kind": "calibration_drift", + "ledger_value": 907.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000094", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1345.0, + "kind": "calibration_drift", + "ledger_value": 1441.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000095", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 817.0, + "kind": "calibration_drift", + "ledger_value": 974.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000096", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 768.0, + "kind": "calibration_drift", + "ledger_value": 694.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000097", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1114.0, + "kind": "calibration_drift", + "ledger_value": 1130.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000098", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1403.0, + "kind": "calibration_drift", + "ledger_value": 1301.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000099", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1062.0, + "kind": "calibration_drift", + "ledger_value": 1135.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000100", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 677.0, + "kind": "calibration_drift", + "ledger_value": 596.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000101", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 948.0, + "kind": "calibration_drift", + "ledger_value": 1016.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000102", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1222.0, + "kind": "calibration_drift", + "ledger_value": 1042.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000103", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1637.0, + "kind": "calibration_drift", + "ledger_value": 1836.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000104", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1055.0, + "kind": "calibration_drift", + "ledger_value": 1053.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000105", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1128.0, + "kind": "calibration_drift", + "ledger_value": 971.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000106", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1443.0, + "kind": "calibration_drift", + "ledger_value": 1352.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000107", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1658.0, + "kind": "calibration_drift", + "ledger_value": 1346.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000108", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1233.0, + "kind": "calibration_drift", + "ledger_value": 1231.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000109", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1031.0, + "kind": "calibration_drift", + "ledger_value": 1004.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000110", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1079.0, + "kind": "calibration_drift", + "ledger_value": 1129.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000111", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 700.0, + "kind": "calibration_drift", + "ledger_value": 820.0, + "name": "dwp.uc.households_by_area_children_3plus@W07000112", + "period": 2025, + "reason": "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published class: on top of the uk-data#468 alignment correction and the national rescale, the incumbent's child splits are a COUNTRY-share imputation (GB proportions applied to each area's total), while ours are the published Stat-Xplore per-area child-count buckets. The per-area scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic variation in family size that the imputation flattens." + }, + { + "fixture_value": 1124489743.9410434, + "kind": "calibration_drift", + "ledger_value": 1060800000.0, + "name": "hmrc.employment_income.amount@E06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1688205177.9132316, + "kind": "calibration_drift", + "ledger_value": 1585000000.0, + "name": "hmrc.employment_income.amount@E06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1651686221.5385118, + "kind": "calibration_drift", + "ledger_value": 1462500000.0, + "name": "hmrc.employment_income.amount@E06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2766862406.135667, + "kind": "calibration_drift", + "ledger_value": 2656500000.0, + "name": "hmrc.employment_income.amount@E06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1517374892.0529642, + "kind": "calibration_drift", + "ledger_value": 1419000000.0, + "name": "hmrc.employment_income.amount@E06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1788203394.026559, + "kind": "calibration_drift", + "ledger_value": 1903000000.0, + "name": "hmrc.employment_income.amount@E06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3827137609.33727, + "kind": "calibration_drift", + "ledger_value": 3487500000.0, + "name": "hmrc.employment_income.amount@E06000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1777909460.014893, + "kind": "calibration_drift", + "ledger_value": 1724800000.0, + "name": "hmrc.employment_income.amount@E06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1403651430.5907488, + "kind": "calibration_drift", + "ledger_value": 1428000000.0, + "name": "hmrc.employment_income.amount@E06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3015264837.583846, + "kind": "calibration_drift", + "ledger_value": 2876400000.0, + "name": "hmrc.employment_income.amount@E06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4956774320.284146, + "kind": "calibration_drift", + "ledger_value": 4747200000.0, + "name": "hmrc.employment_income.amount@E06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2032684326.8036277, + "kind": "calibration_drift", + "ledger_value": 1841400000.0, + "name": "hmrc.employment_income.amount@E06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2402163029.7223554, + "kind": "calibration_drift", + "ledger_value": 2254000000.0, + "name": "hmrc.employment_income.amount@E06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3086342000.9977307, + "kind": "calibration_drift", + "ledger_value": 2825900000.0, + "name": "hmrc.employment_income.amount@E06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3401287363.021323, + "kind": "calibration_drift", + "ledger_value": 3343100000.0, + "name": "hmrc.employment_income.amount@E06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3706428978.367138, + "kind": "calibration_drift", + "ledger_value": 3793500000.0, + "name": "hmrc.employment_income.amount@E06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 663958743.75246, + "kind": "calibration_drift", + "ledger_value": 667200000.0, + "name": "hmrc.employment_income.amount@E06000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3259745770.3609147, + "kind": "calibration_drift", + "ledger_value": 3337200000.0, + "name": "hmrc.employment_income.amount@E06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2345056205.324303, + "kind": "calibration_drift", + "ledger_value": 2419800000.0, + "name": "hmrc.employment_income.amount@E06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2601546727.781649, + "kind": "calibration_drift", + "ledger_value": 2576000000.0, + "name": "hmrc.employment_income.amount@E06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2846640394.7260785, + "kind": "calibration_drift", + "ledger_value": 2861500000.0, + "name": "hmrc.employment_income.amount@E06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3299941131.7398014, + "kind": "calibration_drift", + "ledger_value": 3026600000.0, + "name": "hmrc.employment_income.amount@E06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7594840004.440515, + "kind": "calibration_drift", + "ledger_value": 7833000000.0, + "name": "hmrc.employment_income.amount@E06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3562191355.3703413, + "kind": "calibration_drift", + "ledger_value": 3411000000.0, + "name": "hmrc.employment_income.amount@E06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4985205185.6497, + "kind": "calibration_drift", + "ledger_value": 5035500000.0, + "name": "hmrc.employment_income.amount@E06000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3469791042.932291, + "kind": "calibration_drift", + "ledger_value": 3498900000.0, + "name": "hmrc.employment_income.amount@E06000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4107279670.6547527, + "kind": "calibration_drift", + "ledger_value": 3845400000.0, + "name": "hmrc.employment_income.amount@E06000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2877154556.26066, + "kind": "calibration_drift", + "ledger_value": 3009600000.0, + "name": "hmrc.employment_income.amount@E06000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2540640951.545958, + "kind": "calibration_drift", + "ledger_value": 2743400000.0, + "name": "hmrc.employment_income.amount@E06000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3035239971.4398174, + "kind": "calibration_drift", + "ledger_value": 2904900000.0, + "name": "hmrc.employment_income.amount@E06000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3010485511.0784297, + "kind": "calibration_drift", + "ledger_value": 2827500000.0, + "name": "hmrc.employment_income.amount@E06000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4403597913.990568, + "kind": "calibration_drift", + "ledger_value": 4186000000.0, + "name": "hmrc.employment_income.amount@E06000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2891492535.7769094, + "kind": "calibration_drift", + "ledger_value": 2691200000.0, + "name": "hmrc.employment_income.amount@E06000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3680081409.170612, + "kind": "calibration_drift", + "ledger_value": 3478000000.0, + "name": "hmrc.employment_income.amount@E06000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3422733058.8789606, + "kind": "calibration_drift", + "ledger_value": 3456000000.0, + "name": "hmrc.employment_income.amount@E06000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2326061446.13611, + "kind": "calibration_drift", + "ledger_value": 2522800000.0, + "name": "hmrc.employment_income.amount@E06000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4812414150.4538765, + "kind": "calibration_drift", + "ledger_value": 4134000000.0, + "name": "hmrc.employment_income.amount@E06000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4696607392.822634, + "kind": "calibration_drift", + "ledger_value": 4695600000.0, + "name": "hmrc.employment_income.amount@E06000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5395737077.78162, + "kind": "calibration_drift", + "ledger_value": 5332800000.0, + "name": "hmrc.employment_income.amount@E06000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4849913481.496375, + "kind": "calibration_drift", + "ledger_value": 4703500000.0, + "name": "hmrc.employment_income.amount@E06000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2756813565.790945, + "kind": "calibration_drift", + "ledger_value": 2786400000.0, + "name": "hmrc.employment_income.amount@E06000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3407659798.3618784, + "kind": "calibration_drift", + "ledger_value": 3302600000.0, + "name": "hmrc.employment_income.amount@E06000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1538575494.2436574, + "kind": "calibration_drift", + "ledger_value": 1357000000.0, + "name": "hmrc.employment_income.amount@E06000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6579539489.123215, + "kind": "calibration_drift", + "ledger_value": 6048000000.0, + "name": "hmrc.employment_income.amount@E06000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8398011951.017411, + "kind": "calibration_drift", + "ledger_value": 7609500000.0, + "name": "hmrc.employment_income.amount@E06000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5753451284.687015, + "kind": "calibration_drift", + "ledger_value": 5544000000.0, + "name": "hmrc.employment_income.amount@E06000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4733003802.363882, + "kind": "calibration_drift", + "ledger_value": 4368000000.0, + "name": "hmrc.employment_income.amount@E06000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6256138395.59004, + "kind": "calibration_drift", + "ledger_value": 6109000000.0, + "name": "hmrc.employment_income.amount@E06000052", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8686609743.844477, + "kind": "calibration_drift", + "ledger_value": 8196200000.0, + "name": "hmrc.employment_income.amount@E06000054", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3300921506.407579, + "kind": "calibration_drift", + "ledger_value": 3017800000.0, + "name": "hmrc.employment_income.amount@E06000055", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5975628693.7721405, + "kind": "calibration_drift", + "ledger_value": 5602800000.0, + "name": "hmrc.employment_income.amount@E06000056", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4288894077.860575, + "kind": "calibration_drift", + "ledger_value": 4253200000.0, + "name": "hmrc.employment_income.amount@E06000057", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5671712546.761047, + "kind": "calibration_drift", + "ledger_value": 5456000000.0, + "name": "hmrc.employment_income.amount@E06000058", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4884839329.035956, + "kind": "calibration_drift", + "ledger_value": 4799600000.0, + "name": "hmrc.employment_income.amount@E06000059", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13746813591.579172, + "kind": "calibration_drift", + "ledger_value": 12948000000.0, + "name": "hmrc.employment_income.amount@E06000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5775019527.378124, + "kind": "calibration_drift", + "ledger_value": 5487000000.0, + "name": "hmrc.employment_income.amount@E06000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7505013175.505382, + "kind": "calibration_drift", + "ledger_value": 7181600000.0, + "name": "hmrc.employment_income.amount@E06000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7505013175.505382, + "kind": "calibration_drift", + "ledger_value": 3897600000.0, + "name": "hmrc.employment_income.amount@E06000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7505013175.505382, + "kind": "calibration_drift", + "ledger_value": 3125500000.0, + "name": "hmrc.employment_income.amount@E06000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7505013175.505382, + "kind": "calibration_drift", + "ledger_value": 9169400000.0, + "name": "hmrc.employment_income.amount@E06000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7505013175.505382, + "kind": "calibration_drift", + "ledger_value": 7226100000.0, + "name": "hmrc.employment_income.amount@E06000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3255334084.355915, + "kind": "calibration_drift", + "ledger_value": 3410000000.0, + "name": "hmrc.employment_income.amount@E07000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1760262715.994894, + "kind": "calibration_drift", + "ledger_value": 1668000000.0, + "name": "hmrc.employment_income.amount@E07000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1475463875.0054667, + "kind": "calibration_drift", + "ledger_value": 1303800000.0, + "name": "hmrc.employment_income.amount@E07000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3247000899.6798043, + "kind": "calibration_drift", + "ledger_value": 3263600000.0, + "name": "hmrc.employment_income.amount@E07000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4124068586.840446, + "kind": "calibration_drift", + "ledger_value": 4165700000.0, + "name": "hmrc.employment_income.amount@E07000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1927539143.6844673, + "kind": "calibration_drift", + "ledger_value": 1944000000.0, + "name": "hmrc.employment_income.amount@E07000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 967629797.0966084, + "kind": "calibration_drift", + "ledger_value": 992000000.0, + "name": "hmrc.employment_income.amount@E07000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1364804084.3800566, + "kind": "calibration_drift", + "ledger_value": 1310400000.0, + "name": "hmrc.employment_income.amount@E07000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1054638048.8618809, + "kind": "calibration_drift", + "ledger_value": 1072400000.0, + "name": "hmrc.employment_income.amount@E07000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1606834080.4876812, + "kind": "calibration_drift", + "ledger_value": 1471500000.0, + "name": "hmrc.employment_income.amount@E07000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1333309548.1776974, + "kind": "calibration_drift", + "ledger_value": 1352800000.0, + "name": "hmrc.employment_income.amount@E07000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1476199156.0063, + "kind": "calibration_drift", + "ledger_value": 1345500000.0, + "name": "hmrc.employment_income.amount@E07000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1869451944.6186376, + "kind": "calibration_drift", + "ledger_value": 1948200000.0, + "name": "hmrc.employment_income.amount@E07000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1848864076.5953054, + "kind": "calibration_drift", + "ledger_value": 1858200000.0, + "name": "hmrc.employment_income.amount@E07000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1832075160.409612, + "kind": "calibration_drift", + "ledger_value": 1736800000.0, + "name": "hmrc.employment_income.amount@E07000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1029393401.1666046, + "kind": "calibration_drift", + "ledger_value": 1056000000.0, + "name": "hmrc.employment_income.amount@E07000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1054883142.5288254, + "kind": "calibration_drift", + "ledger_value": 1178000000.0, + "name": "hmrc.employment_income.amount@E07000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1165420386.320763, + "kind": "calibration_drift", + "ledger_value": 1020800000.0, + "name": "hmrc.employment_income.amount@E07000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1753400093.32045, + "kind": "calibration_drift", + "ledger_value": 1637700000.0, + "name": "hmrc.employment_income.amount@E07000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 705134479.7991242, + "kind": "calibration_drift", + "ledger_value": 635800000.0, + "name": "hmrc.employment_income.amount@E07000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 580381803.3244095, + "kind": "calibration_drift", + "ledger_value": 586800000.0, + "name": "hmrc.employment_income.amount@E07000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1067505466.3764635, + "kind": "calibration_drift", + "ledger_value": 1134000000.0, + "name": "hmrc.employment_income.amount@E07000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 967629797.0966084, + "kind": "calibration_drift", + "ledger_value": 1036200000.0, + "name": "hmrc.employment_income.amount@E07000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1504384927.7049093, + "kind": "calibration_drift", + "ledger_value": 1440200000.0, + "name": "hmrc.employment_income.amount@E07000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1253654106.4207578, + "kind": "calibration_drift", + "ledger_value": 1020800000.0, + "name": "hmrc.employment_income.amount@E07000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2621889502.1380367, + "kind": "calibration_drift", + "ledger_value": 2601900000.0, + "name": "hmrc.employment_income.amount@E07000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3204722242.1318903, + "kind": "calibration_drift", + "ledger_value": 3130200000.0, + "name": "hmrc.employment_income.amount@E07000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2825684886.20233, + "kind": "calibration_drift", + "ledger_value": 2652000000.0, + "name": "hmrc.employment_income.amount@E07000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1979499001.0766864, + "kind": "calibration_drift", + "ledger_value": 1846400000.0, + "name": "hmrc.employment_income.amount@E07000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1352917041.533252, + "kind": "calibration_drift", + "ledger_value": 1380400000.0, + "name": "hmrc.employment_income.amount@E07000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3854465553.2015734, + "kind": "calibration_drift", + "ledger_value": 3588200000.0, + "name": "hmrc.employment_income.amount@E07000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3346263834.7922983, + "kind": "calibration_drift", + "ledger_value": 3112000000.0, + "name": "hmrc.employment_income.amount@E07000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3077886269.488148, + "kind": "calibration_drift", + "ledger_value": 2958000000.0, + "name": "hmrc.employment_income.amount@E07000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1363946256.5457513, + "kind": "calibration_drift", + "ledger_value": 1476000000.0, + "name": "hmrc.employment_income.amount@E07000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1123509369.2732656, + "kind": "calibration_drift", + "ledger_value": 1002500000.0, + "name": "hmrc.employment_income.amount@E07000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1715655668.611008, + "kind": "calibration_drift", + "ledger_value": 1524600000.0, + "name": "hmrc.employment_income.amount@E07000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1585265837.7965713, + "kind": "calibration_drift", + "ledger_value": 1626900000.0, + "name": "hmrc.employment_income.amount@E07000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2281822039.2526402, + "kind": "calibration_drift", + "ledger_value": 2088000000.0, + "name": "hmrc.employment_income.amount@E07000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2062463207.3373759, + "kind": "calibration_drift", + "ledger_value": 2199500000.0, + "name": "hmrc.employment_income.amount@E07000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1716636043.2787855, + "kind": "calibration_drift", + "ledger_value": 1679800000.0, + "name": "hmrc.employment_income.amount@E07000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1113092888.4281275, + "kind": "calibration_drift", + "ledger_value": 1010600000.0, + "name": "hmrc.employment_income.amount@E07000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1848006248.761, + "kind": "calibration_drift", + "ledger_value": 1764000000.0, + "name": "hmrc.employment_income.amount@E07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1968102145.5637703, + "kind": "calibration_drift", + "ledger_value": 1795400000.0, + "name": "hmrc.employment_income.amount@E07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1610633032.3253198, + "kind": "calibration_drift", + "ledger_value": 1599000000.0, + "name": "hmrc.employment_income.amount@E07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4162915933.0511384, + "kind": "calibration_drift", + "ledger_value": 4022800000.0, + "name": "hmrc.employment_income.amount@E07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2505470010.3394327, + "kind": "calibration_drift", + "ledger_value": 2295000000.0, + "name": "hmrc.employment_income.amount@E07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2544562450.217069, + "kind": "calibration_drift", + "ledger_value": 2374600000.0, + "name": "hmrc.employment_income.amount@E07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1887221235.4721086, + "kind": "calibration_drift", + "ledger_value": 1940400000.0, + "name": "hmrc.employment_income.amount@E07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1227429084.057704, + "kind": "calibration_drift", + "ledger_value": 995100000.0, + "name": "hmrc.employment_income.amount@E07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2637820590.4894247, + "kind": "calibration_drift", + "ledger_value": 2430000000.0, + "name": "hmrc.employment_income.amount@E07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1631588540.8490684, + "kind": "calibration_drift", + "ledger_value": 1570500000.0, + "name": "hmrc.employment_income.amount@E07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2668702392.5244226, + "kind": "calibration_drift", + "ledger_value": 2457600000.0, + "name": "hmrc.employment_income.amount@E07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1775703617.012393, + "kind": "calibration_drift", + "ledger_value": 1833600000.0, + "name": "hmrc.employment_income.amount@E07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2572012940.914845, + "kind": "calibration_drift", + "ledger_value": 2556000000.0, + "name": "hmrc.employment_income.amount@E07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3110483727.191757, + "kind": "calibration_drift", + "ledger_value": 2882000000.0, + "name": "hmrc.employment_income.amount@E07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1690411020.9157317, + "kind": "calibration_drift", + "ledger_value": 1611300000.0, + "name": "hmrc.employment_income.amount@E07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3555818920.029786, + "kind": "calibration_drift", + "ledger_value": 3381000000.0, + "name": "hmrc.employment_income.amount@E07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2459514947.787352, + "kind": "calibration_drift", + "ledger_value": 2308500000.0, + "name": "hmrc.employment_income.amount@E07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3162933771.9178653, + "kind": "calibration_drift", + "ledger_value": 2849700000.0, + "name": "hmrc.employment_income.amount@E07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2262582186.397503, + "kind": "calibration_drift", + "ledger_value": 2428800000.0, + "name": "hmrc.employment_income.amount@E07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2091996994.2041795, + "kind": "calibration_drift", + "ledger_value": 2107000000.0, + "name": "hmrc.employment_income.amount@E07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2181211088.971952, + "kind": "calibration_drift", + "ledger_value": 2217300000.0, + "name": "hmrc.employment_income.amount@E07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2199960754.493201, + "kind": "calibration_drift", + "ledger_value": 2064400000.0, + "name": "hmrc.employment_income.amount@E07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2128638497.4123719, + "kind": "calibration_drift", + "ledger_value": 2106300000.0, + "name": "hmrc.employment_income.amount@E07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1448258477.9746351, + "kind": "calibration_drift", + "ledger_value": 1427600000.0, + "name": "hmrc.employment_income.amount@E07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1763571480.4986439, + "kind": "calibration_drift", + "ledger_value": 1658800000.0, + "name": "hmrc.employment_income.amount@E07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3282294387.7198024, + "kind": "calibration_drift", + "ledger_value": 2955000000.0, + "name": "hmrc.employment_income.amount@E07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3620891288.603532, + "kind": "calibration_drift", + "ledger_value": 3307200000.0, + "name": "hmrc.employment_income.amount@E07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1454018179.147829, + "kind": "calibration_drift", + "ledger_value": 1369000000.0, + "name": "hmrc.employment_income.amount@E07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2209764501.170978, + "kind": "calibration_drift", + "ledger_value": 2082700000.0, + "name": "hmrc.employment_income.amount@E07000113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1646049067.1987898, + "kind": "calibration_drift", + "ledger_value": 1513400000.0, + "name": "hmrc.employment_income.amount@E07000114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2873968338.5903826, + "kind": "calibration_drift", + "ledger_value": 2793000000.0, + "name": "hmrc.employment_income.amount@E07000115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2869311558.9184384, + "kind": "calibration_drift", + "ledger_value": 2523900000.0, + "name": "hmrc.employment_income.amount@E07000116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 996305756.1291066, + "kind": "calibration_drift", + "ledger_value": 940800000.0, + "name": "hmrc.employment_income.amount@E07000117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1877662582.4612758, + "kind": "calibration_drift", + "ledger_value": 1808100000.0, + "name": "hmrc.employment_income.amount@E07000118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1310638383.9853377, + "kind": "calibration_drift", + "ledger_value": 1196800000.0, + "name": "hmrc.employment_income.amount@E07000119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 876209859.3263361, + "kind": "calibration_drift", + "ledger_value": 900000000.0, + "name": "hmrc.employment_income.amount@E07000120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1648867644.3686507, + "kind": "calibration_drift", + "ledger_value": 1809500000.0, + "name": "hmrc.employment_income.amount@E07000121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 948512491.074943, + "kind": "calibration_drift", + "ledger_value": 879000000.0, + "name": "hmrc.employment_income.amount@E07000122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2075453171.6854305, + "kind": "calibration_drift", + "ledger_value": 2058400000.0, + "name": "hmrc.employment_income.amount@E07000123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1023266059.492994, + "kind": "calibration_drift", + "ledger_value": 1099100000.0, + "name": "hmrc.employment_income.amount@E07000124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 965056313.593692, + "kind": "calibration_drift", + "ledger_value": 1003400000.0, + "name": "hmrc.employment_income.amount@E07000125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1748130579.4811447, + "kind": "calibration_drift", + "ledger_value": 1573200000.0, + "name": "hmrc.employment_income.amount@E07000126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1588206961.7999043, + "kind": "calibration_drift", + "ledger_value": 1611000000.0, + "name": "hmrc.employment_income.amount@E07000127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1387720342.2393608, + "kind": "calibration_drift", + "ledger_value": 1324000000.0, + "name": "hmrc.employment_income.amount@E07000128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1667617309.8898995, + "kind": "calibration_drift", + "ledger_value": 1651500000.0, + "name": "hmrc.employment_income.amount@E07000129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2658285911.6792846, + "kind": "calibration_drift", + "ledger_value": 2640000000.0, + "name": "hmrc.employment_income.amount@E07000130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1936239968.8609946, + "kind": "calibration_drift", + "ledger_value": 1822800000.0, + "name": "hmrc.employment_income.amount@E07000131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1883422283.63447, + "kind": "calibration_drift", + "ledger_value": 1701400000.0, + "name": "hmrc.employment_income.amount@E07000132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 818367753.9274508, + "kind": "calibration_drift", + "ledger_value": 811800000.0, + "name": "hmrc.employment_income.amount@E07000133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1838692689.4171116, + "kind": "calibration_drift", + "ledger_value": 1790700000.0, + "name": "hmrc.employment_income.amount@E07000134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 833318467.611061, + "kind": "calibration_drift", + "ledger_value": 739200000.0, + "name": "hmrc.employment_income.amount@E07000135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 881847013.6660581, + "kind": "calibration_drift", + "ledger_value": 812000000.0, + "name": "hmrc.employment_income.amount@E07000136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1351569026.3650575, + "kind": "calibration_drift", + "ledger_value": 1393800000.0, + "name": "hmrc.employment_income.amount@E07000137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1248507139.4149249, + "kind": "calibration_drift", + "ledger_value": 1315800000.0, + "name": "hmrc.employment_income.amount@E07000138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1747027657.9798949, + "kind": "calibration_drift", + "ledger_value": 1744200000.0, + "name": "hmrc.employment_income.amount@E07000139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1366887380.5490844, + "kind": "calibration_drift", + "ledger_value": 1200800000.0, + "name": "hmrc.employment_income.amount@E07000140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2325326165.135277, + "kind": "calibration_drift", + "ledger_value": 2194800000.0, + "name": "hmrc.employment_income.amount@E07000141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1398504463.5849159, + "kind": "calibration_drift", + "ledger_value": 1284400000.0, + "name": "hmrc.employment_income.amount@E07000142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1825947818.7360013, + "kind": "calibration_drift", + "ledger_value": 1711800000.0, + "name": "hmrc.employment_income.amount@E07000143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1785507363.6901703, + "kind": "calibration_drift", + "ledger_value": 1796700000.0, + "name": "hmrc.employment_income.amount@E07000144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1095936331.7420173, + "kind": "calibration_drift", + "ledger_value": 1106300000.0, + "name": "hmrc.employment_income.amount@E07000145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1938935999.1973832, + "kind": "calibration_drift", + "ledger_value": 1776600000.0, + "name": "hmrc.employment_income.amount@E07000146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1133313115.951043, + "kind": "calibration_drift", + "ledger_value": 1043800000.0, + "name": "hmrc.employment_income.amount@E07000147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1981827390.9126585, + "kind": "calibration_drift", + "ledger_value": 1760400000.0, + "name": "hmrc.employment_income.amount@E07000148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2198490192.491534, + "kind": "calibration_drift", + "ledger_value": 2160300000.0, + "name": "hmrc.employment_income.amount@E07000149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1555119316.7624063, + "kind": "calibration_drift", + "ledger_value": 1738400000.0, + "name": "hmrc.employment_income.amount@E07000170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1682322929.9065654, + "kind": "calibration_drift", + "ledger_value": 1574400000.0, + "name": "hmrc.employment_income.amount@E07000171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1770556650.00656, + "kind": "calibration_drift", + "ledger_value": 1579500000.0, + "name": "hmrc.employment_income.amount@E07000172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1665411466.8873997, + "kind": "calibration_drift", + "ledger_value": 1646400000.0, + "name": "hmrc.employment_income.amount@E07000173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1362720788.211029, + "kind": "calibration_drift", + "ledger_value": 1297800000.0, + "name": "hmrc.employment_income.amount@E07000174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1726072149.456146, + "kind": "calibration_drift", + "ledger_value": 1705200000.0, + "name": "hmrc.employment_income.amount@E07000175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2541131138.879847, + "kind": "calibration_drift", + "ledger_value": 2478600000.0, + "name": "hmrc.employment_income.amount@E07000176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3060974806.468982, + "kind": "calibration_drift", + "ledger_value": 3127800000.0, + "name": "hmrc.employment_income.amount@E07000177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2856934328.737745, + "kind": "calibration_drift", + "ledger_value": 2808000000.0, + "name": "hmrc.employment_income.amount@E07000178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3680203956.004084, + "kind": "calibration_drift", + "ledger_value": 3597900000.0, + "name": "hmrc.employment_income.amount@E07000179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3120287473.8695345, + "kind": "calibration_drift", + "ledger_value": 3055200000.0, + "name": "hmrc.employment_income.amount@E07000180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2401917936.055411, + "kind": "calibration_drift", + "ledger_value": 2162400000.0, + "name": "hmrc.employment_income.amount@E07000181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1274977255.4449232, + "kind": "calibration_drift", + "ledger_value": 1371700000.0, + "name": "hmrc.employment_income.amount@E07000192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1917612850.1732178, + "kind": "calibration_drift", + "ledger_value": 1820700000.0, + "name": "hmrc.employment_income.amount@E07000193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1818840102.3946128, + "kind": "calibration_drift", + "ledger_value": 1789200000.0, + "name": "hmrc.employment_income.amount@E07000194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1952906338.2132158, + "kind": "calibration_drift", + "ledger_value": 1870900000.0, + "name": "hmrc.employment_income.amount@E07000195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1854868871.4354439, + "kind": "calibration_drift", + "ledger_value": 1674400000.0, + "name": "hmrc.employment_income.amount@E07000196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2203637159.4973674, + "kind": "calibration_drift", + "ledger_value": 1952500000.0, + "name": "hmrc.employment_income.amount@E07000197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1323995988.8338091, + "kind": "calibration_drift", + "ledger_value": 1202500000.0, + "name": "hmrc.employment_income.amount@E07000198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1154881358.6421528, + "kind": "calibration_drift", + "ledger_value": 1125400000.0, + "name": "hmrc.employment_income.amount@E07000199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1501198710.0346317, + "kind": "calibration_drift", + "ledger_value": 1396800000.0, + "name": "hmrc.employment_income.amount@E07000200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2022022752.291545, + "kind": "calibration_drift", + "ledger_value": 1754300000.0, + "name": "hmrc.employment_income.amount@E07000202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1559776096.4343505, + "kind": "calibration_drift", + "ledger_value": 1702800000.0, + "name": "hmrc.employment_income.amount@E07000203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6148909916.301852, + "kind": "calibration_drift", + "ledger_value": 5710200000.0, + "name": "hmrc.employment_income.amount@E07000207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2074595343.851125, + "kind": "calibration_drift", + "ledger_value": 2002600000.0, + "name": "hmrc.employment_income.amount@E07000208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3966105718.494761, + "kind": "calibration_drift", + "ledger_value": 3828000000.0, + "name": "hmrc.employment_income.amount@E07000209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2270792824.240141, + "kind": "calibration_drift", + "ledger_value": 2184000000.0, + "name": "hmrc.employment_income.amount@E07000210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3992085647.190871, + "kind": "calibration_drift", + "ledger_value": 3638000000.0, + "name": "hmrc.employment_income.amount@E07000211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2280719117.7513905, + "kind": "calibration_drift", + "ledger_value": 1976400000.0, + "name": "hmrc.employment_income.amount@E07000212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2024841329.461406, + "kind": "calibration_drift", + "ledger_value": 2016300000.0, + "name": "hmrc.employment_income.amount@E07000213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2213195812.5082, + "kind": "calibration_drift", + "ledger_value": 2192400000.0, + "name": "hmrc.employment_income.amount@E07000214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2274469229.2443075, + "kind": "calibration_drift", + "ledger_value": 2219200000.0, + "name": "hmrc.employment_income.amount@E07000215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3773584643.109912, + "kind": "calibration_drift", + "ledger_value": 3393500000.0, + "name": "hmrc.employment_income.amount@E07000216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2829728931.706913, + "kind": "calibration_drift", + "ledger_value": 2663400000.0, + "name": "hmrc.employment_income.amount@E07000217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 949983053.0766095, + "kind": "calibration_drift", + "ledger_value": 1050000000.0, + "name": "hmrc.employment_income.amount@E07000218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1893716217.646136, + "kind": "calibration_drift", + "ledger_value": 1988600000.0, + "name": "hmrc.employment_income.amount@E07000219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2212460531.5073667, + "kind": "calibration_drift", + "ledger_value": 2211000000.0, + "name": "hmrc.employment_income.amount@E07000220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2805832299.179831, + "kind": "calibration_drift", + "ledger_value": 2625500000.0, + "name": "hmrc.employment_income.amount@E07000221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3231314904.995361, + "kind": "calibration_drift", + "ledger_value": 3128900000.0, + "name": "hmrc.employment_income.amount@E07000222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 887851808.5061965, + "kind": "calibration_drift", + "ledger_value": 864000000.0, + "name": "hmrc.employment_income.amount@E07000223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2024963876.294878, + "kind": "calibration_drift", + "ledger_value": 2182400000.0, + "name": "hmrc.employment_income.amount@E07000224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2260498890.228475, + "kind": "calibration_drift", + "ledger_value": 1998000000.0, + "name": "hmrc.employment_income.amount@E07000225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1841878907.0873892, + "kind": "calibration_drift", + "ledger_value": 1938600000.0, + "name": "hmrc.employment_income.amount@E07000226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2889164145.940937, + "kind": "calibration_drift", + "ledger_value": 2841600000.0, + "name": "hmrc.employment_income.amount@E07000227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3338175743.7831326, + "kind": "calibration_drift", + "ledger_value": 3264000000.0, + "name": "hmrc.employment_income.amount@E07000228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1786365191.5244758, + "kind": "calibration_drift", + "ledger_value": 1616800000.0, + "name": "hmrc.employment_income.amount@E07000229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1911730602.1665516, + "kind": "calibration_drift", + "ledger_value": 1777600000.0, + "name": "hmrc.employment_income.amount@E07000234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1118362402.2674327, + "kind": "calibration_drift", + "ledger_value": 1215200000.0, + "name": "hmrc.employment_income.amount@E07000235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1443356604.6357465, + "kind": "calibration_drift", + "ledger_value": 1279200000.0, + "name": "hmrc.employment_income.amount@E07000236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1495071368.361021, + "kind": "calibration_drift", + "ledger_value": 1479200000.0, + "name": "hmrc.employment_income.amount@E07000237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2065649425.0076535, + "kind": "calibration_drift", + "ledger_value": 2109000000.0, + "name": "hmrc.employment_income.amount@E07000238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1310270743.4849212, + "kind": "calibration_drift", + "ledger_value": 1184400000.0, + "name": "hmrc.employment_income.amount@E07000239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5129320261.8130245, + "kind": "calibration_drift", + "ledger_value": 4739600000.0, + "name": "hmrc.employment_income.amount@E07000240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2459514947.787352, + "kind": "calibration_drift", + "ledger_value": 2351100000.0, + "name": "hmrc.employment_income.amount@E07000241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3819539705.661992, + "kind": "calibration_drift", + "ledger_value": 3594900000.0, + "name": "hmrc.employment_income.amount@E07000242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1539678415.7449074, + "kind": "calibration_drift", + "ledger_value": 1392300000.0, + "name": "hmrc.employment_income.amount@E07000243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3204477148.464946, + "kind": "calibration_drift", + "ledger_value": 3018600000.0, + "name": "hmrc.employment_income.amount@E07000244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2604732945.4519267, + "kind": "calibration_drift", + "ledger_value": 2620700000.0, + "name": "hmrc.employment_income.amount@E07000245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3458761827.9197917, + "kind": "calibration_drift", + "ledger_value": 3411700000.0, + "name": "hmrc.employment_income.amount@E08000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2762205626.4637227, + "kind": "calibration_drift", + "ledger_value": 2686000000.0, + "name": "hmrc.employment_income.amount@E08000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6631254252.84849, + "kind": "calibration_drift", + "ledger_value": 6868000000.0, + "name": "hmrc.employment_income.amount@E08000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2637820590.4894247, + "kind": "calibration_drift", + "ledger_value": 2600100000.0, + "name": "hmrc.employment_income.amount@E08000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2523239301.1929035, + "kind": "calibration_drift", + "ledger_value": 2558400000.0, + "name": "hmrc.employment_income.amount@E08000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4143798627.029473, + "kind": "calibration_drift", + "ledger_value": 4243500000.0, + "name": "hmrc.employment_income.amount@E08000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5018047737.020253, + "kind": "calibration_drift", + "ledger_value": 4953600000.0, + "name": "hmrc.employment_income.amount@E08000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2999946483.3998194, + "kind": "calibration_drift", + "ledger_value": 3163500000.0, + "name": "hmrc.employment_income.amount@E08000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5016332081.351643, + "kind": "calibration_drift", + "ledger_value": 4484400000.0, + "name": "hmrc.employment_income.amount@E08000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4869030787.518041, + "kind": "calibration_drift", + "ledger_value": 4512600000.0, + "name": "hmrc.employment_income.amount@E08000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2002782899.436407, + "kind": "calibration_drift", + "ledger_value": 1927600000.0, + "name": "hmrc.employment_income.amount@E08000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5989108845.454083, + "kind": "calibration_drift", + "ledger_value": 5936800000.0, + "name": "hmrc.employment_income.amount@E08000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2508288587.5092936, + "kind": "calibration_drift", + "ledger_value": 2564100000.0, + "name": "hmrc.employment_income.amount@E08000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3958262721.1525393, + "kind": "calibration_drift", + "ledger_value": 3678200000.0, + "name": "hmrc.employment_income.amount@E08000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4378353266.295292, + "kind": "calibration_drift", + "ledger_value": 4306600000.0, + "name": "hmrc.employment_income.amount@E08000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3239280449.171055, + "kind": "calibration_drift", + "ledger_value": 3038000000.0, + "name": "hmrc.employment_income.amount@E08000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3936204291.1275406, + "kind": "calibration_drift", + "ledger_value": 3808000000.0, + "name": "hmrc.employment_income.amount@E08000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3444301301.5700703, + "kind": "calibration_drift", + "ledger_value": 3292600000.0, + "name": "hmrc.employment_income.amount@E08000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6869362750.285003, + "kind": "calibration_drift", + "ledger_value": 6847800000.0, + "name": "hmrc.employment_income.amount@E08000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3749565463.7493577, + "kind": "calibration_drift", + "ledger_value": 3680800000.0, + "name": "hmrc.employment_income.amount@E08000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3088180203.499814, + "kind": "calibration_drift", + "ledger_value": 3159500000.0, + "name": "hmrc.employment_income.amount@E08000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1868716663.617804, + "kind": "calibration_drift", + "ledger_value": 1754500000.0, + "name": "hmrc.employment_income.amount@E08000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3304597911.4117455, + "kind": "calibration_drift", + "ledger_value": 3275400000.0, + "name": "hmrc.employment_income.amount@E08000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12409092357.396475, + "kind": "calibration_drift", + "ledger_value": 12882000000.0, + "name": "hmrc.employment_income.amount@E08000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4367078957.615849, + "kind": "calibration_drift", + "ledger_value": 4587000000.0, + "name": "hmrc.employment_income.amount@E08000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4051398314.5914226, + "kind": "calibration_drift", + "ledger_value": 3708900000.0, + "name": "hmrc.employment_income.amount@E08000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3727139393.2239423, + "kind": "calibration_drift", + "ledger_value": 3952000000.0, + "name": "hmrc.employment_income.amount@E08000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3973458528.503094, + "kind": "calibration_drift", + "ledger_value": 3782500000.0, + "name": "hmrc.employment_income.amount@E08000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3187443138.612308, + "kind": "calibration_drift", + "ledger_value": 3171400000.0, + "name": "hmrc.employment_income.amount@E08000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3259500676.69397, + "kind": "calibration_drift", + "ledger_value": 3242100000.0, + "name": "hmrc.employment_income.amount@E08000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5670119437.925909, + "kind": "calibration_drift", + "ledger_value": 5959200000.0, + "name": "hmrc.employment_income.amount@E08000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2664658347.01984, + "kind": "calibration_drift", + "ledger_value": 2712000000.0, + "name": "hmrc.employment_income.amount@E08000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5569753581.312164, + "kind": "calibration_drift", + "ledger_value": 5627900000.0, + "name": "hmrc.employment_income.amount@E08000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12079196281.689272, + "kind": "calibration_drift", + "ledger_value": 11682000000.0, + "name": "hmrc.employment_income.amount@E08000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5161304985.349273, + "kind": "calibration_drift", + "ledger_value": 4694400000.0, + "name": "hmrc.employment_income.amount@E08000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2757303753.124834, + "kind": "calibration_drift", + "ledger_value": 2479400000.0, + "name": "hmrc.employment_income.amount@E08000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1046549957.8527148, + "kind": "calibration_drift", + "ledger_value": 1197000000.0, + "name": "hmrc.employment_income.amount@E09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2773234841.476222, + "kind": "calibration_drift", + "ledger_value": 2958400000.0, + "name": "hmrc.employment_income.amount@E09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9070426426.279453, + "kind": "calibration_drift", + "ledger_value": 8954400000.0, + "name": "hmrc.employment_income.amount@E09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4796483062.102489, + "kind": "calibration_drift", + "ledger_value": 4708800000.0, + "name": "hmrc.employment_income.amount@E09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5986657908.784639, + "kind": "calibration_drift", + "ledger_value": 6234200000.0, + "name": "hmrc.employment_income.amount@E09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8541024105.679486, + "kind": "calibration_drift", + "ledger_value": 8249000000.0, + "name": "hmrc.employment_income.amount@E09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8998368888.197792, + "kind": "calibration_drift", + "ledger_value": 8553600000.0, + "name": "hmrc.employment_income.amount@E09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7436632042.427886, + "kind": "calibration_drift", + "ledger_value": 7462400000.0, + "name": "hmrc.employment_income.amount@E09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7854026557.234249, + "kind": "calibration_drift", + "ledger_value": 7610500000.0, + "name": "hmrc.employment_income.amount@E09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5262896310.297739, + "kind": "calibration_drift", + "ledger_value": 5026400000.0, + "name": "hmrc.employment_income.amount@E09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6536157910.074051, + "kind": "calibration_drift", + "ledger_value": 7004000000.0, + "name": "hmrc.employment_income.amount@E09000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6346455411.859062, + "kind": "calibration_drift", + "ledger_value": 5983200000.0, + "name": "hmrc.employment_income.amount@E09000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7535159696.539546, + "kind": "calibration_drift", + "ledger_value": 7253500000.0, + "name": "hmrc.employment_income.amount@E09000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6563608400.771827, + "kind": "calibration_drift", + "ledger_value": 5801600000.0, + "name": "hmrc.employment_income.amount@E09000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4934838437.09262, + "kind": "calibration_drift", + "ledger_value": 4972800000.0, + "name": "hmrc.employment_income.amount@E09000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4840722468.985958, + "kind": "calibration_drift", + "ledger_value": 4718700000.0, + "name": "hmrc.employment_income.amount@E09000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5594875682.173968, + "kind": "calibration_drift", + "ledger_value": 5989200000.0, + "name": "hmrc.employment_income.amount@E09000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6017662257.65311, + "kind": "calibration_drift", + "ledger_value": 5766300000.0, + "name": "hmrc.employment_income.amount@E09000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7835031798.046056, + "kind": "calibration_drift", + "ledger_value": 7292400000.0, + "name": "hmrc.employment_income.amount@E09000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10042713003.048006, + "kind": "calibration_drift", + "ledger_value": 8909000000.0, + "name": "hmrc.employment_income.amount@E09000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269531678.171965, + "kind": "calibration_drift", + "ledger_value": 4132200000.0, + "name": "hmrc.employment_income.amount@E09000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9586226048.364006, + "kind": "calibration_drift", + "ledger_value": 9379800000.0, + "name": "hmrc.employment_income.amount@E09000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6685910140.577098, + "kind": "calibration_drift", + "ledger_value": 6370000000.0, + "name": "hmrc.employment_income.amount@E09000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6456870108.817528, + "kind": "calibration_drift", + "ledger_value": 6130700000.0, + "name": "hmrc.employment_income.amount@E09000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5323311899.199541, + "kind": "calibration_drift", + "ledger_value": 5816400000.0, + "name": "hmrc.employment_income.amount@E09000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5262773763.464267, + "kind": "calibration_drift", + "ledger_value": 5244000000.0, + "name": "hmrc.employment_income.amount@E09000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8058679769.132848, + "kind": "calibration_drift", + "ledger_value": 7341600000.0, + "name": "hmrc.employment_income.amount@E09000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8938566033.46335, + "kind": "calibration_drift", + "ledger_value": 8775000000.0, + "name": "hmrc.employment_income.amount@E09000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4392078511.64418, + "kind": "calibration_drift", + "ledger_value": 4048000000.0, + "name": "hmrc.employment_income.amount@E09000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8703276113.1967, + "kind": "calibration_drift", + "ledger_value": 8682500000.0, + "name": "hmrc.employment_income.amount@E09000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5394021422.1130085, + "kind": "calibration_drift", + "ledger_value": 5203000000.0, + "name": "hmrc.employment_income.amount@E09000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13573042181.715572, + "kind": "calibration_drift", + "ledger_value": 12980400000.0, + "name": "hmrc.employment_income.amount@E09000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11145634504.29794, + "kind": "calibration_drift", + "ledger_value": 9990000000.0, + "name": "hmrc.employment_income.amount@E09000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2174156014.7943172, + "kind": "calibration_drift", + "ledger_value": 2177400000.0, + "name": "hmrc.employment_income.amount@E14001063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1292884967.3404326, + "kind": "calibration_drift", + "ledger_value": 1341600000.0, + "name": "hmrc.employment_income.amount@E14001064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2668085307.3100996, + "kind": "calibration_drift", + "ledger_value": 2255400000.0, + "name": "hmrc.employment_income.amount@E14001065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1276234138.663331, + "kind": "calibration_drift", + "ledger_value": 1328000000.0, + "name": "hmrc.employment_income.amount@E14001066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1719172121.1925075, + "kind": "calibration_drift", + "ledger_value": 1810800000.0, + "name": "hmrc.employment_income.amount@E14001067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1178774911.4657538, + "kind": "calibration_drift", + "ledger_value": 1308000000.0, + "name": "hmrc.employment_income.amount@E14001068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1705405542.141595, + "kind": "calibration_drift", + "ledger_value": 1832600000.0, + "name": "hmrc.employment_income.amount@E14001069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1204026609.5848927, + "kind": "calibration_drift", + "ledger_value": 1280000000.0, + "name": "hmrc.employment_income.amount@E14001070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2254400588.2834506, + "kind": "calibration_drift", + "ledger_value": 1995000000.0, + "name": "hmrc.employment_income.amount@E14001071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1959511022.2705784, + "kind": "calibration_drift", + "ledger_value": 1818000000.0, + "name": "hmrc.employment_income.amount@E14001072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1629039011.5679193, + "kind": "calibration_drift", + "ledger_value": 1790100000.0, + "name": "hmrc.employment_income.amount@E14001073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1361857442.9837577, + "kind": "calibration_drift", + "ledger_value": 1264200000.0, + "name": "hmrc.employment_income.amount@E14001074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1381299879.4361005, + "kind": "calibration_drift", + "ledger_value": 1243200000.0, + "name": "hmrc.employment_income.amount@E14001075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1480316724.9542882, + "kind": "calibration_drift", + "ledger_value": 1540000000.0, + "name": "hmrc.employment_income.amount@E14001076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1879764916.9743102, + "kind": "calibration_drift", + "ledger_value": 1879100000.0, + "name": "hmrc.employment_income.amount@E14001077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2329411404.7368207, + "kind": "calibration_drift", + "ledger_value": 2290400000.0, + "name": "hmrc.employment_income.amount@E14001078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1456181669.9452455, + "kind": "calibration_drift", + "ledger_value": 1384600000.0, + "name": "hmrc.employment_income.amount@E14001079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1820950929.0936327, + "kind": "calibration_drift", + "ledger_value": 1578500000.0, + "name": "hmrc.employment_income.amount@E14001080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5104780916.343731, + "kind": "calibration_drift", + "ledger_value": 4908000000.0, + "name": "hmrc.employment_income.amount@E14001081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3020114459.1160808, + "kind": "calibration_drift", + "ledger_value": 2503200000.0, + "name": "hmrc.employment_income.amount@E14001082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2754229127.8241777, + "kind": "calibration_drift", + "ledger_value": 2739100000.0, + "name": "hmrc.employment_income.amount@E14001083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1684663649.3266175, + "kind": "calibration_drift", + "ledger_value": 1621500000.0, + "name": "hmrc.employment_income.amount@E14001084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3354101919.2560573, + "kind": "calibration_drift", + "ledger_value": 3874400000.0, + "name": "hmrc.employment_income.amount@E14001085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3357525962.0671053, + "kind": "calibration_drift", + "ledger_value": 2764800000.0, + "name": "hmrc.employment_income.amount@E14001086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1186742110.6473048, + "kind": "calibration_drift", + "ledger_value": 1169600000.0, + "name": "hmrc.employment_income.amount@E14001087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1220560091.9174602, + "kind": "calibration_drift", + "ledger_value": 1013600000.0, + "name": "hmrc.employment_income.amount@E14001088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1957186329.4241166, + "kind": "calibration_drift", + "ledger_value": 1918200000.0, + "name": "hmrc.employment_income.amount@E14001089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2095990997.087566, + "kind": "calibration_drift", + "ledger_value": 2105000000.0, + "name": "hmrc.employment_income.amount@E14001090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1269341584.95278, + "kind": "calibration_drift", + "ledger_value": 1318200000.0, + "name": "hmrc.employment_income.amount@E14001091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1503632264.5351846, + "kind": "calibration_drift", + "ledger_value": 1596000000.0, + "name": "hmrc.employment_income.amount@E14001092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1186556826.945408, + "kind": "calibration_drift", + "ledger_value": 1238200000.0, + "name": "hmrc.employment_income.amount@E14001093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1242109821.6727066, + "kind": "calibration_drift", + "ledger_value": 1250600000.0, + "name": "hmrc.employment_income.amount@E14001094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1101391790.9810057, + "kind": "calibration_drift", + "ledger_value": 1087800000.0, + "name": "hmrc.employment_income.amount@E14001095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1383961451.7405562, + "kind": "calibration_drift", + "ledger_value": 1536400000.0, + "name": "hmrc.employment_income.amount@E14001096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1286339511.764768, + "kind": "calibration_drift", + "ledger_value": 1314800000.0, + "name": "hmrc.employment_income.amount@E14001097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1114262495.2599602, + "kind": "calibration_drift", + "ledger_value": 1039700000.0, + "name": "hmrc.employment_income.amount@E14001098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1250967617.8480403, + "kind": "calibration_drift", + "ledger_value": 1324800000.0, + "name": "hmrc.employment_income.amount@E14001099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 992766132.682464, + "kind": "calibration_drift", + "ledger_value": 1098900000.0, + "name": "hmrc.employment_income.amount@E14001100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1138918328.4800103, + "kind": "calibration_drift", + "ledger_value": 1004800000.0, + "name": "hmrc.employment_income.amount@E14001101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1154349578.6570733, + "kind": "calibration_drift", + "ledger_value": 1173900000.0, + "name": "hmrc.employment_income.amount@E14001102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1132336639.6470854, + "kind": "calibration_drift", + "ledger_value": 1232000000.0, + "name": "hmrc.employment_income.amount@E14001103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1151228165.8924563, + "kind": "calibration_drift", + "ledger_value": 1067500000.0, + "name": "hmrc.employment_income.amount@E14001104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1047440882.6627727, + "kind": "calibration_drift", + "ledger_value": 1045000000.0, + "name": "hmrc.employment_income.amount@E14001105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1278695529.7076366, + "kind": "calibration_drift", + "ledger_value": 1141000000.0, + "name": "hmrc.employment_income.amount@E14001106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1374343094.0422254, + "kind": "calibration_drift", + "ledger_value": 1132200000.0, + "name": "hmrc.employment_income.amount@E14001107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1232323136.5385315, + "kind": "calibration_drift", + "ledger_value": 1312000000.0, + "name": "hmrc.employment_income.amount@E14001108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1223490044.856784, + "kind": "calibration_drift", + "ledger_value": 1202500000.0, + "name": "hmrc.employment_income.amount@E14001109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1279272791.374434, + "kind": "calibration_drift", + "ledger_value": 1185600000.0, + "name": "hmrc.employment_income.amount@E14001110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1396016346.2654028, + "kind": "calibration_drift", + "ledger_value": 1341000000.0, + "name": "hmrc.employment_income.amount@E14001111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1358450693.31822, + "kind": "calibration_drift", + "ledger_value": 1440600000.0, + "name": "hmrc.employment_income.amount@E14001112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1262399622.2550564, + "kind": "calibration_drift", + "ledger_value": 1228000000.0, + "name": "hmrc.employment_income.amount@E14001113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1297387361.2965186, + "kind": "calibration_drift", + "ledger_value": 1216900000.0, + "name": "hmrc.employment_income.amount@E14001114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1575034988.588476, + "kind": "calibration_drift", + "ledger_value": 1482600000.0, + "name": "hmrc.employment_income.amount@E14001115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1358440811.5207853, + "kind": "calibration_drift", + "ledger_value": 1358800000.0, + "name": "hmrc.employment_income.amount@E14001116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2325498212.9527655, + "kind": "calibration_drift", + "ledger_value": 2016300000.0, + "name": "hmrc.employment_income.amount@E14001117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 979431882.26931, + "kind": "calibration_drift", + "ledger_value": 1105800000.0, + "name": "hmrc.employment_income.amount@E14001118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1116497353.5842905, + "kind": "calibration_drift", + "ledger_value": 1098200000.0, + "name": "hmrc.employment_income.amount@E14001119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 927777256.6299148, + "kind": "calibration_drift", + "ledger_value": 948500000.0, + "name": "hmrc.employment_income.amount@E14001120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1900561514.3436494, + "kind": "calibration_drift", + "ledger_value": 1711400000.0, + "name": "hmrc.employment_income.amount@E14001121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2504674964.0347905, + "kind": "calibration_drift", + "ledger_value": 2085000000.0, + "name": "hmrc.employment_income.amount@E14001122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2101235761.0759175, + "kind": "calibration_drift", + "ledger_value": 2425500000.0, + "name": "hmrc.employment_income.amount@E14001123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3494495085.8570995, + "kind": "calibration_drift", + "ledger_value": 2511400000.0, + "name": "hmrc.employment_income.amount@E14001124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2477119571.8887377, + "kind": "calibration_drift", + "ledger_value": 2283700000.0, + "name": "hmrc.employment_income.amount@E14001125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1215793359.880002, + "kind": "calibration_drift", + "ledger_value": 1113000000.0, + "name": "hmrc.employment_income.amount@E14001126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1187217672.1488392, + "kind": "calibration_drift", + "ledger_value": 886600000.0, + "name": "hmrc.employment_income.amount@E14001127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1271762625.3242278, + "kind": "calibration_drift", + "ledger_value": 1314300000.0, + "name": "hmrc.employment_income.amount@E14001128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1368866107.814164, + "kind": "calibration_drift", + "ledger_value": 1263500000.0, + "name": "hmrc.employment_income.amount@E14001129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1803190868.65451, + "kind": "calibration_drift", + "ledger_value": 1685100000.0, + "name": "hmrc.employment_income.amount@E14001130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1750126851.656022, + "kind": "calibration_drift", + "ledger_value": 1887700000.0, + "name": "hmrc.employment_income.amount@E14001131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1736552967.6550815, + "kind": "calibration_drift", + "ledger_value": 1656200000.0, + "name": "hmrc.employment_income.amount@E14001132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1551381976.9530473, + "kind": "calibration_drift", + "ledger_value": 1508700000.0, + "name": "hmrc.employment_income.amount@E14001133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1874066825.5286517, + "kind": "calibration_drift", + "ledger_value": 1795200000.0, + "name": "hmrc.employment_income.amount@E14001134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1430054197.5284753, + "kind": "calibration_drift", + "ledger_value": 1675200000.0, + "name": "hmrc.employment_income.amount@E14001135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1175563327.299547, + "kind": "calibration_drift", + "ledger_value": 1202400000.0, + "name": "hmrc.employment_income.amount@E14001136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2654535167.072439, + "kind": "calibration_drift", + "ledger_value": 2450800000.0, + "name": "hmrc.employment_income.amount@E14001137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1926950499.7239609, + "kind": "calibration_drift", + "ledger_value": 1777600000.0, + "name": "hmrc.employment_income.amount@E14001138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2057143180.923259, + "kind": "calibration_drift", + "ledger_value": 1863000000.0, + "name": "hmrc.employment_income.amount@E14001139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1485634367.1987185, + "kind": "calibration_drift", + "ledger_value": 1313500000.0, + "name": "hmrc.employment_income.amount@E14001140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2345917968.9553366, + "kind": "calibration_drift", + "ledger_value": 1944800000.0, + "name": "hmrc.employment_income.amount@E14001141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1157207888.5649972, + "kind": "calibration_drift", + "ledger_value": 1058400000.0, + "name": "hmrc.employment_income.amount@E14001142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1690281451.1681204, + "kind": "calibration_drift", + "ledger_value": 1600800000.0, + "name": "hmrc.employment_income.amount@E14001143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1422237695.7578003, + "kind": "calibration_drift", + "ledger_value": 1423300000.0, + "name": "hmrc.employment_income.amount@E14001144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1541560399.7791686, + "kind": "calibration_drift", + "ledger_value": 1402200000.0, + "name": "hmrc.employment_income.amount@E14001145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1649454805.0675588, + "kind": "calibration_drift", + "ledger_value": 1579200000.0, + "name": "hmrc.employment_income.amount@E14001146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1556060702.2895913, + "kind": "calibration_drift", + "ledger_value": 1484000000.0, + "name": "hmrc.employment_income.amount@E14001147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1076980045.6437976, + "kind": "calibration_drift", + "ledger_value": 1131000000.0, + "name": "hmrc.employment_income.amount@E14001148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2791484252.773192, + "kind": "calibration_drift", + "ledger_value": 2865200000.0, + "name": "hmrc.employment_income.amount@E14001149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1285127756.3543646, + "kind": "calibration_drift", + "ledger_value": 1371700000.0, + "name": "hmrc.employment_income.amount@E14001150", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1558828840.7959256, + "kind": "calibration_drift", + "ledger_value": 1386000000.0, + "name": "hmrc.employment_income.amount@E14001151", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1401456275.753085, + "kind": "calibration_drift", + "ledger_value": 1315800000.0, + "name": "hmrc.employment_income.amount@E14001152", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1957337026.8349924, + "kind": "calibration_drift", + "ledger_value": 1779400000.0, + "name": "hmrc.employment_income.amount@E14001153", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1397780247.1074579, + "kind": "calibration_drift", + "ledger_value": 1414000000.0, + "name": "hmrc.employment_income.amount@E14001154", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1099288827.2029884, + "kind": "calibration_drift", + "ledger_value": 1149200000.0, + "name": "hmrc.employment_income.amount@E14001155", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1409379422.6643898, + "kind": "calibration_drift", + "ledger_value": 1386000000.0, + "name": "hmrc.employment_income.amount@E14001156", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1705484596.5210707, + "kind": "calibration_drift", + "ledger_value": 1526500000.0, + "name": "hmrc.employment_income.amount@E14001157", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1805404391.279834, + "kind": "calibration_drift", + "ledger_value": 1810200000.0, + "name": "hmrc.employment_income.amount@E14001158", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2189213403.635109, + "kind": "calibration_drift", + "ledger_value": 2185400000.0, + "name": "hmrc.employment_income.amount@E14001159", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7187042503.413916, + "kind": "calibration_drift", + "ledger_value": 6555000000.0, + "name": "hmrc.employment_income.amount@E14001160", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1760244577.0042517, + "kind": "calibration_drift", + "ledger_value": 1881000000.0, + "name": "hmrc.employment_income.amount@E14001161", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2920639345.2418694, + "kind": "calibration_drift", + "ledger_value": 2779800000.0, + "name": "hmrc.employment_income.amount@E14001162", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1466249125.3921325, + "kind": "calibration_drift", + "ledger_value": 1462500000.0, + "name": "hmrc.employment_income.amount@E14001163", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1550879546.1337163, + "kind": "calibration_drift", + "ledger_value": 1731600000.0, + "name": "hmrc.employment_income.amount@E14001164", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1231024915.4005766, + "kind": "calibration_drift", + "ledger_value": 1200800000.0, + "name": "hmrc.employment_income.amount@E14001165", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1765155830.3291895, + "kind": "calibration_drift", + "ledger_value": 1427400000.0, + "name": "hmrc.employment_income.amount@E14001166", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2426178906.1139836, + "kind": "calibration_drift", + "ledger_value": 2246400000.0, + "name": "hmrc.employment_income.amount@E14001167", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1718641671.6874013, + "kind": "calibration_drift", + "ledger_value": 1553900000.0, + "name": "hmrc.employment_income.amount@E14001168", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2613111632.9573975, + "kind": "calibration_drift", + "ledger_value": 2612800000.0, + "name": "hmrc.employment_income.amount@E14001169", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1652078422.2864137, + "kind": "calibration_drift", + "ledger_value": 1533000000.0, + "name": "hmrc.employment_income.amount@E14001170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1054227207.0509031, + "kind": "calibration_drift", + "ledger_value": 1119100000.0, + "name": "hmrc.employment_income.amount@E14001171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8079950490.27843, + "kind": "calibration_drift", + "ledger_value": 7998000000.0, + "name": "hmrc.employment_income.amount@E14001172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1351329211.3004367, + "kind": "calibration_drift", + "ledger_value": 1072600000.0, + "name": "hmrc.employment_income.amount@E14001173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 914043025.7896633, + "kind": "calibration_drift", + "ledger_value": 966400000.0, + "name": "hmrc.employment_income.amount@E14001174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3362632380.8913736, + "kind": "calibration_drift", + "ledger_value": 3665600000.0, + "name": "hmrc.employment_income.amount@E14001175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2003091167.6305325, + "kind": "calibration_drift", + "ledger_value": 1895000000.0, + "name": "hmrc.employment_income.amount@E14001176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1526922987.3293424, + "kind": "calibration_drift", + "ledger_value": 1431900000.0, + "name": "hmrc.employment_income.amount@E14001177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2077526858.5812366, + "kind": "calibration_drift", + "ledger_value": 1668700000.0, + "name": "hmrc.employment_income.amount@E14001178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1977051212.7167838, + "kind": "calibration_drift", + "ledger_value": 1754200000.0, + "name": "hmrc.employment_income.amount@E14001179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1482343728.6530364, + "kind": "calibration_drift", + "ledger_value": 1368000000.0, + "name": "hmrc.employment_income.amount@E14001180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1426931549.539179, + "kind": "calibration_drift", + "ledger_value": 1530000000.0, + "name": "hmrc.employment_income.amount@E14001181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1489606849.7673802, + "kind": "calibration_drift", + "ledger_value": 1695400000.0, + "name": "hmrc.employment_income.amount@E14001182", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1343888543.9642005, + "kind": "calibration_drift", + "ledger_value": 1440600000.0, + "name": "hmrc.employment_income.amount@E14001183", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1856542693.0032775, + "kind": "calibration_drift", + "ledger_value": 1938600000.0, + "name": "hmrc.employment_income.amount@E14001184", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1711699011.8826807, + "kind": "calibration_drift", + "ledger_value": 1508800000.0, + "name": "hmrc.employment_income.amount@E14001185", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2076165640.9846368, + "kind": "calibration_drift", + "ledger_value": 1904400000.0, + "name": "hmrc.employment_income.amount@E14001186", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2364220036.1997824, + "kind": "calibration_drift", + "ledger_value": 2462800000.0, + "name": "hmrc.employment_income.amount@E14001187", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2144834251.356851, + "kind": "calibration_drift", + "ledger_value": 2034900000.0, + "name": "hmrc.employment_income.amount@E14001188", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1691543626.2040703, + "kind": "calibration_drift", + "ledger_value": 1749300000.0, + "name": "hmrc.employment_income.amount@E14001189", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1306336564.0981214, + "kind": "calibration_drift", + "ledger_value": 1263600000.0, + "name": "hmrc.employment_income.amount@E14001190", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1999607650.5856678, + "kind": "calibration_drift", + "ledger_value": 1945800000.0, + "name": "hmrc.employment_income.amount@E14001191", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2062705194.1923423, + "kind": "calibration_drift", + "ledger_value": 1885500000.0, + "name": "hmrc.employment_income.amount@E14001192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1462506020.3033137, + "kind": "calibration_drift", + "ledger_value": 1364000000.0, + "name": "hmrc.employment_income.amount@E14001193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1284263099.0788474, + "kind": "calibration_drift", + "ledger_value": 1381500000.0, + "name": "hmrc.employment_income.amount@E14001194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1417185626.8194215, + "kind": "calibration_drift", + "ledger_value": 1323000000.0, + "name": "hmrc.employment_income.amount@E14001195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1236358615.5658379, + "kind": "calibration_drift", + "ledger_value": 1011500000.0, + "name": "hmrc.employment_income.amount@E14001196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2357148374.910732, + "kind": "calibration_drift", + "ledger_value": 2448600000.0, + "name": "hmrc.employment_income.amount@E14001197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1526837756.82647, + "kind": "calibration_drift", + "ledger_value": 1453500000.0, + "name": "hmrc.employment_income.amount@E14001198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1249266713.46463, + "kind": "calibration_drift", + "ledger_value": 1280600000.0, + "name": "hmrc.employment_income.amount@E14001199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1147902941.055753, + "kind": "calibration_drift", + "ledger_value": 1081500000.0, + "name": "hmrc.employment_income.amount@E14001200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2562612028.0027885, + "kind": "calibration_drift", + "ledger_value": 2167200000.0, + "name": "hmrc.employment_income.amount@E14001201", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1271602046.1159177, + "kind": "calibration_drift", + "ledger_value": 1202500000.0, + "name": "hmrc.employment_income.amount@E14001202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1660920160.5409162, + "kind": "calibration_drift", + "ledger_value": 1611000000.0, + "name": "hmrc.employment_income.amount@E14001203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1151019412.9216528, + "kind": "calibration_drift", + "ledger_value": 1050000000.0, + "name": "hmrc.employment_income.amount@E14001204", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3255936143.5419145, + "kind": "calibration_drift", + "ledger_value": 2998800000.0, + "name": "hmrc.employment_income.amount@E14001205", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2054818488.0767975, + "kind": "calibration_drift", + "ledger_value": 1876800000.0, + "name": "hmrc.employment_income.amount@E14001206", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4093247678.2290487, + "kind": "calibration_drift", + "ledger_value": 3865600000.0, + "name": "hmrc.employment_income.amount@E14001207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2056915899.582266, + "kind": "calibration_drift", + "ledger_value": 1922800000.0, + "name": "hmrc.employment_income.amount@E14001208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2289228310.6941795, + "kind": "calibration_drift", + "ledger_value": 2210100000.0, + "name": "hmrc.employment_income.amount@E14001209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2521264031.4779267, + "kind": "calibration_drift", + "ledger_value": 2385000000.0, + "name": "hmrc.employment_income.amount@E14001210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1155964017.3129315, + "kind": "calibration_drift", + "ledger_value": 963200000.0, + "name": "hmrc.employment_income.amount@E14001211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1918763268.348272, + "kind": "calibration_drift", + "ledger_value": 1910600000.0, + "name": "hmrc.employment_income.amount@E14001212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1805359923.1913788, + "kind": "calibration_drift", + "ledger_value": 1523900000.0, + "name": "hmrc.employment_income.amount@E14001213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1767691746.5958135, + "kind": "calibration_drift", + "ledger_value": 1710000000.0, + "name": "hmrc.employment_income.amount@E14001214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2585536477.216476, + "kind": "calibration_drift", + "ledger_value": 2476800000.0, + "name": "hmrc.employment_income.amount@E14001215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1248293356.4173334, + "kind": "calibration_drift", + "ledger_value": 1118700000.0, + "name": "hmrc.employment_income.amount@E14001216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1717038888.1713386, + "kind": "calibration_drift", + "ledger_value": 1733600000.0, + "name": "hmrc.employment_income.amount@E14001217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1495115951.8371038, + "kind": "calibration_drift", + "ledger_value": 1440000000.0, + "name": "hmrc.employment_income.amount@E14001218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1069035080.5064743, + "kind": "calibration_drift", + "ledger_value": 1134000000.0, + "name": "hmrc.employment_income.amount@E14001219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1869976996.6154556, + "kind": "calibration_drift", + "ledger_value": 1668400000.0, + "name": "hmrc.employment_income.amount@E14001220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1759959240.1033313, + "kind": "calibration_drift", + "ledger_value": 1812400000.0, + "name": "hmrc.employment_income.amount@E14001221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1497750598.7389538, + "kind": "calibration_drift", + "ledger_value": 1258000000.0, + "name": "hmrc.employment_income.amount@E14001222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2402929232.7056336, + "kind": "calibration_drift", + "ledger_value": 2582400000.0, + "name": "hmrc.employment_income.amount@E14001223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2223784325.6886635, + "kind": "calibration_drift", + "ledger_value": 2107000000.0, + "name": "hmrc.employment_income.amount@E14001224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1818872045.9583533, + "kind": "calibration_drift", + "ledger_value": 1692000000.0, + "name": "hmrc.employment_income.amount@E14001225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2413505500.904261, + "kind": "calibration_drift", + "ledger_value": 2274700000.0, + "name": "hmrc.employment_income.amount@E14001226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2809524452.385624, + "kind": "calibration_drift", + "ledger_value": 2725000000.0, + "name": "hmrc.employment_income.amount@E14001227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1401856488.5491815, + "kind": "calibration_drift", + "ledger_value": 1208400000.0, + "name": "hmrc.employment_income.amount@E14001228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2357038439.9142733, + "kind": "calibration_drift", + "ledger_value": 2184000000.0, + "name": "hmrc.employment_income.amount@E14001229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4378021653.575404, + "kind": "calibration_drift", + "ledger_value": 3708300000.0, + "name": "hmrc.employment_income.amount@E14001230", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1384442266.5603714, + "kind": "calibration_drift", + "ledger_value": 1246400000.0, + "name": "hmrc.employment_income.amount@E14001231", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1321317381.1152084, + "kind": "calibration_drift", + "ledger_value": 1453400000.0, + "name": "hmrc.employment_income.amount@E14001232", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1762435865.5853484, + "kind": "calibration_drift", + "ledger_value": 1548000000.0, + "name": "hmrc.employment_income.amount@E14001233", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2632109388.525189, + "kind": "calibration_drift", + "ledger_value": 2260000000.0, + "name": "hmrc.employment_income.amount@E14001234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1793575879.7507591, + "kind": "calibration_drift", + "ledger_value": 1633800000.0, + "name": "hmrc.employment_income.amount@E14001235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1893821773.8248603, + "kind": "calibration_drift", + "ledger_value": 2000100000.0, + "name": "hmrc.employment_income.amount@E14001236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1903792923.2544613, + "kind": "calibration_drift", + "ledger_value": 2161600000.0, + "name": "hmrc.employment_income.amount@E14001237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3489139151.64761, + "kind": "calibration_drift", + "ledger_value": 3504600000.0, + "name": "hmrc.employment_income.amount@E14001238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1250442647.3593335, + "kind": "calibration_drift", + "ledger_value": 1046900000.0, + "name": "hmrc.employment_income.amount@E14001239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1222872432.517129, + "kind": "calibration_drift", + "ledger_value": 1092300000.0, + "name": "hmrc.employment_income.amount@E14001240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1359734091.7600234, + "kind": "calibration_drift", + "ledger_value": 1242500000.0, + "name": "hmrc.employment_income.amount@E14001241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1558649733.2174258, + "kind": "calibration_drift", + "ledger_value": 1425000000.0, + "name": "hmrc.employment_income.amount@E14001242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1400897954.1980367, + "kind": "calibration_drift", + "ledger_value": 1284400000.0, + "name": "hmrc.employment_income.amount@E14001243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1353223222.4753792, + "kind": "calibration_drift", + "ledger_value": 1287000000.0, + "name": "hmrc.employment_income.amount@E14001244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1427862908.947379, + "kind": "calibration_drift", + "ledger_value": 1419000000.0, + "name": "hmrc.employment_income.amount@E14001245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1651001306.366055, + "kind": "calibration_drift", + "ledger_value": 1541400000.0, + "name": "hmrc.employment_income.amount@E14001246", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1223198531.8324668, + "kind": "calibration_drift", + "ledger_value": 1084800000.0, + "name": "hmrc.employment_income.amount@E14001247", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1627828491.382195, + "kind": "calibration_drift", + "ledger_value": 1570000000.0, + "name": "hmrc.employment_income.amount@E14001248", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2666921322.073928, + "kind": "calibration_drift", + "ledger_value": 2596500000.0, + "name": "hmrc.employment_income.amount@E14001249", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1570290490.5952454, + "kind": "calibration_drift", + "ledger_value": 1748400000.0, + "name": "hmrc.employment_income.amount@E14001250", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1323617357.3616717, + "kind": "calibration_drift", + "ledger_value": 1333000000.0, + "name": "hmrc.employment_income.amount@E14001251", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1409638404.028836, + "kind": "calibration_drift", + "ledger_value": 1216800000.0, + "name": "hmrc.employment_income.amount@E14001252", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1518600043.44015, + "kind": "calibration_drift", + "ledger_value": 1422700000.0, + "name": "hmrc.employment_income.amount@E14001253", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1777611835.995354, + "kind": "calibration_drift", + "ledger_value": 1658800000.0, + "name": "hmrc.employment_income.amount@E14001254", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1396426440.8589337, + "kind": "calibration_drift", + "ledger_value": 1088000000.0, + "name": "hmrc.employment_income.amount@E14001255", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1104661430.7071397, + "kind": "calibration_drift", + "ledger_value": 1106300000.0, + "name": "hmrc.employment_income.amount@E14001256", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3435456287.0847874, + "kind": "calibration_drift", + "ledger_value": 3768000000.0, + "name": "hmrc.employment_income.amount@E14001257", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2755790540.022688, + "kind": "calibration_drift", + "ledger_value": 2684000000.0, + "name": "hmrc.employment_income.amount@E14001258", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2598298537.314321, + "kind": "calibration_drift", + "ledger_value": 2024400000.0, + "name": "hmrc.employment_income.amount@E14001259", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3094467255.4838505, + "kind": "calibration_drift", + "ledger_value": 3100500000.0, + "name": "hmrc.employment_income.amount@E14001260", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1180637630.2821536, + "kind": "calibration_drift", + "ledger_value": 1127000000.0, + "name": "hmrc.employment_income.amount@E14001261", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1169462552.6084337, + "kind": "calibration_drift", + "ledger_value": 1228000000.0, + "name": "hmrc.employment_income.amount@E14001262", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1812773741.7165987, + "kind": "calibration_drift", + "ledger_value": 1955200000.0, + "name": "hmrc.employment_income.amount@E14001263", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3632447673.0781302, + "kind": "calibration_drift", + "ledger_value": 4152600000.0, + "name": "hmrc.employment_income.amount@E14001264", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5152517184.714049, + "kind": "calibration_drift", + "ledger_value": 5995000000.0, + "name": "hmrc.employment_income.amount@E14001265", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1681995564.0193076, + "kind": "calibration_drift", + "ledger_value": 1584000000.0, + "name": "hmrc.employment_income.amount@E14001266", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1815003676.931226, + "kind": "calibration_drift", + "ledger_value": 1833600000.0, + "name": "hmrc.employment_income.amount@E14001267", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2856849872.3529305, + "kind": "calibration_drift", + "ledger_value": 3156200000.0, + "name": "hmrc.employment_income.amount@E14001268", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1939619238.5293396, + "kind": "calibration_drift", + "ledger_value": 1845000000.0, + "name": "hmrc.employment_income.amount@E14001269", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2045493251.0849497, + "kind": "calibration_drift", + "ledger_value": 1858400000.0, + "name": "hmrc.employment_income.amount@E14001270", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2263029307.5391617, + "kind": "calibration_drift", + "ledger_value": 2305800000.0, + "name": "hmrc.employment_income.amount@E14001271", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1133442165.7350683, + "kind": "calibration_drift", + "ledger_value": 1060800000.0, + "name": "hmrc.employment_income.amount@E14001272", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1568954796.8987021, + "kind": "calibration_drift", + "ledger_value": 1368500000.0, + "name": "hmrc.employment_income.amount@E14001273", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1139657816.3213573, + "kind": "calibration_drift", + "ledger_value": 1189400000.0, + "name": "hmrc.employment_income.amount@E14001274", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1253011914.6922987, + "kind": "calibration_drift", + "ledger_value": 1193400000.0, + "name": "hmrc.employment_income.amount@E14001275", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1800957582.434317, + "kind": "calibration_drift", + "ledger_value": 2117000000.0, + "name": "hmrc.employment_income.amount@E14001276", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1582797140.4732614, + "kind": "calibration_drift", + "ledger_value": 1476000000.0, + "name": "hmrc.employment_income.amount@E14001277", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2126419521.8376942, + "kind": "calibration_drift", + "ledger_value": 1918200000.0, + "name": "hmrc.employment_income.amount@E14001278", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2549355511.1348004, + "kind": "calibration_drift", + "ledger_value": 2576400000.0, + "name": "hmrc.employment_income.amount@E14001279", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2658509845.596087, + "kind": "calibration_drift", + "ledger_value": 2406700000.0, + "name": "hmrc.employment_income.amount@E14001280", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1166253438.8915858, + "kind": "calibration_drift", + "ledger_value": 1268000000.0, + "name": "hmrc.employment_income.amount@E14001281", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1211496013.2206817, + "kind": "calibration_drift", + "ledger_value": 1254300000.0, + "name": "hmrc.employment_income.amount@E14001282", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2767150326.5907803, + "kind": "calibration_drift", + "ledger_value": 2606100000.0, + "name": "hmrc.employment_income.amount@E14001283", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2401165606.3579516, + "kind": "calibration_drift", + "ledger_value": 2336400000.0, + "name": "hmrc.employment_income.amount@E14001284", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1510100768.1704996, + "kind": "calibration_drift", + "ledger_value": 1575600000.0, + "name": "hmrc.employment_income.amount@E14001285", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1318509703.3127239, + "kind": "calibration_drift", + "ledger_value": 1172900000.0, + "name": "hmrc.employment_income.amount@E14001286", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1343924451.0895317, + "kind": "calibration_drift", + "ledger_value": 1352800000.0, + "name": "hmrc.employment_income.amount@E14001287", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1638866459.1165113, + "kind": "calibration_drift", + "ledger_value": 1541600000.0, + "name": "hmrc.employment_income.amount@E14001288", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2787941628.39293, + "kind": "calibration_drift", + "ledger_value": 2312800000.0, + "name": "hmrc.employment_income.amount@E14001289", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3561315800.1090655, + "kind": "calibration_drift", + "ledger_value": 3238400000.0, + "name": "hmrc.employment_income.amount@E14001290", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1176256912.0719535, + "kind": "calibration_drift", + "ledger_value": 1105000000.0, + "name": "hmrc.employment_income.amount@E14001291", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2314923342.180038, + "kind": "calibration_drift", + "ledger_value": 2129800000.0, + "name": "hmrc.employment_income.amount@E14001292", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3163443779.7338777, + "kind": "calibration_drift", + "ledger_value": 2847400000.0, + "name": "hmrc.employment_income.amount@E14001293", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2216012838.277424, + "kind": "calibration_drift", + "ledger_value": 2136000000.0, + "name": "hmrc.employment_income.amount@E14001294", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1182149545.2896292, + "kind": "calibration_drift", + "ledger_value": 1178000000.0, + "name": "hmrc.employment_income.amount@E14001295", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1996123081.7653337, + "kind": "calibration_drift", + "ledger_value": 2054400000.0, + "name": "hmrc.employment_income.amount@E14001296", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1401226523.9627333, + "kind": "calibration_drift", + "ledger_value": 1280000000.0, + "name": "hmrc.employment_income.amount@E14001297", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1976925219.799494, + "kind": "calibration_drift", + "ledger_value": 1959900000.0, + "name": "hmrc.employment_income.amount@E14001298", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1022766034.4688715, + "kind": "calibration_drift", + "ledger_value": 1020000000.0, + "name": "hmrc.employment_income.amount@E14001299", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1905241987.450847, + "kind": "calibration_drift", + "ledger_value": 1828300000.0, + "name": "hmrc.employment_income.amount@E14001300", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1727207931.4903367, + "kind": "calibration_drift", + "ledger_value": 1601600000.0, + "name": "hmrc.employment_income.amount@E14001301", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1733020225.0722544, + "kind": "calibration_drift", + "ledger_value": 1525500000.0, + "name": "hmrc.employment_income.amount@E14001302", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 775412292.4369977, + "kind": "calibration_drift", + "ledger_value": 578000000.0, + "name": "hmrc.employment_income.amount@E14001303", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 775412292.4369977, + "kind": "calibration_drift", + "ledger_value": 777400000.0, + "name": "hmrc.employment_income.amount@E14001304", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3462581821.0424404, + "kind": "calibration_drift", + "ledger_value": 3100800000.0, + "name": "hmrc.employment_income.amount@E14001305", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4762482864.561356, + "kind": "calibration_drift", + "ledger_value": 4501700000.0, + "name": "hmrc.employment_income.amount@E14001306", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1306546552.2936041, + "kind": "calibration_drift", + "ledger_value": 1124800000.0, + "name": "hmrc.employment_income.amount@E14001307", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1294268418.9812603, + "kind": "calibration_drift", + "ledger_value": 1392300000.0, + "name": "hmrc.employment_income.amount@E14001308", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1982639369.1659834, + "kind": "calibration_drift", + "ledger_value": 2068300000.0, + "name": "hmrc.employment_income.amount@E14001309", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8571619321.631075, + "kind": "calibration_drift", + "ledger_value": 7866000000.0, + "name": "hmrc.employment_income.amount@E14001310", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1867210093.3338008, + "kind": "calibration_drift", + "ledger_value": 1845000000.0, + "name": "hmrc.employment_income.amount@E14001311", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2834902400.2509465, + "kind": "calibration_drift", + "ledger_value": 2627300000.0, + "name": "hmrc.employment_income.amount@E14001312", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1153299637.6796596, + "kind": "calibration_drift", + "ledger_value": 1050800000.0, + "name": "hmrc.employment_income.amount@E14001313", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1455297249.0748594, + "kind": "calibration_drift", + "ledger_value": 1405300000.0, + "name": "hmrc.employment_income.amount@E14001314", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1454798218.304418, + "kind": "calibration_drift", + "ledger_value": 1328700000.0, + "name": "hmrc.employment_income.amount@E14001315", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1357955368.2218168, + "kind": "calibration_drift", + "ledger_value": 1256400000.0, + "name": "hmrc.employment_income.amount@E14001316", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1195435621.9402902, + "kind": "calibration_drift", + "ledger_value": 1119600000.0, + "name": "hmrc.employment_income.amount@E14001317", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1255363782.4817052, + "kind": "calibration_drift", + "ledger_value": 1159400000.0, + "name": "hmrc.employment_income.amount@E14001318", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1406214361.217788, + "kind": "calibration_drift", + "ledger_value": 1166600000.0, + "name": "hmrc.employment_income.amount@E14001319", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1433555044.4086926, + "kind": "calibration_drift", + "ledger_value": 1421200000.0, + "name": "hmrc.employment_income.amount@E14001320", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1712021405.5239806, + "kind": "calibration_drift", + "ledger_value": 1618500000.0, + "name": "hmrc.employment_income.amount@E14001321", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1570526418.5089936, + "kind": "calibration_drift", + "ledger_value": 1709700000.0, + "name": "hmrc.employment_income.amount@E14001322", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1427786325.017262, + "kind": "calibration_drift", + "ledger_value": 1514100000.0, + "name": "hmrc.employment_income.amount@E14001323", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1608327213.317856, + "kind": "calibration_drift", + "ledger_value": 1394000000.0, + "name": "hmrc.employment_income.amount@E14001324", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1560723226.2813768, + "kind": "calibration_drift", + "ledger_value": 1421200000.0, + "name": "hmrc.employment_income.amount@E14001325", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1126994292.9090686, + "kind": "calibration_drift", + "ledger_value": 1166000000.0, + "name": "hmrc.employment_income.amount@E14001326", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1191679303.6905077, + "kind": "calibration_drift", + "ledger_value": 1221800000.0, + "name": "hmrc.employment_income.amount@E14001327", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1424921838.9859414, + "kind": "calibration_drift", + "ledger_value": 1433100000.0, + "name": "hmrc.employment_income.amount@E14001328", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1609812739.4344554, + "kind": "calibration_drift", + "ledger_value": 1397500000.0, + "name": "hmrc.employment_income.amount@E14001329", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1376971602.2517297, + "kind": "calibration_drift", + "ledger_value": 1285200000.0, + "name": "hmrc.employment_income.amount@E14001330", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2557405882.111425, + "kind": "calibration_drift", + "ledger_value": 2092300000.0, + "name": "hmrc.employment_income.amount@E14001331", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2720211788.7769914, + "kind": "calibration_drift", + "ledger_value": 2748600000.0, + "name": "hmrc.employment_income.amount@E14001332", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2387982390.2351317, + "kind": "calibration_drift", + "ledger_value": 2557800000.0, + "name": "hmrc.employment_income.amount@E14001333", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2500539431.8084598, + "kind": "calibration_drift", + "ledger_value": 2496000000.0, + "name": "hmrc.employment_income.amount@E14001334", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1666411969.4651296, + "kind": "calibration_drift", + "ledger_value": 1596000000.0, + "name": "hmrc.employment_income.amount@E14001335", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1478563941.1343467, + "kind": "calibration_drift", + "ledger_value": 1499400000.0, + "name": "hmrc.employment_income.amount@E14001336", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1297974093.0191908, + "kind": "calibration_drift", + "ledger_value": 1365300000.0, + "name": "hmrc.employment_income.amount@E14001337", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1448918548.8309014, + "kind": "calibration_drift", + "ledger_value": 1240200000.0, + "name": "hmrc.employment_income.amount@E14001338", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1212407609.0340128, + "kind": "calibration_drift", + "ledger_value": 1180000000.0, + "name": "hmrc.employment_income.amount@E14001339", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1258150449.3582294, + "kind": "calibration_drift", + "ledger_value": 1303400000.0, + "name": "hmrc.employment_income.amount@E14001340", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1162351364.1296449, + "kind": "calibration_drift", + "ledger_value": 1193200000.0, + "name": "hmrc.employment_income.amount@E14001341", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1382779678.6019144, + "kind": "calibration_drift", + "ledger_value": 1364000000.0, + "name": "hmrc.employment_income.amount@E14001342", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 959462004.8789015, + "kind": "calibration_drift", + "ledger_value": 988900000.0, + "name": "hmrc.employment_income.amount@E14001343", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 951287287.9512264, + "kind": "calibration_drift", + "ledger_value": 980100000.0, + "name": "hmrc.employment_income.amount@E14001344", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1273086786.1804483, + "kind": "calibration_drift", + "ledger_value": 1373500000.0, + "name": "hmrc.employment_income.amount@E14001345", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1599035404.1074736, + "kind": "calibration_drift", + "ledger_value": 1590000000.0, + "name": "hmrc.employment_income.amount@E14001346", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1898046242.2281015, + "kind": "calibration_drift", + "ledger_value": 1866200000.0, + "name": "hmrc.employment_income.amount@E14001347", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3171879104.114853, + "kind": "calibration_drift", + "ledger_value": 2842800000.0, + "name": "hmrc.employment_income.amount@E14001348", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2180285199.6530547, + "kind": "calibration_drift", + "ledger_value": 1931700000.0, + "name": "hmrc.employment_income.amount@E14001349", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1550633125.0487022, + "kind": "calibration_drift", + "ledger_value": 1401800000.0, + "name": "hmrc.employment_income.amount@E14001350", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2039331241.0476058, + "kind": "calibration_drift", + "ledger_value": 1624300000.0, + "name": "hmrc.employment_income.amount@E14001351", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1499359360.3520944, + "kind": "calibration_drift", + "ledger_value": 1815000000.0, + "name": "hmrc.employment_income.amount@E14001352", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1263990591.642008, + "kind": "calibration_drift", + "ledger_value": 1085000000.0, + "name": "hmrc.employment_income.amount@E14001353", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1594319316.2818673, + "kind": "calibration_drift", + "ledger_value": 1692000000.0, + "name": "hmrc.employment_income.amount@E14001354", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1304891351.2233284, + "kind": "calibration_drift", + "ledger_value": 1232000000.0, + "name": "hmrc.employment_income.amount@E14001355", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1582460841.3818588, + "kind": "calibration_drift", + "ledger_value": 1393200000.0, + "name": "hmrc.employment_income.amount@E14001356", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1542027314.707948, + "kind": "calibration_drift", + "ledger_value": 1353300000.0, + "name": "hmrc.employment_income.amount@E14001357", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1795297782.9537177, + "kind": "calibration_drift", + "ledger_value": 1598400000.0, + "name": "hmrc.employment_income.amount@E14001358", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2137036277.9563658, + "kind": "calibration_drift", + "ledger_value": 2146200000.0, + "name": "hmrc.employment_income.amount@E14001359", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2314488961.1347566, + "kind": "calibration_drift", + "ledger_value": 2585000000.0, + "name": "hmrc.employment_income.amount@E14001360", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1724016672.384762, + "kind": "calibration_drift", + "ledger_value": 1533000000.0, + "name": "hmrc.employment_income.amount@E14001361", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1473067191.3114161, + "kind": "calibration_drift", + "ledger_value": 1393000000.0, + "name": "hmrc.employment_income.amount@E14001362", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1415540831.5812924, + "kind": "calibration_drift", + "ledger_value": 1225000000.0, + "name": "hmrc.employment_income.amount@E14001363", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1677892147.6346388, + "kind": "calibration_drift", + "ledger_value": 1647000000.0, + "name": "hmrc.employment_income.amount@E14001364", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1389079324.4663963, + "kind": "calibration_drift", + "ledger_value": 1202500000.0, + "name": "hmrc.employment_income.amount@E14001365", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2101592741.0082378, + "kind": "calibration_drift", + "ledger_value": 2098400000.0, + "name": "hmrc.employment_income.amount@E14001366", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1245384402.297558, + "kind": "calibration_drift", + "ledger_value": 1080400000.0, + "name": "hmrc.employment_income.amount@E14001367", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1257267263.7125225, + "kind": "calibration_drift", + "ledger_value": 1131900000.0, + "name": "hmrc.employment_income.amount@E14001368", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2394655972.2979865, + "kind": "calibration_drift", + "ledger_value": 2458300000.0, + "name": "hmrc.employment_income.amount@E14001369", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1838330540.3315277, + "kind": "calibration_drift", + "ledger_value": 1821600000.0, + "name": "hmrc.employment_income.amount@E14001370", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2437814722.5930862, + "kind": "calibration_drift", + "ledger_value": 2165400000.0, + "name": "hmrc.employment_income.amount@E14001371", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1200663092.783131, + "kind": "calibration_drift", + "ledger_value": 1254000000.0, + "name": "hmrc.employment_income.amount@E14001372", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1434836987.4867647, + "kind": "calibration_drift", + "ledger_value": 1322600000.0, + "name": "hmrc.employment_income.amount@E14001373", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1296985913.2757428, + "kind": "calibration_drift", + "ledger_value": 1137000000.0, + "name": "hmrc.employment_income.amount@E14001374", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1724946796.5682828, + "kind": "calibration_drift", + "ledger_value": 1600200000.0, + "name": "hmrc.employment_income.amount@E14001375", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2197672222.2390256, + "kind": "calibration_drift", + "ledger_value": 1966500000.0, + "name": "hmrc.employment_income.amount@E14001376", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1537763588.17381, + "kind": "calibration_drift", + "ledger_value": 1188000000.0, + "name": "hmrc.employment_income.amount@E14001377", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1446212171.5585325, + "kind": "calibration_drift", + "ledger_value": 1250500000.0, + "name": "hmrc.employment_income.amount@E14001378", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1418101674.333577, + "kind": "calibration_drift", + "ledger_value": 1941100000.0, + "name": "hmrc.employment_income.amount@E14001379", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1379770671.2831147, + "kind": "calibration_drift", + "ledger_value": 1310400000.0, + "name": "hmrc.employment_income.amount@E14001380", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1226331061.6191976, + "kind": "calibration_drift", + "ledger_value": 1132400000.0, + "name": "hmrc.employment_income.amount@E14001381", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1199933074.9976587, + "kind": "calibration_drift", + "ledger_value": 1204600000.0, + "name": "hmrc.employment_income.amount@E14001382", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1391480601.2429755, + "kind": "calibration_drift", + "ledger_value": 1307200000.0, + "name": "hmrc.employment_income.amount@E14001383", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2244187077.987811, + "kind": "calibration_drift", + "ledger_value": 1814600000.0, + "name": "hmrc.employment_income.amount@E14001384", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 999580867.2382184, + "kind": "calibration_drift", + "ledger_value": 1016600000.0, + "name": "hmrc.employment_income.amount@E14001385", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1626694555.1265883, + "kind": "calibration_drift", + "ledger_value": 1687200000.0, + "name": "hmrc.employment_income.amount@E14001386", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1063281403.950247, + "kind": "calibration_drift", + "ledger_value": 1178000000.0, + "name": "hmrc.employment_income.amount@E14001387", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1378273578.9717906, + "kind": "calibration_drift", + "ledger_value": 1314800000.0, + "name": "hmrc.employment_income.amount@E14001388", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1313208530.7306838, + "kind": "calibration_drift", + "ledger_value": 1231200000.0, + "name": "hmrc.employment_income.amount@E14001389", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1510025113.7163785, + "kind": "calibration_drift", + "ledger_value": 1303800000.0, + "name": "hmrc.employment_income.amount@E14001390", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1383451640.827459, + "kind": "calibration_drift", + "ledger_value": 1209600000.0, + "name": "hmrc.employment_income.amount@E14001391", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2782527638.623513, + "kind": "calibration_drift", + "ledger_value": 2587500000.0, + "name": "hmrc.employment_income.amount@E14001392", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2320740127.4880624, + "kind": "calibration_drift", + "ledger_value": 2025300000.0, + "name": "hmrc.employment_income.amount@E14001393", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1568424579.7625952, + "kind": "calibration_drift", + "ledger_value": 1450800000.0, + "name": "hmrc.employment_income.amount@E14001394", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1195002058.0778522, + "kind": "calibration_drift", + "ledger_value": 1152600000.0, + "name": "hmrc.employment_income.amount@E14001395", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 979821389.7848524, + "kind": "calibration_drift", + "ledger_value": 907700000.0, + "name": "hmrc.employment_income.amount@E14001396", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 989540961.0447849, + "kind": "calibration_drift", + "ledger_value": 1094800000.0, + "name": "hmrc.employment_income.amount@E14001397", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1436645356.417275, + "kind": "calibration_drift", + "ledger_value": 1360800000.0, + "name": "hmrc.employment_income.amount@E14001398", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1822204682.1431324, + "kind": "calibration_drift", + "ledger_value": 1704000000.0, + "name": "hmrc.employment_income.amount@E14001399", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1285127756.3543646, + "kind": "calibration_drift", + "ledger_value": 1372800000.0, + "name": "hmrc.employment_income.amount@E14001400", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1885724876.051982, + "kind": "calibration_drift", + "ledger_value": 1910000000.0, + "name": "hmrc.employment_income.amount@E14001401", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2507824077.6300874, + "kind": "calibration_drift", + "ledger_value": 2332200000.0, + "name": "hmrc.employment_income.amount@E14001402", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2317086332.8866625, + "kind": "calibration_drift", + "ledger_value": 2172600000.0, + "name": "hmrc.employment_income.amount@E14001403", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1760664553.3952174, + "kind": "calibration_drift", + "ledger_value": 1683000000.0, + "name": "hmrc.employment_income.amount@E14001404", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1193444439.7572422, + "kind": "calibration_drift", + "ledger_value": 1141000000.0, + "name": "hmrc.employment_income.amount@E14001405", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1846537373.1008644, + "kind": "calibration_drift", + "ledger_value": 1747200000.0, + "name": "hmrc.employment_income.amount@E14001406", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1855538614.3283136, + "kind": "calibration_drift", + "ledger_value": 1877200000.0, + "name": "hmrc.employment_income.amount@E14001407", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1404626685.7633147, + "kind": "calibration_drift", + "ledger_value": 1345900000.0, + "name": "hmrc.employment_income.amount@E14001408", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1468464744.1563065, + "kind": "calibration_drift", + "ledger_value": 1249200000.0, + "name": "hmrc.employment_income.amount@E14001409", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1152161434.2842515, + "kind": "calibration_drift", + "ledger_value": 1296000000.0, + "name": "hmrc.employment_income.amount@E14001410", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1263332254.3189867, + "kind": "calibration_drift", + "ledger_value": 1229800000.0, + "name": "hmrc.employment_income.amount@E14001411", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1139329770.5913732, + "kind": "calibration_drift", + "ledger_value": 1046400000.0, + "name": "hmrc.employment_income.amount@E14001412", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1503021389.7846894, + "kind": "calibration_drift", + "ledger_value": 1555700000.0, + "name": "hmrc.employment_income.amount@E14001413", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2125742618.713432, + "kind": "calibration_drift", + "ledger_value": 2051100000.0, + "name": "hmrc.employment_income.amount@E14001414", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1293527284.173674, + "kind": "calibration_drift", + "ledger_value": 1234800000.0, + "name": "hmrc.employment_income.amount@E14001415", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1063281403.950247, + "kind": "calibration_drift", + "ledger_value": 1080000000.0, + "name": "hmrc.employment_income.amount@E14001416", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2389902827.732001, + "kind": "calibration_drift", + "ledger_value": 2318400000.0, + "name": "hmrc.employment_income.amount@E14001417", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1273951443.4559658, + "kind": "calibration_drift", + "ledger_value": 1388400000.0, + "name": "hmrc.employment_income.amount@E14001418", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1830417691.0358663, + "kind": "calibration_drift", + "ledger_value": 1980000000.0, + "name": "hmrc.employment_income.amount@E14001419", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2271492954.748643, + "kind": "calibration_drift", + "ledger_value": 2101500000.0, + "name": "hmrc.employment_income.amount@E14001420", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2654029685.684229, + "kind": "calibration_drift", + "ledger_value": 2255000000.0, + "name": "hmrc.employment_income.amount@E14001421", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1260570254.5049977, + "kind": "calibration_drift", + "ledger_value": 1272000000.0, + "name": "hmrc.employment_income.amount@E14001422", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1324778468.560223, + "kind": "calibration_drift", + "ledger_value": 1328300000.0, + "name": "hmrc.employment_income.amount@E14001423", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1280026278.4288132, + "kind": "calibration_drift", + "ledger_value": 1284400000.0, + "name": "hmrc.employment_income.amount@E14001424", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1491292931.4546387, + "kind": "calibration_drift", + "ledger_value": 1520000000.0, + "name": "hmrc.employment_income.amount@E14001425", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1200273997.0091484, + "kind": "calibration_drift", + "ledger_value": 1236300000.0, + "name": "hmrc.employment_income.amount@E14001426", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1351947235.3816516, + "kind": "calibration_drift", + "ledger_value": 1444400000.0, + "name": "hmrc.employment_income.amount@E14001427", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1502255550.4835172, + "kind": "calibration_drift", + "ledger_value": 1219800000.0, + "name": "hmrc.employment_income.amount@E14001428", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1538687267.1750932, + "kind": "calibration_drift", + "ledger_value": 1576000000.0, + "name": "hmrc.employment_income.amount@E14001429", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4271340238.9220967, + "kind": "calibration_drift", + "ledger_value": 4817400000.0, + "name": "hmrc.employment_income.amount@E14001430", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1440395498.5436606, + "kind": "calibration_drift", + "ledger_value": 1453200000.0, + "name": "hmrc.employment_income.amount@E14001431", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1374063933.2647014, + "kind": "calibration_drift", + "ledger_value": 1333800000.0, + "name": "hmrc.employment_income.amount@E14001432", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1368076799.2440846, + "kind": "calibration_drift", + "ledger_value": 1363500000.0, + "name": "hmrc.employment_income.amount@E14001433", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4487479853.307801, + "kind": "calibration_drift", + "ledger_value": 3965500000.0, + "name": "hmrc.employment_income.amount@E14001434", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5053958832.138191, + "kind": "calibration_drift", + "ledger_value": 3320100000.0, + "name": "hmrc.employment_income.amount@E14001435", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1212050885.9305859, + "kind": "calibration_drift", + "ledger_value": 1127000000.0, + "name": "hmrc.employment_income.amount@E14001436", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1920428513.4172027, + "kind": "calibration_drift", + "ledger_value": 1812000000.0, + "name": "hmrc.employment_income.amount@E14001437", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2454304972.0618777, + "kind": "calibration_drift", + "ledger_value": 2503200000.0, + "name": "hmrc.employment_income.amount@E14001438", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1962171696.2298126, + "kind": "calibration_drift", + "ledger_value": 2089800000.0, + "name": "hmrc.employment_income.amount@E14001439", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1093013261.9812443, + "kind": "calibration_drift", + "ledger_value": 1010600000.0, + "name": "hmrc.employment_income.amount@E14001440", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1619095452.8994718, + "kind": "calibration_drift", + "ledger_value": 1504800000.0, + "name": "hmrc.employment_income.amount@E14001441", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3024627970.0942802, + "kind": "calibration_drift", + "ledger_value": 2731200000.0, + "name": "hmrc.employment_income.amount@E14001442", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1640252381.2066975, + "kind": "calibration_drift", + "ledger_value": 1710000000.0, + "name": "hmrc.employment_income.amount@E14001443", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1336527583.271297, + "kind": "calibration_drift", + "ledger_value": 1430900000.0, + "name": "hmrc.employment_income.amount@E14001444", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5108148138.8195305, + "kind": "calibration_drift", + "ledger_value": 4595400000.0, + "name": "hmrc.employment_income.amount@E14001445", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 975296350.0429794, + "kind": "calibration_drift", + "ledger_value": 1076400000.0, + "name": "hmrc.employment_income.amount@E14001446", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1696694737.7030993, + "kind": "calibration_drift", + "ledger_value": 1667600000.0, + "name": "hmrc.employment_income.amount@E14001447", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1916731822.8314853, + "kind": "calibration_drift", + "ledger_value": 1839600000.0, + "name": "hmrc.employment_income.amount@E14001448", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1919158702.446872, + "kind": "calibration_drift", + "ledger_value": 1796000000.0, + "name": "hmrc.employment_income.amount@E14001449", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1473096836.7037199, + "kind": "calibration_drift", + "ledger_value": 1428000000.0, + "name": "hmrc.employment_income.amount@E14001450", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1282252618.0389285, + "kind": "calibration_drift", + "ledger_value": 1239500000.0, + "name": "hmrc.employment_income.amount@E14001451", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1263338906.6691196, + "kind": "calibration_drift", + "ledger_value": 1232400000.0, + "name": "hmrc.employment_income.amount@E14001452", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2040262600.4558053, + "kind": "calibration_drift", + "ledger_value": 2043600000.0, + "name": "hmrc.employment_income.amount@E14001453", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2437670382.53119, + "kind": "calibration_drift", + "ledger_value": 2601000000.0, + "name": "hmrc.employment_income.amount@E14001454", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1424971584.852572, + "kind": "calibration_drift", + "ledger_value": 1424000000.0, + "name": "hmrc.employment_income.amount@E14001455", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3570896202.721796, + "kind": "calibration_drift", + "ledger_value": 3420000000.0, + "name": "hmrc.employment_income.amount@E14001456", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2191020537.34094, + "kind": "calibration_drift", + "ledger_value": 2125200000.0, + "name": "hmrc.employment_income.amount@E14001457", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1513925953.2536402, + "kind": "calibration_drift", + "ledger_value": 1594700000.0, + "name": "hmrc.employment_income.amount@E14001458", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1933703061.3041902, + "kind": "calibration_drift", + "ledger_value": 1989300000.0, + "name": "hmrc.employment_income.amount@E14001459", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1625484034.9408643, + "kind": "calibration_drift", + "ledger_value": 1474200000.0, + "name": "hmrc.employment_income.amount@E14001460", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 960016620.7599118, + "kind": "calibration_drift", + "ledger_value": 1044000000.0, + "name": "hmrc.employment_income.amount@E14001461", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1485812239.552539, + "kind": "calibration_drift", + "ledger_value": 1345900000.0, + "name": "hmrc.employment_income.amount@E14001462", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1510951532.2258613, + "kind": "calibration_drift", + "ledger_value": 1372800000.0, + "name": "hmrc.employment_income.amount@E14001463", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1772444145.1350126, + "kind": "calibration_drift", + "ledger_value": 1715500000.0, + "name": "hmrc.employment_income.amount@E14001464", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3019353560.713626, + "kind": "calibration_drift", + "ledger_value": 2816500000.0, + "name": "hmrc.employment_income.amount@E14001465", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1113856443.2199252, + "kind": "calibration_drift", + "ledger_value": 1033200000.0, + "name": "hmrc.employment_income.amount@E14001466", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1027390715.668209, + "kind": "calibration_drift", + "ledger_value": 1116000000.0, + "name": "hmrc.employment_income.amount@E14001467", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1622667453.613196, + "kind": "calibration_drift", + "ledger_value": 1624300000.0, + "name": "hmrc.employment_income.amount@E14001468", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1264389092.2454796, + "kind": "calibration_drift", + "ledger_value": 1143800000.0, + "name": "hmrc.employment_income.amount@E14001469", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1129167799.146762, + "kind": "calibration_drift", + "ledger_value": 1124800000.0, + "name": "hmrc.employment_income.amount@E14001470", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1408797216.0222259, + "kind": "calibration_drift", + "ledger_value": 1377600000.0, + "name": "hmrc.employment_income.amount@E14001471", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1392098213.5826306, + "kind": "calibration_drift", + "ledger_value": 1410400000.0, + "name": "hmrc.employment_income.amount@E14001472", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1598405439.5210254, + "kind": "calibration_drift", + "ledger_value": 1487200000.0, + "name": "hmrc.employment_income.amount@E14001473", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1544149430.7070029, + "kind": "calibration_drift", + "ledger_value": 1385800000.0, + "name": "hmrc.employment_income.amount@E14001474", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1431370947.0366201, + "kind": "calibration_drift", + "ledger_value": 1317200000.0, + "name": "hmrc.employment_income.amount@E14001475", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1540967491.9330997, + "kind": "calibration_drift", + "ledger_value": 1449000000.0, + "name": "hmrc.employment_income.amount@E14001476", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2005066108.44354, + "kind": "calibration_drift", + "ledger_value": 2194800000.0, + "name": "hmrc.employment_income.amount@E14001477", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1314367994.9629965, + "kind": "calibration_drift", + "ledger_value": 1268400000.0, + "name": "hmrc.employment_income.amount@E14001478", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1792849567.639325, + "kind": "calibration_drift", + "ledger_value": 1812200000.0, + "name": "hmrc.employment_income.amount@E14001479", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1680221781.379818, + "kind": "calibration_drift", + "ledger_value": 1548300000.0, + "name": "hmrc.employment_income.amount@E14001480", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2610434558.6388073, + "kind": "calibration_drift", + "ledger_value": 2668800000.0, + "name": "hmrc.employment_income.amount@E14001481", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1764803412.1672192, + "kind": "calibration_drift", + "ledger_value": 1751800000.0, + "name": "hmrc.employment_income.amount@E14001482", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1658215018.493227, + "kind": "calibration_drift", + "ledger_value": 1784800000.0, + "name": "hmrc.employment_income.amount@E14001483", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 977156598.4100205, + "kind": "calibration_drift", + "ledger_value": 887600000.0, + "name": "hmrc.employment_income.amount@E14001484", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1124046522.7895222, + "kind": "calibration_drift", + "ledger_value": 1037000000.0, + "name": "hmrc.employment_income.amount@E14001485", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1015354686.3930101, + "kind": "calibration_drift", + "ledger_value": 933000000.0, + "name": "hmrc.employment_income.amount@E14001486", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1656436294.9550202, + "kind": "calibration_drift", + "ledger_value": 1416800000.0, + "name": "hmrc.employment_income.amount@E14001487", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1738440390.9650676, + "kind": "calibration_drift", + "ledger_value": 1728600000.0, + "name": "hmrc.employment_income.amount@E14001488", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1397839537.8920646, + "kind": "calibration_drift", + "ledger_value": 1524900000.0, + "name": "hmrc.employment_income.amount@E14001489", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2091360071.944215, + "kind": "calibration_drift", + "ledger_value": 2083500000.0, + "name": "hmrc.employment_income.amount@E14001490", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1470552273.8643405, + "kind": "calibration_drift", + "ledger_value": 1412000000.0, + "name": "hmrc.employment_income.amount@E14001491", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1058785186.1175578, + "kind": "calibration_drift", + "ledger_value": 1001300000.0, + "name": "hmrc.employment_income.amount@E14001492", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1318701163.1380167, + "kind": "calibration_drift", + "ledger_value": 1125300000.0, + "name": "hmrc.employment_income.amount@E14001493", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1489858835.6019595, + "kind": "calibration_drift", + "ledger_value": 1396800000.0, + "name": "hmrc.employment_income.amount@E14001494", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1546236960.4150372, + "kind": "calibration_drift", + "ledger_value": 1392000000.0, + "name": "hmrc.employment_income.amount@E14001495", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2542919990.555594, + "kind": "calibration_drift", + "ledger_value": 2534600000.0, + "name": "hmrc.employment_income.amount@E14001496", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1346172560.0058763, + "kind": "calibration_drift", + "ledger_value": 1219800000.0, + "name": "hmrc.employment_income.amount@E14001497", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1562601216.9665391, + "kind": "calibration_drift", + "ledger_value": 1415400000.0, + "name": "hmrc.employment_income.amount@E14001498", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1509197513.1812406, + "kind": "calibration_drift", + "ledger_value": 1427600000.0, + "name": "hmrc.employment_income.amount@E14001499", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1561571039.5839944, + "kind": "calibration_drift", + "ledger_value": 1525500000.0, + "name": "hmrc.employment_income.amount@E14001500", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1473114129.84923, + "kind": "calibration_drift", + "ledger_value": 1336200000.0, + "name": "hmrc.employment_income.amount@E14001501", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1936081280.553422, + "kind": "calibration_drift", + "ledger_value": 1856400000.0, + "name": "hmrc.employment_income.amount@E14001502", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3399644154.101547, + "kind": "calibration_drift", + "ledger_value": 2374400000.0, + "name": "hmrc.employment_income.amount@E14001503", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1352435149.1299791, + "kind": "calibration_drift", + "ledger_value": 1254300000.0, + "name": "hmrc.employment_income.amount@E14001504", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2040961737.6242952, + "kind": "calibration_drift", + "ledger_value": 2016300000.0, + "name": "hmrc.employment_income.amount@E14001505", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1094863628.550851, + "kind": "calibration_drift", + "ledger_value": 1428000000.0, + "name": "hmrc.employment_income.amount@E14001506", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3068298103.4066143, + "kind": "calibration_drift", + "ledger_value": 2944000000.0, + "name": "hmrc.employment_income.amount@E14001507", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1114246774.2185874, + "kind": "calibration_drift", + "ledger_value": 1193100000.0, + "name": "hmrc.employment_income.amount@E14001508", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1357388400.0940132, + "kind": "calibration_drift", + "ledger_value": 1377600000.0, + "name": "hmrc.employment_income.amount@E14001509", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1320702227.1184993, + "kind": "calibration_drift", + "ledger_value": 1332500000.0, + "name": "hmrc.employment_income.amount@E14001510", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 875329616.7464024, + "kind": "calibration_drift", + "ledger_value": 767200000.0, + "name": "hmrc.employment_income.amount@E14001511", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2360522662.2194333, + "kind": "calibration_drift", + "ledger_value": 2532600000.0, + "name": "hmrc.employment_income.amount@E14001512", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1512804369.2448266, + "kind": "calibration_drift", + "ledger_value": 1446900000.0, + "name": "hmrc.employment_income.amount@E14001513", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1279811349.3346136, + "kind": "calibration_drift", + "ledger_value": 1101600000.0, + "name": "hmrc.employment_income.amount@E14001514", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1403462280.6322849, + "kind": "calibration_drift", + "ledger_value": 1345500000.0, + "name": "hmrc.employment_income.amount@E14001515", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1899157944.4394805, + "kind": "calibration_drift", + "ledger_value": 1663200000.0, + "name": "hmrc.employment_income.amount@E14001516", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1685848229.794076, + "kind": "calibration_drift", + "ledger_value": 1669800000.0, + "name": "hmrc.employment_income.amount@E14001517", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1268822790.5874696, + "kind": "calibration_drift", + "ledger_value": 1105200000.0, + "name": "hmrc.employment_income.amount@E14001518", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1422855308.0974555, + "kind": "calibration_drift", + "ledger_value": 1568000000.0, + "name": "hmrc.employment_income.amount@E14001519", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1243051062.878341, + "kind": "calibration_drift", + "ledger_value": 1201200000.0, + "name": "hmrc.employment_income.amount@E14001520", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1096978333.2018304, + "kind": "calibration_drift", + "ledger_value": 1189500000.0, + "name": "hmrc.employment_income.amount@E14001521", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1301017686.6290114, + "kind": "calibration_drift", + "ledger_value": 1180300000.0, + "name": "hmrc.employment_income.amount@E14001522", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1538595860.5488243, + "kind": "calibration_drift", + "ledger_value": 1335600000.0, + "name": "hmrc.employment_income.amount@E14001523", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1253228079.011178, + "kind": "calibration_drift", + "ledger_value": 1125400000.0, + "name": "hmrc.employment_income.amount@E14001524", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2583644113.007773, + "kind": "calibration_drift", + "ledger_value": 2868000000.0, + "name": "hmrc.employment_income.amount@E14001525", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1947969082.8671036, + "kind": "calibration_drift", + "ledger_value": 1852200000.0, + "name": "hmrc.employment_income.amount@E14001526", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2864219222.7896953, + "kind": "calibration_drift", + "ledger_value": 2548800000.0, + "name": "hmrc.employment_income.amount@E14001527", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1600357094.5143356, + "kind": "calibration_drift", + "ledger_value": 1610000000.0, + "name": "hmrc.employment_income.amount@E14001528", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1558517564.1767395, + "kind": "calibration_drift", + "ledger_value": 1332000000.0, + "name": "hmrc.employment_income.amount@E14001529", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1335732832.3746605, + "kind": "calibration_drift", + "ledger_value": 1168000000.0, + "name": "hmrc.employment_income.amount@E14001530", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1206196899.3464408, + "kind": "calibration_drift", + "ledger_value": 1240200000.0, + "name": "hmrc.employment_income.amount@E14001531", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2398766800.030731, + "kind": "calibration_drift", + "ledger_value": 2411100000.0, + "name": "hmrc.employment_income.amount@E14001532", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1586677193.3002632, + "kind": "calibration_drift", + "ledger_value": 1551600000.0, + "name": "hmrc.employment_income.amount@E14001533", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2474649122.5301175, + "kind": "calibration_drift", + "ledger_value": 2270100000.0, + "name": "hmrc.employment_income.amount@E14001534", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1854072243.6446571, + "kind": "calibration_drift", + "ledger_value": 1756000000.0, + "name": "hmrc.employment_income.amount@E14001535", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1929203549.5390227, + "kind": "calibration_drift", + "ledger_value": 1645600000.0, + "name": "hmrc.employment_income.amount@E14001536", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1974551117.96586, + "kind": "calibration_drift", + "ledger_value": 1929200000.0, + "name": "hmrc.employment_income.amount@E14001537", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1581734847.2490547, + "kind": "calibration_drift", + "ledger_value": 1535100000.0, + "name": "hmrc.employment_income.amount@E14001538", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2498663125.5205874, + "kind": "calibration_drift", + "ledger_value": 2299000000.0, + "name": "hmrc.employment_income.amount@E14001539", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1560059124.5765188, + "kind": "calibration_drift", + "ledger_value": 1508700000.0, + "name": "hmrc.employment_income.amount@E14001540", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1413336666.7186906, + "kind": "calibration_drift", + "ledger_value": 1497600000.0, + "name": "hmrc.employment_income.amount@E14001541", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1573762707.1687863, + "kind": "calibration_drift", + "ledger_value": 1548000000.0, + "name": "hmrc.employment_income.amount@E14001542", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1586450935.074661, + "kind": "calibration_drift", + "ledger_value": 1444800000.0, + "name": "hmrc.employment_income.amount@E14001543", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1331469668.4180992, + "kind": "calibration_drift", + "ledger_value": 1227600000.0, + "name": "hmrc.employment_income.amount@E14001544", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1723032198.3153517, + "kind": "calibration_drift", + "ledger_value": 1578500000.0, + "name": "hmrc.employment_income.amount@E14001545", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2071896704.4929407, + "kind": "calibration_drift", + "ledger_value": 1918800000.0, + "name": "hmrc.employment_income.amount@E14001546", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1279052921.381517, + "kind": "calibration_drift", + "ledger_value": 1213600000.0, + "name": "hmrc.employment_income.amount@E14001547", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1145623951.5224257, + "kind": "calibration_drift", + "ledger_value": 1010600000.0, + "name": "hmrc.employment_income.amount@E14001548", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2348330105.9251356, + "kind": "calibration_drift", + "ledger_value": 2158800000.0, + "name": "hmrc.employment_income.amount@E14001549", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4085135059.414797, + "kind": "calibration_drift", + "ledger_value": 4031000000.0, + "name": "hmrc.employment_income.amount@E14001550", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1185978741.795491, + "kind": "calibration_drift", + "ledger_value": 1177800000.0, + "name": "hmrc.employment_income.amount@E14001551", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1004245075.627294, + "kind": "calibration_drift", + "ledger_value": 891000000.0, + "name": "hmrc.employment_income.amount@E14001552", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2254912596.6339507, + "kind": "calibration_drift", + "ledger_value": 2255000000.0, + "name": "hmrc.employment_income.amount@E14001553", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1197402099.629752, + "kind": "calibration_drift", + "ledger_value": 1094800000.0, + "name": "hmrc.employment_income.amount@E14001554", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2666355992.759065, + "kind": "calibration_drift", + "ledger_value": 2354000000.0, + "name": "hmrc.employment_income.amount@E14001555", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3723317987.2499614, + "kind": "calibration_drift", + "ledger_value": 3513600000.0, + "name": "hmrc.employment_income.amount@E14001556", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1598483258.675822, + "kind": "calibration_drift", + "ledger_value": 1472000000.0, + "name": "hmrc.employment_income.amount@E14001557", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2389276801.18859, + "kind": "calibration_drift", + "ledger_value": 2303600000.0, + "name": "hmrc.employment_income.amount@E14001558", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3213512351.9310045, + "kind": "calibration_drift", + "ledger_value": 2789700000.0, + "name": "hmrc.employment_income.amount@E14001559", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1742912124.4432225, + "kind": "calibration_drift", + "ledger_value": 1582400000.0, + "name": "hmrc.employment_income.amount@E14001560", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1242512504.9181616, + "kind": "calibration_drift", + "ledger_value": 1197000000.0, + "name": "hmrc.employment_income.amount@E14001561", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1188370136.7746356, + "kind": "calibration_drift", + "ledger_value": 1087800000.0, + "name": "hmrc.employment_income.amount@E14001562", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2365702305.8149548, + "kind": "calibration_drift", + "ledger_value": 2392200000.0, + "name": "hmrc.employment_income.amount@E14001563", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1566264893.3653734, + "kind": "calibration_drift", + "ledger_value": 1470000000.0, + "name": "hmrc.employment_income.amount@E14001564", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2033797434.4842958, + "kind": "calibration_drift", + "ledger_value": 1752600000.0, + "name": "hmrc.employment_income.amount@E14001565", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2373195178.7196507, + "kind": "calibration_drift", + "ledger_value": 2083800000.0, + "name": "hmrc.employment_income.amount@E14001566", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1222519158.2588463, + "kind": "calibration_drift", + "ledger_value": 1082400000.0, + "name": "hmrc.employment_income.amount@E14001567", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2249504720.2322416, + "kind": "calibration_drift", + "ledger_value": 2316100000.0, + "name": "hmrc.employment_income.amount@E14001568", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1310336649.657884, + "kind": "calibration_drift", + "ledger_value": 1234200000.0, + "name": "hmrc.employment_income.amount@E14001569", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1652225414.0232515, + "kind": "calibration_drift", + "ledger_value": 1653900000.0, + "name": "hmrc.employment_income.amount@E14001570", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1716484384.583481, + "kind": "calibration_drift", + "ledger_value": 1481200000.0, + "name": "hmrc.employment_income.amount@E14001571", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1236960169.984662, + "kind": "calibration_drift", + "ledger_value": 1312500000.0, + "name": "hmrc.employment_income.amount@E14001572", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2273307499.80255, + "kind": "calibration_drift", + "ledger_value": 2156000000.0, + "name": "hmrc.employment_income.amount@E14001573", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1233880754.8591418, + "kind": "calibration_drift", + "ledger_value": 1421400000.0, + "name": "hmrc.employment_income.amount@E14001574", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1208449949.1615028, + "kind": "calibration_drift", + "ledger_value": 1190000000.0, + "name": "hmrc.employment_income.amount@E14001575", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2188819366.962409, + "kind": "calibration_drift", + "ledger_value": 2542000000.0, + "name": "hmrc.employment_income.amount@E14001576", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1349235917.2105656, + "kind": "calibration_drift", + "ledger_value": 1356600000.0, + "name": "hmrc.employment_income.amount@E14001577", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1697826203.5093474, + "kind": "calibration_drift", + "ledger_value": 1713600000.0, + "name": "hmrc.employment_income.amount@E14001578", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1344047973.5574627, + "kind": "calibration_drift", + "ledger_value": 1485800000.0, + "name": "hmrc.employment_income.amount@E14001579", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1267192294.01078, + "kind": "calibration_drift", + "ledger_value": 1076400000.0, + "name": "hmrc.employment_income.amount@E14001580", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1354423860.8636684, + "kind": "calibration_drift", + "ledger_value": 1288000000.0, + "name": "hmrc.employment_income.amount@E14001581", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1532469532.0622275, + "kind": "calibration_drift", + "ledger_value": 1683500000.0, + "name": "hmrc.employment_income.amount@E14001582", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1412201495.2384048, + "kind": "calibration_drift", + "ledger_value": 1552200000.0, + "name": "hmrc.employment_income.amount@E14001583", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1300056681.828508, + "kind": "calibration_drift", + "ledger_value": 1404000000.0, + "name": "hmrc.employment_income.amount@E14001584", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1566882505.7050283, + "kind": "calibration_drift", + "ledger_value": 1421200000.0, + "name": "hmrc.employment_income.amount@E14001585", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4502727466.7492075, + "kind": "calibration_drift", + "ledger_value": 4401600000.0, + "name": "hmrc.employment_income.amount@E14001586", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2492377067.127578, + "kind": "calibration_drift", + "ledger_value": 2331000000.0, + "name": "hmrc.employment_income.amount@E14001587", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3237958683.559233, + "kind": "calibration_drift", + "ledger_value": 2767600000.0, + "name": "hmrc.employment_income.amount@E14001588", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1395359206.7360098, + "kind": "calibration_drift", + "ledger_value": 1373600000.0, + "name": "hmrc.employment_income.amount@E14001589", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1896977772.880498, + "kind": "calibration_drift", + "ledger_value": 1840400000.0, + "name": "hmrc.employment_income.amount@E14001590", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2066760640.2763686, + "kind": "calibration_drift", + "ledger_value": 1935000000.0, + "name": "hmrc.employment_income.amount@E14001591", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2856274257.652372, + "kind": "calibration_drift", + "ledger_value": 2663400000.0, + "name": "hmrc.employment_income.amount@E14001592", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2558459117.0213165, + "kind": "calibration_drift", + "ledger_value": 2735400000.0, + "name": "hmrc.employment_income.amount@E14001593", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1160083491.6184313, + "kind": "calibration_drift", + "ledger_value": 1256000000.0, + "name": "hmrc.employment_income.amount@E14001594", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1296204016.0537393, + "kind": "calibration_drift", + "ledger_value": 1328800000.0, + "name": "hmrc.employment_income.amount@E14001595", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1525333253.1670702, + "kind": "calibration_drift", + "ledger_value": 1402800000.0, + "name": "hmrc.employment_income.amount@E14001596", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1506974108.7584822, + "kind": "calibration_drift", + "ledger_value": 1479200000.0, + "name": "hmrc.employment_income.amount@E14001597", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1680780102.9348662, + "kind": "calibration_drift", + "ledger_value": 1846000000.0, + "name": "hmrc.employment_income.amount@E14001598", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1516329700.4795778, + "kind": "calibration_drift", + "ledger_value": 1337700000.0, + "name": "hmrc.employment_income.amount@E14001599", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2203067683.6382527, + "kind": "calibration_drift", + "ledger_value": 2136000000.0, + "name": "hmrc.employment_income.amount@E14001600", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1320702227.1184993, + "kind": "calibration_drift", + "ledger_value": 1184400000.0, + "name": "hmrc.employment_income.amount@E14001601", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1660141968.992951, + "kind": "calibration_drift", + "ledger_value": 1467800000.0, + "name": "hmrc.employment_income.amount@E14001602", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1341869037.2231596, + "kind": "calibration_drift", + "ledger_value": 1434400000.0, + "name": "hmrc.employment_income.amount@E14001603", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1629533101.4396434, + "kind": "calibration_drift", + "ledger_value": 1435000000.0, + "name": "hmrc.employment_income.amount@E14001604", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1520289830.8014464, + "kind": "calibration_drift", + "ledger_value": 1389600000.0, + "name": "hmrc.employment_income.amount@E14001605", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1679179251.75048, + "kind": "calibration_drift", + "ledger_value": 1684800000.0, + "name": "hmrc.employment_income.amount@N05000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1120846937.807589, + "kind": "calibration_drift", + "ledger_value": 1247000000.0, + "name": "hmrc.employment_income.amount@N05000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1776881818.2098813, + "kind": "calibration_drift", + "ledger_value": 1674400000.0, + "name": "hmrc.employment_income.amount@N05000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1194084787.5689647, + "kind": "calibration_drift", + "ledger_value": 1056400000.0, + "name": "hmrc.employment_income.amount@N05000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1226976704.99811, + "kind": "calibration_drift", + "ledger_value": 1248000000.0, + "name": "hmrc.employment_income.amount@N05000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1010166742.7399071, + "kind": "calibration_drift", + "ledger_value": 966400000.0, + "name": "hmrc.employment_income.amount@N05000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1295734080.3279724, + "kind": "calibration_drift", + "ledger_value": 1234800000.0, + "name": "hmrc.employment_income.amount@N05000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1091444526.6385205, + "kind": "calibration_drift", + "ledger_value": 998400000.0, + "name": "hmrc.employment_income.amount@N05000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1699281298.1815748, + "kind": "calibration_drift", + "ledger_value": 1614800000.0, + "name": "hmrc.employment_income.amount@N05000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1254496728.1365132, + "kind": "calibration_drift", + "ledger_value": 1139600000.0, + "name": "hmrc.employment_income.amount@N05000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1230567882.2692318, + "kind": "calibration_drift", + "ledger_value": 1032900000.0, + "name": "hmrc.employment_income.amount@N05000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1201802777.1139781, + "kind": "calibration_drift", + "ledger_value": 1158300000.0, + "name": "hmrc.employment_income.amount@N05000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1398743722.3573198, + "kind": "calibration_drift", + "ledger_value": 1118600000.0, + "name": "hmrc.employment_income.amount@N05000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1459944111.93966, + "kind": "calibration_drift", + "ledger_value": 1377600000.0, + "name": "hmrc.employment_income.amount@N05000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1097297021.1690922, + "kind": "calibration_drift", + "ledger_value": 1053500000.0, + "name": "hmrc.employment_income.amount@N05000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1131416397.2609994, + "kind": "calibration_drift", + "ledger_value": 1040400000.0, + "name": "hmrc.employment_income.amount@N05000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1480350076.0206294, + "kind": "calibration_drift", + "ledger_value": 1447600000.0, + "name": "hmrc.employment_income.amount@N05000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1083120824.4925942, + "kind": "calibration_drift", + "ledger_value": 1003000000.0, + "name": "hmrc.employment_income.amount@N05000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1893716217.646136, + "kind": "calibration_drift", + "ledger_value": 1905700000.0, + "name": "hmrc.employment_income.amount@N09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2720417156.249697, + "kind": "calibration_drift", + "ledger_value": 2639400000.0, + "name": "hmrc.employment_income.amount@N09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4482763168.413619, + "kind": "calibration_drift", + "ledger_value": 4352000000.0, + "name": "hmrc.employment_income.amount@N09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1352917041.533252, + "kind": "calibration_drift", + "ledger_value": 1380000000.0, + "name": "hmrc.employment_income.amount@N09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1688205177.9132316, + "kind": "calibration_drift", + "ledger_value": 1523900000.0, + "name": "hmrc.employment_income.amount@N09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1154146077.6413195, + "kind": "calibration_drift", + "ledger_value": 1189000000.0, + "name": "hmrc.employment_income.amount@N09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2291135598.5965285, + "kind": "calibration_drift", + "ledger_value": 2128600000.0, + "name": "hmrc.employment_income.amount@N09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1717616417.9465632, + "kind": "calibration_drift", + "ledger_value": 1677500000.0, + "name": "hmrc.employment_income.amount@N09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1899230825.1523857, + "kind": "calibration_drift", + "ledger_value": 1738500000.0, + "name": "hmrc.employment_income.amount@N09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1920921614.6769676, + "kind": "calibration_drift", + "ledger_value": 1787700000.0, + "name": "hmrc.employment_income.amount@N09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 756726696.6909267, + "kind": "calibration_drift", + "ledger_value": 718000000.0, + "name": "hmrc.employment_income.amount@S12000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1678891618.5693433, + "kind": "calibration_drift", + "ledger_value": 1699500000.0, + "name": "hmrc.employment_income.amount@S12000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1719332073.6151743, + "kind": "calibration_drift", + "ledger_value": 1543500000.0, + "name": "hmrc.employment_income.amount@S12000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1828398755.4054456, + "kind": "calibration_drift", + "ledger_value": 1886400000.0, + "name": "hmrc.employment_income.amount@S12000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1788203394.026559, + "kind": "calibration_drift", + "ledger_value": 1716000000.0, + "name": "hmrc.employment_income.amount@S12000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 328425513.70553577, + "kind": "calibration_drift", + "ledger_value": 330000000.0, + "name": "hmrc.employment_income.amount@S12000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2580836312.9248447, + "kind": "calibration_drift", + "ledger_value": 2468400000.0, + "name": "hmrc.employment_income.amount@S12000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3286706073.724802, + "kind": "calibration_drift", + "ledger_value": 3283000000.0, + "name": "hmrc.employment_income.amount@S12000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1036256023.8410487, + "kind": "calibration_drift", + "ledger_value": 1032300000.0, + "name": "hmrc.employment_income.amount@S12000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1672764276.8957326, + "kind": "calibration_drift", + "ledger_value": 1467800000.0, + "name": "hmrc.employment_income.amount@S12000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1291643624.7971444, + "kind": "calibration_drift", + "ledger_value": 1280600000.0, + "name": "hmrc.employment_income.amount@S12000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1676440681.899899, + "kind": "calibration_drift", + "ledger_value": 1734000000.0, + "name": "hmrc.employment_income.amount@S12000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 300975023.00775963, + "kind": "calibration_drift", + "ledger_value": 297000000.0, + "name": "hmrc.employment_income.amount@S12000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1527423732.3976858, + "kind": "calibration_drift", + "ledger_value": 1417500000.0, + "name": "hmrc.employment_income.amount@S12000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 348523194.394979, + "kind": "calibration_drift", + "ledger_value": 389400000.0, + "name": "hmrc.employment_income.amount@S12000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1455856381.6499124, + "kind": "calibration_drift", + "ledger_value": 1492100000.0, + "name": "hmrc.employment_income.amount@S12000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5075399655.08525, + "kind": "calibration_drift", + "ledger_value": 5110000000.0, + "name": "hmrc.employment_income.amount@S12000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1604138050.1512923, + "kind": "calibration_drift", + "ledger_value": 1527600000.0, + "name": "hmrc.employment_income.amount@S12000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4040736740.07934, + "kind": "calibration_drift", + "ledger_value": 4018000000.0, + "name": "hmrc.employment_income.amount@S12000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4724915711.354715, + "kind": "calibration_drift", + "ledger_value": 4760000000.0, + "name": "hmrc.employment_income.amount@S12000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1144342330.9635422, + "kind": "calibration_drift", + "ledger_value": 1168200000.0, + "name": "hmrc.employment_income.amount@S12000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10113790166.461891, + "kind": "calibration_drift", + "ledger_value": 9517200000.0, + "name": "hmrc.employment_income.amount@S12000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2817964435.69358, + "kind": "calibration_drift", + "ledger_value": 2670000000.0, + "name": "hmrc.employment_income.amount@S12000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1292623999.4649222, + "kind": "calibration_drift", + "ledger_value": 1276800000.0, + "name": "hmrc.employment_income.amount@S12000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3125679534.5423117, + "kind": "calibration_drift", + "ledger_value": 2963100000.0, + "name": "hmrc.employment_income.amount@S12000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1628279776.3453186, + "kind": "calibration_drift", + "ledger_value": 1577800000.0, + "name": "hmrc.employment_income.amount@S12000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1676440681.899899, + "kind": "calibration_drift", + "ledger_value": 1808800000.0, + "name": "hmrc.employment_income.amount@S12000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2038198934.3098774, + "kind": "calibration_drift", + "ledger_value": 1854000000.0, + "name": "hmrc.employment_income.amount@S12000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4894030341.546372, + "kind": "calibration_drift", + "ledger_value": 4695300000.0, + "name": "hmrc.employment_income.amount@S12000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2431329176.0887427, + "kind": "calibration_drift", + "ledger_value": 2227200000.0, + "name": "hmrc.employment_income.amount@S12000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8575214672.218234, + "kind": "calibration_drift", + "ledger_value": 8118400000.0, + "name": "hmrc.employment_income.amount@S12000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5014616425.683031, + "kind": "calibration_drift", + "ledger_value": 4644000000.0, + "name": "hmrc.employment_income.amount@S12000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1167904934.2878237, + "kind": "calibration_drift", + "ledger_value": 1716000000.0, + "name": "hmrc.employment_income.amount@S14000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1142335783.426102, + "kind": "calibration_drift", + "ledger_value": 330000000.0, + "name": "hmrc.employment_income.amount@S14000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1185815692.137822, + "kind": "calibration_drift", + "ledger_value": 1467800000.0, + "name": "hmrc.employment_income.amount@S14000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1802439852.0494895, + "kind": "calibration_drift", + "ledger_value": 1202400000.0, + "name": "hmrc.employment_income.amount@S14000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 331040214.055142, + "kind": "calibration_drift", + "ledger_value": 651700000.0, + "name": "hmrc.employment_income.amount@S14000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1378510742.110218, + "kind": "calibration_drift", + "ledger_value": 1824000000.0, + "name": "hmrc.employment_income.amount@S14000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1686081687.2584658, + "kind": "calibration_drift", + "ledger_value": 2195000000.0, + "name": "hmrc.employment_income.amount@S14000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1159875973.872307, + "kind": "calibration_drift", + "ledger_value": 1404000000.0, + "name": "hmrc.employment_income.amount@S14000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 653063287.9513192, + "kind": "calibration_drift", + "ledger_value": 1218000000.0, + "name": "hmrc.employment_income.amount@S14000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2105193420.9484272, + "kind": "calibration_drift", + "ledger_value": 1364200000.0, + "name": "hmrc.employment_income.amount@S14000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1783750902.6515257, + "kind": "calibration_drift", + "ledger_value": 1299600000.0, + "name": "hmrc.employment_income.amount@S14000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2236411338.631553, + "kind": "calibration_drift", + "ledger_value": 1352000000.0, + "name": "hmrc.employment_income.amount@S14000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1330779190.0523124, + "kind": "calibration_drift", + "ledger_value": 1232000000.0, + "name": "hmrc.employment_income.amount@S14000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1291214943.5740054, + "kind": "calibration_drift", + "ledger_value": 1467800000.0, + "name": "hmrc.employment_income.amount@S14000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1540211534.4293618, + "kind": "calibration_drift", + "ledger_value": 1231200000.0, + "name": "hmrc.employment_income.amount@S14000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1389441245.2974343, + "kind": "calibration_drift", + "ledger_value": 1246900000.0, + "name": "hmrc.employment_income.amount@S14000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1340295360.981718, + "kind": "calibration_drift", + "ledger_value": 1288200000.0, + "name": "hmrc.employment_income.amount@S14000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1236962554.8243895, + "kind": "calibration_drift", + "ledger_value": 1341400000.0, + "name": "hmrc.employment_income.amount@S14000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1636762871.4876459, + "kind": "calibration_drift", + "ledger_value": 1090800000.0, + "name": "hmrc.employment_income.amount@S14000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1292903223.3163412, + "kind": "calibration_drift", + "ledger_value": 1131900000.0, + "name": "hmrc.employment_income.amount@S14000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1496094249.7831178, + "kind": "calibration_drift", + "ledger_value": 1264000000.0, + "name": "hmrc.employment_income.amount@S14000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1263653375.3045564, + "kind": "calibration_drift", + "ledger_value": 1339400000.0, + "name": "hmrc.employment_income.amount@S14000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1421244774.7479062, + "kind": "calibration_drift", + "ledger_value": 1579200000.0, + "name": "hmrc.employment_income.amount@S14000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1171163456.9918442, + "kind": "calibration_drift", + "ledger_value": 1755000000.0, + "name": "hmrc.employment_income.amount@S14000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1154888136.6172523, + "kind": "calibration_drift", + "ledger_value": 2363200000.0, + "name": "hmrc.employment_income.amount@S14000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1237724774.0611553, + "kind": "calibration_drift", + "ledger_value": 1751800000.0, + "name": "hmrc.employment_income.amount@S14000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1439991580.0735261, + "kind": "calibration_drift", + "ledger_value": 1786000000.0, + "name": "hmrc.employment_income.amount@S14000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1530764536.0819974, + "kind": "calibration_drift", + "ledger_value": 2100900000.0, + "name": "hmrc.employment_income.amount@S14000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1784794667.5055428, + "kind": "calibration_drift", + "ledger_value": 1516200000.0, + "name": "hmrc.employment_income.amount@S14000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2626854742.7394032, + "kind": "calibration_drift", + "ledger_value": 1308000000.0, + "name": "hmrc.employment_income.amount@S14000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1883995561.5009475, + "kind": "calibration_drift", + "ledger_value": 1376400000.0, + "name": "hmrc.employment_income.amount@S14000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1898787377.0356874, + "kind": "calibration_drift", + "ledger_value": 1208000000.0, + "name": "hmrc.employment_income.amount@S14000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2218561106.790841, + "kind": "calibration_drift", + "ledger_value": 1387500000.0, + "name": "hmrc.employment_income.amount@S14000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1620488786.337734, + "kind": "calibration_drift", + "ledger_value": 1152000000.0, + "name": "hmrc.employment_income.amount@S14000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1435600805.7582588, + "kind": "calibration_drift", + "ledger_value": 1409800000.0, + "name": "hmrc.employment_income.amount@S14000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1382195136.0398123, + "kind": "calibration_drift", + "ledger_value": 1054000000.0, + "name": "hmrc.employment_income.amount@S14000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1398128714.1317, + "kind": "calibration_drift", + "ledger_value": 1571700000.0, + "name": "hmrc.employment_income.amount@S14000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1437517669.6398144, + "kind": "calibration_drift", + "ledger_value": 1455500000.0, + "name": "hmrc.employment_income.amount@S14000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1292009682.2406945, + "kind": "calibration_drift", + "ledger_value": 1196800000.0, + "name": "hmrc.employment_income.amount@S14000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1428166774.2184894, + "kind": "calibration_drift", + "ledger_value": 1531800000.0, + "name": "hmrc.employment_income.amount@S14000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1108369575.1944292, + "kind": "calibration_drift", + "ledger_value": 1729700000.0, + "name": "hmrc.employment_income.amount@S14000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1712937942.2360287, + "kind": "calibration_drift", + "ledger_value": 1656400000.0, + "name": "hmrc.employment_income.amount@S14000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1524059736.5227013, + "kind": "calibration_drift", + "ledger_value": 1696000000.0, + "name": "hmrc.employment_income.amount@S14000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1314787824.594594, + "kind": "calibration_drift", + "ledger_value": 1336600000.0, + "name": "hmrc.employment_income.amount@S14000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1477880583.5627358, + "kind": "calibration_drift", + "ledger_value": 1398100000.0, + "name": "hmrc.employment_income.amount@S14000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1740747790.6660192, + "kind": "calibration_drift", + "ledger_value": 1052800000.0, + "name": "hmrc.employment_income.amount@S14000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1621800594.9471612, + "kind": "calibration_drift", + "ledger_value": 1512000000.0, + "name": "hmrc.employment_income.amount@S14000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1770200487.9194925, + "kind": "calibration_drift", + "ledger_value": 1206000000.0, + "name": "hmrc.employment_income.amount@S14000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1435394710.1449986, + "kind": "calibration_drift", + "ledger_value": 1564000000.0, + "name": "hmrc.employment_income.amount@S14000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1490842074.4466906, + "kind": "calibration_drift", + "ledger_value": 1476000000.0, + "name": "hmrc.employment_income.amount@S14000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1174203344.9276266, + "kind": "calibration_drift", + "ledger_value": 1730400000.0, + "name": "hmrc.employment_income.amount@S14000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1440129876.3178196, + "kind": "calibration_drift", + "ledger_value": 1340000000.0, + "name": "hmrc.employment_income.amount@S14000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1319741417.9971533, + "kind": "calibration_drift", + "ledger_value": 1072500000.0, + "name": "hmrc.employment_income.amount@S14000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1590813748.6419847, + "kind": "calibration_drift", + "ledger_value": 1128500000.0, + "name": "hmrc.employment_income.amount@S14000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1418121927.1263385, + "kind": "calibration_drift", + "ledger_value": 1194600000.0, + "name": "hmrc.employment_income.amount@S14000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1773247787.2033508, + "kind": "calibration_drift", + "ledger_value": 1298700000.0, + "name": "hmrc.employment_income.amount@S14000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1351385208.1525652, + "kind": "calibration_drift", + "ledger_value": 2151600000.0, + "name": "hmrc.employment_income.amount@S14000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 799985728.9066185, + "kind": "calibration_drift", + "ledger_value": 765000000.0, + "name": "hmrc.employment_income.amount@W06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1199978593.3599277, + "kind": "calibration_drift", + "ledger_value": 1320200000.0, + "name": "hmrc.employment_income.amount@W06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1322525426.8321426, + "kind": "calibration_drift", + "ledger_value": 1209000000.0, + "name": "hmrc.employment_income.amount@W06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1086500225.5646567, + "kind": "calibration_drift", + "ledger_value": 1033600000.0, + "name": "hmrc.employment_income.amount@W06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2272018292.5748634, + "kind": "calibration_drift", + "ledger_value": 2190500000.0, + "name": "hmrc.employment_income.amount@W06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1841633813.4204447, + "kind": "calibration_drift", + "ledger_value": 1824000000.0, + "name": "hmrc.employment_income.amount@W06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 711752008.8066238, + "kind": "calibration_drift", + "ledger_value": 657800000.0, + "name": "hmrc.employment_income.amount@W06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1338211421.516586, + "kind": "calibration_drift", + "ledger_value": 1228500000.0, + "name": "hmrc.employment_income.amount@W06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2315399871.6240273, + "kind": "calibration_drift", + "ledger_value": 2053600000.0, + "name": "hmrc.employment_income.amount@W06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3172247331.2617536, + "kind": "calibration_drift", + "ledger_value": 2752000000.0, + "name": "hmrc.employment_income.amount@W06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1803399201.3771136, + "kind": "calibration_drift", + "ledger_value": 1591200000.0, + "name": "hmrc.employment_income.amount@W06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1893348577.1457193, + "kind": "calibration_drift", + "ledger_value": 1915200000.0, + "name": "hmrc.employment_income.amount@W06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1894083858.1465526, + "kind": "calibration_drift", + "ledger_value": 2002000000.0, + "name": "hmrc.employment_income.amount@W06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5232627242.430101, + "kind": "calibration_drift", + "ledger_value": 5162300000.0, + "name": "hmrc.employment_income.amount@W06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3130213767.3807836, + "kind": "calibration_drift", + "ledger_value": 2775300000.0, + "name": "hmrc.employment_income.amount@W06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2124962092.4082055, + "kind": "calibration_drift", + "ledger_value": 2098800000.0, + "name": "hmrc.employment_income.amount@W06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 788221232.8932859, + "kind": "calibration_drift", + "ledger_value": 691200000.0, + "name": "hmrc.employment_income.amount@W06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1149979485.3032641, + "kind": "calibration_drift", + "ledger_value": 1169200000.0, + "name": "hmrc.employment_income.amount@W06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1531222684.2353244, + "kind": "calibration_drift", + "ledger_value": 1497200000.0, + "name": "hmrc.employment_income.amount@W06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2102536021.88279, + "kind": "calibration_drift", + "ledger_value": 2311500000.0, + "name": "hmrc.employment_income.amount@W06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1441150761.6332467, + "kind": "calibration_drift", + "ledger_value": 1285200000.0, + "name": "hmrc.employment_income.amount@W06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 649620764.236211, + "kind": "calibration_drift", + "ledger_value": 668800000.0, + "name": "hmrc.employment_income.amount@W06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1239552906.5865343, + "kind": "calibration_drift", + "ledger_value": 1057400000.0, + "name": "hmrc.employment_income.amount@W07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1575220272.2903724, + "kind": "calibration_drift", + "ledger_value": 1443200000.0, + "name": "hmrc.employment_income.amount@W07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1082822658.376935, + "kind": "calibration_drift", + "ledger_value": 950400000.0, + "name": "hmrc.employment_income.amount@W07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1109717205.3195567, + "kind": "calibration_drift", + "ledger_value": 963600000.0, + "name": "hmrc.employment_income.amount@W07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1041726733.2962835, + "kind": "calibration_drift", + "ledger_value": 893200000.0, + "name": "hmrc.employment_income.amount@W07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1292376054.772557, + "kind": "calibration_drift", + "ledger_value": 1380000000.0, + "name": "hmrc.employment_income.amount@W07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1233277965.2156382, + "kind": "calibration_drift", + "ledger_value": 986700000.0, + "name": "hmrc.employment_income.amount@W07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1221841019.9099052, + "kind": "calibration_drift", + "ledger_value": 1243200000.0, + "name": "hmrc.employment_income.amount@W07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1371148803.0215292, + "kind": "calibration_drift", + "ledger_value": 1392300000.0, + "name": "hmrc.employment_income.amount@W07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1642883409.7736285, + "kind": "calibration_drift", + "ledger_value": 1633800000.0, + "name": "hmrc.employment_income.amount@W07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1433008854.9613857, + "kind": "calibration_drift", + "ledger_value": 1430900000.0, + "name": "hmrc.employment_income.amount@W07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1577213924.9227793, + "kind": "calibration_drift", + "ledger_value": 1488300000.0, + "name": "hmrc.employment_income.amount@W07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 935750631.9348623, + "kind": "calibration_drift", + "ledger_value": 837200000.0, + "name": "hmrc.employment_income.amount@W07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1230153776.2529798, + "kind": "calibration_drift", + "ledger_value": 1186600000.0, + "name": "hmrc.employment_income.amount@W07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1153922190.918032, + "kind": "calibration_drift", + "ledger_value": 1106000000.0, + "name": "hmrc.employment_income.amount@W07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 953530835.0972205, + "kind": "calibration_drift", + "ledger_value": 1065600000.0, + "name": "hmrc.employment_income.amount@W07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1451710156.6061428, + "kind": "calibration_drift", + "ledger_value": 1238400000.0, + "name": "hmrc.employment_income.amount@W07000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1092664928.6216788, + "kind": "calibration_drift", + "ledger_value": 1071000000.0, + "name": "hmrc.employment_income.amount@W07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1172154107.184651, + "kind": "calibration_drift", + "ledger_value": 1132200000.0, + "name": "hmrc.employment_income.amount@W07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1134471107.8929336, + "kind": "calibration_drift", + "ledger_value": 1046100000.0, + "name": "hmrc.employment_income.amount@W07000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1423337045.7223864, + "kind": "calibration_drift", + "ledger_value": 1497200000.0, + "name": "hmrc.employment_income.amount@W07000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1119194277.1073809, + "kind": "calibration_drift", + "ledger_value": 1032500000.0, + "name": "hmrc.employment_income.amount@W07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1203234830.565455, + "kind": "calibration_drift", + "ledger_value": 1165500000.0, + "name": "hmrc.employment_income.amount@W07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1517548867.2380571, + "kind": "calibration_drift", + "ledger_value": 1444400000.0, + "name": "hmrc.employment_income.amount@W07000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1326248385.9286022, + "kind": "calibration_drift", + "ledger_value": 1449100000.0, + "name": "hmrc.employment_income.amount@W07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1408022730.148298, + "kind": "calibration_drift", + "ledger_value": 1256000000.0, + "name": "hmrc.employment_income.amount@W07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1220540328.322591, + "kind": "calibration_drift", + "ledger_value": 1036200000.0, + "name": "hmrc.employment_income.amount@W07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1251989148.6578298, + "kind": "calibration_drift", + "ledger_value": 1036000000.0, + "name": "hmrc.employment_income.amount@W07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1166063214.290972, + "kind": "calibration_drift", + "ledger_value": 1169200000.0, + "name": "hmrc.employment_income.amount@W07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1309140524.1201556, + "kind": "calibration_drift", + "ledger_value": 1384500000.0, + "name": "hmrc.employment_income.amount@W07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1392395401.3025043, + "kind": "calibration_drift", + "ledger_value": 1419000000.0, + "name": "hmrc.employment_income.amount@W07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 806354670.653719, + "kind": "calibration_drift", + "ledger_value": 765000000.0, + "name": "hmrc.employment_income.amount@W07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110292.15012499336, + "kind": "calibration_drift", + "ledger_value": 93000.0, + "name": "hmrc.employment_income.count@E06000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116419.4917986041, + "kind": "calibration_drift", + "ledger_value": 102000.0, + "name": "hmrc.employment_income.count@E06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156859.946844435, + "kind": "calibration_drift", + "ledger_value": 138000.0, + "name": "hmrc.employment_income.count@E06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69851.69507916245, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80880.9100916618, + "kind": "calibration_drift", + "ledger_value": 70000.0, + "name": "hmrc.employment_income.count@E06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89459.18843471684, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111517.61845971551, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140928.85849304707, + "kind": "calibration_drift", + "ledger_value": 135000.0, + "name": "hmrc.employment_income.count@E06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 17156.556686110078, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "hmrc.employment_income.count@E06000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116419.4917986041, + "kind": "calibration_drift", + "ledger_value": 108000.0, + "name": "hmrc.employment_income.count@E06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 74000.0, + "name": "hmrc.employment_income.count@E06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 80000.0, + "name": "hmrc.employment_income.count@E06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109066.6817902712, + "kind": "calibration_drift", + "ledger_value": 97000.0, + "name": "hmrc.employment_income.count@E06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88233.7200999947, + "kind": "calibration_drift", + "ledger_value": 74000.0, + "name": "hmrc.employment_income.count@E06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 226711.64192359746, + "kind": "calibration_drift", + "ledger_value": 210000.0, + "name": "hmrc.employment_income.count@E06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 105390.27678610476, + "kind": "calibration_drift", + "ledger_value": 90000.0, + "name": "hmrc.employment_income.count@E06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 147056.2001666578, + "kind": "calibration_drift", + "ledger_value": 135000.0, + "name": "hmrc.employment_income.count@E06000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121321.3651374927, + "kind": "calibration_drift", + "ledger_value": 109000.0, + "name": "hmrc.employment_income.count@E06000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120095.89680277054, + "kind": "calibration_drift", + "ledger_value": 102000.0, + "name": "hmrc.employment_income.count@E06000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95586.53010832758, + "kind": "calibration_drift", + "ledger_value": 88000.0, + "name": "hmrc.employment_income.count@E06000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 86000.0, + "name": "hmrc.employment_income.count@E06000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 69000.0, + "name": "hmrc.employment_income.count@E06000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 75000.0, + "name": "hmrc.employment_income.count@E06000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129899.64348054773, + "kind": "calibration_drift", + "ledger_value": 115000.0, + "name": "hmrc.employment_income.count@E06000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E06000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85782.7834305504, + "kind": "calibration_drift", + "ledger_value": 74000.0, + "name": "hmrc.employment_income.count@E06000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85782.7834305504, + "kind": "calibration_drift", + "ledger_value": 80000.0, + "name": "hmrc.employment_income.count@E06000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69851.69507916245, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@E06000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80880.9100916618, + "kind": "calibration_drift", + "ledger_value": 65000.0, + "name": "hmrc.employment_income.count@E06000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89459.18843471684, + "kind": "calibration_drift", + "ledger_value": 86000.0, + "name": "hmrc.employment_income.count@E06000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 145830.73183193567, + "kind": "calibration_drift", + "ledger_value": 132000.0, + "name": "hmrc.employment_income.count@E06000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124997.77014165914, + "kind": "calibration_drift", + "ledger_value": 115000.0, + "name": "hmrc.employment_income.count@E06000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90684.65676943898, + "kind": "calibration_drift", + "ledger_value": 81000.0, + "name": "hmrc.employment_income.count@E06000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113968.55512915981, + "kind": "calibration_drift", + "ledger_value": 98000.0, + "name": "hmrc.employment_income.count@E06000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E06000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 223035.23691943102, + "kind": "calibration_drift", + "ledger_value": 189000.0, + "name": "hmrc.employment_income.count@E06000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 194849.4652208216, + "kind": "calibration_drift", + "ledger_value": 171000.0, + "name": "hmrc.employment_income.count@E06000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 162987.28851804574, + "kind": "calibration_drift", + "ledger_value": 144000.0, + "name": "hmrc.employment_income.count@E06000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 150732.60517082424, + "kind": "calibration_drift", + "ledger_value": 130000.0, + "name": "hmrc.employment_income.count@E06000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 229162.57859304175, + "kind": "calibration_drift", + "ledger_value": 205000.0, + "name": "hmrc.employment_income.count@E06000052", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 242642.7302749854, + "kind": "calibration_drift", + "ledger_value": 214000.0, + "name": "hmrc.employment_income.count@E06000054", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90684.65676943898, + "kind": "calibration_drift", + "ledger_value": 79000.0, + "name": "hmrc.employment_income.count@E06000055", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158085.41517915713, + "kind": "calibration_drift", + "ledger_value": 138000.0, + "name": "hmrc.employment_income.count@E06000056", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139703.3901583249, + "kind": "calibration_drift", + "ledger_value": 124000.0, + "name": "hmrc.employment_income.count@E06000057", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 178918.37686943368, + "kind": "calibration_drift", + "ledger_value": 155000.0, + "name": "hmrc.employment_income.count@E06000058", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158085.41517915713, + "kind": "calibration_drift", + "ledger_value": 142000.0, + "name": "hmrc.employment_income.count@E06000059", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 279406.7803166498, + "kind": "calibration_drift", + "ledger_value": 249000.0, + "name": "hmrc.employment_income.count@E06000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 177692.90853471152, + "kind": "calibration_drift", + "ledger_value": 155000.0, + "name": "hmrc.employment_income.count@E06000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216907.89524582028, + "kind": "calibration_drift", + "ledger_value": 188000.0, + "name": "hmrc.employment_income.count@E06000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216907.89524582028, + "kind": "calibration_drift", + "ledger_value": 112000.0, + "name": "hmrc.employment_income.count@E06000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216907.89524582028, + "kind": "calibration_drift", + "ledger_value": 95000.0, + "name": "hmrc.employment_income.count@E06000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216907.89524582028, + "kind": "calibration_drift", + "ledger_value": 254000.0, + "name": "hmrc.employment_income.count@E06000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216907.89524582028, + "kind": "calibration_drift", + "ledger_value": 217000.0, + "name": "hmrc.employment_income.count@E06000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71077.16341388461, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E07000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E07000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E07000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88233.7200999947, + "kind": "calibration_drift", + "ledger_value": 82000.0, + "name": "hmrc.employment_income.count@E07000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89459.18843471684, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E07000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60047.94840138527, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34313.113372220156, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E07000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45342.32838471949, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E07000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 31862.176702775858, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E07000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E07000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57597.01173194098, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E07000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E07000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34313.113372220156, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E07000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39214.98671110875, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36764.05004166445, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E07000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60047.94840138527, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25734.83502916512, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.employment_income.count@E07000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 19607.493355554376, + "kind": "calibration_drift", + "ledger_value": 18000.0, + "name": "hmrc.employment_income.count@E07000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E07000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34313.113372220156, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E07000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E07000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 63000.0, + "name": "hmrc.employment_income.count@E07000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84557.31509582825, + "kind": "calibration_drift", + "ledger_value": 74000.0, + "name": "hmrc.employment_income.count@E07000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74753.56841805106, + "kind": "calibration_drift", + "ledger_value": 65000.0, + "name": "hmrc.employment_income.count@E07000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35538.58170694231, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E07000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39214.98671110875, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E07000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E07000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90684.65676943898, + "kind": "calibration_drift", + "ledger_value": 80000.0, + "name": "hmrc.employment_income.count@E07000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E07000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E07000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29411.240033331564, + "kind": "calibration_drift", + "ledger_value": 25000.0, + "name": "hmrc.employment_income.count@E07000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E07000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E07000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E07000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E07000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47793.26505416379, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96811.99844304973, + "kind": "calibration_drift", + "ledger_value": 89000.0, + "name": "hmrc.employment_income.count@E07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57597.01173194098, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71077.16341388461, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39214.98671110875, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74753.56841805106, + "kind": "calibration_drift", + "ledger_value": 64000.0, + "name": "hmrc.employment_income.count@E07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64949.82174027387, + "kind": "calibration_drift", + "ledger_value": 60000.0, + "name": "hmrc.employment_income.count@E07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60047.94840138527, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75979.0367527732, + "kind": "calibration_drift", + "ledger_value": 69000.0, + "name": "hmrc.employment_income.count@E07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71077.16341388461, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45342.32838471949, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52695.13839305238, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88233.7200999947, + "kind": "calibration_drift", + "ledger_value": 75000.0, + "name": "hmrc.employment_income.count@E07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60047.94840138527, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68626.22674444031, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E07000113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E07000114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E07000115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36764.05004166445, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E07000117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57597.01173194098, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E07000118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E07000119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 31862.176702775858, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.employment_income.count@E07000120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E07000121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36764.05004166445, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.employment_income.count@E07000122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71077.16341388461, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E07000123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 30636.70836805371, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E07000124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 30636.70836805371, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E07000125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E07000126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E07000128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83331.84676110609, + "kind": "calibration_drift", + "ledger_value": 75000.0, + "name": "hmrc.employment_income.count@E07000130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E07000131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57597.01173194098, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25734.83502916512, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.employment_income.count@E07000133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 24509.366694442968, + "kind": "calibration_drift", + "ledger_value": 21000.0, + "name": "hmrc.employment_income.count@E07000135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34313.113372220156, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E07000136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E07000137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E07000138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47793.26505416379, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E07000141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61273.41673610742, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57597.01173194098, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40440.4550458309, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E07000145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66175.29007499601, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39214.98671110875, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E07000147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E07000149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E07000171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52695.13839305238, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E07000173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E07000174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E07000175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84557.31509582825, + "kind": "calibration_drift", + "ledger_value": 78000.0, + "name": "hmrc.employment_income.count@E07000177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69851.69507916245, + "kind": "calibration_drift", + "ledger_value": 65000.0, + "name": "hmrc.employment_income.count@E07000178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72302.63174860676, + "kind": "calibration_drift", + "ledger_value": 67000.0, + "name": "hmrc.employment_income.count@E07000179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71077.16341388461, + "kind": "calibration_drift", + "ledger_value": 67000.0, + "name": "hmrc.employment_income.count@E07000180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61273.41673610742, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E07000192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E07000194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E07000196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66175.29007499601, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E07000197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45342.32838471949, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E07000198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E07000199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E07000200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E07000202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45342.32838471949, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E07000203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68626.22674444031, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E07000207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40440.4550458309, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75979.0367527732, + "kind": "calibration_drift", + "ledger_value": 66000.0, + "name": "hmrc.employment_income.count@E07000209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E07000210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@E07000211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45342.32838471949, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E07000212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E07000214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39214.98671110875, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E07000215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64949.82174027387, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E07000216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52695.13839305238, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E07000217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29411.240033331564, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E07000218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 61000.0, + "name": "hmrc.employment_income.count@E07000219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E07000220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64949.82174027387, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E07000221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 67000.0, + "name": "hmrc.employment_income.count@E07000222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25734.83502916512, + "kind": "calibration_drift", + "ledger_value": 24000.0, + "name": "hmrc.employment_income.count@E07000223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66175.29007499601, + "kind": "calibration_drift", + "ledger_value": 64000.0, + "name": "hmrc.employment_income.count@E07000224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E07000225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E07000226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68626.22674444031, + "kind": "calibration_drift", + "ledger_value": 64000.0, + "name": "hmrc.employment_income.count@E07000227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73528.1000833289, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@E07000228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52695.13839305238, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E07000229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E07000234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 31862.176702775858, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E07000235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47793.26505416379, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E07000236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E07000237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60047.94840138527, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E07000238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E07000239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@E07000240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E07000241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78429.9734222175, + "kind": "calibration_drift", + "ledger_value": 69000.0, + "name": "hmrc.employment_income.count@E07000242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E07000243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96811.99844304973, + "kind": "calibration_drift", + "ledger_value": 86000.0, + "name": "hmrc.employment_income.count@E07000244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 79655.44175693965, + "kind": "calibration_drift", + "ledger_value": 73000.0, + "name": "hmrc.employment_income.count@E07000245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120095.89680277054, + "kind": "calibration_drift", + "ledger_value": 109000.0, + "name": "hmrc.employment_income.count@E08000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85782.7834305504, + "kind": "calibration_drift", + "ledger_value": 79000.0, + "name": "hmrc.employment_income.count@E08000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 218133.3635805424, + "kind": "calibration_drift", + "ledger_value": 202000.0, + "name": "hmrc.employment_income.count@E08000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91910.12510416114, + "kind": "calibration_drift", + "ledger_value": 81000.0, + "name": "hmrc.employment_income.count@E08000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87008.25176527254, + "kind": "calibration_drift", + "ledger_value": 82000.0, + "name": "hmrc.employment_income.count@E08000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129899.64348054773, + "kind": "calibration_drift", + "ledger_value": 123000.0, + "name": "hmrc.employment_income.count@E08000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 142154.32682776923, + "kind": "calibration_drift", + "ledger_value": 129000.0, + "name": "hmrc.employment_income.count@E08000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104164.80845138262, + "kind": "calibration_drift", + "ledger_value": 95000.0, + "name": "hmrc.employment_income.count@E08000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118870.4284680484, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E08000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161761.8201833236, + "kind": "calibration_drift", + "ledger_value": 138000.0, + "name": "hmrc.employment_income.count@E08000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72302.63174860676, + "kind": "calibration_drift", + "ledger_value": 61000.0, + "name": "hmrc.employment_income.count@E08000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 200976.80689443235, + "kind": "calibration_drift", + "ledger_value": 181000.0, + "name": "hmrc.employment_income.count@E08000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83331.84676110609, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E08000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122546.83347221484, + "kind": "calibration_drift", + "ledger_value": 106000.0, + "name": "hmrc.employment_income.count@E08000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137252.45348888062, + "kind": "calibration_drift", + "ledger_value": 122000.0, + "name": "hmrc.employment_income.count@E08000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109066.6817902712, + "kind": "calibration_drift", + "ledger_value": 98000.0, + "name": "hmrc.employment_income.count@E08000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134801.51681943634, + "kind": "calibration_drift", + "ledger_value": 119000.0, + "name": "hmrc.employment_income.count@E08000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115194.02346388195, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E08000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 226711.64192359746, + "kind": "calibration_drift", + "ledger_value": 202000.0, + "name": "hmrc.employment_income.count@E08000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113968.55512915981, + "kind": "calibration_drift", + "ledger_value": 107000.0, + "name": "hmrc.employment_income.count@E08000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98037.46677777187, + "kind": "calibration_drift", + "ledger_value": 89000.0, + "name": "hmrc.employment_income.count@E08000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E08000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118870.4284680484, + "kind": "calibration_drift", + "ledger_value": 103000.0, + "name": "hmrc.employment_income.count@E08000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 406855.48712775327, + "kind": "calibration_drift", + "ledger_value": 380000.0, + "name": "hmrc.employment_income.count@E08000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144605.2634972135, + "kind": "calibration_drift", + "ledger_value": 139000.0, + "name": "hmrc.employment_income.count@E08000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139703.3901583249, + "kind": "calibration_drift", + "ledger_value": 117000.0, + "name": "hmrc.employment_income.count@E08000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136026.98515415846, + "kind": "calibration_drift", + "ledger_value": 130000.0, + "name": "hmrc.employment_income.count@E08000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 102939.34011666047, + "kind": "calibration_drift", + "ledger_value": 89000.0, + "name": "hmrc.employment_income.count@E08000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110292.15012499336, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E08000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113968.55512915981, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E08000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 194849.4652208216, + "kind": "calibration_drift", + "ledger_value": 191000.0, + "name": "hmrc.employment_income.count@E08000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88233.7200999947, + "kind": "calibration_drift", + "ledger_value": 80000.0, + "name": "hmrc.employment_income.count@E08000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 183820.25020832228, + "kind": "calibration_drift", + "ledger_value": 167000.0, + "name": "hmrc.employment_income.count@E08000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 362738.6270777559, + "kind": "calibration_drift", + "ledger_value": 330000.0, + "name": "hmrc.employment_income.count@E08000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 170340.09852637863, + "kind": "calibration_drift", + "ledger_value": 144000.0, + "name": "hmrc.employment_income.count@E08000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91910.12510416114, + "kind": "calibration_drift", + "ledger_value": 77000.0, + "name": "hmrc.employment_income.count@E08000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8578.278343055039, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.employment_income.count@E09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89459.18843471684, + "kind": "calibration_drift", + "ledger_value": 86000.0, + "name": "hmrc.employment_income.count@E09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 176467.4401999894, + "kind": "calibration_drift", + "ledger_value": 164000.0, + "name": "hmrc.employment_income.count@E09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126223.23847638129, + "kind": "calibration_drift", + "ledger_value": 109000.0, + "name": "hmrc.employment_income.count@E09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144605.2634972135, + "kind": "calibration_drift", + "ledger_value": 146000.0, + "name": "hmrc.employment_income.count@E09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161761.8201833236, + "kind": "calibration_drift", + "ledger_value": 146000.0, + "name": "hmrc.employment_income.count@E09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106615.74512082692, + "kind": "calibration_drift", + "ledger_value": 96000.0, + "name": "hmrc.employment_income.count@E09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191173.06021665517, + "kind": "calibration_drift", + "ledger_value": 176000.0, + "name": "hmrc.employment_income.count@E09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 177692.90853471152, + "kind": "calibration_drift", + "ledger_value": 155000.0, + "name": "hmrc.employment_income.count@E09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 133576.04848471418, + "kind": "calibration_drift", + "ledger_value": 122000.0, + "name": "hmrc.employment_income.count@E09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 138477.92182360278, + "kind": "calibration_drift", + "ledger_value": 136000.0, + "name": "hmrc.employment_income.count@E09000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131125.1118152699, + "kind": "calibration_drift", + "ledger_value": 108000.0, + "name": "hmrc.employment_income.count@E09000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 102939.34011666047, + "kind": "calibration_drift", + "ledger_value": 89000.0, + "name": "hmrc.employment_income.count@E09000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 127448.70681110343, + "kind": "calibration_drift", + "ledger_value": 112000.0, + "name": "hmrc.employment_income.count@E09000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113968.55512915981, + "kind": "calibration_drift", + "ledger_value": 111000.0, + "name": "hmrc.employment_income.count@E09000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121321.3651374927, + "kind": "calibration_drift", + "ledger_value": 107000.0, + "name": "hmrc.employment_income.count@E09000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140928.85849304707, + "kind": "calibration_drift", + "ledger_value": 138000.0, + "name": "hmrc.employment_income.count@E09000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140928.85849304707, + "kind": "calibration_drift", + "ledger_value": 129000.0, + "name": "hmrc.employment_income.count@E09000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116419.4917986041, + "kind": "calibration_drift", + "ledger_value": 103000.0, + "name": "hmrc.employment_income.count@E09000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E09000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 79655.44175693965, + "kind": "calibration_drift", + "ledger_value": 71000.0, + "name": "hmrc.employment_income.count@E09000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182594.78187360012, + "kind": "calibration_drift", + "ledger_value": 162000.0, + "name": "hmrc.employment_income.count@E09000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 154409.0101749907, + "kind": "calibration_drift", + "ledger_value": 130000.0, + "name": "hmrc.employment_income.count@E09000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111517.61845971551, + "kind": "calibration_drift", + "ledger_value": 101000.0, + "name": "hmrc.employment_income.count@E09000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148281.66850137996, + "kind": "calibration_drift", + "ledger_value": 148000.0, + "name": "hmrc.employment_income.count@E09000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 128674.17514582559, + "kind": "calibration_drift", + "ledger_value": 120000.0, + "name": "hmrc.employment_income.count@E09000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98037.46677777187, + "kind": "calibration_drift", + "ledger_value": 84000.0, + "name": "hmrc.employment_income.count@E09000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171565.5668611008, + "kind": "calibration_drift", + "ledger_value": 150000.0, + "name": "hmrc.employment_income.count@E09000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98037.46677777187, + "kind": "calibration_drift", + "ledger_value": 88000.0, + "name": "hmrc.employment_income.count@E09000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164212.7568527679, + "kind": "calibration_drift", + "ledger_value": 151000.0, + "name": "hmrc.employment_income.count@E09000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137252.45348888062, + "kind": "calibration_drift", + "ledger_value": 121000.0, + "name": "hmrc.employment_income.count@E09000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 193623.99688609946, + "kind": "calibration_drift", + "ledger_value": 174000.0, + "name": "hmrc.employment_income.count@E09000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104164.80845138262, + "kind": "calibration_drift", + "ledger_value": 90000.0, + "name": "hmrc.employment_income.count@E09000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60155.44188240826, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40885.93688516865, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41713.537420306515, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42837.59187847882, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49384.28267882305, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43368.73849058222, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56537.08966834169, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54226.36342171915, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53411.115133374406, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47877.30857006456, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46790.310852271556, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46654.43613754743, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60365.430077891004, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E14001078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47432.62768551288, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46432.09569527159, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65195.15857399401, + "kind": "calibration_drift", + "ledger_value": 60000.0, + "name": "hmrc.employment_income.count@E14001081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50001.895018478164, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56343.71320029437, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50323.053435098824, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61934.16542061499, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E14001085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67159.16581409727, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38909.57739827229, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37649.64822537585, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E14001088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53831.09152433988, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53880.50051151229, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40354.79027306526, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43024.747132919765, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46320.92547413367, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42121.16156447889, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36859.1044306173, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47849.6095924073, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41577.662705582385, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40257.09523024708, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38786.05493034126, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37513.77351065173, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39424.25434798488, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42837.591878478815, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40473.07239387193, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40083.040843617004, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41404.73125047895, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40964.16778152497, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47494.38891947839, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43739.30589437529, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45505.67718578892, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48840.783819926546, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44566.90642951315, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50681.26859209879, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46432.09569527159, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54708.10104665015, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37526.125757444825, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41528.25371840998, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35821.51569999671, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50349.59242078301, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55115.72519082252, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58352.01385061533, + "kind": "calibration_drift", + "ledger_value": 63000.0, + "name": "hmrc.employment_income.count@E14001123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65726.30518609741, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E14001124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45703.31313447856, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43516.965452099445, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38477.24876051371, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41256.504288961725, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40465.96049420318, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45999.76705751301, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47173.23050285773, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53806.38703075367, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48279.20687526444, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51990.60675216764, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47827.899582892154, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38291.96505861717, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48208.44860025541, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44505.14519554763, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55646.749503452724, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42985.81883999605, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54349.88588965018, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43726.95364758219, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49064.62150423791, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48247.87597385764, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46728.549618306046, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38786.05493034127, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62032.98339495982, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001150", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42244.68403240991, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001151", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50224.235460754004, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001152", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001153", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40515.36948137559, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001154", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37518.39000692793, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001155", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40630.57558512907, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001156", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49730.14558902992, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001157", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001158", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51632.39159516767, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001159", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65122.29279493167, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001160", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46444.4479420647, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001161", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47383.218698340475, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001162", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41486.08140107595, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001163", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42477.38039876483, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001164", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40762.41441723763, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001165", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47037.35578813361, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001166", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55338.06563309836, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001167", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46430.750401066405, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001168", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52558.810104650336, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001169", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50990.07476192635, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 32239.364129997037, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72334.75722040715, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E14001172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40581.248130938795, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 31638.873716589787, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62700.004721787336, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E14001175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56087.51680486204, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45579.79066654753, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43554.022192478755, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57808.514991718825, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51138.30172344358, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47679.67262137493, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001182", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44952.5166685097, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001183", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55585.11056896041, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001184", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53250.53592506407, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001185", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54349.88588965018, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001186", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001187", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59488.420555580735, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001188", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51908.6327507225, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001189", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45382.1547178579, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001190", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51669.44833554698, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001191", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55398.46674868011, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45703.31313447856, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45703.31313447856, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40700.65318327212, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42590.54694261677, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53275.240418650275, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E14001197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52781.15054692618, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42145.86605806509, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39070.15660658261, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46465.11655303533, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001201", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42368.20650034094, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49285.464704478225, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41478.844731237565, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001204", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56894.44872902925, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001205", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59216.67112613248, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001206", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 70383.47653760585, + "kind": "calibration_drift", + "ledger_value": 64000.0, + "name": "hmrc.employment_income.count@E14001207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58104.96891475328, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59303.136853684206, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E14001209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53641.31609633676, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42108.80931768578, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44807.33854638495, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52027.66349254694, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40774.766664030736, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49297.816951271336, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40268.32454551354, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47432.62768551288, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41997.639096547864, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37909.045408031, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47815.54733609905, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48408.45518216796, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44576.139422065564, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51168.74564483264, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55384.607377065775, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51298.8809317539, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52941.48515629011, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63861.115920338954, + "kind": "calibration_drift", + "ledger_value": 60000.0, + "name": "hmrc.employment_income.count@E14001229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001230", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43944.64670987647, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001231", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41558.00337410269, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001232", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47037.35578813361, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001233", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48791.37483275413, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50990.07476192634, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62502.368773097696, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E14001236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56154.95940526434, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E14001237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58055.55992758087, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36562.650507582846, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E14001239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40762.41441723763, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39786.58692058255, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45863.89234278889, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44332.2137404442, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45999.76705751302, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48445.51192254727, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001246", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38143.73809709995, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001247", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56326.24537654655, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001248", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48219.25789712906, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001249", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48453.37244323379, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001250", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45765.07436844407, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001251", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001252", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45604.49516013374, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001253", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001254", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49087.82875578859, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001255", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40762.41441723763, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001256", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63737.593452407935, + "kind": "calibration_drift", + "ledger_value": 60000.0, + "name": "hmrc.employment_income.count@E14001257", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50751.22389076864, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001258", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55635.98714981121, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001259", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61711.33578044635, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E14001260", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40713.00543006522, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001261", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43442.85197134083, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001262", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51385.34665930562, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001263", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63575.39223189245, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001264", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58996.202236401055, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E14001265", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46592.67490358192, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001266", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54166.43667985163, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001267", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48692.55685840932, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001268", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51919.73729581933, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001269", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51541.15618816119, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001270", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54076.6392181664, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001271", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38291.96505861717, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001272", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41972.20080612247, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001273", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39922.461635306674, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001274", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39527.1897379274, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001275", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55585.11056896041, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E14001276", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45802.13110882338, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001277", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51212.41520420219, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001278", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57808.514991718825, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001279", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47729.08160854734, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001280", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40354.79027306526, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001281", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40638.89194930661, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001282", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56820.33524827064, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001283", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54164.60218775365, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001284", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41553.936607781776, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001285", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44851.0081057545, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001286", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41997.639096547864, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001287", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50001.895018478164, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001288", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53114.661210339946, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001289", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52917.025261650306, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001290", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36483.52274842307, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001291", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53339.24751566908, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001292", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51060.32036742652, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001293", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50347.75792868502, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001294", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42887.00086565123, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001295", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001296", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46765.606358685356, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001297", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54325.18139606398, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001298", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37056.74037930694, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001299", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49700.949369337126, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001300", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49981.68225099854, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001301", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56820.33524827064, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001302", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 27792.555284480204, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.employment_income.count@E14001303", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 27792.555284480204, + "kind": "calibration_drift", + "ledger_value": 26000.0, + "name": "hmrc.employment_income.count@E14001304", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59290.7846068911, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001305", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64132.86534978721, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E14001306", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44221.04351930628, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001307", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38291.96505861717, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001308", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47086.76477530602, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001309", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64256.387817718234, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001310", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55683.92854330523, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001311", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53238.183678270965, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001312", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45011.587314064825, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001313", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51964.779327054785, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001314", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51699.76748676641, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001315", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42578.19469582367, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001316", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43504.61320530635, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001317", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40317.733532685954, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001318", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44418.67946799592, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001319", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47151.9503945211, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001320", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001321", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43850.476115513215, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001322", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48902.545053892056, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001323", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50954.14095307369, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001324", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48679.08168008957, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001325", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45999.76705751301, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001326", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42528.78570865127, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001327", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53522.28535451232, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001328", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52657.628078995156, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001329", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39680.03319572084, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001330", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58292.99756038162, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001331", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63231.15133389074, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001332", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52303.90464810178, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001333", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58796.69473516701, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001334", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45530.381679375125, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001335", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001336", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42121.16156447888, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001337", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47457.33217909909, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001338", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43652.840166823575, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001339", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41009.45935309968, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001340", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40663.59644289281, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001341", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44319.8614936511, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001342", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34685.108995031296, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001343", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34845.688203341626, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001344", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41478.844731237565, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001345", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53707.56905640885, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001346", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001347", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54301.59983400441, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001348", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53213.479184684766, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001349", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51002.42700871945, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001350", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48420.80742896107, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001351", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49925.78521500551, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001352", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42726.4216573409, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001353", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44122.22554496146, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001354", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001355", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44658.753333885616, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001356", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44690.428897444166, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001357", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46679.14063113364, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001358", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53028.19548278824, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001359", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50174.0926767424, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001360", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43986.35083023734, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001361", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42553.490202237466, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001362", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43866.696237564756, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001363", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50718.325332478096, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001364", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44912.769339720006, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001365", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47988.478791202484, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001366", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44406.32722120281, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001367", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41194.743054996216, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001368", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64676.364208683706, + "kind": "calibration_drift", + "ledger_value": 61000.0, + "name": "hmrc.employment_income.count@E14001369", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50150.12197999539, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001370", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61267.14409378747, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001371", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42368.20650034094, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001372", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39527.1897379274, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001373", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37056.74037930694, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.employment_income.count@E14001374", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50545.39387737466, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001375", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50990.07476192635, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001376", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47655.33502620832, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001377", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45592.142913340635, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001378", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43377.05485475976, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001379", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45209.223262754465, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001380", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41997.639096547864, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001381", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39428.37176358258, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001382", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46876.77657982328, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001383", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57623.231289822295, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001384", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37328.48980875519, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001385", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43282.27276303051, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001386", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39527.1897379274, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001387", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42195.275045237504, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001388", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45291.57157470848, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001389", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49347.22593844374, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001390", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001391", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52941.72975523651, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001392", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54349.88588965018, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001393", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45952.19256243859, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001394", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38699.589202789546, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001395", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 33762.80790114632, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.employment_income.count@E14001396", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35006.267411651956, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001397", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47729.08160854734, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001398", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48334.34170140935, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001399", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41997.639096547864, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001400", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53250.53592506407, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001401", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52246.33495062681, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001402", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55523.34933499489, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001403", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51632.39159516767, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001404", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42701.7171637547, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001405", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64182.27433695962, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E14001406", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55964.72813377021, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001407", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47440.86251670829, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001408", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45283.33674351308, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001409", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42783.69116519983, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001410", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45622.08775405119, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001411", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36710.12884808231, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001412", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001413", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49606.62312109889, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001414", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41997.639096547864, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001415", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39527.1897379274, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001416", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44847.639311174564, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001417", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42195.275045237504, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001418", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49470.74840637476, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001419", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52101.77697330556, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001420", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59723.113244649685, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001421", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45468.620445409615, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001422", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40762.41441723763, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001423", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42615.251436202976, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001424", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55029.259463270806, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@E14001425", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43294.625009823605, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001426", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48112.0012591335, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001427", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51447.10789327113, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001428", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44801.59911858209, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001429", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75867.4998032344, + "kind": "calibration_drift", + "ledger_value": 74000.0, + "name": "hmrc.employment_income.count@E14001430", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001431", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001432", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51620.039348374565, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001433", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64503.43275358028, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E14001434", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55893.916738787964, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001435", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42095.967872999885, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001436", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48618.4433776507, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001437", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60143.08963561516, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E14001438", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47852.604076478354, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001439", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37180.26284723796, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001440", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52002.958998960734, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001441", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55412.179113856975, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001442", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50421.871409443644, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001443", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42833.189097443654, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001444", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56820.33524827064, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001445", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34462.76855275546, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001446", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46740.90186509915, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001447", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49970.452935732086, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001448", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45443.91595182341, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001449", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47333.80971116806, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001450", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39750.99777388164, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001451", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45035.31341186544, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001452", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59611.94302351176, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001453", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47576.97071224488, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001454", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42847.82303238826, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001455", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54942.79373571909, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001456", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50137.76973320229, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001457", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43331.681750202915, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001458", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59864.72738717666, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@E14001459", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44813.95136537519, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001460", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35821.51569999671, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001461", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51607.68710158146, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001462", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40144.80207758252, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001463", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48884.077833439005, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001464", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48766.670339167926, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001465", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42442.31998109955, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001466", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 33795.74722592793, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001467", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41326.45958763157, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001468", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45852.02929388858, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001469", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40395.515997640534, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001470", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45542.73392616823, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001471", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001472", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50582.45061775397, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001473", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48865.48831351275, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001474", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41590.01495237549, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001475", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45456.26819861651, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001476", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60031.91941447724, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@E14001477", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46740.90186509915, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001478", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45925.6535767544, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001479", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48717.26135199552, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001480", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56654.57869559488, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001481", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43018.83969775979, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001482", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48914.89730068516, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001483", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 33400.47532854865, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E14001484", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40425.035878565424, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001485", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37056.74037930694, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.employment_income.count@E14001486", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55585.11056896041, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001487", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50743.0298260643, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001488", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40910.64137875486, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001489", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52185.04438433089, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001490", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45332.745730685485, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001491", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36068.560635858754, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001492", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40824.17565120314, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001493", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42689.36491696159, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001494", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48927.249547478255, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001495", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001496", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44159.28228534077, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001497", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49273.11245768513, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001498", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001499", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53114.661210339946, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001500", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41602.36719916859, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001501", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46889.12882661638, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001502", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61196.274637439165, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E14001503", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45159.81427558206, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001504", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001505", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37822.579680479284, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001506", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53361.70614620199, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001507", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42047.04808372028, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001508", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45703.31313447856, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001509", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001510", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 33227.54387344522, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@E14001511", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56186.063002599745, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001512", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45357.45022427169, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001513", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41108.2773274445, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001514", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001515", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001516", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53695.216809615755, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001517", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42392.91099392714, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001518", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42936.409852823635, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001519", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46839.71983944397, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001520", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43479.90871172014, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001521", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42837.59187847882, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001522", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44566.90642951315, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001523", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41837.059888237534, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001524", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60970.69017075301, + "kind": "calibration_drift", + "ledger_value": 60000.0, + "name": "hmrc.employment_income.count@E14001525", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43578.72668606496, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001526", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63589.36649089071, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001527", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50644.21185171948, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001528", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42874.648618858126, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001529", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37839.45700778075, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@E14001530", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001531", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48717.26135199552, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001532", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38541.006317193256, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001533", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001534", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001535", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55436.88360744318, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001536", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58648.46777364978, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001537", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48346.69394820245, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001538", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49026.06752182308, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001539", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52175.89045406417, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001540", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49581.918627512685, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001541", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47617.91138740942, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001542", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49680.736601857505, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001543", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42323.93409104288, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001544", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49460.64202263495, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001545", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60229.55536316688, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001546", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46518.56142282331, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001547", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38205.49933106545, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@E14001548", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47753.78610213354, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001549", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65466.90800344226, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@E14001550", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43875.180609099414, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001551", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35611.52750451397, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.employment_income.count@E14001552", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64204.75273306396, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@E14001553", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41305.91327613414, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001554", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53114.661210339946, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001555", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55078.66845044321, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001556", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48877.84056030585, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001557", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57089.88328720131, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001558", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61650.06374437364, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@E14001559", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53043.9721148309, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001560", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001561", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43504.61320530635, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001562", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59290.7846068911, + "kind": "calibration_drift", + "ledger_value": 54000.0, + "name": "hmrc.employment_income.count@E14001563", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001564", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54967.498229305296, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001565", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58475.53631854634, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001566", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42257.036279203014, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@E14001567", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55276.30439913285, + "kind": "calibration_drift", + "ledger_value": 53000.0, + "name": "hmrc.employment_income.count@E14001568", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38369.86982304495, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001569", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44999.23506727173, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001570", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57754.61427843984, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001571", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40811.82340441004, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001572", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53114.661210339946, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@E14001573", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45406.859211444105, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001574", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39082.50885337572, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@E14001575", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60192.49862278757, + "kind": "calibration_drift", + "ledger_value": 62000.0, + "name": "hmrc.employment_income.count@E14001576", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40762.41441723763, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001577", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52348.82190916761, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001578", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38291.96505861717, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@E14001579", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001580", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45147.462028788956, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001581", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42412.90386942465, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@E14001582", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42454.672227892646, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001583", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42763.47839772021, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001584", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53114.661210339946, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001585", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59661.352010684175, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@E14001586", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50001.895018478164, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001587", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57759.10600454641, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001588", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39514.8374911343, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@E14001589", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48284.93271423694, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001590", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51237.119697788396, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@E14001591", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55140.42968440873, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@E14001592", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50363.478970058066, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@E14001593", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42689.3649169616, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@E14001594", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48235.52372706453, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001595", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49964.838278098854, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@E14001596", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49408.98717240925, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@E14001597", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52645.27583220206, + "kind": "calibration_drift", + "ledger_value": 52000.0, + "name": "hmrc.employment_income.count@E14001598", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44517.49744234073, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@E14001599", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54053.431966615724, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@E14001600", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001601", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001602", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46592.67490358192, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@E14001603", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49137.237742961006, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@E14001604", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42269.38852599611, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@E14001605", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52336.4696623745, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@N05000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41172.060826436544, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@N05000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48433.15967575417, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@N05000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43117.29077368501, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@N05000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39813.61510415954, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@N05000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35821.51569999671, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@N05000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45855.08678071855, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@N05000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38703.706618387245, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@N05000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53139.36570392615, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@N05000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43164.86526875943, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@N05000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42479.37672147885, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@N05000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43447.866249741994, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@N05000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44529.84968913384, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@N05000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47835.29437730194, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@N05000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39885.40489492737, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@N05000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39057.804359789516, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@N05000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54139.89769416744, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@N05000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38846.38933711945, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@N05000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62498.88507082957, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@N09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96811.99844304973, + "kind": "calibration_drift", + "ledger_value": 83000.0, + "name": "hmrc.employment_income.count@N09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144605.2634972135, + "kind": "calibration_drift", + "ledger_value": 136000.0, + "name": "hmrc.employment_income.count@N09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@N09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@N09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@N09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69851.69507916245, + "kind": "calibration_drift", + "ledger_value": 58000.0, + "name": "hmrc.employment_income.count@N09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@N09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66175.29007499601, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@N09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67400.75840971817, + "kind": "calibration_drift", + "ledger_value": 59000.0, + "name": "hmrc.employment_income.count@N09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23283.89835972082, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.employment_income.count@S12000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61273.41673610742, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@S12000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@S12000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49018.733388885936, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@S12000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@S12000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12254.683347221484, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.employment_income.count@S12000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 79655.44175693965, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@S12000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110292.15012499336, + "kind": "calibration_drift", + "ledger_value": 98000.0, + "name": "hmrc.employment_income.count@S12000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34313.113372220156, + "kind": "calibration_drift", + "ledger_value": 31000.0, + "name": "hmrc.employment_income.count@S12000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S12000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S12000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55146.07506249668, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@S12000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9803.746677777188, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.employment_income.count@S12000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50244.20172360809, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@S12000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11029.215012499337, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.employment_income.count@S12000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@S12000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151958.0735055464, + "kind": "calibration_drift", + "ledger_value": 140000.0, + "name": "hmrc.employment_income.count@S12000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S12000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106615.74512082692, + "kind": "calibration_drift", + "ledger_value": 98000.0, + "name": "hmrc.employment_income.count@S12000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124997.77014165914, + "kind": "calibration_drift", + "ledger_value": 112000.0, + "name": "hmrc.employment_income.count@S12000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35538.58170694231, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@S12000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 257348.35029165118, + "kind": "calibration_drift", + "ledger_value": 231000.0, + "name": "hmrc.employment_income.count@S12000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89459.18843471684, + "kind": "calibration_drift", + "ledger_value": 75000.0, + "name": "hmrc.employment_income.count@S12000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S12000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95586.53010832758, + "kind": "calibration_drift", + "ledger_value": 83000.0, + "name": "hmrc.employment_income.count@S12000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52695.13839305238, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@S12000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58822.48006666313, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@S12000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53920.60672777453, + "kind": "calibration_drift", + "ledger_value": 45000.0, + "name": "hmrc.employment_income.count@S12000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156859.946844435, + "kind": "calibration_drift", + "ledger_value": 141000.0, + "name": "hmrc.employment_income.count@S12000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75979.0367527732, + "kind": "calibration_drift", + "ledger_value": 64000.0, + "name": "hmrc.employment_income.count@S12000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 275730.3753124834, + "kind": "calibration_drift", + "ledger_value": 236000.0, + "name": "hmrc.employment_income.count@S12000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161761.8201833236, + "kind": "calibration_drift", + "ledger_value": 135000.0, + "name": "hmrc.employment_income.count@S12000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38291.96505861717, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@S14000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 39527.1897379274, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.employment_income.count@S14000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37056.74037930694, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46938.53781378879, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@S14000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12352.246793102313, + "kind": "calibration_drift", + "ledger_value": 19000.0, + "name": "hmrc.employment_income.count@S14000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44468.08845516833, + "kind": "calibration_drift", + "ledger_value": 48000.0, + "name": "hmrc.employment_income.count@S14000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@S14000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37056.74037930694, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@S14000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20998.819548273932, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@S14000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48173.76249309902, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50965.37026834014, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54275.772408891564, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43677.54466040978, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@S14000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42788.18289130642, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46320.92547413368, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@S14000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46345.62996771988, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44035.759817409744, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38793.392898733204, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50533.04163058156, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@S14000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43031.62555177605, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@S14000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48272.58046744383, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41725.88966709962, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44052.853330648686, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@S14000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42961.11434640984, + "kind": "calibration_drift", + "ledger_value": 50000.0, + "name": "hmrc.employment_income.count@S14000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35907.981427548424, + "kind": "calibration_drift", + "ledger_value": 56000.0, + "name": "hmrc.employment_income.count@S14000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42837.59187847882, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42825.23963168572, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@S14000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45419.2114582372, + "kind": "calibration_drift", + "ledger_value": 47000.0, + "name": "hmrc.employment_income.count@S14000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54041.079719822614, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@S14000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61995.92665458051, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44529.84968913384, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51879.436531029714, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52879.968521271, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50298.34894151262, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@S14000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47075.822060825245, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@S14000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42140.72948019074, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@S14000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49162.0287109222, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@S14000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43084.26991592127, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44343.832190398105, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@S14000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@S14000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38304.31730541027, + "kind": "calibration_drift", + "ledger_value": 49000.0, + "name": "hmrc.employment_income.count@S14000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46864.42433303017, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45826.835602409585, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42902.65519822071, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49969.71172680361, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52274.708428408994, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@S14000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43479.90871172014, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@S14000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46197.40300620265, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@S14000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46695.23598301556, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@S14000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47074.41252851292, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@S14000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 36772.63870306559, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@S14000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45494.42563425461, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@S14000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43290.22222878844, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@S14000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50372.46242227124, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44183.98677892697, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@S14000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47790.84284251285, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@S14000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45950.358070340604, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@S14000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29411.240033331564, + "kind": "calibration_drift", + "ledger_value": 25000.0, + "name": "hmrc.employment_income.count@W06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44116.86004999735, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@W06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46567.79671944164, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@W06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37989.5183763866, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@W06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73528.1000833289, + "kind": "calibration_drift", + "ledger_value": 65000.0, + "name": "hmrc.employment_income.count@W06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@W06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 26960.303363887266, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.employment_income.count@W06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47793.26505416379, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@W06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82106.37842638395, + "kind": "calibration_drift", + "ledger_value": 68000.0, + "name": "hmrc.employment_income.count@W06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 105390.27678610476, + "kind": "calibration_drift", + "ledger_value": 86000.0, + "name": "hmrc.employment_income.count@W06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63724.353405551716, + "kind": "calibration_drift", + "ledger_value": 51000.0, + "name": "hmrc.employment_income.count@W06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61273.41673610742, + "kind": "calibration_drift", + "ledger_value": 57000.0, + "name": "hmrc.employment_income.count@W06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56371.543397218826, + "kind": "calibration_drift", + "ledger_value": 55000.0, + "name": "hmrc.employment_income.count@W06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158085.41517915713, + "kind": "calibration_drift", + "ledger_value": 143000.0, + "name": "hmrc.employment_income.count@W06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109066.6817902712, + "kind": "calibration_drift", + "ledger_value": 87000.0, + "name": "hmrc.employment_income.count@W06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73528.1000833289, + "kind": "calibration_drift", + "ledger_value": 66000.0, + "name": "hmrc.employment_income.count@W06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29411.240033331564, + "kind": "calibration_drift", + "ledger_value": 24000.0, + "name": "hmrc.employment_income.count@W06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41665.923380553046, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42891.3917152752, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@W06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69851.69507916245, + "kind": "calibration_drift", + "ledger_value": 69000.0, + "name": "hmrc.employment_income.count@W06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 51469.67005833024, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@W06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23283.89835972082, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.employment_income.count@W06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41923.52561578925, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@W07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 50953.01802154704, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.employment_income.count@W07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 37427.30778310001, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.employment_income.count@W07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40750.06217044452, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@W07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35512.70953016915, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@W07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41095.925080651396, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@W07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43232.863775858095, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@W07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41441.78799085826, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42590.54694261678, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@W07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44813.95136537519, + "kind": "calibration_drift", + "ledger_value": 42000.0, + "name": "hmrc.employment_income.count@W07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44962.17832689242, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@W07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47963.774297616284, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.employment_income.count@W07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35413.89155582433, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.employment_income.count@W07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41339.05643337107, + "kind": "calibration_drift", + "ledger_value": 34000.0, + "name": "hmrc.employment_income.count@W07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40885.93688516866, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@W07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 35188.00442882572, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45085.700794823446, + "kind": "calibration_drift", + "ledger_value": 36000.0, + "name": "hmrc.employment_income.count@W07000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38884.87290468608, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@W07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 42047.04808372027, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40577.130715341096, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@W07000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41602.36719916859, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.employment_income.count@W07000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41202.69252075415, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@W07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43171.102541892586, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49198.998976926516, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "hmrc.employment_income.count@W07000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 45184.51876916826, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@W07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47617.91138740942, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.employment_income.count@W07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44307.509246858, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "hmrc.employment_income.count@W07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 43208.15928227189, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.employment_income.count@W07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 41268.85653575483, + "kind": "calibration_drift", + "ledger_value": 37000.0, + "name": "hmrc.employment_income.count@W07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40910.64137875486, + "kind": "calibration_drift", + "ledger_value": 39000.0, + "name": "hmrc.employment_income.count@W07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48222.682282378635, + "kind": "calibration_drift", + "ledger_value": 43000.0, + "name": "hmrc.employment_income.count@W07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29645.39230344555, + "kind": "calibration_drift", + "ledger_value": 25000.0, + "name": "hmrc.employment_income.count@W07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71825439.25738148, + "kind": "calibration_drift", + "ledger_value": 65700000.0, + "name": "hmrc.self_employment_income.amount@E06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77546049.4637216, + "kind": "calibration_drift", + "ledger_value": 81600000.0, + "name": "hmrc.self_employment_income.amount@E06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82631036.31380172, + "kind": "calibration_drift", + "ledger_value": 99000000.0, + "name": "hmrc.self_employment_income.amount@E06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157634592.35248327, + "kind": "calibration_drift", + "ledger_value": 158900000.0, + "name": "hmrc.self_employment_income.amount@E06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74156058.23033488, + "kind": "calibration_drift", + "ledger_value": 68000000.0, + "name": "hmrc.self_employment_income.amount@E06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83478534.1221484, + "kind": "calibration_drift", + "ledger_value": 76000000.0, + "name": "hmrc.self_employment_income.amount@E06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 233591583.42555484, + "kind": "calibration_drift", + "ledger_value": 224000000.0, + "name": "hmrc.self_employment_income.amount@E06000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88987269.87640184, + "kind": "calibration_drift", + "ledger_value": 85500000.0, + "name": "hmrc.self_employment_income.amount@E06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86338839.22531846, + "kind": "calibration_drift", + "ledger_value": 80000000.0, + "name": "hmrc.self_employment_income.amount@E06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137294644.95216286, + "kind": "calibration_drift", + "ledger_value": 154400000.0, + "name": "hmrc.self_employment_income.amount@E06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 412413620.98670524, + "kind": "calibration_drift", + "ledger_value": 377400000.0, + "name": "hmrc.self_employment_income.amount@E06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95767252.34317532, + "kind": "calibration_drift", + "ledger_value": 85600000.0, + "name": "hmrc.self_employment_income.amount@E06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119497190.97688247, + "kind": "calibration_drift", + "ledger_value": 95000000.0, + "name": "hmrc.self_employment_income.amount@E06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 259546203.80617204, + "kind": "calibration_drift", + "ledger_value": 241000000.0, + "name": "hmrc.self_employment_income.amount@E06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 162719579.20256338, + "kind": "calibration_drift", + "ledger_value": 180900000.0, + "name": "hmrc.self_employment_income.amount@E06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 192805751.39887068, + "kind": "calibration_drift", + "ledger_value": 171000000.0, + "name": "hmrc.self_employment_income.amount@E06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 76910426.1074616, + "kind": "calibration_drift", + "ledger_value": 52400000.0, + "name": "hmrc.self_employment_income.amount@E06000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 215052568.86797112, + "kind": "calibration_drift", + "ledger_value": 222200000.0, + "name": "hmrc.self_employment_income.amount@E06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 312620754.05388314, + "kind": "calibration_drift", + "ledger_value": 316400000.0, + "name": "hmrc.self_employment_income.amount@E06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 152549605.50240317, + "kind": "calibration_drift", + "ledger_value": 143200000.0, + "name": "hmrc.self_employment_income.amount@E06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171194557.2860302, + "kind": "calibration_drift", + "ledger_value": 185000000.0, + "name": "hmrc.self_employment_income.amount@E06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 411777997.6304452, + "kind": "calibration_drift", + "ledger_value": 383500000.0, + "name": "hmrc.self_employment_income.amount@E06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 706495360.4830047, + "kind": "calibration_drift", + "ledger_value": 711000000.0, + "name": "hmrc.self_employment_income.amount@E06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 294929237.30464613, + "kind": "calibration_drift", + "ledger_value": 284400000.0, + "name": "hmrc.self_employment_income.amount@E06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 383069009.3727013, + "kind": "calibration_drift", + "ledger_value": 362100000.0, + "name": "hmrc.self_employment_income.amount@E06000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 240053754.21419832, + "kind": "calibration_drift", + "ledger_value": 229900000.0, + "name": "hmrc.self_employment_income.amount@E06000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 234227206.78181484, + "kind": "calibration_drift", + "ledger_value": 227700000.0, + "name": "hmrc.self_employment_income.amount@E06000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 246833736.68097177, + "kind": "calibration_drift", + "ledger_value": 227000000.0, + "name": "hmrc.self_employment_income.amount@E06000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 240053754.21419832, + "kind": "calibration_drift", + "ledger_value": 264600000.0, + "name": "hmrc.self_employment_income.amount@E06000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 261664948.32703876, + "kind": "calibration_drift", + "ledger_value": 238000000.0, + "name": "hmrc.self_employment_income.amount@E06000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 300014224.1547262, + "kind": "calibration_drift", + "ledger_value": 284400000.0, + "name": "hmrc.self_employment_income.amount@E06000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 366119053.2057676, + "kind": "calibration_drift", + "ledger_value": 405000000.0, + "name": "hmrc.self_employment_income.amount@E06000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140896510.63763624, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@E06000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 350652218.2034406, + "kind": "calibration_drift", + "ledger_value": 332000000.0, + "name": "hmrc.self_employment_income.amount@E06000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 196619491.53643075, + "kind": "calibration_drift", + "ledger_value": 176800000.0, + "name": "hmrc.self_employment_income.amount@E06000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 183059526.6028838, + "kind": "calibration_drift", + "ledger_value": 175500000.0, + "name": "hmrc.self_employment_income.amount@E06000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 360398442.9994275, + "kind": "calibration_drift", + "ledger_value": 303300000.0, + "name": "hmrc.self_employment_income.amount@E06000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 275542724.9387157, + "kind": "calibration_drift", + "ledger_value": 264600000.0, + "name": "hmrc.self_employment_income.amount@E06000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 305522959.90897965, + "kind": "calibration_drift", + "ledger_value": 283400000.0, + "name": "hmrc.self_employment_income.amount@E06000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 536042363.7792778, + "kind": "calibration_drift", + "ledger_value": 552300000.0, + "name": "hmrc.self_employment_income.amount@E06000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 252872158.5654419, + "kind": "calibration_drift", + "ledger_value": 231000000.0, + "name": "hmrc.self_employment_income.amount@E06000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 260605576.06660542, + "kind": "calibration_drift", + "ledger_value": 241200000.0, + "name": "hmrc.self_employment_income.amount@E06000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182212028.79453713, + "kind": "calibration_drift", + "ledger_value": 165600000.0, + "name": "hmrc.self_employment_income.amount@E06000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 410612688.1439685, + "kind": "calibration_drift", + "ledger_value": 379800000.0, + "name": "hmrc.self_employment_income.amount@E06000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 650560505.1321235, + "kind": "calibration_drift", + "ledger_value": 607200000.0, + "name": "hmrc.self_employment_income.amount@E06000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 397264597.66250825, + "kind": "calibration_drift", + "ledger_value": 396800000.0, + "name": "hmrc.self_employment_income.amount@E06000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 487099365.3472568, + "kind": "calibration_drift", + "ledger_value": 468600000.0, + "name": "hmrc.self_employment_income.amount@E06000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1006827396.3158609, + "kind": "calibration_drift", + "ledger_value": 910800000.0, + "name": "hmrc.self_employment_income.amount@E06000052", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 845379063.8258176, + "kind": "calibration_drift", + "ledger_value": 755200000.0, + "name": "hmrc.self_employment_income.amount@E06000054", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 299802349.7026396, + "kind": "calibration_drift", + "ledger_value": 287000000.0, + "name": "hmrc.self_employment_income.amount@E06000055", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 521317089.3592541, + "kind": "calibration_drift", + "ledger_value": 480700000.0, + "name": "hmrc.self_employment_income.amount@E06000056", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 441228546.4704925, + "kind": "calibration_drift", + "ledger_value": 387600000.0, + "name": "hmrc.self_employment_income.amount@E06000057", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 557017934.5358583, + "kind": "calibration_drift", + "ledger_value": 508200000.0, + "name": "hmrc.self_employment_income.amount@E06000058", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 594943461.4593723, + "kind": "calibration_drift", + "ledger_value": 572000000.0, + "name": "hmrc.self_employment_income.amount@E06000059", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1491172393.785991, + "kind": "calibration_drift", + "ledger_value": 1413600000.0, + "name": "hmrc.self_employment_income.amount@E06000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 455741946.4384295, + "kind": "calibration_drift", + "ledger_value": 456000000.0, + "name": "hmrc.self_employment_income.amount@E06000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 832348785.0224873, + "kind": "calibration_drift", + "ledger_value": 768500000.0, + "name": "hmrc.self_employment_income.amount@E06000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 832348785.0224873, + "kind": "calibration_drift", + "ledger_value": 192500000.0, + "name": "hmrc.self_employment_income.amount@E06000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 832348785.0224873, + "kind": "calibration_drift", + "ledger_value": 314500000.0, + "name": "hmrc.self_employment_income.amount@E06000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 832348785.0224873, + "kind": "calibration_drift", + "ledger_value": 1061900000.0, + "name": "hmrc.self_employment_income.amount@E06000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 832348785.0224873, + "kind": "calibration_drift", + "ledger_value": 828000000.0, + "name": "hmrc.self_employment_income.amount@E06000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 262724320.5874721, + "kind": "calibration_drift", + "ledger_value": 260000000.0, + "name": "hmrc.self_employment_income.amount@E07000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163990825.9150834, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E07000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 125535612.86135261, + "kind": "calibration_drift", + "ledger_value": 107500000.0, + "name": "hmrc.self_employment_income.amount@E07000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 281793021.2752725, + "kind": "calibration_drift", + "ledger_value": 281600000.0, + "name": "hmrc.self_employment_income.amount@E07000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 353406586.0805673, + "kind": "calibration_drift", + "ledger_value": 279000000.0, + "name": "hmrc.self_employment_income.amount@E07000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129667164.6770427, + "kind": "calibration_drift", + "ledger_value": 118200000.0, + "name": "hmrc.self_employment_income.amount@E07000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71507627.57925148, + "kind": "calibration_drift", + "ledger_value": 86400000.0, + "name": "hmrc.self_employment_income.amount@E07000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85173529.73884177, + "kind": "calibration_drift", + "ledger_value": 64400000.0, + "name": "hmrc.self_employment_income.amount@E07000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116001262.5174524, + "kind": "calibration_drift", + "ledger_value": 99500000.0, + "name": "hmrc.self_employment_income.amount@E07000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88987269.87640184, + "kind": "calibration_drift", + "ledger_value": 94000000.0, + "name": "hmrc.self_employment_income.amount@E07000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119709065.42896914, + "kind": "calibration_drift", + "ledger_value": 134400000.0, + "name": "hmrc.self_employment_income.amount@E07000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86021027.54718845, + "kind": "calibration_drift", + "ledger_value": 104500000.0, + "name": "hmrc.self_employment_income.amount@E07000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 128713729.64265268, + "kind": "calibration_drift", + "ledger_value": 124000000.0, + "name": "hmrc.self_employment_income.amount@E07000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 270139926.4105056, + "kind": "calibration_drift", + "ledger_value": 265100000.0, + "name": "hmrc.self_employment_income.amount@E07000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164626449.2713434, + "kind": "calibration_drift", + "ledger_value": 145200000.0, + "name": "hmrc.self_employment_income.amount@E07000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 180199221.49971375, + "kind": "calibration_drift", + "ledger_value": 158900000.0, + "name": "hmrc.self_employment_income.amount@E07000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 192593876.946784, + "kind": "calibration_drift", + "ledger_value": 200000000.0, + "name": "hmrc.self_employment_income.amount@E07000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 204246971.81155092, + "kind": "calibration_drift", + "ledger_value": 177600000.0, + "name": "hmrc.self_employment_income.amount@E07000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 237299386.3370716, + "kind": "calibration_drift", + "ledger_value": 230000000.0, + "name": "hmrc.self_employment_income.amount@E07000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113140957.41428235, + "kind": "calibration_drift", + "ledger_value": 126700000.0, + "name": "hmrc.self_employment_income.amount@E07000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 94919754.53482863, + "kind": "calibration_drift", + "ledger_value": 78800000.0, + "name": "hmrc.self_employment_income.amount@E07000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 146828995.29606304, + "kind": "calibration_drift", + "ledger_value": 133700000.0, + "name": "hmrc.self_employment_income.amount@E07000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 141108385.08972293, + "kind": "calibration_drift", + "ledger_value": 113400000.0, + "name": "hmrc.self_employment_income.amount@E07000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 225434417.020218, + "kind": "calibration_drift", + "ledger_value": 198400000.0, + "name": "hmrc.self_employment_income.amount@E07000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 219925681.26596457, + "kind": "calibration_drift", + "ledger_value": 189000000.0, + "name": "hmrc.self_employment_income.amount@E07000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 450868834.040436, + "kind": "calibration_drift", + "ledger_value": 464800000.0, + "name": "hmrc.self_employment_income.amount@E07000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 307641704.4298464, + "kind": "calibration_drift", + "ledger_value": 300000000.0, + "name": "hmrc.self_employment_income.amount@E07000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 320989794.9113067, + "kind": "calibration_drift", + "ledger_value": 241200000.0, + "name": "hmrc.self_employment_income.amount@E07000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 227235349.8629547, + "kind": "calibration_drift", + "ledger_value": 195500000.0, + "name": "hmrc.self_employment_income.amount@E07000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122357496.08005254, + "kind": "calibration_drift", + "ledger_value": 153000000.0, + "name": "hmrc.self_employment_income.amount@E07000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 332642889.7760736, + "kind": "calibration_drift", + "ledger_value": 337200000.0, + "name": "hmrc.self_employment_income.amount@E07000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 340694118.9553671, + "kind": "calibration_drift", + "ledger_value": 287100000.0, + "name": "hmrc.self_employment_income.amount@E07000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 418346105.645132, + "kind": "calibration_drift", + "ledger_value": 389400000.0, + "name": "hmrc.self_employment_income.amount@E07000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 112823145.73615234, + "kind": "calibration_drift", + "ledger_value": 118000000.0, + "name": "hmrc.self_employment_income.amount@E07000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124476240.60091925, + "kind": "calibration_drift", + "ledger_value": 119500000.0, + "name": "hmrc.self_employment_income.amount@E07000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149371488.7211031, + "kind": "calibration_drift", + "ledger_value": 133800000.0, + "name": "hmrc.self_employment_income.amount@E07000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 181364530.98619044, + "kind": "calibration_drift", + "ledger_value": 182700000.0, + "name": "hmrc.self_employment_income.amount@E07000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 252872158.5654419, + "kind": "calibration_drift", + "ledger_value": 284800000.0, + "name": "hmrc.self_employment_income.amount@E07000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 180940782.0820171, + "kind": "calibration_drift", + "ledger_value": 179900000.0, + "name": "hmrc.self_employment_income.amount@E07000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 293234241.68795276, + "kind": "calibration_drift", + "ledger_value": 271200000.0, + "name": "hmrc.self_employment_income.amount@E07000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 112505334.05802234, + "kind": "calibration_drift", + "ledger_value": 99000000.0, + "name": "hmrc.self_employment_income.amount@E07000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114412204.12680237, + "kind": "calibration_drift", + "ledger_value": 120600000.0, + "name": "hmrc.self_employment_income.amount@E07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 220349430.1701379, + "kind": "calibration_drift", + "ledger_value": 212400000.0, + "name": "hmrc.self_employment_income.amount@E07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148735865.36484307, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 271728984.8011556, + "kind": "calibration_drift", + "ledger_value": 286000000.0, + "name": "hmrc.self_employment_income.amount@E07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 333702262.03650695, + "kind": "calibration_drift", + "ledger_value": 308000000.0, + "name": "hmrc.self_employment_income.amount@E07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 198314487.15312412, + "kind": "calibration_drift", + "ledger_value": 203400000.0, + "name": "hmrc.self_employment_income.amount@E07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156998968.99622327, + "kind": "calibration_drift", + "ledger_value": 171500000.0, + "name": "hmrc.self_employment_income.amount@E07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67058264.08543139, + "kind": "calibration_drift", + "ledger_value": 86400000.0, + "name": "hmrc.self_employment_income.amount@E07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171618306.19020355, + "kind": "calibration_drift", + "ledger_value": 172200000.0, + "name": "hmrc.self_employment_income.amount@E07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 146193371.93980303, + "kind": "calibration_drift", + "ledger_value": 163100000.0, + "name": "hmrc.self_employment_income.amount@E07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 315798870.8351832, + "kind": "calibration_drift", + "ledger_value": 261000000.0, + "name": "hmrc.self_employment_income.amount@E07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109645028.95485227, + "kind": "calibration_drift", + "ledger_value": 103000000.0, + "name": "hmrc.self_employment_income.amount@E07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 243973431.57780173, + "kind": "calibration_drift", + "ledger_value": 242200000.0, + "name": "hmrc.self_employment_income.amount@E07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 350864092.6555273, + "kind": "calibration_drift", + "ledger_value": 339300000.0, + "name": "hmrc.self_employment_income.amount@E07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 181682342.66432044, + "kind": "calibration_drift", + "ledger_value": 178500000.0, + "name": "hmrc.self_employment_income.amount@E07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 379255269.2351412, + "kind": "calibration_drift", + "ledger_value": 376200000.0, + "name": "hmrc.self_employment_income.amount@E07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 385187753.893568, + "kind": "calibration_drift", + "ledger_value": 331200000.0, + "name": "hmrc.self_employment_income.amount@E07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 311773256.24553645, + "kind": "calibration_drift", + "ledger_value": 288000000.0, + "name": "hmrc.self_employment_income.amount@E07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 284759263.6044859, + "kind": "calibration_drift", + "ledger_value": 263200000.0, + "name": "hmrc.self_employment_income.amount@E07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 150960547.11175314, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 274589289.9043257, + "kind": "calibration_drift", + "ledger_value": 243900000.0, + "name": "hmrc.self_employment_income.amount@E07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 251706849.07896522, + "kind": "calibration_drift", + "ledger_value": 252000000.0, + "name": "hmrc.self_employment_income.amount@E07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182423903.24662378, + "kind": "calibration_drift", + "ledger_value": 165200000.0, + "name": "hmrc.self_employment_income.amount@E07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163143328.10673672, + "kind": "calibration_drift", + "ledger_value": 141400000.0, + "name": "hmrc.self_employment_income.amount@E07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164626449.2713434, + "kind": "calibration_drift", + "ledger_value": 185500000.0, + "name": "hmrc.self_employment_income.amount@E07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 351923464.9159606, + "kind": "calibration_drift", + "ledger_value": 281600000.0, + "name": "hmrc.self_employment_income.amount@E07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 494938720.0744636, + "kind": "calibration_drift", + "ledger_value": 473600000.0, + "name": "hmrc.self_employment_income.amount@E07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136659021.59590283, + "kind": "calibration_drift", + "ledger_value": 129000000.0, + "name": "hmrc.self_employment_income.amount@E07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 231684713.3567748, + "kind": "calibration_drift", + "ledger_value": 204300000.0, + "name": "hmrc.self_employment_income.amount@E07000113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 175432046.32776365, + "kind": "calibration_drift", + "ledger_value": 168000000.0, + "name": "hmrc.self_employment_income.amount@E07000114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 336562567.139677, + "kind": "calibration_drift", + "ledger_value": 296100000.0, + "name": "hmrc.self_employment_income.amount@E07000115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 399171467.73128825, + "kind": "calibration_drift", + "ledger_value": 387000000.0, + "name": "hmrc.self_employment_income.amount@E07000116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60384218.84470125, + "kind": "calibration_drift", + "ledger_value": 37000000.0, + "name": "hmrc.self_employment_income.amount@E07000117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104348167.6526855, + "kind": "calibration_drift", + "ledger_value": 131400000.0, + "name": "hmrc.self_employment_income.amount@E07000118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83266659.67006172, + "kind": "calibration_drift", + "ledger_value": 94800000.0, + "name": "hmrc.self_employment_income.amount@E07000119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65469205.694781356, + "kind": "calibration_drift", + "ledger_value": 57900000.0, + "name": "hmrc.self_employment_income.amount@E07000120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163884888.68904006, + "kind": "calibration_drift", + "ledger_value": 159200000.0, + "name": "hmrc.self_employment_income.amount@E07000121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72037313.70946816, + "kind": "calibration_drift", + "ledger_value": 88500000.0, + "name": "hmrc.self_employment_income.amount@E07000122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 132209658.10208274, + "kind": "calibration_drift", + "ledger_value": 127800000.0, + "name": "hmrc.self_employment_income.amount@E07000123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104665979.33081551, + "kind": "calibration_drift", + "ledger_value": 82000000.0, + "name": "hmrc.self_employment_income.amount@E07000124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97885996.86404203, + "kind": "calibration_drift", + "ledger_value": 80400000.0, + "name": "hmrc.self_employment_income.amount@E07000125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115471576.38723573, + "kind": "calibration_drift", + "ledger_value": 99000000.0, + "name": "hmrc.self_employment_income.amount@E07000126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129243415.77286935, + "kind": "calibration_drift", + "ledger_value": 111000000.0, + "name": "hmrc.self_employment_income.amount@E07000127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151278358.78988314, + "kind": "calibration_drift", + "ledger_value": 139200000.0, + "name": "hmrc.self_employment_income.amount@E07000128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118649693.1685358, + "kind": "calibration_drift", + "ledger_value": 106000000.0, + "name": "hmrc.self_employment_income.amount@E07000129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 220349430.1701379, + "kind": "calibration_drift", + "ledger_value": 192000000.0, + "name": "hmrc.self_employment_income.amount@E07000130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 186873266.7404439, + "kind": "calibration_drift", + "ledger_value": 177600000.0, + "name": "hmrc.self_employment_income.amount@E07000131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149371488.7211031, + "kind": "calibration_drift", + "ledger_value": 132000000.0, + "name": "hmrc.self_employment_income.amount@E07000132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73096685.96990152, + "kind": "calibration_drift", + "ledger_value": 95600000.0, + "name": "hmrc.self_employment_income.amount@E07000133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100428490.28908208, + "kind": "calibration_drift", + "ledger_value": 125000000.0, + "name": "hmrc.self_employment_income.amount@E07000134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64621707.886434674, + "kind": "calibration_drift", + "ledger_value": 58400000.0, + "name": "hmrc.self_employment_income.amount@E07000135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64515770.66039134, + "kind": "calibration_drift", + "ledger_value": 74800000.0, + "name": "hmrc.self_employment_income.amount@E07000136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148312116.46066976, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E07000137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91529763.3014419, + "kind": "calibration_drift", + "ledger_value": 60900000.0, + "name": "hmrc.self_employment_income.amount@E07000138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 141108385.08972293, + "kind": "calibration_drift", + "ledger_value": 137400000.0, + "name": "hmrc.self_employment_income.amount@E07000139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116530948.64766908, + "kind": "calibration_drift", + "ledger_value": 139800000.0, + "name": "hmrc.self_employment_income.amount@E07000140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 187614827.32274723, + "kind": "calibration_drift", + "ledger_value": 180800000.0, + "name": "hmrc.self_employment_income.amount@E07000141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 117060634.77788576, + "kind": "calibration_drift", + "ledger_value": 94000000.0, + "name": "hmrc.self_employment_income.amount@E07000142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 207636963.04493764, + "kind": "calibration_drift", + "ledger_value": 186400000.0, + "name": "hmrc.self_employment_income.amount@E07000143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 232214399.4869915, + "kind": "calibration_drift", + "ledger_value": 216000000.0, + "name": "hmrc.self_employment_income.amount@E07000144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 103818481.52246882, + "kind": "calibration_drift", + "ledger_value": 79200000.0, + "name": "hmrc.self_employment_income.amount@E07000145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 257427459.28530535, + "kind": "calibration_drift", + "ledger_value": 252900000.0, + "name": "hmrc.self_employment_income.amount@E07000146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 167592691.60055682, + "kind": "calibration_drift", + "ledger_value": 144200000.0, + "name": "hmrc.self_employment_income.amount@E07000147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 175749858.00589365, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@E07000148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 224057233.08165464, + "kind": "calibration_drift", + "ledger_value": 221400000.0, + "name": "hmrc.self_employment_income.amount@E07000149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111234087.3455023, + "kind": "calibration_drift", + "ledger_value": 99500000.0, + "name": "hmrc.self_employment_income.amount@E07000170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113352831.86636902, + "kind": "calibration_drift", + "ledger_value": 124200000.0, + "name": "hmrc.self_employment_income.amount@E07000171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88987269.87640184, + "kind": "calibration_drift", + "ledger_value": 84400000.0, + "name": "hmrc.self_employment_income.amount@E07000172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148100242.00858307, + "kind": "calibration_drift", + "ledger_value": 130800000.0, + "name": "hmrc.self_employment_income.amount@E07000173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120768437.6894025, + "kind": "calibration_drift", + "ledger_value": 94500000.0, + "name": "hmrc.self_employment_income.amount@E07000174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171300494.51207355, + "kind": "calibration_drift", + "ledger_value": 170800000.0, + "name": "hmrc.self_employment_income.amount@E07000175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 190687006.87800395, + "kind": "calibration_drift", + "ledger_value": 193200000.0, + "name": "hmrc.self_employment_income.amount@E07000176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 280309900.1106658, + "kind": "calibration_drift", + "ledger_value": 237000000.0, + "name": "hmrc.self_employment_income.amount@E07000177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 248846543.97579515, + "kind": "calibration_drift", + "ledger_value": 215200000.0, + "name": "hmrc.self_employment_income.amount@E07000178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 433283254.5172423, + "kind": "calibration_drift", + "ledger_value": 402000000.0, + "name": "hmrc.self_employment_income.amount@E07000179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 261029324.97077873, + "kind": "calibration_drift", + "ledger_value": 294000000.0, + "name": "hmrc.self_employment_income.amount@E07000180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 291539246.0712594, + "kind": "calibration_drift", + "ledger_value": 300800000.0, + "name": "hmrc.self_employment_income.amount@E07000181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113352831.86636902, + "kind": "calibration_drift", + "ledger_value": 108500000.0, + "name": "hmrc.self_employment_income.amount@E07000192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 132845281.45834276, + "kind": "calibration_drift", + "ledger_value": 118800000.0, + "name": "hmrc.self_employment_income.amount@E07000193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 172042055.0943769, + "kind": "calibration_drift", + "ledger_value": 161700000.0, + "name": "hmrc.self_employment_income.amount@E07000194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 117590320.90810244, + "kind": "calibration_drift", + "ledger_value": 115200000.0, + "name": "hmrc.self_employment_income.amount@E07000195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 138565891.66468287, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E07000196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151913982.14614314, + "kind": "calibration_drift", + "ledger_value": 158900000.0, + "name": "hmrc.self_employment_income.amount@E07000197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123946554.47070257, + "kind": "calibration_drift", + "ledger_value": 117000000.0, + "name": "hmrc.self_employment_income.amount@E07000198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57841725.4196612, + "kind": "calibration_drift", + "ledger_value": 48600000.0, + "name": "hmrc.self_employment_income.amount@E07000199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 210391330.92206436, + "kind": "calibration_drift", + "ledger_value": 196200000.0, + "name": "hmrc.self_employment_income.amount@E07000200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139837138.3772029, + "kind": "calibration_drift", + "ledger_value": 118200000.0, + "name": "hmrc.self_employment_income.amount@E07000202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156998968.99622327, + "kind": "calibration_drift", + "ledger_value": 165200000.0, + "name": "hmrc.self_employment_income.amount@E07000203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 873982114.8575181, + "kind": "calibration_drift", + "ledger_value": 899800000.0, + "name": "hmrc.self_employment_income.amount@E07000207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157316780.67435327, + "kind": "calibration_drift", + "ledger_value": 169200000.0, + "name": "hmrc.self_employment_income.amount@E07000208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 560407925.7692449, + "kind": "calibration_drift", + "ledger_value": 551000000.0, + "name": "hmrc.self_employment_income.amount@E07000209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 238040946.91937494, + "kind": "calibration_drift", + "ledger_value": 241500000.0, + "name": "hmrc.self_employment_income.amount@E07000210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 317493866.4518766, + "kind": "calibration_drift", + "ledger_value": 311000000.0, + "name": "hmrc.self_employment_income.amount@E07000211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 160177085.7775233, + "kind": "calibration_drift", + "ledger_value": 164000000.0, + "name": "hmrc.self_employment_income.amount@E07000212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120238751.55918583, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E07000213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182423903.24662378, + "kind": "calibration_drift", + "ledger_value": 171500000.0, + "name": "hmrc.self_employment_income.amount@E07000214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 298742977.4422062, + "kind": "calibration_drift", + "ledger_value": 283200000.0, + "name": "hmrc.self_employment_income.amount@E07000215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 634563983.9995798, + "kind": "calibration_drift", + "ledger_value": 524000000.0, + "name": "hmrc.self_employment_income.amount@E07000216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 293022367.23586607, + "kind": "calibration_drift", + "ledger_value": 279300000.0, + "name": "hmrc.self_employment_income.amount@E07000217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61973277.23535129, + "kind": "calibration_drift", + "ledger_value": 61500000.0, + "name": "hmrc.self_employment_income.amount@E07000218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110704401.21528563, + "kind": "calibration_drift", + "ledger_value": 96000000.0, + "name": "hmrc.self_employment_income.amount@E07000219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 112717208.510109, + "kind": "calibration_drift", + "ledger_value": 97000000.0, + "name": "hmrc.self_employment_income.amount@E07000220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 265054939.5604255, + "kind": "calibration_drift", + "ledger_value": 261000000.0, + "name": "hmrc.self_employment_income.amount@E07000221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191322630.23426396, + "kind": "calibration_drift", + "ledger_value": 205600000.0, + "name": "hmrc.self_employment_income.amount@E07000222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92377261.10978858, + "kind": "calibration_drift", + "ledger_value": 101000000.0, + "name": "hmrc.self_employment_income.amount@E07000223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 245880301.64658177, + "kind": "calibration_drift", + "ledger_value": 246400000.0, + "name": "hmrc.self_employment_income.amount@E07000224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 330841956.93333685, + "kind": "calibration_drift", + "ledger_value": 282600000.0, + "name": "hmrc.self_employment_income.amount@E07000225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 147464618.65232307, + "kind": "calibration_drift", + "ledger_value": 152600000.0, + "name": "hmrc.self_employment_income.amount@E07000226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 292386743.87960607, + "kind": "calibration_drift", + "ledger_value": 270000000.0, + "name": "hmrc.self_employment_income.amount@E07000227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 334761634.29694027, + "kind": "calibration_drift", + "ledger_value": 310000000.0, + "name": "hmrc.self_employment_income.amount@E07000228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113352831.86636902, + "kind": "calibration_drift", + "ledger_value": 114600000.0, + "name": "hmrc.self_employment_income.amount@E07000229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 209226021.43558767, + "kind": "calibration_drift", + "ledger_value": 210000000.0, + "name": "hmrc.self_employment_income.amount@E07000234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148312116.46066976, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E07000235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118649693.1685358, + "kind": "calibration_drift", + "ledger_value": 97000000.0, + "name": "hmrc.self_employment_income.amount@E07000236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113352831.86636902, + "kind": "calibration_drift", + "ledger_value": 93000000.0, + "name": "hmrc.self_employment_income.amount@E07000237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216959438.93675116, + "kind": "calibration_drift", + "ledger_value": 197600000.0, + "name": "hmrc.self_employment_income.amount@E07000238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119497190.97688247, + "kind": "calibration_drift", + "ledger_value": 119400000.0, + "name": "hmrc.self_employment_income.amount@E07000239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 725987810.0749784, + "kind": "calibration_drift", + "ledger_value": 664400000.0, + "name": "hmrc.self_employment_income.amount@E07000240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 208484460.85328433, + "kind": "calibration_drift", + "ledger_value": 204400000.0, + "name": "hmrc.self_employment_income.amount@E07000241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 362305313.0682075, + "kind": "calibration_drift", + "ledger_value": 349800000.0, + "name": "hmrc.self_employment_income.amount@E07000242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 107526284.43398556, + "kind": "calibration_drift", + "ledger_value": 106500000.0, + "name": "hmrc.self_employment_income.amount@E07000243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 348533473.6825739, + "kind": "calibration_drift", + "ledger_value": 345000000.0, + "name": "hmrc.self_employment_income.amount@E07000244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 314633561.34870654, + "kind": "calibration_drift", + "ledger_value": 264000000.0, + "name": "hmrc.self_employment_income.amount@E07000245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 280839586.2408825, + "kind": "calibration_drift", + "ledger_value": 264000000.0, + "name": "hmrc.self_employment_income.amount@E08000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 213569447.70336443, + "kind": "calibration_drift", + "ledger_value": 176000000.0, + "name": "hmrc.self_employment_income.amount@E08000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 428727953.7973789, + "kind": "calibration_drift", + "ledger_value": 475200000.0, + "name": "hmrc.self_employment_income.amount@E08000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182212028.79453713, + "kind": "calibration_drift", + "ledger_value": 192600000.0, + "name": "hmrc.self_employment_income.amount@E08000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 166109570.4359501, + "kind": "calibration_drift", + "ledger_value": 164800000.0, + "name": "hmrc.self_employment_income.amount@E08000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 264525253.43020883, + "kind": "calibration_drift", + "ledger_value": 258000000.0, + "name": "hmrc.self_employment_income.amount@E08000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 421100473.52225876, + "kind": "calibration_drift", + "ledger_value": 438600000.0, + "name": "hmrc.self_employment_income.amount@E08000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 181364530.98619044, + "kind": "calibration_drift", + "ledger_value": 185400000.0, + "name": "hmrc.self_employment_income.amount@E08000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 388048058.9967381, + "kind": "calibration_drift", + "ledger_value": 364800000.0, + "name": "hmrc.self_employment_income.amount@E08000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 278191155.5897991, + "kind": "calibration_drift", + "ledger_value": 304500000.0, + "name": "hmrc.self_employment_income.amount@E08000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123310931.11444256, + "kind": "calibration_drift", + "ledger_value": 112200000.0, + "name": "hmrc.self_employment_income.amount@E08000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 338469437.208457, + "kind": "calibration_drift", + "ledger_value": 365500000.0, + "name": "hmrc.self_employment_income.amount@E08000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 143650878.51476297, + "kind": "calibration_drift", + "ledger_value": 130200000.0, + "name": "hmrc.self_employment_income.amount@E08000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 291115497.16708606, + "kind": "calibration_drift", + "ledger_value": 242000000.0, + "name": "hmrc.self_employment_income.amount@E08000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 299484538.02450955, + "kind": "calibration_drift", + "ledger_value": 294000000.0, + "name": "hmrc.self_employment_income.amount@E08000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 243549682.6736284, + "kind": "calibration_drift", + "ledger_value": 213400000.0, + "name": "hmrc.self_employment_income.amount@E08000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 256156212.57278532, + "kind": "calibration_drift", + "ledger_value": 266500000.0, + "name": "hmrc.self_employment_income.amount@E08000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 237723135.24124494, + "kind": "calibration_drift", + "ledger_value": 222200000.0, + "name": "hmrc.self_employment_income.amount@E08000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 547695458.6440446, + "kind": "calibration_drift", + "ledger_value": 533600000.0, + "name": "hmrc.self_employment_income.amount@E08000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 298742977.4422062, + "kind": "calibration_drift", + "ledger_value": 289000000.0, + "name": "hmrc.self_employment_income.amount@E08000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 192382002.49469733, + "kind": "calibration_drift", + "ledger_value": 165200000.0, + "name": "hmrc.self_employment_income.amount@E08000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 105407539.91311885, + "kind": "calibration_drift", + "ledger_value": 86800000.0, + "name": "hmrc.self_employment_income.amount@E08000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171194557.2860302, + "kind": "calibration_drift", + "ledger_value": 154400000.0, + "name": "hmrc.self_employment_income.amount@E08000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1014454876.590981, + "kind": "calibration_drift", + "ledger_value": 944000000.0, + "name": "hmrc.self_employment_income.amount@E08000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216111941.12840447, + "kind": "calibration_drift", + "ledger_value": 229200000.0, + "name": "hmrc.self_employment_income.amount@E08000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 278191155.5897991, + "kind": "calibration_drift", + "ledger_value": 261300000.0, + "name": "hmrc.self_employment_income.amount@E08000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 219925681.26596457, + "kind": "calibration_drift", + "ledger_value": 213600000.0, + "name": "hmrc.self_employment_income.amount@E08000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 296518295.69529617, + "kind": "calibration_drift", + "ledger_value": 276300000.0, + "name": "hmrc.self_employment_income.amount@E08000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 261029324.97077873, + "kind": "calibration_drift", + "ledger_value": 229900000.0, + "name": "hmrc.self_employment_income.amount@E08000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 206577590.7845043, + "kind": "calibration_drift", + "ledger_value": 201000000.0, + "name": "hmrc.self_employment_income.amount@E08000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 487311239.79934347, + "kind": "calibration_drift", + "ledger_value": 424000000.0, + "name": "hmrc.self_employment_income.amount@E08000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156787094.54413658, + "kind": "calibration_drift", + "ledger_value": 183000000.0, + "name": "hmrc.self_employment_income.amount@E08000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 408599880.8491451, + "kind": "calibration_drift", + "ledger_value": 397100000.0, + "name": "hmrc.self_employment_income.amount@E08000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 871227746.9803914, + "kind": "calibration_drift", + "ledger_value": 882000000.0, + "name": "hmrc.self_employment_income.amount@E08000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 309972323.4027998, + "kind": "calibration_drift", + "ledger_value": 306600000.0, + "name": "hmrc.self_employment_income.amount@E08000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116001262.5174524, + "kind": "calibration_drift", + "ledger_value": 135100000.0, + "name": "hmrc.self_employment_income.amount@E08000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 618673400.0930794, + "kind": "calibration_drift", + "ledger_value": 588000000.0, + "name": "hmrc.self_employment_income.amount@E09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 379996829.81744456, + "kind": "calibration_drift", + "ledger_value": 402800000.0, + "name": "hmrc.self_employment_income.amount@E09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1639590447.472704, + "kind": "calibration_drift", + "ledger_value": 1491000000.0, + "name": "hmrc.self_employment_income.amount@E09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 326286656.21347344, + "kind": "calibration_drift", + "ledger_value": 336000000.0, + "name": "hmrc.self_employment_income.amount@E09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 869532751.363698, + "kind": "calibration_drift", + "ledger_value": 789600000.0, + "name": "hmrc.self_employment_income.amount@E09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 869850563.041828, + "kind": "calibration_drift", + "ledger_value": 763400000.0, + "name": "hmrc.self_employment_income.amount@E09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2983192285.3803287, + "kind": "calibration_drift", + "ledger_value": 3043000000.0, + "name": "hmrc.self_employment_income.amount@E09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 533711744.8063244, + "kind": "calibration_drift", + "ledger_value": 559200000.0, + "name": "hmrc.self_employment_income.amount@E09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 905763282.6705188, + "kind": "calibration_drift", + "ledger_value": 948300000.0, + "name": "hmrc.self_employment_income.amount@E09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 652573312.4269469, + "kind": "calibration_drift", + "ledger_value": 587400000.0, + "name": "hmrc.self_employment_income.amount@E09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 669947017.4980539, + "kind": "calibration_drift", + "ledger_value": 664000000.0, + "name": "hmrc.self_employment_income.amount@E09000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 671747950.3407906, + "kind": "calibration_drift", + "ledger_value": 639200000.0, + "name": "hmrc.self_employment_income.amount@E09000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1156834508.393224, + "kind": "calibration_drift", + "ledger_value": 1107600000.0, + "name": "hmrc.self_employment_income.amount@E09000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1189145362.3364413, + "kind": "calibration_drift", + "ledger_value": 1155600000.0, + "name": "hmrc.self_employment_income.amount@E09000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 696855072.9130611, + "kind": "calibration_drift", + "ledger_value": 679200000.0, + "name": "hmrc.self_employment_income.amount@E09000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 503201823.70584375, + "kind": "calibration_drift", + "ledger_value": 502000000.0, + "name": "hmrc.self_employment_income.amount@E09000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 484450934.69617337, + "kind": "calibration_drift", + "ledger_value": 453900000.0, + "name": "hmrc.self_employment_income.amount@E09000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 592506905.2603756, + "kind": "calibration_drift", + "ledger_value": 596000000.0, + "name": "hmrc.self_employment_income.amount@E09000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1202917201.722075, + "kind": "calibration_drift", + "ledger_value": 1177600000.0, + "name": "hmrc.self_employment_income.amount@E09000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3717337261.860644, + "kind": "calibration_drift", + "ledger_value": 3330000000.0, + "name": "hmrc.self_employment_income.amount@E09000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 366542802.10994095, + "kind": "calibration_drift", + "ledger_value": 382800000.0, + "name": "hmrc.self_employment_income.amount@E09000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 901949542.5329587, + "kind": "calibration_drift", + "ledger_value": 943800000.0, + "name": "hmrc.self_employment_income.amount@E09000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 567611657.1401918, + "kind": "calibration_drift", + "ledger_value": 598500000.0, + "name": "hmrc.self_employment_income.amount@E09000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 994962426.9990073, + "kind": "calibration_drift", + "ledger_value": 990000000.0, + "name": "hmrc.self_employment_income.amount@E09000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 631809616.1224531, + "kind": "calibration_drift", + "ledger_value": 642000000.0, + "name": "hmrc.self_employment_income.amount@E09000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 655963303.6603336, + "kind": "calibration_drift", + "ledger_value": 676000000.0, + "name": "hmrc.self_employment_income.amount@E09000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1304193189.8195038, + "kind": "calibration_drift", + "ledger_value": 1248800000.0, + "name": "hmrc.self_employment_income.amount@E09000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1014454876.590981, + "kind": "calibration_drift", + "ledger_value": 952000000.0, + "name": "hmrc.self_employment_income.amount@E09000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 334337885.39276695, + "kind": "calibration_drift", + "ledger_value": 315900000.0, + "name": "hmrc.self_employment_income.amount@E09000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 527567385.6958109, + "kind": "calibration_drift", + "ledger_value": 536000000.0, + "name": "hmrc.self_employment_income.amount@E09000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 627995875.9848931, + "kind": "calibration_drift", + "ledger_value": 648000000.0, + "name": "hmrc.self_employment_income.amount@E09000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1925091271.6594932, + "kind": "calibration_drift", + "ledger_value": 1996800000.0, + "name": "hmrc.self_employment_income.amount@E09000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2542493425.040053, + "kind": "calibration_drift", + "ledger_value": 2457000000.0, + "name": "hmrc.self_employment_income.amount@E09000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123078217.11262494, + "kind": "calibration_drift", + "ledger_value": 121800000.0, + "name": "hmrc.self_employment_income.amount@E14001063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114889510.97893496, + "kind": "calibration_drift", + "ledger_value": 108000000.0, + "name": "hmrc.self_employment_income.amount@E14001064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 256697578.87805519, + "kind": "calibration_drift", + "ledger_value": 248400000.0, + "name": "hmrc.self_employment_income.amount@E14001065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80691629.78453626, + "kind": "calibration_drift", + "ledger_value": 75200000.0, + "name": "hmrc.self_employment_income.amount@E14001066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 250622224.95300782, + "kind": "calibration_drift", + "ledger_value": 293400000.0, + "name": "hmrc.self_employment_income.amount@E14001067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86126573.94938889, + "kind": "calibration_drift", + "ledger_value": 77600000.0, + "name": "hmrc.self_employment_income.amount@E14001068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 222382289.2276208, + "kind": "calibration_drift", + "ledger_value": 135000000.0, + "name": "hmrc.self_employment_income.amount@E14001069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 79210148.53928578, + "kind": "calibration_drift", + "ledger_value": 76000000.0, + "name": "hmrc.self_employment_income.amount@E14001070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 202709091.61515945, + "kind": "calibration_drift", + "ledger_value": 171500000.0, + "name": "hmrc.self_employment_income.amount@E14001071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 183076072.84606874, + "kind": "calibration_drift", + "ledger_value": 230300000.0, + "name": "hmrc.self_employment_income.amount@E14001072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 231153768.24308798, + "kind": "calibration_drift", + "ledger_value": 256800000.0, + "name": "hmrc.self_employment_income.amount@E14001073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100569948.74098076, + "kind": "calibration_drift", + "ledger_value": 95000000.0, + "name": "hmrc.self_employment_income.amount@E14001074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96368860.7141033, + "kind": "calibration_drift", + "ledger_value": 97000000.0, + "name": "hmrc.self_employment_income.amount@E14001075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58144936.827280395, + "kind": "calibration_drift", + "ledger_value": 61600000.0, + "name": "hmrc.self_employment_income.amount@E14001076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 195997407.10759783, + "kind": "calibration_drift", + "ledger_value": 189000000.0, + "name": "hmrc.self_employment_income.amount@E14001077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122450615.54763411, + "kind": "calibration_drift", + "ledger_value": 101500000.0, + "name": "hmrc.self_employment_income.amount@E14001078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 103490217.24746872, + "kind": "calibration_drift", + "ledger_value": 102500000.0, + "name": "hmrc.self_employment_income.amount@E14001079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 231755753.417671, + "kind": "calibration_drift", + "ledger_value": 204600000.0, + "name": "hmrc.self_employment_income.amount@E14001080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 630948773.3374554, + "kind": "calibration_drift", + "ledger_value": 748800000.0, + "name": "hmrc.self_employment_income.amount@E14001081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 422734482.70454276, + "kind": "calibration_drift", + "ledger_value": 263400000.0, + "name": "hmrc.self_employment_income.amount@E14001082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 264389331.35035765, + "kind": "calibration_drift", + "ledger_value": 249200000.0, + "name": "hmrc.self_employment_income.amount@E14001083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151943619.70380214, + "kind": "calibration_drift", + "ledger_value": 151000000.0, + "name": "hmrc.self_employment_income.amount@E14001084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 263720739.24819073, + "kind": "calibration_drift", + "ledger_value": 281400000.0, + "name": "hmrc.self_employment_income.amount@E14001085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 228969970.96082392, + "kind": "calibration_drift", + "ledger_value": 214200000.0, + "name": "hmrc.self_employment_income.amount@E14001086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113352527.5544676, + "kind": "calibration_drift", + "ledger_value": 121500000.0, + "name": "hmrc.self_employment_income.amount@E14001087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 216496923.5314312, + "kind": "calibration_drift", + "ledger_value": 172900000.0, + "name": "hmrc.self_employment_income.amount@E14001088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119447093.77232082, + "kind": "calibration_drift", + "ledger_value": 139200000.0, + "name": "hmrc.self_employment_income.amount@E14001089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 210692676.40486628, + "kind": "calibration_drift", + "ledger_value": 186900000.0, + "name": "hmrc.self_employment_income.amount@E14001090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93717564.30689712, + "kind": "calibration_drift", + "ledger_value": 86800000.0, + "name": "hmrc.self_employment_income.amount@E14001091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 199734014.77607948, + "kind": "calibration_drift", + "ledger_value": 170800000.0, + "name": "hmrc.self_employment_income.amount@E14001092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68459803.36481687, + "kind": "calibration_drift", + "ledger_value": 63200000.0, + "name": "hmrc.self_employment_income.amount@E14001093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119039366.22499682, + "kind": "calibration_drift", + "ledger_value": 107600000.0, + "name": "hmrc.self_employment_income.amount@E14001094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77627269.08200446, + "kind": "calibration_drift", + "ledger_value": 67200000.0, + "name": "hmrc.self_employment_income.amount@E14001095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83217841.4436317, + "kind": "calibration_drift", + "ledger_value": 79600000.0, + "name": "hmrc.self_employment_income.amount@E14001096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 76737099.51533379, + "kind": "calibration_drift", + "ledger_value": 85200000.0, + "name": "hmrc.self_employment_income.amount@E14001097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84530207.07443075, + "kind": "calibration_drift", + "ledger_value": 65200000.0, + "name": "hmrc.self_employment_income.amount@E14001098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80658541.94692619, + "kind": "calibration_drift", + "ledger_value": 59700000.0, + "name": "hmrc.self_employment_income.amount@E14001099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71405688.26171264, + "kind": "calibration_drift", + "ledger_value": 68400000.0, + "name": "hmrc.self_employment_income.amount@E14001100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 79773062.2497115, + "kind": "calibration_drift", + "ledger_value": 83600000.0, + "name": "hmrc.self_employment_income.amount@E14001101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60881621.20251254, + "kind": "calibration_drift", + "ledger_value": 45000000.0, + "name": "hmrc.self_employment_income.amount@E14001102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96394606.48022021, + "kind": "calibration_drift", + "ledger_value": 95500000.0, + "name": "hmrc.self_employment_income.amount@E14001103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98695682.84281082, + "kind": "calibration_drift", + "ledger_value": 64500000.0, + "name": "hmrc.self_employment_income.amount@E14001104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68184427.16793314, + "kind": "calibration_drift", + "ledger_value": 56000000.0, + "name": "hmrc.self_employment_income.amount@E14001105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65106449.67201539, + "kind": "calibration_drift", + "ledger_value": 61200000.0, + "name": "hmrc.self_employment_income.amount@E14001106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87877027.29392114, + "kind": "calibration_drift", + "ledger_value": 56400000.0, + "name": "hmrc.self_employment_income.amount@E14001107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123081419.16142592, + "kind": "calibration_drift", + "ledger_value": 130200000.0, + "name": "hmrc.self_employment_income.amount@E14001108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93499824.9884309, + "kind": "calibration_drift", + "ledger_value": 107000000.0, + "name": "hmrc.self_employment_income.amount@E14001109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90669213.8483702, + "kind": "calibration_drift", + "ledger_value": 84800000.0, + "name": "hmrc.self_employment_income.amount@E14001110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95374090.88660082, + "kind": "calibration_drift", + "ledger_value": 87500000.0, + "name": "hmrc.self_employment_income.amount@E14001111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115922705.39204912, + "kind": "calibration_drift", + "ledger_value": 110800000.0, + "name": "hmrc.self_employment_income.amount@E14001112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61479336.9786943, + "kind": "calibration_drift", + "ledger_value": 61200000.0, + "name": "hmrc.self_employment_income.amount@E14001113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134819062.71619505, + "kind": "calibration_drift", + "ledger_value": 107400000.0, + "name": "hmrc.self_employment_income.amount@E14001114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153698342.44673574, + "kind": "calibration_drift", + "ledger_value": 131400000.0, + "name": "hmrc.self_employment_income.amount@E14001115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111335236.8098542, + "kind": "calibration_drift", + "ledger_value": 136800000.0, + "name": "hmrc.self_employment_income.amount@E14001116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 135079496.01867422, + "kind": "calibration_drift", + "ledger_value": 107000000.0, + "name": "hmrc.self_employment_income.amount@E14001117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 54915136.93669829, + "kind": "calibration_drift", + "ledger_value": 65200000.0, + "name": "hmrc.self_employment_income.amount@E14001118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56195956.457087755, + "kind": "calibration_drift", + "ledger_value": 49500000.0, + "name": "hmrc.self_employment_income.amount@E14001119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57957083.29762327, + "kind": "calibration_drift", + "ledger_value": 66000000.0, + "name": "hmrc.self_employment_income.amount@E14001120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 235787143.42591465, + "kind": "calibration_drift", + "ledger_value": 186200000.0, + "name": "hmrc.self_employment_income.amount@E14001121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 459468386.5493126, + "kind": "calibration_drift", + "ledger_value": 312400000.0, + "name": "hmrc.self_employment_income.amount@E14001122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 289179161.915132, + "kind": "calibration_drift", + "ledger_value": 243100000.0, + "name": "hmrc.self_employment_income.amount@E14001123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 379622097.64823335, + "kind": "calibration_drift", + "ledger_value": 216000000.0, + "name": "hmrc.self_employment_income.amount@E14001124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 307076480.0133741, + "kind": "calibration_drift", + "ledger_value": 260400000.0, + "name": "hmrc.self_employment_income.amount@E14001125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136655971.3783536, + "kind": "calibration_drift", + "ledger_value": 127200000.0, + "name": "hmrc.self_employment_income.amount@E14001126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 128451255.00065875, + "kind": "calibration_drift", + "ledger_value": 97000000.0, + "name": "hmrc.self_employment_income.amount@E14001127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74314215.92259705, + "kind": "calibration_drift", + "ledger_value": 73500000.0, + "name": "hmrc.self_employment_income.amount@E14001128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182019396.74174747, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E14001129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 169138621.7650307, + "kind": "calibration_drift", + "ledger_value": 204800000.0, + "name": "hmrc.self_employment_income.amount@E14001130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 187291036.41775045, + "kind": "calibration_drift", + "ledger_value": 189600000.0, + "name": "hmrc.self_employment_income.amount@E14001131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163304488.84965673, + "kind": "calibration_drift", + "ledger_value": 126000000.0, + "name": "hmrc.self_employment_income.amount@E14001132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123183015.27986328, + "kind": "calibration_drift", + "ledger_value": 121800000.0, + "name": "hmrc.self_employment_income.amount@E14001133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 179010538.21843255, + "kind": "calibration_drift", + "ledger_value": 172200000.0, + "name": "hmrc.self_employment_income.amount@E14001134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 113839238.97221561, + "kind": "calibration_drift", + "ledger_value": 130800000.0, + "name": "hmrc.self_employment_income.amount@E14001135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 189503069.94853213, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@E14001136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 301459310.16221154, + "kind": "calibration_drift", + "ledger_value": 267400000.0, + "name": "hmrc.self_employment_income.amount@E14001137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 210801546.06409937, + "kind": "calibration_drift", + "ledger_value": 210000000.0, + "name": "hmrc.self_employment_income.amount@E14001138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 212913830.92314166, + "kind": "calibration_drift", + "ledger_value": 179200000.0, + "name": "hmrc.self_employment_income.amount@E14001139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69639224.67317551, + "kind": "calibration_drift", + "ledger_value": 81600000.0, + "name": "hmrc.self_employment_income.amount@E14001140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 168701896.12559497, + "kind": "calibration_drift", + "ledger_value": 136500000.0, + "name": "hmrc.self_employment_income.amount@E14001141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72451690.87003072, + "kind": "calibration_drift", + "ledger_value": 53700000.0, + "name": "hmrc.self_employment_income.amount@E14001142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 103532911.23148172, + "kind": "calibration_drift", + "ledger_value": 114000000.0, + "name": "hmrc.self_employment_income.amount@E14001143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97230211.84156522, + "kind": "calibration_drift", + "ledger_value": 87200000.0, + "name": "hmrc.self_employment_income.amount@E14001144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131011179.8132917, + "kind": "calibration_drift", + "ledger_value": 114000000.0, + "name": "hmrc.self_employment_income.amount@E14001145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 169811052.0132352, + "kind": "calibration_drift", + "ledger_value": 157500000.0, + "name": "hmrc.self_employment_income.amount@E14001146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 103015246.6753243, + "kind": "calibration_drift", + "ledger_value": 114600000.0, + "name": "hmrc.self_employment_income.amount@E14001147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161226359.17782483, + "kind": "calibration_drift", + "ledger_value": 149800000.0, + "name": "hmrc.self_employment_income.amount@E14001148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 202199775.6350838, + "kind": "calibration_drift", + "ledger_value": 226100000.0, + "name": "hmrc.self_employment_income.amount@E14001149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114206407.23472725, + "kind": "calibration_drift", + "ledger_value": 108500000.0, + "name": "hmrc.self_employment_income.amount@E14001150", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 198740495.5804319, + "kind": "calibration_drift", + "ledger_value": 159600000.0, + "name": "hmrc.self_employment_income.amount@E14001151", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92274507.64725831, + "kind": "calibration_drift", + "ledger_value": 87000000.0, + "name": "hmrc.self_employment_income.amount@E14001152", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159462030.28848833, + "kind": "calibration_drift", + "ledger_value": 165200000.0, + "name": "hmrc.self_employment_income.amount@E14001153", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126999659.54421735, + "kind": "calibration_drift", + "ledger_value": 152400000.0, + "name": "hmrc.self_employment_income.amount@E14001154", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 253080449.6769553, + "kind": "calibration_drift", + "ledger_value": 181600000.0, + "name": "hmrc.self_employment_income.amount@E14001155", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137651702.87727815, + "kind": "calibration_drift", + "ledger_value": 139200000.0, + "name": "hmrc.self_employment_income.amount@E14001156", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124578910.65068126, + "kind": "calibration_drift", + "ledger_value": 161700000.0, + "name": "hmrc.self_employment_income.amount@E14001157", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 169174911.65144175, + "kind": "calibration_drift", + "ledger_value": 170400000.0, + "name": "hmrc.self_employment_income.amount@E14001158", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156660237.58763638, + "kind": "calibration_drift", + "ledger_value": 159600000.0, + "name": "hmrc.self_employment_income.amount@E14001159", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1991652791.5874288, + "kind": "calibration_drift", + "ledger_value": 1368000000.0, + "name": "hmrc.self_employment_income.amount@E14001160", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 143272471.55076548, + "kind": "calibration_drift", + "ledger_value": 153600000.0, + "name": "hmrc.self_employment_income.amount@E14001161", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 381684217.0760604, + "kind": "calibration_drift", + "ledger_value": 434000000.0, + "name": "hmrc.self_employment_income.amount@E14001162", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93542950.22480765, + "kind": "calibration_drift", + "ledger_value": 101600000.0, + "name": "hmrc.self_employment_income.amount@E14001163", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123999609.35043238, + "kind": "calibration_drift", + "ledger_value": 187200000.0, + "name": "hmrc.self_employment_income.amount@E14001164", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65321795.539862685, + "kind": "calibration_drift", + "ledger_value": 49800000.0, + "name": "hmrc.self_employment_income.amount@E14001165", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 238652966.5349683, + "kind": "calibration_drift", + "ledger_value": 139200000.0, + "name": "hmrc.self_employment_income.amount@E14001166", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 250869850.0602831, + "kind": "calibration_drift", + "ledger_value": 254000000.0, + "name": "hmrc.self_employment_income.amount@E14001167", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157441061.94327182, + "kind": "calibration_drift", + "ledger_value": 121500000.0, + "name": "hmrc.self_employment_income.amount@E14001168", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 365962157.4632797, + "kind": "calibration_drift", + "ledger_value": 368100000.0, + "name": "hmrc.self_employment_income.amount@E14001169", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73775204.37443314, + "kind": "calibration_drift", + "ledger_value": 105000000.0, + "name": "hmrc.self_employment_income.amount@E14001170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 133453922.57737994, + "kind": "calibration_drift", + "ledger_value": 119000000.0, + "name": "hmrc.self_employment_income.amount@E14001171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2366570227.823613, + "kind": "calibration_drift", + "ledger_value": 2530000000.0, + "name": "hmrc.self_employment_income.amount@E14001172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85808762.51991042, + "kind": "calibration_drift", + "ledger_value": 114000000.0, + "name": "hmrc.self_employment_income.amount@E14001173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100284364.03207807, + "kind": "calibration_drift", + "ledger_value": 90500000.0, + "name": "hmrc.self_employment_income.amount@E14001174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 305706003.1265574, + "kind": "calibration_drift", + "ledger_value": 372400000.0, + "name": "hmrc.self_employment_income.amount@E14001175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 155466465.1826714, + "kind": "calibration_drift", + "ledger_value": 140400000.0, + "name": "hmrc.self_employment_income.amount@E14001176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 102926656.65849736, + "kind": "calibration_drift", + "ledger_value": 111500000.0, + "name": "hmrc.self_employment_income.amount@E14001177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126673050.56651802, + "kind": "calibration_drift", + "ledger_value": 108000000.0, + "name": "hmrc.self_employment_income.amount@E14001178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140057614.55458793, + "kind": "calibration_drift", + "ledger_value": 135600000.0, + "name": "hmrc.self_employment_income.amount@E14001179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69830280.2516336, + "kind": "calibration_drift", + "ledger_value": 79000000.0, + "name": "hmrc.self_employment_income.amount@E14001180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62439951.61898639, + "kind": "calibration_drift", + "ledger_value": 70000000.0, + "name": "hmrc.self_employment_income.amount@E14001181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82160302.83458285, + "kind": "calibration_drift", + "ledger_value": 99600000.0, + "name": "hmrc.self_employment_income.amount@E14001182", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77298683.92237188, + "kind": "calibration_drift", + "ledger_value": 84000000.0, + "name": "hmrc.self_employment_income.amount@E14001183", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148575064.36517787, + "kind": "calibration_drift", + "ledger_value": 152600000.0, + "name": "hmrc.self_employment_income.amount@E14001184", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90756736.51559679, + "kind": "calibration_drift", + "ledger_value": 80000000.0, + "name": "hmrc.self_employment_income.amount@E14001185", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 143571329.43885636, + "kind": "calibration_drift", + "ledger_value": 135600000.0, + "name": "hmrc.self_employment_income.amount@E14001186", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156496933.0987867, + "kind": "calibration_drift", + "ledger_value": 183600000.0, + "name": "hmrc.self_employment_income.amount@E14001187", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163699408.2017768, + "kind": "calibration_drift", + "ledger_value": 137900000.0, + "name": "hmrc.self_employment_income.amount@E14001188", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 206746458.52497542, + "kind": "calibration_drift", + "ledger_value": 214000000.0, + "name": "hmrc.self_employment_income.amount@E14001189", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61703480.39476245, + "kind": "calibration_drift", + "ledger_value": 52800000.0, + "name": "hmrc.self_employment_income.amount@E14001190", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 162914906.24553826, + "kind": "calibration_drift", + "ledger_value": 162400000.0, + "name": "hmrc.self_employment_income.amount@E14001191", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 198742287.6261455, + "kind": "calibration_drift", + "ledger_value": 226400000.0, + "name": "hmrc.self_employment_income.amount@E14001192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90511246.10752216, + "kind": "calibration_drift", + "ledger_value": 82400000.0, + "name": "hmrc.self_employment_income.amount@E14001193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58277288.177720636, + "kind": "calibration_drift", + "ledger_value": 77200000.0, + "name": "hmrc.self_employment_income.amount@E14001194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151841154.14217103, + "kind": "calibration_drift", + "ledger_value": 120000000.0, + "name": "hmrc.self_employment_income.amount@E14001195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110820774.30249776, + "kind": "calibration_drift", + "ledger_value": 86800000.0, + "name": "hmrc.self_employment_income.amount@E14001196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 200509093.8681697, + "kind": "calibration_drift", + "ledger_value": 182400000.0, + "name": "hmrc.self_employment_income.amount@E14001197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74658969.84350188, + "kind": "calibration_drift", + "ledger_value": 93500000.0, + "name": "hmrc.self_employment_income.amount@E14001198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85317522.95234288, + "kind": "calibration_drift", + "ledger_value": 102500000.0, + "name": "hmrc.self_employment_income.amount@E14001199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88453396.07809642, + "kind": "calibration_drift", + "ledger_value": 88000000.0, + "name": "hmrc.self_employment_income.amount@E14001200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 335825879.6682864, + "kind": "calibration_drift", + "ledger_value": 204400000.0, + "name": "hmrc.self_employment_income.amount@E14001201", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 135209712.66991383, + "kind": "calibration_drift", + "ledger_value": 115200000.0, + "name": "hmrc.self_employment_income.amount@E14001202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149055371.68532392, + "kind": "calibration_drift", + "ledger_value": 130800000.0, + "name": "hmrc.self_employment_income.amount@E14001203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68382954.1935935, + "kind": "calibration_drift", + "ledger_value": 73600000.0, + "name": "hmrc.self_employment_income.amount@E14001204", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 519389393.11153305, + "kind": "calibration_drift", + "ledger_value": 588600000.0, + "name": "hmrc.self_employment_income.amount@E14001205", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 192635255.86657545, + "kind": "calibration_drift", + "ledger_value": 147000000.0, + "name": "hmrc.self_employment_income.amount@E14001206", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 566361249.6347613, + "kind": "calibration_drift", + "ledger_value": 497200000.0, + "name": "hmrc.self_employment_income.amount@E14001207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 213698332.8793802, + "kind": "calibration_drift", + "ledger_value": 250800000.0, + "name": "hmrc.self_employment_income.amount@E14001208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 217585620.12376222, + "kind": "calibration_drift", + "ledger_value": 224000000.0, + "name": "hmrc.self_employment_income.amount@E14001209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148304022.25455, + "kind": "calibration_drift", + "ledger_value": 112000000.0, + "name": "hmrc.self_employment_income.amount@E14001210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48457671.85473474, + "kind": "calibration_drift", + "ledger_value": 38400000.0, + "name": "hmrc.self_employment_income.amount@E14001211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 229988610.60666093, + "kind": "calibration_drift", + "ledger_value": 218400000.0, + "name": "hmrc.self_employment_income.amount@E14001212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 210797276.66569808, + "kind": "calibration_drift", + "ledger_value": 194000000.0, + "name": "hmrc.self_employment_income.amount@E14001213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 239638130.21606782, + "kind": "calibration_drift", + "ledger_value": 231000000.0, + "name": "hmrc.self_employment_income.amount@E14001214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 301405651.58684975, + "kind": "calibration_drift", + "ledger_value": 314300000.0, + "name": "hmrc.self_employment_income.amount@E14001215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 145744453.22511718, + "kind": "calibration_drift", + "ledger_value": 130200000.0, + "name": "hmrc.self_employment_income.amount@E14001216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164726198.51728904, + "kind": "calibration_drift", + "ledger_value": 144600000.0, + "name": "hmrc.self_employment_income.amount@E14001217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140249737.48264635, + "kind": "calibration_drift", + "ledger_value": 120600000.0, + "name": "hmrc.self_employment_income.amount@E14001218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136189539.60301176, + "kind": "calibration_drift", + "ledger_value": 133700000.0, + "name": "hmrc.self_employment_income.amount@E14001219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163333307.28886548, + "kind": "calibration_drift", + "ledger_value": 145800000.0, + "name": "hmrc.self_employment_income.amount@E14001220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 233569180.38862243, + "kind": "calibration_drift", + "ledger_value": 212800000.0, + "name": "hmrc.self_employment_income.amount@E14001221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115683360.33015816, + "kind": "calibration_drift", + "ledger_value": 52800000.0, + "name": "hmrc.self_employment_income.amount@E14001222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 283977094.02671385, + "kind": "calibration_drift", + "ledger_value": 218400000.0, + "name": "hmrc.self_employment_income.amount@E14001223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 184065639.4643585, + "kind": "calibration_drift", + "ledger_value": 184800000.0, + "name": "hmrc.self_employment_income.amount@E14001224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182387632.35385942, + "kind": "calibration_drift", + "ledger_value": 161700000.0, + "name": "hmrc.self_employment_income.amount@E14001225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 313373842.655289, + "kind": "calibration_drift", + "ledger_value": 288800000.0, + "name": "hmrc.self_employment_income.amount@E14001226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 250962762.31460044, + "kind": "calibration_drift", + "ledger_value": 230300000.0, + "name": "hmrc.self_employment_income.amount@E14001227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72046098.02190737, + "kind": "calibration_drift", + "ledger_value": 76000000.0, + "name": "hmrc.self_employment_income.amount@E14001228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 222762265.68533632, + "kind": "calibration_drift", + "ledger_value": 198900000.0, + "name": "hmrc.self_employment_income.amount@E14001229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 650711818.5370648, + "kind": "calibration_drift", + "ledger_value": 532000000.0, + "name": "hmrc.self_employment_income.amount@E14001230", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 127523379.45998847, + "kind": "calibration_drift", + "ledger_value": 100400000.0, + "name": "hmrc.self_employment_income.amount@E14001231", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161058127.73746473, + "kind": "calibration_drift", + "ledger_value": 143400000.0, + "name": "hmrc.self_employment_income.amount@E14001232", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191194333.90613732, + "kind": "calibration_drift", + "ledger_value": 145200000.0, + "name": "hmrc.self_employment_income.amount@E14001233", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 380574173.4917228, + "kind": "calibration_drift", + "ledger_value": 290400000.0, + "name": "hmrc.self_employment_income.amount@E14001234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 203906467.64600274, + "kind": "calibration_drift", + "ledger_value": 138000000.0, + "name": "hmrc.self_employment_income.amount@E14001235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 145035733.09050167, + "kind": "calibration_drift", + "ledger_value": 154400000.0, + "name": "hmrc.self_employment_income.amount@E14001236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118607009.04391125, + "kind": "calibration_drift", + "ledger_value": 132000000.0, + "name": "hmrc.self_employment_income.amount@E14001237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 791332993.6806241, + "kind": "calibration_drift", + "ledger_value": 716400000.0, + "name": "hmrc.self_employment_income.amount@E14001238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126118028.77434927, + "kind": "calibration_drift", + "ledger_value": 83600000.0, + "name": "hmrc.self_employment_income.amount@E14001239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 117835395.87583072, + "kind": "calibration_drift", + "ledger_value": 120600000.0, + "name": "hmrc.self_employment_income.amount@E14001240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 189361694.64238006, + "kind": "calibration_drift", + "ledger_value": 167300000.0, + "name": "hmrc.self_employment_income.amount@E14001241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129108742.35445867, + "kind": "calibration_drift", + "ledger_value": 126500000.0, + "name": "hmrc.self_employment_income.amount@E14001242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 112333208.68615764, + "kind": "calibration_drift", + "ledger_value": 94000000.0, + "name": "hmrc.self_employment_income.amount@E14001243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 48491827.04194513, + "kind": "calibration_drift", + "ledger_value": 79200000.0, + "name": "hmrc.self_employment_income.amount@E14001244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 101921213.33499163, + "kind": "calibration_drift", + "ledger_value": 102000000.0, + "name": "hmrc.self_employment_income.amount@E14001245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131284000.8399201, + "kind": "calibration_drift", + "ledger_value": 126600000.0, + "name": "hmrc.self_employment_income.amount@E14001246", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 174361163.35941878, + "kind": "calibration_drift", + "ledger_value": 126600000.0, + "name": "hmrc.self_employment_income.amount@E14001247", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106468122.63237423, + "kind": "calibration_drift", + "ledger_value": 101000000.0, + "name": "hmrc.self_employment_income.amount@E14001248", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 367790305.4044613, + "kind": "calibration_drift", + "ledger_value": 474400000.0, + "name": "hmrc.self_employment_income.amount@E14001249", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119403235.40692566, + "kind": "calibration_drift", + "ledger_value": 113500000.0, + "name": "hmrc.self_employment_income.amount@E14001250", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78260207.39499693, + "kind": "calibration_drift", + "ledger_value": 60800000.0, + "name": "hmrc.self_employment_income.amount@E14001251", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90511246.10752216, + "kind": "calibration_drift", + "ledger_value": 106000000.0, + "name": "hmrc.self_employment_income.amount@E14001252", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140659599.729171, + "kind": "calibration_drift", + "ledger_value": 142200000.0, + "name": "hmrc.self_employment_income.amount@E14001253", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 165866127.89043564, + "kind": "calibration_drift", + "ledger_value": 185500000.0, + "name": "hmrc.self_employment_income.amount@E14001254", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57598453.83191421, + "kind": "calibration_drift", + "ledger_value": 50700000.0, + "name": "hmrc.self_employment_income.amount@E14001255", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104600260.83180627, + "kind": "calibration_drift", + "ledger_value": 79200000.0, + "name": "hmrc.self_employment_income.amount@E14001256", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 332654445.83555174, + "kind": "calibration_drift", + "ledger_value": 364000000.0, + "name": "hmrc.self_employment_income.amount@E14001257", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 432506966.56002915, + "kind": "calibration_drift", + "ledger_value": 335400000.0, + "name": "hmrc.self_employment_income.amount@E14001258", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 267399618.557246, + "kind": "calibration_drift", + "ledger_value": 260800000.0, + "name": "hmrc.self_employment_income.amount@E14001259", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 337695273.8024389, + "kind": "calibration_drift", + "ledger_value": 331200000.0, + "name": "hmrc.self_employment_income.amount@E14001260", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89341430.94556645, + "kind": "calibration_drift", + "ledger_value": 87200000.0, + "name": "hmrc.self_employment_income.amount@E14001261", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56660253.533228934, + "kind": "calibration_drift", + "ledger_value": 68800000.0, + "name": "hmrc.self_employment_income.amount@E14001262", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153478468.42906886, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@E14001263", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 493122199.7615822, + "kind": "calibration_drift", + "ledger_value": 742000000.0, + "name": "hmrc.self_employment_income.amount@E14001264", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1769312980.7176392, + "kind": "calibration_drift", + "ledger_value": 2240000000.0, + "name": "hmrc.self_employment_income.amount@E14001265", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144839340.76404196, + "kind": "calibration_drift", + "ledger_value": 160000000.0, + "name": "hmrc.self_employment_income.amount@E14001266", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 166398745.9088154, + "kind": "calibration_drift", + "ledger_value": 203700000.0, + "name": "hmrc.self_employment_income.amount@E14001267", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 405367637.3576619, + "kind": "calibration_drift", + "ledger_value": 549500000.0, + "name": "hmrc.self_employment_income.amount@E14001268", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191783575.573371, + "kind": "calibration_drift", + "ledger_value": 200400000.0, + "name": "hmrc.self_employment_income.amount@E14001269", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 398878183.49114215, + "kind": "calibration_drift", + "ledger_value": 418500000.0, + "name": "hmrc.self_employment_income.amount@E14001270", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 242372669.11079025, + "kind": "calibration_drift", + "ledger_value": 193500000.0, + "name": "hmrc.self_employment_income.amount@E14001271", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72366302.90200475, + "kind": "calibration_drift", + "ledger_value": 65700000.0, + "name": "hmrc.self_employment_income.amount@E14001272", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 214096464.84811908, + "kind": "calibration_drift", + "ledger_value": 179900000.0, + "name": "hmrc.self_employment_income.amount@E14001273", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 192212585.42484695, + "kind": "calibration_drift", + "ledger_value": 176800000.0, + "name": "hmrc.self_employment_income.amount@E14001274", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 117408456.03570092, + "kind": "calibration_drift", + "ledger_value": 113000000.0, + "name": "hmrc.self_employment_income.amount@E14001275", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153164667.64657345, + "kind": "calibration_drift", + "ledger_value": 146300000.0, + "name": "hmrc.self_employment_income.amount@E14001276", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106179938.2402866, + "kind": "calibration_drift", + "ledger_value": 124000000.0, + "name": "hmrc.self_employment_income.amount@E14001277", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 225315365.92931262, + "kind": "calibration_drift", + "ledger_value": 188300000.0, + "name": "hmrc.self_employment_income.amount@E14001278", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 423342871.9767278, + "kind": "calibration_drift", + "ledger_value": 397800000.0, + "name": "hmrc.self_employment_income.amount@E14001279", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 338580370.81655365, + "kind": "calibration_drift", + "ledger_value": 304500000.0, + "name": "hmrc.self_employment_income.amount@E14001280", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119932737.84046847, + "kind": "calibration_drift", + "ledger_value": 127200000.0, + "name": "hmrc.self_employment_income.amount@E14001281", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 141929745.75355724, + "kind": "calibration_drift", + "ledger_value": 154000000.0, + "name": "hmrc.self_employment_income.amount@E14001282", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 236456361.05750036, + "kind": "calibration_drift", + "ledger_value": 217700000.0, + "name": "hmrc.self_employment_income.amount@E14001283", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 371045943.6096256, + "kind": "calibration_drift", + "ledger_value": 347400000.0, + "name": "hmrc.self_employment_income.amount@E14001284", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 184727611.4157591, + "kind": "calibration_drift", + "ledger_value": 195300000.0, + "name": "hmrc.self_employment_income.amount@E14001285", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106126570.76027039, + "kind": "calibration_drift", + "ledger_value": 96800000.0, + "name": "hmrc.self_employment_income.amount@E14001286", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120610504.83667457, + "kind": "calibration_drift", + "ledger_value": 134400000.0, + "name": "hmrc.self_employment_income.amount@E14001287", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114169049.99871589, + "kind": "calibration_drift", + "ledger_value": 138000000.0, + "name": "hmrc.self_employment_income.amount@E14001288", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 360814330.3409144, + "kind": "calibration_drift", + "ledger_value": 202300000.0, + "name": "hmrc.self_employment_income.amount@E14001289", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 919884579.5437135, + "kind": "calibration_drift", + "ledger_value": 896000000.0, + "name": "hmrc.self_employment_income.amount@E14001290", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 167596121.93965873, + "kind": "calibration_drift", + "ledger_value": 161700000.0, + "name": "hmrc.self_employment_income.amount@E14001291", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 188559705.40279073, + "kind": "calibration_drift", + "ledger_value": 212800000.0, + "name": "hmrc.self_employment_income.amount@E14001292", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 592662576.6093044, + "kind": "calibration_drift", + "ledger_value": 568000000.0, + "name": "hmrc.self_employment_income.amount@E14001293", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 217645391.7013804, + "kind": "calibration_drift", + "ledger_value": 184800000.0, + "name": "hmrc.self_employment_income.amount@E14001294", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75786091.0214446, + "kind": "calibration_drift", + "ledger_value": 64800000.0, + "name": "hmrc.self_employment_income.amount@E14001295", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 232255273.0306229, + "kind": "calibration_drift", + "ledger_value": 230400000.0, + "name": "hmrc.self_employment_income.amount@E14001296", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86839563.48240569, + "kind": "calibration_drift", + "ledger_value": 58800000.0, + "name": "hmrc.self_employment_income.amount@E14001297", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 167659275.21898088, + "kind": "calibration_drift", + "ledger_value": 163200000.0, + "name": "hmrc.self_employment_income.amount@E14001298", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67563229.70054425, + "kind": "calibration_drift", + "ledger_value": 76000000.0, + "name": "hmrc.self_employment_income.amount@E14001299", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 239003294.3926748, + "kind": "calibration_drift", + "ledger_value": 244200000.0, + "name": "hmrc.self_employment_income.amount@E14001300", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 209827886.03980333, + "kind": "calibration_drift", + "ledger_value": 219000000.0, + "name": "hmrc.self_employment_income.amount@E14001301", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 117408456.03570092, + "kind": "calibration_drift", + "ledger_value": 100500000.0, + "name": "hmrc.self_employment_income.amount@E14001302", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91792065.62791163, + "kind": "calibration_drift", + "ledger_value": 77600000.0, + "name": "hmrc.self_employment_income.amount@E14001303", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91792065.62791163, + "kind": "calibration_drift", + "ledger_value": 88800000.0, + "name": "hmrc.self_employment_income.amount@E14001304", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 460241147.6599476, + "kind": "calibration_drift", + "ledger_value": 453600000.0, + "name": "hmrc.self_employment_income.amount@E14001305", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 788917581.5350897, + "kind": "calibration_drift", + "ledger_value": 772800000.0, + "name": "hmrc.self_employment_income.amount@E14001306", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 56227976.94509749, + "kind": "calibration_drift", + "ledger_value": 51900000.0, + "name": "hmrc.self_employment_income.amount@E14001307", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 172376960.45241544, + "kind": "calibration_drift", + "ledger_value": 135500000.0, + "name": "hmrc.self_employment_income.amount@E14001308", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144837206.0648413, + "kind": "calibration_drift", + "ledger_value": 154800000.0, + "name": "hmrc.self_employment_income.amount@E14001309", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2638232048.0982184, + "kind": "calibration_drift", + "ledger_value": 2799000000.0, + "name": "hmrc.self_employment_income.amount@E14001310", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 155440256.9944654, + "kind": "calibration_drift", + "ledger_value": 147000000.0, + "name": "hmrc.self_employment_income.amount@E14001311", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 281481436.5975913, + "kind": "calibration_drift", + "ledger_value": 232800000.0, + "name": "hmrc.self_employment_income.amount@E14001312", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 59177063.89079423, + "kind": "calibration_drift", + "ledger_value": 55500000.0, + "name": "hmrc.self_employment_income.amount@E14001313", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78366888.44848391, + "kind": "calibration_drift", + "ledger_value": 76800000.0, + "name": "hmrc.self_employment_income.amount@E14001314", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80098334.34508313, + "kind": "calibration_drift", + "ledger_value": 88800000.0, + "name": "hmrc.self_employment_income.amount@E14001315", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93371743.03639197, + "kind": "calibration_drift", + "ledger_value": 88800000.0, + "name": "hmrc.self_employment_income.amount@E14001316", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69298740.15067199, + "kind": "calibration_drift", + "ledger_value": 73200000.0, + "name": "hmrc.self_employment_income.amount@E14001317", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129209073.21688917, + "kind": "calibration_drift", + "ledger_value": 102000000.0, + "name": "hmrc.self_employment_income.amount@E14001318", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 108763873.02827232, + "kind": "calibration_drift", + "ledger_value": 66000000.0, + "name": "hmrc.self_employment_income.amount@E14001319", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120470798.28502813, + "kind": "calibration_drift", + "ledger_value": 88400000.0, + "name": "hmrc.self_employment_income.amount@E14001320", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159568765.2485208, + "kind": "calibration_drift", + "ledger_value": 146000000.0, + "name": "hmrc.self_employment_income.amount@E14001321", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139982900.08256522, + "kind": "calibration_drift", + "ledger_value": 169500000.0, + "name": "hmrc.self_employment_income.amount@E14001322", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71947901.85867752, + "kind": "calibration_drift", + "ledger_value": 73600000.0, + "name": "hmrc.self_employment_income.amount@E14001323", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95674900.19163775, + "kind": "calibration_drift", + "ledger_value": 80800000.0, + "name": "hmrc.self_employment_income.amount@E14001324", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 110767708.69913617, + "kind": "calibration_drift", + "ledger_value": 75200000.0, + "name": "hmrc.self_employment_income.amount@E14001325", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53973734.58921204, + "kind": "calibration_drift", + "ledger_value": 49500000.0, + "name": "hmrc.self_employment_income.amount@E14001326", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74530887.89146294, + "kind": "calibration_drift", + "ledger_value": 70000000.0, + "name": "hmrc.self_employment_income.amount@E14001327", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65219329.978231534, + "kind": "calibration_drift", + "ledger_value": 51300000.0, + "name": "hmrc.self_employment_income.amount@E14001328", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 108222845.3753078, + "kind": "calibration_drift", + "ledger_value": 97500000.0, + "name": "hmrc.self_employment_income.amount@E14001329", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 215336423.42053282, + "kind": "calibration_drift", + "ledger_value": 189600000.0, + "name": "hmrc.self_employment_income.amount@E14001330", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 249448970.55345103, + "kind": "calibration_drift", + "ledger_value": 175700000.0, + "name": "hmrc.self_employment_income.amount@E14001331", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 210934964.76413992, + "kind": "calibration_drift", + "ledger_value": 280800000.0, + "name": "hmrc.self_employment_income.amount@E14001332", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 253377927.55748215, + "kind": "calibration_drift", + "ledger_value": 280800000.0, + "name": "hmrc.self_employment_income.amount@E14001333", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 296467024.98614806, + "kind": "calibration_drift", + "ledger_value": 331100000.0, + "name": "hmrc.self_employment_income.amount@E14001334", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140390627.62988922, + "kind": "calibration_drift", + "ledger_value": 131400000.0, + "name": "hmrc.self_employment_income.amount@E14001335", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86668787.54635376, + "kind": "calibration_drift", + "ledger_value": 78400000.0, + "name": "hmrc.self_employment_income.amount@E14001336", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77025283.90742142, + "kind": "calibration_drift", + "ledger_value": 82200000.0, + "name": "hmrc.self_employment_income.amount@E14001337", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74866035.66596484, + "kind": "calibration_drift", + "ledger_value": 79200000.0, + "name": "hmrc.self_employment_income.amount@E14001338", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 70746066.20871207, + "kind": "calibration_drift", + "ledger_value": 61500000.0, + "name": "hmrc.self_employment_income.amount@E14001339", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73207374.3870605, + "kind": "calibration_drift", + "ledger_value": 78400000.0, + "name": "hmrc.self_employment_income.amount@E14001340", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68740516.30970223, + "kind": "calibration_drift", + "ledger_value": 77200000.0, + "name": "hmrc.self_employment_income.amount@E14001341", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95446670.6594229, + "kind": "calibration_drift", + "ledger_value": 88400000.0, + "name": "hmrc.self_employment_income.amount@E14001342", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84473249.41848616, + "kind": "calibration_drift", + "ledger_value": 107000000.0, + "name": "hmrc.self_employment_income.amount@E14001343", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85084840.73947212, + "kind": "calibration_drift", + "ledger_value": 80400000.0, + "name": "hmrc.self_employment_income.amount@E14001344", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149625336.37189725, + "kind": "calibration_drift", + "ledger_value": 135800000.0, + "name": "hmrc.self_employment_income.amount@E14001345", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129080991.26485021, + "kind": "calibration_drift", + "ledger_value": 168800000.0, + "name": "hmrc.self_employment_income.amount@E14001346", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126480927.63845962, + "kind": "calibration_drift", + "ledger_value": 143500000.0, + "name": "hmrc.self_employment_income.amount@E14001347", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 238328298.1929059, + "kind": "calibration_drift", + "ledger_value": 202200000.0, + "name": "hmrc.self_employment_income.amount@E14001348", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 223485928.7143564, + "kind": "calibration_drift", + "ledger_value": 153300000.0, + "name": "hmrc.self_employment_income.amount@E14001349", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91482534.2438175, + "kind": "calibration_drift", + "ledger_value": 105000000.0, + "name": "hmrc.self_employment_income.amount@E14001350", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 189054297.95748657, + "kind": "calibration_drift", + "ledger_value": 181600000.0, + "name": "hmrc.self_employment_income.amount@E14001351", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97371252.9271354, + "kind": "calibration_drift", + "ledger_value": 131500000.0, + "name": "hmrc.self_employment_income.amount@E14001352", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72279847.58437845, + "kind": "calibration_drift", + "ledger_value": 71200000.0, + "name": "hmrc.self_employment_income.amount@E14001353", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91134578.2741117, + "kind": "calibration_drift", + "ledger_value": 124000000.0, + "name": "hmrc.self_employment_income.amount@E14001354", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115593961.71514916, + "kind": "calibration_drift", + "ledger_value": 95000000.0, + "name": "hmrc.self_employment_income.amount@E14001355", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 142019170.62799233, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E14001356", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 160954185.02974206, + "kind": "calibration_drift", + "ledger_value": 147000000.0, + "name": "hmrc.self_employment_income.amount@E14001357", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139749150.52009416, + "kind": "calibration_drift", + "ledger_value": 142000000.0, + "name": "hmrc.self_employment_income.amount@E14001358", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 165821299.207222, + "kind": "calibration_drift", + "ledger_value": 162600000.0, + "name": "hmrc.self_employment_income.amount@E14001359", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 229126860.7842538, + "kind": "calibration_drift", + "ledger_value": 272800000.0, + "name": "hmrc.self_employment_income.amount@E14001360", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139899646.8137399, + "kind": "calibration_drift", + "ledger_value": 84400000.0, + "name": "hmrc.self_employment_income.amount@E14001361", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84448700.37767869, + "kind": "calibration_drift", + "ledger_value": 80800000.0, + "name": "hmrc.self_employment_income.amount@E14001362", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116758989.97586706, + "kind": "calibration_drift", + "ledger_value": 120600000.0, + "name": "hmrc.self_employment_income.amount@E14001363", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 130221987.98759718, + "kind": "calibration_drift", + "ledger_value": 114500000.0, + "name": "hmrc.self_employment_income.amount@E14001364", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158593207.71382412, + "kind": "calibration_drift", + "ledger_value": 143400000.0, + "name": "hmrc.self_employment_income.amount@E14001365", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 197685954.17531124, + "kind": "calibration_drift", + "ledger_value": 211200000.0, + "name": "hmrc.self_employment_income.amount@E14001366", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71338445.2368922, + "kind": "calibration_drift", + "ledger_value": 60600000.0, + "name": "hmrc.self_employment_income.amount@E14001367", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64671779.63326503, + "kind": "calibration_drift", + "ledger_value": 61800000.0, + "name": "hmrc.self_employment_income.amount@E14001368", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 135442394.88278458, + "kind": "calibration_drift", + "ledger_value": 121200000.0, + "name": "hmrc.self_employment_income.amount@E14001369", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106483065.52677879, + "kind": "calibration_drift", + "ledger_value": 121500000.0, + "name": "hmrc.self_employment_income.amount@E14001370", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 308890974.33392584, + "kind": "calibration_drift", + "ledger_value": 234300000.0, + "name": "hmrc.self_employment_income.amount@E14001371", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 126143645.16475704, + "kind": "calibration_drift", + "ledger_value": 135100000.0, + "name": "hmrc.self_employment_income.amount@E14001372", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148895269.24527526, + "kind": "calibration_drift", + "ledger_value": 116000000.0, + "name": "hmrc.self_employment_income.amount@E14001373", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 169068176.69140932, + "kind": "calibration_drift", + "ledger_value": 145000000.0, + "name": "hmrc.self_employment_income.amount@E14001374", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156406208.3827591, + "kind": "calibration_drift", + "ledger_value": 153600000.0, + "name": "hmrc.self_employment_income.amount@E14001375", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 228745827.54475576, + "kind": "calibration_drift", + "ledger_value": 180600000.0, + "name": "hmrc.self_employment_income.amount@E14001376", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 130849853.74803363, + "kind": "calibration_drift", + "ledger_value": 83200000.0, + "name": "hmrc.self_employment_income.amount@E14001377", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97662488.42969666, + "kind": "calibration_drift", + "ledger_value": 71400000.0, + "name": "hmrc.self_employment_income.amount@E14001378", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 105981707.11352533, + "kind": "calibration_drift", + "ledger_value": 183500000.0, + "name": "hmrc.self_employment_income.amount@E14001379", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83173217.60529085, + "kind": "calibration_drift", + "ledger_value": 78800000.0, + "name": "hmrc.self_employment_income.amount@E14001380", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 138328508.20206216, + "kind": "calibration_drift", + "ledger_value": 132000000.0, + "name": "hmrc.self_employment_income.amount@E14001381", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73753857.38242666, + "kind": "calibration_drift", + "ledger_value": 56400000.0, + "name": "hmrc.self_employment_income.amount@E14001382", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89571978.45923655, + "kind": "calibration_drift", + "ledger_value": 90000000.0, + "name": "hmrc.self_employment_income.amount@E14001383", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 196048639.88841337, + "kind": "calibration_drift", + "ledger_value": 190400000.0, + "name": "hmrc.self_employment_income.amount@E14001384", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 195692145.12190497, + "kind": "calibration_drift", + "ledger_value": 188100000.0, + "name": "hmrc.self_employment_income.amount@E14001385", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 215855446.42163613, + "kind": "calibration_drift", + "ledger_value": 277600000.0, + "name": "hmrc.self_employment_income.amount@E14001386", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 194044157.33900386, + "kind": "calibration_drift", + "ledger_value": 200000000.0, + "name": "hmrc.self_employment_income.amount@E14001387", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 180031991.78594315, + "kind": "calibration_drift", + "ledger_value": 189000000.0, + "name": "hmrc.self_employment_income.amount@E14001388", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 70458011.19233358, + "kind": "calibration_drift", + "ledger_value": 59100000.0, + "name": "hmrc.self_employment_income.amount@E14001389", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136087074.04138058, + "kind": "calibration_drift", + "ledger_value": 107500000.0, + "name": "hmrc.self_employment_income.amount@E14001390", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85814907.86609411, + "kind": "calibration_drift", + "ledger_value": 80400000.0, + "name": "hmrc.self_employment_income.amount@E14001391", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 199468428.00785327, + "kind": "calibration_drift", + "ledger_value": 205800000.0, + "name": "hmrc.self_employment_income.amount@E14001392", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 239833455.1929272, + "kind": "calibration_drift", + "ledger_value": 246400000.0, + "name": "hmrc.self_employment_income.amount@E14001393", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157525794.70659265, + "kind": "calibration_drift", + "ledger_value": 150500000.0, + "name": "hmrc.self_employment_income.amount@E14001394", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 195042129.21530733, + "kind": "calibration_drift", + "ledger_value": 190400000.0, + "name": "hmrc.self_employment_income.amount@E14001395", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 147410682.98300564, + "kind": "calibration_drift", + "ledger_value": 101500000.0, + "name": "hmrc.self_employment_income.amount@E14001396", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 150931772.2826945, + "kind": "calibration_drift", + "ledger_value": 120000000.0, + "name": "hmrc.self_employment_income.amount@E14001397", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149159971.94615573, + "kind": "calibration_drift", + "ledger_value": 134400000.0, + "name": "hmrc.self_employment_income.amount@E14001398", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164536210.28843126, + "kind": "calibration_drift", + "ledger_value": 157800000.0, + "name": "hmrc.self_employment_income.amount@E14001399", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60838927.21849956, + "kind": "calibration_drift", + "ledger_value": 77600000.0, + "name": "hmrc.self_employment_income.amount@E14001400", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157194979.73739898, + "kind": "calibration_drift", + "ledger_value": 146400000.0, + "name": "hmrc.self_employment_income.amount@E14001401", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 292882843.8926226, + "kind": "calibration_drift", + "ledger_value": 278400000.0, + "name": "hmrc.self_employment_income.amount@E14001402", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 172601103.86848357, + "kind": "calibration_drift", + "ledger_value": 171000000.0, + "name": "hmrc.self_employment_income.amount@E14001403", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96125505.00522931, + "kind": "calibration_drift", + "ledger_value": 94800000.0, + "name": "hmrc.self_employment_income.amount@E14001404", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 177713708.4540382, + "kind": "calibration_drift", + "ledger_value": 194400000.0, + "name": "hmrc.self_employment_income.amount@E14001405", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 201921197.38939905, + "kind": "calibration_drift", + "ledger_value": 176400000.0, + "name": "hmrc.self_employment_income.amount@E14001406", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 221196263.0331215, + "kind": "calibration_drift", + "ledger_value": 185600000.0, + "name": "hmrc.self_employment_income.amount@E14001407", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116037396.95819311, + "kind": "calibration_drift", + "ledger_value": 138000000.0, + "name": "hmrc.self_employment_income.amount@E14001408", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 125992081.52151097, + "kind": "calibration_drift", + "ledger_value": 124000000.0, + "name": "hmrc.self_employment_income.amount@E14001409", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68333015.16986923, + "kind": "calibration_drift", + "ledger_value": 78800000.0, + "name": "hmrc.self_employment_income.amount@E14001410", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 67792505.01974124, + "kind": "calibration_drift", + "ledger_value": 74400000.0, + "name": "hmrc.self_employment_income.amount@E14001411", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 94916176.3454434, + "kind": "calibration_drift", + "ledger_value": 71100000.0, + "name": "hmrc.self_employment_income.amount@E14001412", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93072885.14830108, + "kind": "calibration_drift", + "ledger_value": 60600000.0, + "name": "hmrc.self_employment_income.amount@E14001413", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 145671873.4522951, + "kind": "calibration_drift", + "ledger_value": 131400000.0, + "name": "hmrc.self_employment_income.amount@E14001414", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98196163.22985895, + "kind": "calibration_drift", + "ledger_value": 98500000.0, + "name": "hmrc.self_employment_income.amount@E14001415", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 224867661.28786743, + "kind": "calibration_drift", + "ledger_value": 207900000.0, + "name": "hmrc.self_employment_income.amount@E14001417", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95779683.73472415, + "kind": "calibration_drift", + "ledger_value": 100400000.0, + "name": "hmrc.self_employment_income.amount@E14001418", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134321677.8024438, + "kind": "calibration_drift", + "ledger_value": 131400000.0, + "name": "hmrc.self_employment_income.amount@E14001419", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 225323904.72611526, + "kind": "calibration_drift", + "ledger_value": 239400000.0, + "name": "hmrc.self_employment_income.amount@E14001420", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 241980962.58878022, + "kind": "calibration_drift", + "ledger_value": 174000000.0, + "name": "hmrc.self_employment_income.amount@E14001421", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96557781.59336077, + "kind": "calibration_drift", + "ledger_value": 96500000.0, + "name": "hmrc.self_employment_income.amount@E14001422", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82826328.98518537, + "kind": "calibration_drift", + "ledger_value": 80800000.0, + "name": "hmrc.self_employment_income.amount@E14001423", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120614774.23507586, + "kind": "calibration_drift", + "ledger_value": 121100000.0, + "name": "hmrc.self_employment_income.amount@E14001424", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 135677211.79485595, + "kind": "calibration_drift", + "ledger_value": 101500000.0, + "name": "hmrc.self_employment_income.amount@E14001425", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72312935.42198852, + "kind": "calibration_drift", + "ledger_value": 87600000.0, + "name": "hmrc.self_employment_income.amount@E14001426", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 102412194.15114093, + "kind": "calibration_drift", + "ledger_value": 102500000.0, + "name": "hmrc.self_employment_income.amount@E14001427", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73668469.4144007, + "kind": "calibration_drift", + "ledger_value": 72000000.0, + "name": "hmrc.self_employment_income.amount@E14001428", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171934010.36828074, + "kind": "calibration_drift", + "ledger_value": 152400000.0, + "name": "hmrc.self_employment_income.amount@E14001429", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 225107232.75724936, + "kind": "calibration_drift", + "ledger_value": 232800000.0, + "name": "hmrc.self_employment_income.amount@E14001430", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 130003181.31953065, + "kind": "calibration_drift", + "ledger_value": 124200000.0, + "name": "hmrc.self_employment_income.amount@E14001431", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100757802.27063787, + "kind": "calibration_drift", + "ledger_value": 106500000.0, + "name": "hmrc.self_employment_income.amount@E14001432", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81884926.63769911, + "kind": "calibration_drift", + "ledger_value": 73200000.0, + "name": "hmrc.self_employment_income.amount@E14001433", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 636208672.1678548, + "kind": "calibration_drift", + "ledger_value": 602100000.0, + "name": "hmrc.self_employment_income.amount@E14001434", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1215124152.4894881, + "kind": "calibration_drift", + "ledger_value": 402500000.0, + "name": "hmrc.self_employment_income.amount@E14001435", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90394196.95729251, + "kind": "calibration_drift", + "ledger_value": 82400000.0, + "name": "hmrc.self_employment_income.amount@E14001436", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 171424884.60892594, + "kind": "calibration_drift", + "ledger_value": 159600000.0, + "name": "hmrc.self_employment_income.amount@E14001437", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 147166162.89274946, + "kind": "calibration_drift", + "ledger_value": 120500000.0, + "name": "hmrc.self_employment_income.amount@E14001438", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137333738.37455967, + "kind": "calibration_drift", + "ledger_value": 188400000.0, + "name": "hmrc.self_employment_income.amount@E14001439", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 57867425.931196004, + "kind": "calibration_drift", + "ledger_value": 57600000.0, + "name": "hmrc.self_employment_income.amount@E14001440", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 128455524.39906004, + "kind": "calibration_drift", + "ledger_value": 132600000.0, + "name": "hmrc.self_employment_income.amount@E14001441", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 258586787.67062962, + "kind": "calibration_drift", + "ledger_value": 270400000.0, + "name": "hmrc.self_employment_income.amount@E14001442", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 145912027.1123681, + "kind": "calibration_drift", + "ledger_value": 133800000.0, + "name": "hmrc.self_employment_income.amount@E14001443", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182554403.0869557, + "kind": "calibration_drift", + "ledger_value": 169400000.0, + "name": "hmrc.self_employment_income.amount@E14001444", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 958394553.1234232, + "kind": "calibration_drift", + "ledger_value": 984000000.0, + "name": "hmrc.self_employment_income.amount@E14001445", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60326599.41034378, + "kind": "calibration_drift", + "ledger_value": 67200000.0, + "name": "hmrc.self_employment_income.amount@E14001446", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149249629.312583, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@E14001447", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 215454759.06915066, + "kind": "calibration_drift", + "ledger_value": 200000000.0, + "name": "hmrc.self_employment_income.amount@E14001448", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 217331590.918885, + "kind": "calibration_drift", + "ledger_value": 213600000.0, + "name": "hmrc.self_employment_income.amount@E14001449", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 125904558.85428436, + "kind": "calibration_drift", + "ledger_value": 123000000.0, + "name": "hmrc.self_employment_income.amount@E14001450", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84561828.86749525, + "kind": "calibration_drift", + "ledger_value": 80000000.0, + "name": "hmrc.self_employment_income.amount@E14001451", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73275336.02349304, + "kind": "calibration_drift", + "ledger_value": 78000000.0, + "name": "hmrc.self_employment_income.amount@E14001452", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100920039.4098872, + "kind": "calibration_drift", + "ledger_value": 86000000.0, + "name": "hmrc.self_employment_income.amount@E14001453", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 283316749.7327496, + "kind": "calibration_drift", + "ledger_value": 276600000.0, + "name": "hmrc.self_employment_income.amount@E14001454", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92593203.1440825, + "kind": "calibration_drift", + "ledger_value": 68400000.0, + "name": "hmrc.self_employment_income.amount@E14001455", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 343212668.0819622, + "kind": "calibration_drift", + "ledger_value": 466200000.0, + "name": "hmrc.self_employment_income.amount@E14001456", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159558091.75251755, + "kind": "calibration_drift", + "ledger_value": 159000000.0, + "name": "hmrc.self_employment_income.amount@E14001457", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 172872210.66696602, + "kind": "calibration_drift", + "ledger_value": 153000000.0, + "name": "hmrc.self_employment_income.amount@E14001458", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122931289.43228936, + "kind": "calibration_drift", + "ledger_value": 100500000.0, + "name": "hmrc.self_employment_income.amount@E14001459", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156311214.26833025, + "kind": "calibration_drift", + "ledger_value": 179900000.0, + "name": "hmrc.self_employment_income.amount@E14001460", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109937008.83342904, + "kind": "calibration_drift", + "ledger_value": 109800000.0, + "name": "hmrc.self_employment_income.amount@E14001461", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 47340156.823194936, + "kind": "calibration_drift", + "ledger_value": 40000000.0, + "name": "hmrc.self_employment_income.amount@E14001462", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119722469.96920455, + "kind": "calibration_drift", + "ledger_value": 107200000.0, + "name": "hmrc.self_employment_income.amount@E14001463", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 183411241.7562063, + "kind": "calibration_drift", + "ledger_value": 124500000.0, + "name": "hmrc.self_employment_income.amount@E14001464", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 378795969.05758214, + "kind": "calibration_drift", + "ledger_value": 388200000.0, + "name": "hmrc.self_employment_income.amount@E14001465", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53687684.89632505, + "kind": "calibration_drift", + "ledger_value": 71600000.0, + "name": "hmrc.self_employment_income.amount@E14001466", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 89230426.58713269, + "kind": "calibration_drift", + "ledger_value": 92400000.0, + "name": "hmrc.self_employment_income.amount@E14001467", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 178270262.5797916, + "kind": "calibration_drift", + "ledger_value": 165000000.0, + "name": "hmrc.self_employment_income.amount@E14001468", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95909657.32615377, + "kind": "calibration_drift", + "ledger_value": 80400000.0, + "name": "hmrc.self_employment_income.amount@E14001469", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81567701.88222839, + "kind": "calibration_drift", + "ledger_value": 86400000.0, + "name": "hmrc.self_employment_income.amount@E14001470", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120208114.03735222, + "kind": "calibration_drift", + "ledger_value": 120500000.0, + "name": "hmrc.self_employment_income.amount@E14001471", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129149301.639271, + "kind": "calibration_drift", + "ledger_value": 103200000.0, + "name": "hmrc.self_employment_income.amount@E14001472", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148218569.5986695, + "kind": "calibration_drift", + "ledger_value": 126600000.0, + "name": "hmrc.self_employment_income.amount@E14001473", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 160845315.37050897, + "kind": "calibration_drift", + "ledger_value": 136200000.0, + "name": "hmrc.self_employment_income.amount@E14001474", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 226683708.1169287, + "kind": "calibration_drift", + "ledger_value": 176400000.0, + "name": "hmrc.self_employment_income.amount@E14001475", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116298412.45136338, + "kind": "calibration_drift", + "ledger_value": 119000000.0, + "name": "hmrc.self_employment_income.amount@E14001476", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148318900.46109998, + "kind": "calibration_drift", + "ledger_value": 153600000.0, + "name": "hmrc.self_employment_income.amount@E14001477", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83697286.2590502, + "kind": "calibration_drift", + "ledger_value": 79000000.0, + "name": "hmrc.self_employment_income.amount@E14001478", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124147701.41215014, + "kind": "calibration_drift", + "ledger_value": 111200000.0, + "name": "hmrc.self_employment_income.amount@E14001479", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 181389660.47755596, + "kind": "calibration_drift", + "ledger_value": 130800000.0, + "name": "hmrc.self_employment_income.amount@E14001480", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 226820483.5401948, + "kind": "calibration_drift", + "ledger_value": 211400000.0, + "name": "hmrc.self_employment_income.amount@E14001481", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 246540320.77556068, + "kind": "calibration_drift", + "ledger_value": 193200000.0, + "name": "hmrc.self_employment_income.amount@E14001482", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114121019.26670128, + "kind": "calibration_drift", + "ledger_value": 129000000.0, + "name": "hmrc.self_employment_income.amount@E14001483", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 180424776.43886256, + "kind": "calibration_drift", + "ledger_value": 152800000.0, + "name": "hmrc.self_employment_income.amount@E14001484", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131073183.12189238, + "kind": "calibration_drift", + "ledger_value": 113400000.0, + "name": "hmrc.self_employment_income.amount@E14001485", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115914166.59524654, + "kind": "calibration_drift", + "ledger_value": 116200000.0, + "name": "hmrc.self_employment_income.amount@E14001486", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 142811376.52342528, + "kind": "calibration_drift", + "ledger_value": 141000000.0, + "name": "hmrc.self_employment_income.amount@E14001487", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118838704.50013581, + "kind": "calibration_drift", + "ledger_value": 132000000.0, + "name": "hmrc.self_employment_income.amount@E14001488", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164218140.10753456, + "kind": "calibration_drift", + "ledger_value": 156000000.0, + "name": "hmrc.self_employment_income.amount@E14001489", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 260013601.27403453, + "kind": "calibration_drift", + "ledger_value": 247200000.0, + "name": "hmrc.self_employment_income.amount@E14001490", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93704756.11169322, + "kind": "calibration_drift", + "ledger_value": 104000000.0, + "name": "hmrc.self_employment_income.amount@E14001491", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55246015.3127989, + "kind": "calibration_drift", + "ledger_value": 43800000.0, + "name": "hmrc.self_employment_income.amount@E14001492", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159605055.1349318, + "kind": "calibration_drift", + "ledger_value": 167200000.0, + "name": "hmrc.self_employment_income.amount@E14001493", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 200422638.5505434, + "kind": "calibration_drift", + "ledger_value": 196200000.0, + "name": "hmrc.self_employment_income.amount@E14001494", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124546890.16267152, + "kind": "calibration_drift", + "ledger_value": 147600000.0, + "name": "hmrc.self_employment_income.amount@E14001495", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 297314500.5688057, + "kind": "calibration_drift", + "ledger_value": 293600000.0, + "name": "hmrc.self_employment_income.amount@E14001496", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 124305669.15299818, + "kind": "calibration_drift", + "ledger_value": 128400000.0, + "name": "hmrc.self_employment_income.amount@E14001497", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139000938.45026663, + "kind": "calibration_drift", + "ledger_value": 111600000.0, + "name": "hmrc.self_employment_income.amount@E14001498", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119116215.39622019, + "kind": "calibration_drift", + "ledger_value": 101000000.0, + "name": "hmrc.self_employment_income.amount@E14001499", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120076830.0365123, + "kind": "calibration_drift", + "ledger_value": 100500000.0, + "name": "hmrc.self_employment_income.amount@E14001500", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 143364263.6163934, + "kind": "calibration_drift", + "ledger_value": 120000000.0, + "name": "hmrc.self_employment_income.amount@E14001501", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 152389771.83673784, + "kind": "calibration_drift", + "ledger_value": 138600000.0, + "name": "hmrc.self_employment_income.amount@E14001502", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 570609516.6702352, + "kind": "calibration_drift", + "ledger_value": 341900000.0, + "name": "hmrc.self_employment_income.amount@E14001503", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 93141195.52272186, + "kind": "calibration_drift", + "ledger_value": 94000000.0, + "name": "hmrc.self_employment_income.amount@E14001504", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121144179.63683684, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E14001505", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 75329265.3925057, + "kind": "calibration_drift", + "ledger_value": 74800000.0, + "name": "hmrc.self_employment_income.amount@E14001506", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 315593929.82396406, + "kind": "calibration_drift", + "ledger_value": 318400000.0, + "name": "hmrc.self_employment_income.amount@E14001507", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159470569.0852909, + "kind": "calibration_drift", + "ledger_value": 160800000.0, + "name": "hmrc.self_employment_income.amount@E14001508", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 70765278.5015179, + "kind": "calibration_drift", + "ledger_value": 67600000.0, + "name": "hmrc.self_employment_income.amount@E14001509", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66282410.180154786, + "kind": "calibration_drift", + "ledger_value": 62400000.0, + "name": "hmrc.self_employment_income.amount@E14001510", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 194111400.3638243, + "kind": "calibration_drift", + "ledger_value": 147000000.0, + "name": "hmrc.self_employment_income.amount@E14001511", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 204533780.99778017, + "kind": "calibration_drift", + "ledger_value": 152400000.0, + "name": "hmrc.self_employment_income.amount@E14001512", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 101623422.79650109, + "kind": "calibration_drift", + "ledger_value": 96500000.0, + "name": "hmrc.self_employment_income.amount@E14001513", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 133322638.57654001, + "kind": "calibration_drift", + "ledger_value": 116400000.0, + "name": "hmrc.self_employment_income.amount@E14001514", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 98196163.22985895, + "kind": "calibration_drift", + "ledger_value": 88800000.0, + "name": "hmrc.self_employment_income.amount@E14001515", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153698342.44673574, + "kind": "calibration_drift", + "ledger_value": 154800000.0, + "name": "hmrc.self_employment_income.amount@E14001516", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131732287.67205642, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E14001517", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74101813.35213247, + "kind": "calibration_drift", + "ledger_value": 62700000.0, + "name": "hmrc.self_employment_income.amount@E14001518", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77009273.66341655, + "kind": "calibration_drift", + "ledger_value": 114000000.0, + "name": "hmrc.self_employment_income.amount@E14001519", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 78809892.43916407, + "kind": "calibration_drift", + "ledger_value": 82500000.0, + "name": "hmrc.self_employment_income.amount@E14001520", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84396400.24726279, + "kind": "calibration_drift", + "ledger_value": 69200000.0, + "name": "hmrc.self_employment_income.amount@E14001521", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92327875.12727454, + "kind": "calibration_drift", + "ledger_value": 94800000.0, + "name": "hmrc.self_employment_income.amount@E14001522", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111414220.68027823, + "kind": "calibration_drift", + "ledger_value": 102000000.0, + "name": "hmrc.self_employment_income.amount@E14001523", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73403766.71352021, + "kind": "calibration_drift", + "ledger_value": 82000000.0, + "name": "hmrc.self_employment_income.amount@E14001524", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 244503109.69434717, + "kind": "calibration_drift", + "ledger_value": 241000000.0, + "name": "hmrc.self_employment_income.amount@E14001525", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182004453.84734288, + "kind": "calibration_drift", + "ledger_value": 191800000.0, + "name": "hmrc.self_employment_income.amount@E14001526", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 255254522.2184164, + "kind": "calibration_drift", + "ledger_value": 238000000.0, + "name": "hmrc.self_employment_income.amount@E14001527", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85387968.0259643, + "kind": "calibration_drift", + "ledger_value": 89500000.0, + "name": "hmrc.self_employment_income.amount@E14001528", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 176662369.09771848, + "kind": "calibration_drift", + "ledger_value": 141400000.0, + "name": "hmrc.self_employment_income.amount@E14001529", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 165599818.88124576, + "kind": "calibration_drift", + "ledger_value": 167300000.0, + "name": "hmrc.self_employment_income.amount@E14001530", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55075239.376746975, + "kind": "calibration_drift", + "ledger_value": 53400000.0, + "name": "hmrc.self_employment_income.amount@E14001531", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191784578.23511678, + "kind": "calibration_drift", + "ledger_value": 214200000.0, + "name": "hmrc.self_employment_income.amount@E14001532", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 280741666.2927845, + "kind": "calibration_drift", + "ledger_value": 307200000.0, + "name": "hmrc.self_employment_income.amount@E14001533", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 176753093.8137461, + "kind": "calibration_drift", + "ledger_value": 150600000.0, + "name": "hmrc.self_employment_income.amount@E14001534", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 190521903.65793285, + "kind": "calibration_drift", + "ledger_value": 171500000.0, + "name": "hmrc.self_employment_income.amount@E14001535", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120601966.03987198, + "kind": "calibration_drift", + "ledger_value": 123000000.0, + "name": "hmrc.self_employment_income.amount@E14001536", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122958673.9573886, + "kind": "calibration_drift", + "ledger_value": 101500000.0, + "name": "hmrc.self_employment_income.amount@E14001537", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97414863.32242137, + "kind": "calibration_drift", + "ledger_value": 101000000.0, + "name": "hmrc.self_employment_income.amount@E14001538", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 250035182.67282927, + "kind": "calibration_drift", + "ledger_value": 246400000.0, + "name": "hmrc.self_employment_income.amount@E14001539", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153288480.2002111, + "kind": "calibration_drift", + "ledger_value": 143500000.0, + "name": "hmrc.self_employment_income.amount@E14001540", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85016530.36505136, + "kind": "calibration_drift", + "ledger_value": 77200000.0, + "name": "hmrc.self_employment_income.amount@E14001541", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 130983008.2526286, + "kind": "calibration_drift", + "ledger_value": 115500000.0, + "name": "hmrc.self_employment_income.amount@E14001542", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 83786943.62547748, + "kind": "calibration_drift", + "ledger_value": 86000000.0, + "name": "hmrc.self_employment_income.amount@E14001543", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 208437947.92936084, + "kind": "calibration_drift", + "ledger_value": 201600000.0, + "name": "hmrc.self_employment_income.amount@E14001544", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 176344245.01027632, + "kind": "calibration_drift", + "ledger_value": 141600000.0, + "name": "hmrc.self_employment_income.amount@E14001545", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 203266057.88580802, + "kind": "calibration_drift", + "ledger_value": 196000000.0, + "name": "hmrc.self_employment_income.amount@E14001546", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66931358.73715211, + "kind": "calibration_drift", + "ledger_value": 76800000.0, + "name": "hmrc.self_employment_income.amount@E14001547", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 143099560.91551292, + "kind": "calibration_drift", + "ledger_value": 126000000.0, + "name": "hmrc.self_employment_income.amount@E14001548", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 321343742.12091243, + "kind": "calibration_drift", + "ledger_value": 321600000.0, + "name": "hmrc.self_employment_income.amount@E14001549", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 769559061.8340032, + "kind": "calibration_drift", + "ledger_value": 728000000.0, + "name": "hmrc.self_employment_income.amount@E14001550", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 108720230.28905904, + "kind": "calibration_drift", + "ledger_value": 127200000.0, + "name": "hmrc.self_employment_income.amount@E14001551", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157233404.32301068, + "kind": "calibration_drift", + "ledger_value": 144000000.0, + "name": "hmrc.self_employment_income.amount@E14001552", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 281257411.66917753, + "kind": "calibration_drift", + "ledger_value": 226600000.0, + "name": "hmrc.self_employment_income.amount@E14001553", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 191089733.6453055, + "kind": "calibration_drift", + "ledger_value": 149400000.0, + "name": "hmrc.self_employment_income.amount@E14001554", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 366100912.91132194, + "kind": "calibration_drift", + "ledger_value": 350400000.0, + "name": "hmrc.self_employment_income.amount@E14001555", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 412603200.2982621, + "kind": "calibration_drift", + "ledger_value": 356300000.0, + "name": "hmrc.self_employment_income.amount@E14001556", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 99455635.75824192, + "kind": "calibration_drift", + "ledger_value": 104400000.0, + "name": "hmrc.self_employment_income.amount@E14001557", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 178849875.68403912, + "kind": "calibration_drift", + "ledger_value": 164500000.0, + "name": "hmrc.self_employment_income.amount@E14001558", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 283231889.9421236, + "kind": "calibration_drift", + "ledger_value": 294000000.0, + "name": "hmrc.self_employment_income.amount@E14001559", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 115766988.59639783, + "kind": "calibration_drift", + "ledger_value": 108000000.0, + "name": "hmrc.self_employment_income.amount@E14001560", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69164254.10103108, + "kind": "calibration_drift", + "ledger_value": 72800000.0, + "name": "hmrc.self_employment_income.amount@E14001561", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92191254.378433, + "kind": "calibration_drift", + "ledger_value": 70000000.0, + "name": "hmrc.self_employment_income.amount@E14001562", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 290746031.12840843, + "kind": "calibration_drift", + "ledger_value": 319800000.0, + "name": "hmrc.self_employment_income.amount@E14001563", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84107148.50557484, + "kind": "calibration_drift", + "ledger_value": 71200000.0, + "name": "hmrc.self_employment_income.amount@E14001564", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 132991760.2004394, + "kind": "calibration_drift", + "ledger_value": 125500000.0, + "name": "hmrc.self_employment_income.amount@E14001565", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 142523192.13133764, + "kind": "calibration_drift", + "ledger_value": 125000000.0, + "name": "hmrc.self_employment_income.amount@E14001566", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52140027.97585445, + "kind": "calibration_drift", + "ledger_value": 35400000.0, + "name": "hmrc.self_employment_income.amount@E14001567", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 187951725.8203513, + "kind": "calibration_drift", + "ledger_value": 168000000.0, + "name": "hmrc.self_employment_income.amount@E14001568", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 142332781.18976688, + "kind": "calibration_drift", + "ledger_value": 158900000.0, + "name": "hmrc.self_employment_income.amount@E14001569", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 186918531.40723717, + "kind": "calibration_drift", + "ledger_value": 272000000.0, + "name": "hmrc.self_employment_income.amount@E14001570", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 102487684.87741844, + "kind": "calibration_drift", + "ledger_value": 107500000.0, + "name": "hmrc.self_employment_income.amount@E14001571", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137632596.26265058, + "kind": "calibration_drift", + "ledger_value": 158900000.0, + "name": "hmrc.self_employment_income.amount@E14001572", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 194044157.33900386, + "kind": "calibration_drift", + "ledger_value": 189000000.0, + "name": "hmrc.self_employment_income.amount@E14001573", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77549352.56118077, + "kind": "calibration_drift", + "ledger_value": 72400000.0, + "name": "hmrc.self_employment_income.amount@E14001574", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 164805182.38771304, + "kind": "calibration_drift", + "ledger_value": 141400000.0, + "name": "hmrc.self_employment_income.amount@E14001575", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 261398186.51788455, + "kind": "calibration_drift", + "ledger_value": 291200000.0, + "name": "hmrc.self_employment_income.amount@E14001576", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 104173320.99167645, + "kind": "calibration_drift", + "ledger_value": 88400000.0, + "name": "hmrc.self_employment_income.amount@E14001577", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 197169356.96875417, + "kind": "calibration_drift", + "ledger_value": 172900000.0, + "name": "hmrc.self_employment_income.amount@E14001578", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 213683389.98497567, + "kind": "calibration_drift", + "ledger_value": 174600000.0, + "name": "hmrc.self_employment_income.amount@E14001579", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 201600992.50930172, + "kind": "calibration_drift", + "ledger_value": 183600000.0, + "name": "hmrc.self_employment_income.amount@E14001580", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 99343564.05020784, + "kind": "calibration_drift", + "ledger_value": 98000000.0, + "name": "hmrc.self_employment_income.amount@E14001581", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 167361388.2891823, + "kind": "calibration_drift", + "ledger_value": 213000000.0, + "name": "hmrc.self_employment_income.amount@E14001582", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 64134902.78430179, + "kind": "calibration_drift", + "ledger_value": 37000000.0, + "name": "hmrc.self_employment_income.amount@E14001583", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 62170979.51970461, + "kind": "calibration_drift", + "ledger_value": 57900000.0, + "name": "hmrc.self_employment_income.amount@E14001584", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86241847.70622393, + "kind": "calibration_drift", + "ledger_value": 88000000.0, + "name": "hmrc.self_employment_income.amount@E14001585", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 788088250.8956375, + "kind": "calibration_drift", + "ledger_value": 759200000.0, + "name": "hmrc.self_employment_income.amount@E14001586", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 253608669.1347159, + "kind": "calibration_drift", + "ledger_value": 284900000.0, + "name": "hmrc.self_employment_income.amount@E14001587", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 225304692.4333094, + "kind": "calibration_drift", + "ledger_value": 198600000.0, + "name": "hmrc.self_employment_income.amount@E14001588", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 97542945.27446032, + "kind": "calibration_drift", + "ledger_value": 141600000.0, + "name": "hmrc.self_employment_income.amount@E14001589", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 202785750.56566197, + "kind": "calibration_drift", + "ledger_value": 178800000.0, + "name": "hmrc.self_employment_income.amount@E14001590", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 230710818.15895325, + "kind": "calibration_drift", + "ledger_value": 205100000.0, + "name": "hmrc.self_employment_income.amount@E14001591", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 325882112.62149245, + "kind": "calibration_drift", + "ledger_value": 279300000.0, + "name": "hmrc.self_employment_income.amount@E14001592", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 151235028.9448958, + "kind": "calibration_drift", + "ledger_value": 169000000.0, + "name": "hmrc.self_employment_income.amount@E14001593", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68318913.21757403, + "kind": "calibration_drift", + "ledger_value": 80000000.0, + "name": "hmrc.self_employment_income.amount@E14001594", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82036490.2809452, + "kind": "calibration_drift", + "ledger_value": 89600000.0, + "name": "hmrc.self_employment_income.amount@E14001595", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106173534.14268467, + "kind": "calibration_drift", + "ledger_value": 85600000.0, + "name": "hmrc.self_employment_income.amount@E14001596", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114206407.23472725, + "kind": "calibration_drift", + "ledger_value": 93000000.0, + "name": "hmrc.self_employment_income.amount@E14001597", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106141513.65467492, + "kind": "calibration_drift", + "ledger_value": 105000000.0, + "name": "hmrc.self_employment_income.amount@E14001598", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121241308.45046638, + "kind": "calibration_drift", + "ledger_value": 126600000.0, + "name": "hmrc.self_employment_income.amount@E14001599", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 172415385.0380271, + "kind": "calibration_drift", + "ledger_value": 169400000.0, + "name": "hmrc.self_employment_income.amount@E14001600", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120397034.91660966, + "kind": "calibration_drift", + "ledger_value": 119400000.0, + "name": "hmrc.self_employment_income.amount@E14001601", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119543155.23635001, + "kind": "calibration_drift", + "ledger_value": 114000000.0, + "name": "hmrc.self_employment_income.amount@E14001602", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 122548811.71086396, + "kind": "calibration_drift", + "ledger_value": 134400000.0, + "name": "hmrc.self_employment_income.amount@E14001603", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111399277.78587368, + "kind": "calibration_drift", + "ledger_value": 117500000.0, + "name": "hmrc.self_employment_income.amount@E14001604", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123951309.08569042, + "kind": "calibration_drift", + "ledger_value": 123000000.0, + "name": "hmrc.self_employment_income.amount@E14001605", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 106689063.9996414, + "kind": "calibration_drift", + "ledger_value": 111200000.0, + "name": "hmrc.self_employment_income.amount@N05000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 77980328.02677213, + "kind": "calibration_drift", + "ledger_value": 65400000.0, + "name": "hmrc.self_employment_income.amount@N05000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159967953.99904218, + "kind": "calibration_drift", + "ledger_value": 183500000.0, + "name": "hmrc.self_employment_income.amount@N05000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 49618969.3555235, + "kind": "calibration_drift", + "ledger_value": 64800000.0, + "name": "hmrc.self_employment_income.amount@N05000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96913483.77353227, + "kind": "calibration_drift", + "ledger_value": 104000000.0, + "name": "hmrc.self_employment_income.amount@N05000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 155833041.64738485, + "kind": "calibration_drift", + "ledger_value": 149100000.0, + "name": "hmrc.self_employment_income.amount@N05000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139635472.50375065, + "kind": "calibration_drift", + "ledger_value": 116000000.0, + "name": "hmrc.self_employment_income.amount@N05000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 107019586.59254192, + "kind": "calibration_drift", + "ledger_value": 82200000.0, + "name": "hmrc.self_employment_income.amount@N05000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 166051846.7208921, + "kind": "calibration_drift", + "ledger_value": 172200000.0, + "name": "hmrc.self_employment_income.amount@N05000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 133343203.55002743, + "kind": "calibration_drift", + "ledger_value": 146400000.0, + "name": "hmrc.self_employment_income.amount@N05000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 139316873.93196273, + "kind": "calibration_drift", + "ledger_value": 126600000.0, + "name": "hmrc.self_employment_income.amount@N05000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 189656145.75043792, + "kind": "calibration_drift", + "ledger_value": 147000000.0, + "name": "hmrc.self_employment_income.amount@N05000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 159115141.66838285, + "kind": "calibration_drift", + "ledger_value": 152000000.0, + "name": "hmrc.self_employment_income.amount@N05000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118605030.19333713, + "kind": "calibration_drift", + "ledger_value": 109800000.0, + "name": "hmrc.self_employment_income.amount@N05000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 205996338.16343823, + "kind": "calibration_drift", + "ledger_value": 180000000.0, + "name": "hmrc.self_employment_income.amount@N05000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 163964110.9026573, + "kind": "calibration_drift", + "ledger_value": 115200000.0, + "name": "hmrc.self_employment_income.amount@N05000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119000941.63938515, + "kind": "calibration_drift", + "ledger_value": 127800000.0, + "name": "hmrc.self_employment_income.amount@N05000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118912961.03338611, + "kind": "calibration_drift", + "ledger_value": 105700000.0, + "name": "hmrc.self_employment_income.amount@N05000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 154986161.7013999, + "kind": "calibration_drift", + "ledger_value": 145600000.0, + "name": "hmrc.self_employment_income.amount@N09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 283699891.34405255, + "kind": "calibration_drift", + "ledger_value": 283400000.0, + "name": "hmrc.self_employment_income.amount@N09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 347262226.97005385, + "kind": "calibration_drift", + "ledger_value": 330000000.0, + "name": "hmrc.self_employment_income.amount@N09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 247893108.94140515, + "kind": "calibration_drift", + "ledger_value": 214000000.0, + "name": "hmrc.self_employment_income.amount@N09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158693964.61291662, + "kind": "calibration_drift", + "ledger_value": 165600000.0, + "name": "hmrc.self_employment_income.amount@N09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 129667164.6770427, + "kind": "calibration_drift", + "ledger_value": 103200000.0, + "name": "hmrc.self_employment_income.amount@N09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 220349430.1701379, + "kind": "calibration_drift", + "ledger_value": 200800000.0, + "name": "hmrc.self_employment_income.amount@N09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 166109570.4359501, + "kind": "calibration_drift", + "ledger_value": 147700000.0, + "name": "hmrc.self_employment_income.amount@N09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 199161984.96147078, + "kind": "calibration_drift", + "ledger_value": 173000000.0, + "name": "hmrc.self_employment_income.amount@N09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 265690562.91668552, + "kind": "calibration_drift", + "ledger_value": 244400000.0, + "name": "hmrc.self_employment_income.amount@N09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 52121115.21332108, + "kind": "calibration_drift", + "ledger_value": 45000000.0, + "name": "hmrc.self_employment_income.amount@S12000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 206895402.4626343, + "kind": "calibration_drift", + "ledger_value": 192600000.0, + "name": "hmrc.self_employment_income.amount@S12000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109115342.8246356, + "kind": "calibration_drift", + "ledger_value": 101000000.0, + "name": "hmrc.self_employment_income.amount@S12000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 302556717.5797663, + "kind": "calibration_drift", + "ledger_value": 186200000.0, + "name": "hmrc.self_employment_income.amount@S12000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 182212028.79453713, + "kind": "calibration_drift", + "ledger_value": 194000000.0, + "name": "hmrc.self_employment_income.amount@S12000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18221202.87945371, + "kind": "calibration_drift", + "ledger_value": 18600000.0, + "name": "hmrc.self_employment_income.amount@S12000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123946554.47070257, + "kind": "calibration_drift", + "ledger_value": 136800000.0, + "name": "hmrc.self_employment_income.amount@S12000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 341647553.98975706, + "kind": "calibration_drift", + "ledger_value": 304500000.0, + "name": "hmrc.self_employment_income.amount@S12000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53604236.37792778, + "kind": "calibration_drift", + "ledger_value": 55600000.0, + "name": "hmrc.self_employment_income.amount@S12000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 108479719.46837558, + "kind": "calibration_drift", + "ledger_value": 121500000.0, + "name": "hmrc.self_employment_income.amount@S12000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88563520.9722285, + "kind": "calibration_drift", + "ledger_value": 87200000.0, + "name": "hmrc.self_employment_income.amount@S12000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 95343503.43900198, + "kind": "calibration_drift", + "ledger_value": 66400000.0, + "name": "hmrc.self_employment_income.amount@S12000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34747410.14221405, + "kind": "calibration_drift", + "ledger_value": 26000000.0, + "name": "hmrc.self_employment_income.amount@S12000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 204246971.81155092, + "kind": "calibration_drift", + "ledger_value": 178400000.0, + "name": "hmrc.self_employment_income.amount@S12000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 27437741.545223903, + "kind": "calibration_drift", + "ledger_value": 26600000.0, + "name": "hmrc.self_employment_income.amount@S12000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119497190.97688247, + "kind": "calibration_drift", + "ledger_value": 114800000.0, + "name": "hmrc.self_employment_income.amount@S12000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 303827964.2922863, + "kind": "calibration_drift", + "ledger_value": 297700000.0, + "name": "hmrc.self_employment_income.amount@S12000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 153079291.63261983, + "kind": "calibration_drift", + "ledger_value": 160000000.0, + "name": "hmrc.self_employment_income.amount@S12000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 173525176.2589836, + "kind": "calibration_drift", + "ledger_value": 154200000.0, + "name": "hmrc.self_employment_income.amount@S12000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 355949079.50560737, + "kind": "calibration_drift", + "ledger_value": 319200000.0, + "name": "hmrc.self_employment_income.amount@S12000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144286501.871023, + "kind": "calibration_drift", + "ledger_value": 157800000.0, + "name": "hmrc.self_employment_income.amount@S12000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1601770857.7752333, + "kind": "calibration_drift", + "ledger_value": 1284400000.0, + "name": "hmrc.self_employment_income.amount@S12000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144286501.871023, + "kind": "calibration_drift", + "ledger_value": 142200000.0, + "name": "hmrc.self_employment_income.amount@S12000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68011699.11982141, + "kind": "calibration_drift", + "ledger_value": 65700000.0, + "name": "hmrc.self_employment_income.amount@S12000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134752151.5271228, + "kind": "calibration_drift", + "ledger_value": 154000000.0, + "name": "hmrc.self_employment_income.amount@S12000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 161448332.49004334, + "kind": "calibration_drift", + "ledger_value": 149400000.0, + "name": "hmrc.self_employment_income.amount@S12000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 94919754.53482863, + "kind": "calibration_drift", + "ledger_value": 86000000.0, + "name": "hmrc.self_employment_income.amount@S12000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 186979203.9664872, + "kind": "calibration_drift", + "ledger_value": 178000000.0, + "name": "hmrc.self_employment_income.amount@S12000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 390908364.0999081, + "kind": "calibration_drift", + "ledger_value": 355200000.0, + "name": "hmrc.self_employment_income.amount@S12000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 257639333.737392, + "kind": "calibration_drift", + "ledger_value": 252900000.0, + "name": "hmrc.self_employment_income.amount@S12000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 560619800.2213316, + "kind": "calibration_drift", + "ledger_value": 570400000.0, + "name": "hmrc.self_employment_income.amount@S12000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 214522882.73775446, + "kind": "calibration_drift", + "ledger_value": 231000000.0, + "name": "hmrc.self_employment_income.amount@S12000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81332039.54473099, + "kind": "calibration_drift", + "ledger_value": 194000000.0, + "name": "hmrc.self_employment_income.amount@S14000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 165118983.17020845, + "kind": "calibration_drift", + "ledger_value": 18600000.0, + "name": "hmrc.self_employment_income.amount@S14000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74287532.18258893, + "kind": "calibration_drift", + "ledger_value": 121500000.0, + "name": "hmrc.self_employment_income.amount@S14000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 183584131.25582325, + "kind": "calibration_drift", + "ledger_value": 47100000.0, + "name": "hmrc.self_employment_income.amount@S14000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18358413.125582322, + "kind": "calibration_drift", + "ledger_value": 54600000.0, + "name": "hmrc.self_employment_income.amount@S14000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90511246.10752216, + "kind": "calibration_drift", + "ledger_value": 69000000.0, + "name": "hmrc.self_employment_income.amount@S14000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 109296599.0732343, + "kind": "calibration_drift", + "ledger_value": 83100000.0, + "name": "hmrc.self_employment_income.amount@S14000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61159132.09859693, + "kind": "calibration_drift", + "ledger_value": 92000000.0, + "name": "hmrc.self_employment_income.amount@S14000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65962205.30005742, + "kind": "calibration_drift", + "ledger_value": 66600000.0, + "name": "hmrc.self_employment_income.amount@S14000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 149962618.8455998, + "kind": "calibration_drift", + "ledger_value": 67800000.0, + "name": "hmrc.self_employment_income.amount@S14000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86045455.37976423, + "kind": "calibration_drift", + "ledger_value": 166200000.0, + "name": "hmrc.self_employment_income.amount@S14000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 125033601.58041953, + "kind": "calibration_drift", + "ledger_value": 97200000.0, + "name": "hmrc.self_employment_income.amount@S14000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 125853326.07346877, + "kind": "calibration_drift", + "ledger_value": 158400000.0, + "name": "hmrc.self_employment_income.amount@S14000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55246015.312798895, + "kind": "calibration_drift", + "ledger_value": 75300000.0, + "name": "hmrc.self_employment_income.amount@S14000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 111831554.37400512, + "kind": "calibration_drift", + "ledger_value": 124800000.0, + "name": "hmrc.self_employment_income.amount@S14000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134116746.67918149, + "kind": "calibration_drift", + "ledger_value": 56400000.0, + "name": "hmrc.self_employment_income.amount@S14000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121741895.4130186, + "kind": "calibration_drift", + "ledger_value": 80400000.0, + "name": "hmrc.self_employment_income.amount@S14000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158327046.6540838, + "kind": "calibration_drift", + "ledger_value": 62400000.0, + "name": "hmrc.self_employment_income.amount@S14000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69231497.12585153, + "kind": "calibration_drift", + "ledger_value": 128400000.0, + "name": "hmrc.self_employment_income.amount@S14000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 136062704.01300237, + "kind": "calibration_drift", + "ledger_value": 133000000.0, + "name": "hmrc.self_employment_income.amount@S14000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58866465.15709979, + "kind": "calibration_drift", + "ledger_value": 56100000.0, + "name": "hmrc.self_employment_income.amount@S14000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68648724.24407433, + "kind": "calibration_drift", + "ledger_value": 86800000.0, + "name": "hmrc.self_employment_income.amount@S14000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 71305874.90211867, + "kind": "calibration_drift", + "ledger_value": 68100000.0, + "name": "hmrc.self_employment_income.amount@S14000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 144190392.20704463, + "kind": "calibration_drift", + "ledger_value": 107500000.0, + "name": "hmrc.self_employment_income.amount@S14000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 150056545.61042833, + "kind": "calibration_drift", + "ledger_value": 322700000.0, + "name": "hmrc.self_employment_income.amount@S14000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88350930.51646526, + "kind": "calibration_drift", + "ledger_value": 510000000.0, + "name": "hmrc.self_employment_income.amount@S14000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 96667718.60219419, + "kind": "calibration_drift", + "ledger_value": 137000000.0, + "name": "hmrc.self_employment_income.amount@S14000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92342818.0216791, + "kind": "calibration_drift", + "ledger_value": 236500000.0, + "name": "hmrc.self_employment_income.amount@S14000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 157751068.87916806, + "kind": "calibration_drift", + "ledger_value": 86400000.0, + "name": "hmrc.self_employment_income.amount@S14000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 435824458.2029231, + "kind": "calibration_drift", + "ledger_value": 76800000.0, + "name": "hmrc.self_employment_income.amount@S14000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 646787174.0566714, + "kind": "calibration_drift", + "ledger_value": 85500000.0, + "name": "hmrc.self_employment_income.amount@S14000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 147294244.8447884, + "kind": "calibration_drift", + "ledger_value": 57600000.0, + "name": "hmrc.self_employment_income.amount@S14000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 257098902.3277772, + "kind": "calibration_drift", + "ledger_value": 103600000.0, + "name": "hmrc.self_employment_income.amount@S14000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81560452.35920045, + "kind": "calibration_drift", + "ledger_value": 108400000.0, + "name": "hmrc.self_employment_income.amount@S14000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 86307624.36626194, + "kind": "calibration_drift", + "ledger_value": 114800000.0, + "name": "hmrc.self_employment_income.amount@S14000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 112725581.1941819, + "kind": "calibration_drift", + "ledger_value": 60900000.0, + "name": "hmrc.self_employment_income.amount@S14000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61577076.48409936, + "kind": "calibration_drift", + "ledger_value": 127500000.0, + "name": "hmrc.self_employment_income.amount@S14000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 107172467.6904102, + "kind": "calibration_drift", + "ledger_value": 74000000.0, + "name": "hmrc.self_employment_income.amount@S14000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 84699316.17739846, + "kind": "calibration_drift", + "ledger_value": 63600000.0, + "name": "hmrc.self_employment_income.amount@S14000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 127492775.05956729, + "kind": "calibration_drift", + "ledger_value": 136500000.0, + "name": "hmrc.self_employment_income.amount@S14000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 74249107.59697726, + "kind": "calibration_drift", + "ledger_value": 78000000.0, + "name": "hmrc.self_employment_income.amount@S14000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100147278.29925223, + "kind": "calibration_drift", + "ledger_value": 163800000.0, + "name": "hmrc.self_employment_income.amount@S14000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87650749.17865235, + "kind": "calibration_drift", + "ledger_value": 184500000.0, + "name": "hmrc.self_employment_income.amount@S14000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66565627.69786467, + "kind": "calibration_drift", + "ledger_value": 107500000.0, + "name": "hmrc.self_employment_income.amount@S14000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 140977838.78166163, + "kind": "calibration_drift", + "ledger_value": 72600000.0, + "name": "hmrc.self_employment_income.amount@S14000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73057945.44301505, + "kind": "calibration_drift", + "ledger_value": 133000000.0, + "name": "hmrc.self_employment_income.amount@S14000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 268254840.35036945, + "kind": "calibration_drift", + "ledger_value": 61200000.0, + "name": "hmrc.self_employment_income.amount@S14000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 175290824.86130145, + "kind": "calibration_drift", + "ledger_value": 71100000.0, + "name": "hmrc.self_employment_income.amount@S14000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 99908235.1140159, + "kind": "calibration_drift", + "ledger_value": 138500000.0, + "name": "hmrc.self_employment_income.amount@S14000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 69215486.88184667, + "kind": "calibration_drift", + "ledger_value": 95200000.0, + "name": "hmrc.self_employment_income.amount@S14000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 160562467.72642294, + "kind": "calibration_drift", + "ledger_value": 157500000.0, + "name": "hmrc.self_employment_income.amount@S14000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 70581461.87826994, + "kind": "calibration_drift", + "ledger_value": 66000000.0, + "name": "hmrc.self_employment_income.amount@S14000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73937304.13205077, + "kind": "calibration_drift", + "ledger_value": 81000000.0, + "name": "hmrc.self_employment_income.amount@S14000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 155395428.3112518, + "kind": "calibration_drift", + "ledger_value": 141400000.0, + "name": "hmrc.self_employment_income.amount@S14000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 60343677.00394897, + "kind": "calibration_drift", + "ledger_value": 76200000.0, + "name": "hmrc.self_employment_income.amount@S14000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 169217605.63545477, + "kind": "calibration_drift", + "ledger_value": 80800000.0, + "name": "hmrc.self_employment_income.amount@S14000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 72801781.53893715, + "kind": "calibration_drift", + "ledger_value": 144500000.0, + "name": "hmrc.self_employment_income.amount@S14000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81783538.50545503, + "kind": "calibration_drift", + "ledger_value": 69200000.0, + "name": "hmrc.self_employment_income.amount@W06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 184966396.67166385, + "kind": "calibration_drift", + "ledger_value": 173700000.0, + "name": "hmrc.self_employment_income.amount@W06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 137294644.95216286, + "kind": "calibration_drift", + "ledger_value": 126000000.0, + "name": "hmrc.self_employment_income.amount@W06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 120238751.55918583, + "kind": "calibration_drift", + "ledger_value": 103000000.0, + "name": "hmrc.self_employment_income.amount@W06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134752151.5271228, + "kind": "calibration_drift", + "ledger_value": 142800000.0, + "name": "hmrc.self_employment_income.amount@W06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 100428490.28908208, + "kind": "calibration_drift", + "ledger_value": 105500000.0, + "name": "hmrc.self_employment_income.amount@W06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 94813817.3087853, + "kind": "calibration_drift", + "ledger_value": 102600000.0, + "name": "hmrc.self_employment_income.amount@W06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 156363345.63996324, + "kind": "calibration_drift", + "ledger_value": 140800000.0, + "name": "hmrc.self_employment_income.amount@W06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 202128227.2906842, + "kind": "calibration_drift", + "ledger_value": 190300000.0, + "name": "hmrc.self_employment_income.amount@W06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 181364530.98619044, + "kind": "calibration_drift", + "ledger_value": 170400000.0, + "name": "hmrc.self_employment_income.amount@W06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 92695072.78791858, + "kind": "calibration_drift", + "ledger_value": 78000000.0, + "name": "hmrc.self_employment_income.amount@W06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 108055970.56420223, + "kind": "calibration_drift", + "ledger_value": 103500000.0, + "name": "hmrc.self_employment_income.amount@W06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 162719579.20256338, + "kind": "calibration_drift", + "ledger_value": 168700000.0, + "name": "hmrc.self_employment_income.amount@W06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 364847806.49324757, + "kind": "calibration_drift", + "ledger_value": 331500000.0, + "name": "hmrc.self_employment_income.amount@W06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 184012961.63727382, + "kind": "calibration_drift", + "ledger_value": 184500000.0, + "name": "hmrc.self_employment_income.amount@W06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 131574034.74582273, + "kind": "calibration_drift", + "ledger_value": 169600000.0, + "name": "hmrc.self_employment_income.amount@W06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38137401.37560079, + "kind": "calibration_drift", + "ledger_value": 34200000.0, + "name": "hmrc.self_employment_income.amount@W06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55934855.35088116, + "kind": "calibration_drift", + "ledger_value": 53400000.0, + "name": "hmrc.self_employment_income.amount@W06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 150642735.43362314, + "kind": "calibration_drift", + "ledger_value": 133200000.0, + "name": "hmrc.self_employment_income.amount@W06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 90576328.26705188, + "kind": "calibration_drift", + "ledger_value": 104400000.0, + "name": "hmrc.self_employment_income.amount@W06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 241007189.24858832, + "kind": "calibration_drift", + "ledger_value": 219600000.0, + "name": "hmrc.self_employment_income.amount@W06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 44917383.842374265, + "kind": "calibration_drift", + "ledger_value": 42600000.0, + "name": "hmrc.self_employment_income.amount@W06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 58153475.62408298, + "kind": "calibration_drift", + "ledger_value": 39800000.0, + "name": "hmrc.self_employment_income.amount@W07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87736137.14667831, + "kind": "calibration_drift", + "ledger_value": 101500000.0, + "name": "hmrc.self_employment_income.amount@W07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116964438.60196589, + "kind": "calibration_drift", + "ledger_value": 109800000.0, + "name": "hmrc.self_employment_income.amount@W07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 61482539.02749527, + "kind": "calibration_drift", + "ledger_value": 58200000.0, + "name": "hmrc.self_employment_income.amount@W07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 134303532.85923827, + "kind": "calibration_drift", + "ledger_value": 128800000.0, + "name": "hmrc.self_employment_income.amount@W07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 65332469.03586594, + "kind": "calibration_drift", + "ledger_value": 82800000.0, + "name": "hmrc.self_employment_income.amount@W07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118408562.61120501, + "kind": "calibration_drift", + "ledger_value": 140800000.0, + "name": "hmrc.self_employment_income.amount@W07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 80115261.000361, + "kind": "calibration_drift", + "ledger_value": 84400000.0, + "name": "hmrc.self_employment_income.amount@W07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 88261273.150038, + "kind": "calibration_drift", + "ledger_value": 86400000.0, + "name": "hmrc.self_employment_income.amount@W07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 123603353.11598462, + "kind": "calibration_drift", + "ledger_value": 112500000.0, + "name": "hmrc.self_employment_income.amount@W07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 87723328.95147443, + "kind": "calibration_drift", + "ledger_value": 81600000.0, + "name": "hmrc.self_employment_income.amount@W07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 119500461.25233704, + "kind": "calibration_drift", + "ledger_value": 130500000.0, + "name": "hmrc.self_employment_income.amount@W07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 121064128.4168125, + "kind": "calibration_drift", + "ledger_value": 139200000.0, + "name": "hmrc.self_employment_income.amount@W07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 94531286.27942176, + "kind": "calibration_drift", + "ledger_value": 99000000.0, + "name": "hmrc.self_employment_income.amount@W07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 116981516.19557108, + "kind": "calibration_drift", + "ledger_value": 85200000.0, + "name": "hmrc.self_employment_income.amount@W07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 154388547.76452184, + "kind": "calibration_drift", + "ledger_value": 149600000.0, + "name": "hmrc.self_employment_income.amount@W07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 91309623.60856493, + "kind": "calibration_drift", + "ledger_value": 89200000.0, + "name": "hmrc.self_employment_income.amount@W07000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 68511036.14563246, + "kind": "calibration_drift", + "ledger_value": 67200000.0, + "name": "hmrc.self_employment_income.amount@W07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 85389035.37556462, + "kind": "calibration_drift", + "ledger_value": 81200000.0, + "name": "hmrc.self_employment_income.amount@W07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 114473244.63480839, + "kind": "calibration_drift", + "ledger_value": 103800000.0, + "name": "hmrc.self_employment_income.amount@W07000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 148882461.05007136, + "kind": "calibration_drift", + "ledger_value": 133200000.0, + "name": "hmrc.self_employment_income.amount@W07000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 158749759.3670836, + "kind": "calibration_drift", + "ledger_value": 137200000.0, + "name": "hmrc.self_employment_income.amount@W07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 66753111.35389792, + "kind": "calibration_drift", + "ledger_value": 76800000.0, + "name": "hmrc.self_employment_income.amount@W07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 53314112.53621146, + "kind": "calibration_drift", + "ledger_value": 66000000.0, + "name": "hmrc.self_employment_income.amount@W07000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 73000308.56459753, + "kind": "calibration_drift", + "ledger_value": 79200000.0, + "name": "hmrc.self_employment_income.amount@W07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 81430235.70796086, + "kind": "calibration_drift", + "ledger_value": 58200000.0, + "name": "hmrc.self_employment_income.amount@W07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82629936.65872565, + "kind": "calibration_drift", + "ledger_value": 83600000.0, + "name": "hmrc.self_employment_income.amount@W07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 63776273.318592735, + "kind": "calibration_drift", + "ledger_value": 64200000.0, + "name": "hmrc.self_employment_income.amount@W07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 55681493.94973132, + "kind": "calibration_drift", + "ledger_value": 53400000.0, + "name": "hmrc.self_employment_income.amount@W07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 118817357.50812933, + "kind": "calibration_drift", + "ledger_value": 112500000.0, + "name": "hmrc.self_employment_income.amount@W07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 76390527.92976306, + "kind": "calibration_drift", + "ledger_value": 62400000.0, + "name": "hmrc.self_employment_income.amount@W07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 82399389.14505555, + "kind": "calibration_drift", + "ledger_value": 69200000.0, + "name": "hmrc.self_employment_income.amount@W07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E06000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 14000.0, + "name": "hmrc.self_employment_income.count@E06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.self_employment_income.count@E06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 16949.956166933684, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E06000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E06000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E06000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 14000.0, + "name": "hmrc.self_employment_income.count@E06000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E06000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 16949.956166933684, + "kind": "calibration_drift", + "ledger_value": 18000.0, + "name": "hmrc.self_employment_income.count@E06000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E06000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E06000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E06000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E06000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E06000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E06000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 21187.445208667104, + "kind": "calibration_drift", + "ledger_value": 21000.0, + "name": "hmrc.self_employment_income.count@E06000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E06000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E06000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E06000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 18000.0, + "name": "hmrc.self_employment_income.count@E06000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 24365.561989967173, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E06000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "hmrc.self_employment_income.count@E06000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E06000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 46612.37945906763, + "kind": "calibration_drift", + "ledger_value": 44000.0, + "name": "hmrc.self_employment_income.count@E06000052", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 31781.16781300066, + "kind": "calibration_drift", + "ledger_value": 32000.0, + "name": "hmrc.self_employment_income.count@E06000054", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E06000055", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 19000.0, + "name": "hmrc.self_employment_income.count@E06000056", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E06000057", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E06000058", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25424.93425040053, + "kind": "calibration_drift", + "ledger_value": 26000.0, + "name": "hmrc.self_employment_income.count@E06000059", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 38137.40137560079, + "kind": "calibration_drift", + "ledger_value": 38000.0, + "name": "hmrc.self_employment_income.count@E06000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 19068.700687800396, + "kind": "calibration_drift", + "ledger_value": 19000.0, + "name": "hmrc.self_employment_income.count@E06000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.self_employment_income.count@E06000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E06000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E06000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 41000.0, + "name": "hmrc.self_employment_income.count@E06000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.self_employment_income.count@E06000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000043", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000044", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000046", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 14000.0, + "name": "hmrc.self_employment_income.count@E07000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E07000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E07000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E07000117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E07000120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E07000135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E07000138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E07000172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E07000199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E07000218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E07000225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E07000228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E07000238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E07000239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E07000241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E07000243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@E07000244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E07000245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E08000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E08000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E08000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E08000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E08000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E08000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@E08000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E08000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E08000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E08000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E08000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E08000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E08000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E08000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 23000.0, + "name": "hmrc.self_employment_income.count@E08000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E08000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E08000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E08000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E08000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 40256.145896467504, + "kind": "calibration_drift", + "ledger_value": 40000.0, + "name": "hmrc.self_employment_income.count@E08000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E08000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E08000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E08000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E08000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E08000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 21187.445208667104, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.self_employment_income.count@E08000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E08000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 19000.0, + "name": "hmrc.self_employment_income.count@E08000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 33899.91233386737, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.self_employment_income.count@E08000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 14000.0, + "name": "hmrc.self_employment_income.count@E08000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E08000037", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 19000.0, + "name": "hmrc.self_employment_income.count@E09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 34959.28459430073, + "kind": "calibration_drift", + "ledger_value": 35000.0, + "name": "hmrc.self_employment_income.count@E09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@E09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 28603.051031700594, + "kind": "calibration_drift", + "ledger_value": 28000.0, + "name": "hmrc.self_employment_income.count@E09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 22246.81746910046, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 16949.956166933684, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 24000.0, + "name": "hmrc.self_employment_income.count@E09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 26484.30651083388, + "kind": "calibration_drift", + "ledger_value": 29000.0, + "name": "hmrc.self_employment_income.count@E09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.self_employment_income.count@E09000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E09000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E09000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 26484.30651083388, + "kind": "calibration_drift", + "ledger_value": 27000.0, + "name": "hmrc.self_employment_income.count@E09000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 24365.561989967173, + "kind": "calibration_drift", + "ledger_value": 24000.0, + "name": "hmrc.self_employment_income.count@E09000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.self_employment_income.count@E09000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 17000.0, + "name": "hmrc.self_employment_income.count@E09000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 18009.32842736704, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.self_employment_income.count@E09000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "hmrc.self_employment_income.count@E09000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E09000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E09000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 22000.0, + "name": "hmrc.self_employment_income.count@E09000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 21000.0, + "name": "hmrc.self_employment_income.count@E09000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 16949.956166933684, + "kind": "calibration_drift", + "ledger_value": 18000.0, + "name": "hmrc.self_employment_income.count@E09000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 29662.42329213395, + "kind": "calibration_drift", + "ledger_value": 30000.0, + "name": "hmrc.self_employment_income.count@E09000025", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25424.93425040053, + "kind": "calibration_drift", + "ledger_value": 26000.0, + "name": "hmrc.self_employment_income.count@E09000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 14000.0, + "name": "hmrc.self_employment_income.count@E09000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 20128.072948233752, + "kind": "calibration_drift", + "ledger_value": 20000.0, + "name": "hmrc.self_employment_income.count@E09000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E09000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "hmrc.self_employment_income.count@E09000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 27543.678771267238, + "kind": "calibration_drift", + "ledger_value": 27000.0, + "name": "hmrc.self_employment_income.count@E09000031", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 23306.189729533817, + "kind": "calibration_drift", + "ledger_value": 24000.0, + "name": "hmrc.self_employment_income.count@E09000032", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E09000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5720.993857739608, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4909.808161492947, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7770.305090362751, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3991.8875052138305, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7877.040050395208, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3735.723601135938, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7665.472337538795, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5934.463777804519, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10801.577955284483, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E14001073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4867.114177479964, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4696.338241428036, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3479.5596970580455, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7151.24232217451, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5881.096297788292, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5123.278081557857, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6927.098906106354, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7770.305090362751, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6873.731426090127, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7743.351817627283, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5315.401009616277, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947322, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7322.018258226438, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4803.073201460492, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7193.936306187492, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5710.320361736362, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6468.138577966796, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3874.4790491781305, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4443.624356260283, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3842.4585611683938, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4184.01043327225, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3714.376609129447, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4375.594295875961, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3298.110265002871, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4405.242895884976, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4173.336937269005, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3906.4995371878667, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4323.304946769152, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3191.3753049704155, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4620.330012314015, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4621.623769405317, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4290.745393304706, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3201.8331747917773, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3874.47904917813, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6137.260201866184, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3714.376609129447, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4781.726209454, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4141.316449259268, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001113", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6702.955490038198, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001114", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001115", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5315.4010096162765, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001116", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4824.420193466983, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001117", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3138.007824954188, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001118", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3266.089776993135, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001119", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001120", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7636.516516698307, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001121", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10171.841691092995, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001122", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12285.193899735614, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001123", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9264.594530817127, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001124", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001125", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6734.975978047934, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001126", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5592.911905700662, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001127", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3031.272864921733, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001128", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7620.876146317314, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001129", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7322.018258226439, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001130", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6436.118089957059, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001131", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6916.425410103107, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001132", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5770.335959875224, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001133", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6500.159065976533, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001134", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5635.6058897136445, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001135", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7018.632220316004, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001136", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6630.505092925258, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001137", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001138", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7695.590618340032, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001139", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3255.416280989889, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001140", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6519.709528952774, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001141", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3885.152545181376, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001142", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001143", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3789.0910811521658, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001144", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5396.584267095508, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001145", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6500.1590659765325, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001146", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5176.645561574085, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001147", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7695.590618340033, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001148", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6948.4458981128455, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001149", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001150", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7097.874842158282, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001151", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5165.972065570841, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001152", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001153", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5486.176945668206, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001154", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10457.869821361788, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001155", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5847.596315283055, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001156", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5699.646865733117, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001157", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001158", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5069.910601541629, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001159", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8724.235319016454, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001160", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6019.851745830483, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001161", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7386.059234245911, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001162", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4096.897455791216, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001163", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4653.752070505996, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001164", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001165", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7450.100210265385, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001166", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8880.348674700286, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001167", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5722.579030413358, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001168", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9360.655994846336, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001169", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4098.622465246286, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001170", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5358.094993629259, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001171", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9584.799410914493, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001172", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3443.7657508653433, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001173", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4861.196199497967, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001174", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7941.081026414679, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001175", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6947.706150865096, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001176", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5251.360033596804, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001177", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5507.523937674698, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001178", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5763.68784175259, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001179", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3970.54051320734, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001180", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001181", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3500.9066890645363, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001182", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3786.977517587167, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001183", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001184", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4109.2959612495315, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001185", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6489.485569973287, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001186", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5443.482961655224, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001187", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7802.325578372488, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001188", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9811.206901892429, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001189", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3394.171729032081, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001190", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6649.58801002197, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001191", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7140.602984774336, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001192", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001193", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001194", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6724.302482044689, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001195", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5144.625073564349, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001196", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6158.607193872675, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001197", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4568.25628938909, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001198", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4461.521329356635, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001199", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4184.01043327225, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001200", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7770.410768541001, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001201", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6468.138577966796, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001202", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6083.892721849957, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001203", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3778.4175851489204, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001204", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7941.081026414679, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001205", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8026.468994440643, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001206", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10793.168534191018, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001207", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9414.023474862564, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001208", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7770.305090362752, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001209", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5704.821894098328, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001210", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2582.98603278542, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E14001211", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7608.369827768057, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001212", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9990.392259037824, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001213", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7332.691754229684, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001214", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7311.344762223192, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001215", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6788.343458064162, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001216", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6147.933697869429, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001217", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001218", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6948.4458981128455, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001219", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6051.87223384022, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001220", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8912.369162710023, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001221", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4363.6270427814125, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001222", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7318.783865498183, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001223", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7194.666446328129, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001224", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7695.590618340033, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001225", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8538.79680259643, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001226", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7524.497647753354, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001227", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001228", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8549.470298599676, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001229", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.4472022718755, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001230", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5709.580614488613, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001231", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6532.222252240107, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001232", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6318.7096339213585, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001233", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8026.468994440643, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001234", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6233.321665895394, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001235", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6873.731426090127, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001236", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5617.469806395797, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001237", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11740.845603570091, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@E14001238", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5977.1577618175015, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001239", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001240", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7588.855658307577, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001241", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4888.461169486456, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001242", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5176.645561574085, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001243", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2305.4751367010363, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001244", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4589.603281395581, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001245", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001246", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7503.467690281613, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001247", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5069.910601541629, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001248", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7316.9457056704405, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001249", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5408.551520190057, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001250", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3981.2140092105856, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001251", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001252", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5507.523937674698, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001253", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001254", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2977.905384905505, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001255", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001256", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7343.365250232929, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001257", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8010.40591134665, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001258", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7566.451884518586, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001259", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8553.380391194924, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001260", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4077.2754732397952, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001261", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3362.1512410223445, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001262", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6190.627681882412, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001263", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8553.890635328293, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001264", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10570.103249032281, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001265", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4909.808161492947, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001266", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6974.759764497084, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001267", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7012.486874132318, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001268", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6294.775127732262, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001269", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14227.030425078552, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@E14001270", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9495.098919250853, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001271", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001272", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7403.390455478905, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001273", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7108.548338161528, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001274", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001275", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001276", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4055.9284812333044, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001277", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7268.650778210211, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001278", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12487.99032379728, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E14001279", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7855.693058388715, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001280", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5283.38052160654, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001281", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6329.383129924604, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001282", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6873.731426090127, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001283", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9307.288514830108, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001284", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6185.977842039413, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001285", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4749.705721444264, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001286", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001287", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4856.44068147672, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001288", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6863.057930086881, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001289", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8069.162978453626, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001290", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7058.034168958048, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001291", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7169.570547634628, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001292", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10635.437982143058, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001293", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7514.141186284857, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001294", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3458.212705051554, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001295", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8538.79680259643, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001296", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4226.704417285233, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001297", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6350.730121931095, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001298", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001299", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10480.510570459583, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001300", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9585.661915642027, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001301", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001302", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001303", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001304", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8538.79680259643, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001305", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8143.877450476345, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001306", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2348.169120714018, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001307", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001308", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5400.788977642243, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001309", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10139.82120308326, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001310", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6660.261506025216, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001311", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7941.0810264146785, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001312", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3586.2946570905006, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001313", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4162.232188901992, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001314", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4283.414103120659, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001315", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4322.765881314443, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001316", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3554.274169080764, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001317", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5742.340849746099, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001318", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4236.191969288117, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001319", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4771.158391629005, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001320", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001321", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4803.073201460491, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001322", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3671.682625116465, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001323", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4653.752070505996, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001324", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4910.886292402365, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001325", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3138.007824954188, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001326", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3949.193521200849, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001327", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3586.2946570905006, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001328", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5219.339545587067, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001329", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7718.015741255943, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001330", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8132.018010472739, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001331", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7802.325578372488, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001332", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7211.402026920075, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001333", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11506.028691498688, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001334", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6211.9746738889025, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001335", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001336", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3041.9463609249788, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001337", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3991.887505213831, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001338", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3607.6416490969914, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001339", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3543.600673077519, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001340", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3404.8452250353266, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001341", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3927.8465291943576, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001342", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4130.642953256023, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001343", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3885.1525451813754, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001344", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6788.343458064162, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001345", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6532.179553986269, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001346", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001347", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6196.4495887932735, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001348", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7332.691754229684, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001349", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4429.500841346898, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001350", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7738.284602353015, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001351", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4342.603490047747, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001352", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3394.1717290320807, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001353", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3799.764577155411, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001354", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6083.892721849957, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001355", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5330.4073109277715, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001356", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5688.973369729872, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001357", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4493.541817366371, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001358", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6051.87223384022, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001359", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7140.463147993015, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001360", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5112.604585554612, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001361", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4589.603281395581, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001362", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5977.696827272211, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001363", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5123.278081557857, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001364", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6468.138577966795, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001365", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6681.608498031706, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001366", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3650.335633109974, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001367", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3073.966848934715, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001368", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6574.873537999251, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001369", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5230.013041590314, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001370", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11420.640723472725, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001371", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5731.667353742853, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001372", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001373", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001374", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6340.056625927849, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001375", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6425.444593953814, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001376", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4561.175851446343, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001377", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4077.2754732397952, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001378", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4048.4253305775574, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001379", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4536.235801379353, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001380", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001381", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3693.029617122956, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001382", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001383", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7076.527850151791, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001384", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9051.124610752215, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001385", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7097.874842158282, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001386", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9606.146402920984, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001387", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7097.874842158283, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001388", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3547.0506919876584, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001389", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5443.482961655224, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001390", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001391", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6019.851745830483, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001392", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001393", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6539.894060998516, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001394", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8592.164282612657, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001395", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6479.566765606634, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001396", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6852.384434083635, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001397", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6873.731426090127, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001398", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6799.016954067408, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001399", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001400", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5966.484265814256, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001401", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8464.822077821462, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001402", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5208.666049583821, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001403", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4055.9284812333035, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001404", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5603.585401703906, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001405", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8837.654690687306, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001406", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7658.708934130797, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001407", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4753.479179627229, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001408", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5315.401009616277, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001409", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3719.551637494657, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001410", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3547.0506919876584, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001411", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3951.2419699287443, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001412", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001413", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5977.157761817501, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001414", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001415", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001416", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6735.946295866412, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001417", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4397.480353337161, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001418", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6649.58801002197, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001419", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7097.874842158283, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001420", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7087.201346155037, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001421", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5027.2166175286475, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001422", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001423", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6051.872233840219, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001424", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6340.056625927849, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001425", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3468.8862010548, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001426", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5069.910601541629, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001427", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3628.988641103482, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001428", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6265.3421539051305, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001429", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6201.301177885657, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001430", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001431", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001432", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4376.133361330671, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001433", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9307.288514830108, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001434", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8506.776314586692, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001435", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4310.824247172198, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001436", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7172.589314181001, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001437", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6340.056625927849, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001438", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5528.8709296811885, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001439", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3394.171729032081, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001440", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5656.952881720134, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001441", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001442", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5582.2384096974165, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001443", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7598.683728884823, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001444", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7855.693058388715, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001445", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3842.4585611683933, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001446", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6574.873537999251, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001447", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8614.265966255742, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001448", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6542.853049989515, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001449", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5347.421497626014, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001450", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3920.9774476081107, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001451", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3978.677732932587, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001452", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4333.439377317688, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001453", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7221.498029040157, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001454", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3813.888092068797, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001455", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6446.791585960305, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001456", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5283.38052160654, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001457", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6062.545729843466, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001458", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5824.06317268004, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001459", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5891.769793791536, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001460", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001461", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2679.04749681463, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E14001462", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4525.562305376107, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001463", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5901.492186190532, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001464", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6468.138577966795, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001465", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3244.7427849866435, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001466", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3244.742784986643, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001467", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5496.427728958451, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001468", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4626.696321961315, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001469", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3667.0327852734667, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001470", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5347.421497626014, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001471", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001472", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6799.016954067408, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001473", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6873.731426090127, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001474", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8175.89793848608, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001475", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5123.278081557859, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001476", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7684.917122336787, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001477", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4781.726209454, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001478", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3991.8875052138305, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001479", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7343.36525023293, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001480", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7782.131439219633, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001481", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7529.570200309352, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001482", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4696.338241428036, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001483", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7535.48817829135, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001484", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5731.128288288144, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001485", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001486", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001487", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4909.808161492947, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001488", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6831.037442077144, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001489", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6636.949326885813, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001490", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4141.316449259268, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001491", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3415.518721038572, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E14001492", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8143.877450476345, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001493", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6147.93369786943, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001494", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5720.993857739607, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001495", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7076.52785015179, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001496", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6030.5252418337295, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001497", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5902.443289794783, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001498", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001499", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001500", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5998.504753823992, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001501", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6041.198737836974, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001502", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12544.700009632705, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E14001503", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4397.480353337161, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001504", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001505", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3991.887505213831, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001506", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8197.244930492572, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001507", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7855.693058388715, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001508", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001509", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2881.843920876295, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001510", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8762.940218664586, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001511", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7341.482257238658, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001512", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4514.888809372862, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001513", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6895.0784180966175, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001514", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001515", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001516", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5891.769793791536, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001517", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3362.1512410223445, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001518", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2913.864408886032, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001519", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4109.2959612495315, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001520", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4386.806857333916, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001521", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4034.581489226813, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001522", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4931.155153499438, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001523", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3426.1922170418175, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001524", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10171.841691092997, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001525", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6276.015649908376, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001526", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8741.593226658095, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@E14001527", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001528", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6777.669962060916, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001529", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6731.699954522186, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001530", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001531", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6649.588010021969, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001532", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8742.347918294688, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001533", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001534", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001535", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5635.6058897136445, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001536", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001537", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4461.521329356634, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001538", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7652.89663432705, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001539", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7514.141186284858, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001540", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4397.480353337161, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001541", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5454.15645765847, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001542", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4739.032225441018, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001543", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8041.686652108637, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001544", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6589.320492185462, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001545", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8837.654690687305, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001546", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3991.887505213831, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001547", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6596.220530005742, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001548", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7503.467690281613, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001549", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001550", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5486.176945668206, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001551", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7941.081026414679, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001552", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11961.488830279848, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@E14001553", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7193.936306187493, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001554", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001555", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7770.305090362751, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001556", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3970.5405132073397, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001557", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7011.3244141715695, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001558", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7087.201346155036, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001559", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4995.301807697161, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001560", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3458.212705051554, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001561", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.377913288478, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001562", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12808.195203894646, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E14001563", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001564", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4749.705721444264, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001565", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001566", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2326.822128707527, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E14001567", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6649.58801002197, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001568", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5907.19880781603, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001569", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6457.465081963551, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001570", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4265.517130024307, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001571", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6372.077113937586, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001572", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001573", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4568.25628938909, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001574", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6948.4458981128455, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001575", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12210.479427712895, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@E14001576", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001577", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7204.609802190738, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001578", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001579", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9221.900546804143, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@E14001580", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4536.235801379353, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001581", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5635.23441490525, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001582", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3020.599368918487, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@E14001583", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2977.9053849055053, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@E14001584", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001585", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8005.122002434153, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@E14001586", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6852.384434083636, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001587", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6489.485569973287, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001588", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3063.293352931469, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001589", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6809.690450070653, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001590", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6799.016954067407, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001591", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6948.4458981128455, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001592", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5197.669114307751, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001593", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3554.2741690807643, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001594", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4162.6634412657595, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001595", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5101.931089551366, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@E14001596", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001597", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4610.9502734020725, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001598", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5582.238409697416, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001599", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5977.1577618175015, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001600", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6404.097601947323, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@E14001601", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001602", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5891.769793791537, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@E14001603", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4546.909297382598, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001604", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5059.237105538384, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@E14001605", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3426.1922170418175, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@N05000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3184.1091296234727, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@N05000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4696.338241428036, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@N05000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2570.093295038925, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@N05000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4868.8050283319635, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@N05000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6533.473311077571, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N05000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8718.766740156105, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@N05000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4053.7722194144662, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@N05000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6340.056625927849, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N05000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7295.17600095095, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@N05000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7012.486874132319, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@N05000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7854.847632962716, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N05000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5496.850441671451, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@N05000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6476.778569630989, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@N05000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9382.002986852827, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@N05000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7108.548338161529, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@N05000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5923.7902818012735, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@N05000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7927.571298900221, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N05000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N09000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@N09000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 11653.094864766908, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@N09000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@N09000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@N09000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@N09000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@N09000007", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7415.6058230334875, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@N09000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10593.722604333552, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "hmrc.self_employment_income.count@N09000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@N09000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@S12000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@S12000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S12000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@S12000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S12000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1059.3722604333552, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "hmrc.self_employment_income.count@S12000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S12000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@S12000017", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@S12000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S12000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S12000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S12000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@S12000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@S12000026", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1059.3722604333552, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "hmrc.self_employment_income.count@S12000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S12000028", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "hmrc.self_employment_income.count@S12000029", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S12000030", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S12000033", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@S12000034", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S12000035", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 25424.93425040053, + "kind": "calibration_drift", + "ledger_value": 26000.0, + "name": "hmrc.self_employment_income.count@S12000036", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S12000038", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S12000039", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@S12000040", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S12000041", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S12000042", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S12000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 15890.58390650033, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "hmrc.self_employment_income.count@S12000047", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@S12000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 22246.81746910046, + "kind": "calibration_drift", + "ledger_value": 23000.0, + "name": "hmrc.self_employment_income.count@S12000049", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@S12000050", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7471.447202271876, + "kind": "calibration_drift", + "ledger_value": 1000.0, + "name": "hmrc.self_employment_income.count@S14000027", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000045", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000048", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 1067.3496003245536, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000051", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000060", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000061", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000062", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000063", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5336.748001622768, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000064", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3842.4585611683933, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S14000065", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3842.4585611683938, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000066", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4440.174337350143, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S14000067", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2284.1281446945445, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000068", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3970.5405132073397, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S14000069", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5048.563609535139, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000070", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4909.808161492947, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000071", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6974.759764497084, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000072", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2679.04749681463, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S14000073", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6343.893064035226, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000074", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3095.313840941206, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000075", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3202.0488009736614, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000076", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3298.433704275697, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000077", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6553.5265459927605, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000078", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5400.788977642242, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@S14000079", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4023.9079932235677, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000080", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3917.173033191112, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3927.8465291943576, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5838.402313775308, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6126.586705862939, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5603.585401703906, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4546.909297382599, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3564.9476650840093, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3863.5429589137784, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3949.299199379099, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3106.5605610022317, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4265.593986881217, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3717.441276298696, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@S14000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3874.47904917813, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@S14000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3298.110265002871, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3885.152545181375, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@S14000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3757.0705931424286, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2673.657909723882, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6465.04935930159, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3927.8465291943576, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5635.6058897136445, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4589.603281395581, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4765.338619630836, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2689.7209928178754, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5753.014345749344, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3082.8438159077114, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3326.6433731303596, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5390.115481638996, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@S14000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2860.496928869804, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@S14000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5817.0553217688175, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@S14000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3330.130753012608, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@S14000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W06000001", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@W06000002", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@W06000003", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W06000004", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@W06000005", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4237.489041733421, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W06000006", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W06000008", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W06000009", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 12712.467125200264, + "kind": "calibration_drift", + "ledger_value": 11000.0, + "name": "hmrc.self_employment_income.count@W06000010", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8474.978083466842, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W06000011", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W06000012", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W06000013", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@W06000014", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 14831.211646066975, + "kind": "calibration_drift", + "ledger_value": 15000.0, + "name": "hmrc.self_employment_income.count@W06000015", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 9534.350343900198, + "kind": "calibration_drift", + "ledger_value": 9000.0, + "name": "hmrc.self_employment_income.count@W06000016", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W06000018", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@W06000019", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3178.116781300066, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W06000020", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6356.233562600132, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W06000021", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5296.861302166776, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W06000022", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 13771.839385633619, + "kind": "calibration_drift", + "ledger_value": 12000.0, + "name": "hmrc.self_employment_income.count@W06000023", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2118.7445208667104, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@W06000024", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2913.864408886032, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "hmrc.self_employment_income.count@W07000081", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4002.561001217077, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W07000082", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5678.299873726625, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W07000083", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3255.4162809898885, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W07000084", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7396.732730249158, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@W07000085", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3319.457257009362, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000086", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7567.508666301086, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W07000087", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3714.3766091294474, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000088", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3842.4585611683933, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000089", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4397.480353337161, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W07000090", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4055.9284812333044, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000091", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4546.909297382598, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W07000092", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6884.404922093371, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W07000093", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4490.688506553623, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W07000094", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 5069.91060154163, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000095", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 7886.128373724702, + "kind": "calibration_drift", + "ledger_value": 8000.0, + "name": "hmrc.self_employment_income.count@W07000096", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4589.603281395581, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000097", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4226.704417285233, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000098", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4386.806857333916, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000099", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6937.772402109598, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W07000100", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 6147.933697869429, + "kind": "calibration_drift", + "ledger_value": 6000.0, + "name": "hmrc.self_employment_income.count@W07000101", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 8993.21296907124, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "hmrc.self_employment_income.count@W07000102", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3703.7031131262015, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000103", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3191.3753049704155, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000104", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3938.5200251976034, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000105", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4013.2344972203223, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W07000106", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4248.051409291724, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000107", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2775.1089608438397, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W07000108", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 2839.1499368633126, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W07000109", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4909.808161492947, + "kind": "calibration_drift", + "ledger_value": 5000.0, + "name": "hmrc.self_employment_income.count@W07000110", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 3371.1338861735903, + "kind": "calibration_drift", + "ledger_value": 3000.0, + "name": "hmrc.self_employment_income.count@W07000111", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 4269.398401298215, + "kind": "calibration_drift", + "ledger_value": 4000.0, + "name": "hmrc.self_employment_income.count@W07000112", + "period": 2025, + "reason": "Scaling and operation class: both sides read the same SPI tables for tax year 2023-24; ours resolves counts at identity and amounts as the declared count_x_mean operation, while the incumbent multiplies every column by a national income-projection ratio for the target year." + }, + { + "fixture_value": 10367.922051305917, + "kind": "calibration_drift", + "ledger_value": 10900.0, + "name": "ons.age.0_10@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18521.71394109736, + "kind": "calibration_drift", + "ledger_value": 19085.0, + "name": "ons.age.0_10@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13800.892960203686, + "kind": "calibration_drift", + "ledger_value": 14158.0, + "name": "ons.age.0_10@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22076.180139806067, + "kind": "calibration_drift", + "ledger_value": 23029.0, + "name": "ons.age.0_10@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11360.295578481631, + "kind": "calibration_drift", + "ledger_value": 11650.0, + "name": "ons.age.0_10@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14043.883539825556, + "kind": "calibration_drift", + "ledger_value": 14465.0, + "name": "ons.age.0_10@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22301.675397695162, + "kind": "calibration_drift", + "ledger_value": 22628.0, + "name": "ons.age.0_10@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20569.638546150476, + "kind": "calibration_drift", + "ledger_value": 21715.0, + "name": "ons.age.0_10@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15172.331791589517, + "kind": "calibration_drift", + "ledger_value": 15327.0, + "name": "ons.age.0_10@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32273.036823058188, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "ons.age.0_10@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31127.093249561454, + "kind": "calibration_drift", + "ledger_value": 32246.0, + "name": "ons.age.0_10@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17023.92000830816, + "kind": "calibration_drift", + "ledger_value": 17390.0, + "name": "ons.age.0_10@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17331.060100950202, + "kind": "calibration_drift", + "ledger_value": 17734.0, + "name": "ons.age.0_10@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17368.966631371215, + "kind": "calibration_drift", + "ledger_value": 17526.0, + "name": "ons.age.0_10@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31356.476356724495, + "kind": "calibration_drift", + "ledger_value": 32468.0, + "name": "ons.age.0_10@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45957.294305043375, + "kind": "calibration_drift", + "ledger_value": 47218.0, + "name": "ons.age.0_10@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3258.017691570023, + "kind": "calibration_drift", + "ledger_value": 3360.0, + "name": "ons.age.0_10@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35855.68992900303, + "kind": "calibration_drift", + "ledger_value": 36436.0, + "name": "ons.age.0_10@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17153.190996666995, + "kind": "calibration_drift", + "ledger_value": 17690.0, + "name": "ons.age.0_10@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22203.507203527926, + "kind": "calibration_drift", + "ledger_value": 22907.0, + "name": "ons.age.0_10@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31895.915443485046, + "kind": "calibration_drift", + "ledger_value": 33276.0, + "name": "ons.age.0_10@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18345.78876145113, + "kind": "calibration_drift", + "ledger_value": 18646.0, + "name": "ons.age.0_10@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48942.19058511842, + "kind": "calibration_drift", + "ledger_value": 49545.0, + "name": "ons.age.0_10@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22168.516560062377, + "kind": "calibration_drift", + "ledger_value": 22889.0, + "name": "ons.age.0_10@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32582.120840337207, + "kind": "calibration_drift", + "ledger_value": 33726.0, + "name": "ons.age.0_10@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26612.32828018712, + "kind": "calibration_drift", + "ledger_value": 26909.0, + "name": "ons.age.0_10@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12307.958839006922, + "kind": "calibration_drift", + "ledger_value": 12209.0, + "name": "ons.age.0_10@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27776.73913773512, + "kind": "calibration_drift", + "ledger_value": 28482.0, + "name": "ons.age.0_10@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29493.224592184004, + "kind": "calibration_drift", + "ledger_value": 30234.0, + "name": "ons.age.0_10@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32721.111451880915, + "kind": "calibration_drift", + "ledger_value": 33969.0, + "name": "ons.age.0_10@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20377.190007089957, + "kind": "calibration_drift", + "ledger_value": 20817.0, + "name": "ons.age.0_10@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24442.908385323073, + "kind": "calibration_drift", + "ledger_value": 25240.0, + "name": "ons.age.0_10@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35513.55919289544, + "kind": "calibration_drift", + "ledger_value": 36979.0, + "name": "ons.age.0_10@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14566.799267171818, + "kind": "calibration_drift", + "ledger_value": 15060.0, + "name": "ons.age.0_10@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17130.835863341785, + "kind": "calibration_drift", + "ledger_value": 17486.0, + "name": "ons.age.0_10@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20570.610508468963, + "kind": "calibration_drift", + "ledger_value": 20991.0, + "name": "ons.age.0_10@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23745.039440649063, + "kind": "calibration_drift", + "ledger_value": 24638.0, + "name": "ons.age.0_10@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16489.34073314005, + "kind": "calibration_drift", + "ledger_value": 16901.0, + "name": "ons.age.0_10@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21415.245763234583, + "kind": "calibration_drift", + "ledger_value": 21867.0, + "name": "ons.age.0_10@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37597.44640373259, + "kind": "calibration_drift", + "ledger_value": 38811.0, + "name": "ons.age.0_10@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23095.768611899428, + "kind": "calibration_drift", + "ledger_value": 23427.0, + "name": "ons.age.0_10@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22623.394925114517, + "kind": "calibration_drift", + "ledger_value": 22934.0, + "name": "ons.age.0_10@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27102.19728870481, + "kind": "calibration_drift", + "ledger_value": 27146.0, + "name": "ons.age.0_10@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11653.828198664849, + "kind": "calibration_drift", + "ledger_value": 11713.0, + "name": "ons.age.0_10@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50214.48926001853, + "kind": "calibration_drift", + "ledger_value": 51614.0, + "name": "ons.age.0_10@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42256.06179624306, + "kind": "calibration_drift", + "ledger_value": 43859.0, + "name": "ons.age.0_10@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36306.68044478122, + "kind": "calibration_drift", + "ledger_value": 37191.0, + "name": "ons.age.0_10@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29562.233916796613, + "kind": "calibration_drift", + "ledger_value": 30300.0, + "name": "ons.age.0_10@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52890.30152281455, + "kind": "calibration_drift", + "ledger_value": 53559.0, + "name": "ons.age.0_10@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 186.6167651495956, + "kind": "calibration_drift", + "ledger_value": 198.0, + "name": "ons.age.0_10@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52233.25499551702, + "kind": "calibration_drift", + "ledger_value": 53250.0, + "name": "ons.age.0_10@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22667.133229446452, + "kind": "calibration_drift", + "ledger_value": 23517.0, + "name": "ons.age.0_10@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37147.427850272885, + "kind": "calibration_drift", + "ledger_value": 39233.0, + "name": "ons.age.0_10@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29431.019003800804, + "kind": "calibration_drift", + "ledger_value": 30193.0, + "name": "ons.age.0_10@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37981.37151953514, + "kind": "calibration_drift", + "ledger_value": 38187.0, + "name": "ons.age.0_10@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31421.59783206316, + "kind": "calibration_drift", + "ledger_value": 32440.0, + "name": "ons.age.0_10@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 65056.3538633223, + "kind": "calibration_drift", + "ledger_value": 67479.0, + "name": "ons.age.0_10@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41481.40782840855, + "kind": "calibration_drift", + "ledger_value": 42914.0, + "name": "ons.age.0_10@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49722.67632686386, + "kind": "calibration_drift", + "ledger_value": 50813.0, + "name": "ons.age.0_10@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26357.674152743402, + "kind": "calibration_drift", + "ledger_value": 27031.0, + "name": "ons.age.0_10@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19277.900624880618, + "kind": "calibration_drift", + "ledger_value": 19696.0, + "name": "ons.age.0_10@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57232.057199498115, + "kind": "calibration_drift", + "ledger_value": 58717.0, + "name": "ons.age.0_10@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55739.123078301345, + "kind": "calibration_drift", + "ledger_value": 57042.0, + "name": "ons.age.0_10@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12590.799873686778, + "kind": "calibration_drift", + "ledger_value": 12731.0, + "name": "ons.age.0_10@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9557.305477687361, + "kind": "calibration_drift", + "ledger_value": 9989.0, + "name": "ons.age.0_10@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10822.800416358057, + "kind": "calibration_drift", + "ledger_value": 11091.0, + "name": "ons.age.0_10@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20049.638705759677, + "kind": "calibration_drift", + "ledger_value": 20879.0, + "name": "ons.age.0_10@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19122.386653922622, + "kind": "calibration_drift", + "ledger_value": 19835.0, + "name": "ons.age.0_10@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12171.884114418675, + "kind": "calibration_drift", + "ledger_value": 12764.0, + "name": "ons.age.0_10@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8391.922657820876, + "kind": "calibration_drift", + "ledger_value": 8624.0, + "name": "ons.age.0_10@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10020.931503605889, + "kind": "calibration_drift", + "ledger_value": 10276.0, + "name": "ons.age.0_10@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5569.344084933244, + "kind": "calibration_drift", + "ledger_value": 5646.0, + "name": "ons.age.0_10@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11168.8190017396, + "kind": "calibration_drift", + "ledger_value": 11141.0, + "name": "ons.age.0_10@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8562.988025874673, + "kind": "calibration_drift", + "ledger_value": 8799.0, + "name": "ons.age.0_10@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10218.239854258847, + "kind": "calibration_drift", + "ledger_value": 10628.0, + "name": "ons.age.0_10@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12510.127001252316, + "kind": "calibration_drift", + "ledger_value": 13258.0, + "name": "ons.age.0_10@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13920.444325377646, + "kind": "calibration_drift", + "ledger_value": 14276.0, + "name": "ons.age.0_10@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11723.809485595948, + "kind": "calibration_drift", + "ledger_value": 11936.0, + "name": "ons.age.0_10@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8007.025579699836, + "kind": "calibration_drift", + "ledger_value": 8215.0, + "name": "ons.age.0_10@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9295.84761401423, + "kind": "calibration_drift", + "ledger_value": 9432.0, + "name": "ons.age.0_10@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7829.1564754166275, + "kind": "calibration_drift", + "ledger_value": 8094.0, + "name": "ons.age.0_10@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12280.743894089272, + "kind": "calibration_drift", + "ledger_value": 12364.0, + "name": "ons.age.0_10@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5845.381383383687, + "kind": "calibration_drift", + "ledger_value": 5930.0, + "name": "ons.age.0_10@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4713.045282345776, + "kind": "calibration_drift", + "ledger_value": 4831.0, + "name": "ons.age.0_10@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9600.07181970081, + "kind": "calibration_drift", + "ledger_value": 9756.0, + "name": "ons.age.0_10@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9450.38962265374, + "kind": "calibration_drift", + "ledger_value": 9413.0, + "name": "ons.age.0_10@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9173.380361884809, + "kind": "calibration_drift", + "ledger_value": 9343.0, + "name": "ons.age.0_10@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7589.081782750221, + "kind": "calibration_drift", + "ledger_value": 8017.0, + "name": "ons.age.0_10@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15652.48117692233, + "kind": "calibration_drift", + "ledger_value": 16173.0, + "name": "ons.age.0_10@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24219.357052070955, + "kind": "calibration_drift", + "ledger_value": 25174.0, + "name": "ons.age.0_10@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17401.0413878813, + "kind": "calibration_drift", + "ledger_value": 18219.0, + "name": "ons.age.0_10@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8847.772985191503, + "kind": "calibration_drift", + "ledger_value": 9191.0, + "name": "ons.age.0_10@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8838.053362006629, + "kind": "calibration_drift", + "ledger_value": 9199.0, + "name": "ons.age.0_10@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20586.161905564764, + "kind": "calibration_drift", + "ledger_value": 21447.0, + "name": "ons.age.0_10@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22147.133389055653, + "kind": "calibration_drift", + "ledger_value": 22706.0, + "name": "ons.age.0_10@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15291.883156763477, + "kind": "calibration_drift", + "ledger_value": 15789.0, + "name": "ons.age.0_10@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12891.136230099408, + "kind": "calibration_drift", + "ledger_value": 13414.0, + "name": "ons.age.0_10@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6423.6989628837355, + "kind": "calibration_drift", + "ledger_value": 6691.0, + "name": "ons.age.0_10@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8920.670159078065, + "kind": "calibration_drift", + "ledger_value": 9450.0, + "name": "ons.age.0_10@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14129.416223852453, + "kind": "calibration_drift", + "ledger_value": 14735.0, + "name": "ons.age.0_10@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10323.211784655494, + "kind": "calibration_drift", + "ledger_value": 10714.0, + "name": "ons.age.0_10@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11877.37953191697, + "kind": "calibration_drift", + "ledger_value": 12015.0, + "name": "ons.age.0_10@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8279.175028876329, + "kind": "calibration_drift", + "ledger_value": 8361.0, + "name": "ons.age.0_10@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8168.371324568757, + "kind": "calibration_drift", + "ledger_value": 8543.0, + "name": "ons.age.0_10@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15177.191603181955, + "kind": "calibration_drift", + "ledger_value": 15630.0, + "name": "ons.age.0_10@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11978.463613039667, + "kind": "calibration_drift", + "ledger_value": 12335.0, + "name": "ons.age.0_10@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10979.28634963454, + "kind": "calibration_drift", + "ledger_value": 11592.0, + "name": "ons.age.0_10@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21499.806484942994, + "kind": "calibration_drift", + "ledger_value": 22221.0, + "name": "ons.age.0_10@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12537.341946169967, + "kind": "calibration_drift", + "ledger_value": 12873.0, + "name": "ons.age.0_10@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15557.228869710558, + "kind": "calibration_drift", + "ledger_value": 15899.0, + "name": "ons.age.0_10@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10521.492097626939, + "kind": "calibration_drift", + "ledger_value": 10670.0, + "name": "ons.age.0_10@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8369.567524495666, + "kind": "calibration_drift", + "ledger_value": 8455.0, + "name": "ons.age.0_10@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10865.566758371506, + "kind": "calibration_drift", + "ledger_value": 11170.0, + "name": "ons.age.0_10@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12610.239120056527, + "kind": "calibration_drift", + "ledger_value": 12989.0, + "name": "ons.age.0_10@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14633.864667147454, + "kind": "calibration_drift", + "ledger_value": 14784.0, + "name": "ons.age.0_10@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12146.613094138002, + "kind": "calibration_drift", + "ledger_value": 12659.0, + "name": "ons.age.0_10@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14460.855374456683, + "kind": "calibration_drift", + "ledger_value": 14783.0, + "name": "ons.age.0_10@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13482.089319739795, + "kind": "calibration_drift", + "ledger_value": 14039.0, + "name": "ons.age.0_10@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11938.613157981681, + "kind": "calibration_drift", + "ledger_value": 12466.0, + "name": "ons.age.0_10@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19106.835256826824, + "kind": "calibration_drift", + "ledger_value": 19746.0, + "name": "ons.age.0_10@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12724.93067363805, + "kind": "calibration_drift", + "ledger_value": 12932.0, + "name": "ons.age.0_10@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15034.313142364295, + "kind": "calibration_drift", + "ledger_value": 15374.0, + "name": "ons.age.0_10@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10305.716462922719, + "kind": "calibration_drift", + "ledger_value": 10500.0, + "name": "ons.age.0_10@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13241.0426647549, + "kind": "calibration_drift", + "ledger_value": 13824.0, + "name": "ons.age.0_10@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15876.03251017445, + "kind": "calibration_drift", + "ledger_value": 16342.0, + "name": "ons.age.0_10@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14413.229220850797, + "kind": "calibration_drift", + "ledger_value": 14881.0, + "name": "ons.age.0_10@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16626.387420046784, + "kind": "calibration_drift", + "ledger_value": 17380.0, + "name": "ons.age.0_10@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11769.49171456486, + "kind": "calibration_drift", + "ledger_value": 11979.0, + "name": "ons.age.0_10@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13702.724766036452, + "kind": "calibration_drift", + "ledger_value": 14190.0, + "name": "ons.age.0_10@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21855.544693509408, + "kind": "calibration_drift", + "ledger_value": 22583.0, + "name": "ons.age.0_10@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13659.958424023003, + "kind": "calibration_drift", + "ledger_value": 14167.0, + "name": "ons.age.0_10@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.538880299193, + "kind": "calibration_drift", + "ledger_value": 10786.0, + "name": "ons.age.0_10@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18238.872906417506, + "kind": "calibration_drift", + "ledger_value": 18748.0, + "name": "ons.age.0_10@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14629.004855555017, + "kind": "calibration_drift", + "ledger_value": 15122.0, + "name": "ons.age.0_10@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15643.733516055943, + "kind": "calibration_drift", + "ledger_value": 16050.0, + "name": "ons.age.0_10@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12940.706308342269, + "kind": "calibration_drift", + "ledger_value": 13556.0, + "name": "ons.age.0_10@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11463.323584241305, + "kind": "calibration_drift", + "ledger_value": 12191.0, + "name": "ons.age.0_10@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12162.1644912338, + "kind": "calibration_drift", + "ledger_value": 12421.0, + "name": "ons.age.0_10@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6900.932461261087, + "kind": "calibration_drift", + "ledger_value": 7153.0, + "name": "ons.age.0_10@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9897.492289157979, + "kind": "calibration_drift", + "ledger_value": 10307.0, + "name": "ons.age.0_10@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13471.397734236432, + "kind": "calibration_drift", + "ledger_value": 13737.0, + "name": "ons.age.0_10@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11976.519688402692, + "kind": "calibration_drift", + "ledger_value": 12611.0, + "name": "ons.age.0_10@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18726.79799029822, + "kind": "calibration_drift", + "ledger_value": 19633.0, + "name": "ons.age.0_10@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5734.577679076115, + "kind": "calibration_drift", + "ledger_value": 5860.0, + "name": "ons.age.0_10@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7721.268658064518, + "kind": "calibration_drift", + "ledger_value": 8016.0, + "name": "ons.age.0_10@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11360.295578481631, + "kind": "calibration_drift", + "ledger_value": 11750.0, + "name": "ons.age.0_10@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11123.136772770687, + "kind": "calibration_drift", + "ledger_value": 11719.0, + "name": "ons.age.0_10@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10196.856683252121, + "kind": "calibration_drift", + "ledger_value": 10462.0, + "name": "ons.age.0_10@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11678.127256627036, + "kind": "calibration_drift", + "ledger_value": 11860.0, + "name": "ons.age.0_10@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18367.171932457855, + "kind": "calibration_drift", + "ledger_value": 18750.0, + "name": "ons.age.0_10@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10292.108990463894, + "kind": "calibration_drift", + "ledger_value": 10857.0, + "name": "ons.age.0_10@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11573.15532623039, + "kind": "calibration_drift", + "ledger_value": 11831.0, + "name": "ons.age.0_10@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5091.138624237405, + "kind": "calibration_drift", + "ledger_value": 5205.0, + "name": "ons.age.0_10@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11520.669361032065, + "kind": "calibration_drift", + "ledger_value": 11924.0, + "name": "ons.age.0_10@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6480.072777356009, + "kind": "calibration_drift", + "ledger_value": 6858.0, + "name": "ons.age.0_10@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7894.277950755289, + "kind": "calibration_drift", + "ledger_value": 7940.0, + "name": "ons.age.0_10@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11624.669329110226, + "kind": "calibration_drift", + "ledger_value": 11643.0, + "name": "ons.age.0_10@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10182.27724847481, + "kind": "calibration_drift", + "ledger_value": 10263.0, + "name": "ons.age.0_10@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11466.239471196766, + "kind": "calibration_drift", + "ledger_value": 11717.0, + "name": "ons.age.0_10@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9874.16519351428, + "kind": "calibration_drift", + "ledger_value": 10141.0, + "name": "ons.age.0_10@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14446.275939679372, + "kind": "calibration_drift", + "ledger_value": 14568.0, + "name": "ons.age.0_10@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9335.698069072218, + "kind": "calibration_drift", + "ledger_value": 9406.0, + "name": "ons.age.0_10@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13684.257481985189, + "kind": "calibration_drift", + "ledger_value": 14182.0, + "name": "ons.age.0_10@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12491.659717201055, + "kind": "calibration_drift", + "ledger_value": 12968.0, + "name": "ons.age.0_10@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9875.137155832766, + "kind": "calibration_drift", + "ledger_value": 10124.0, + "name": "ons.age.0_10@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15034.313142364295, + "kind": "calibration_drift", + "ledger_value": 15130.0, + "name": "ons.age.0_10@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7401.493055282138, + "kind": "calibration_drift", + "ledger_value": 7403.0, + "name": "ons.age.0_10@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13496.668754517106, + "kind": "calibration_drift", + "ledger_value": 13802.0, + "name": "ons.age.0_10@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14827.285168526463, + "kind": "calibration_drift", + "ledger_value": 15071.0, + "name": "ons.age.0_10@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13875.734058727223, + "kind": "calibration_drift", + "ledger_value": 14110.0, + "name": "ons.age.0_10@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12635.510140337201, + "kind": "calibration_drift", + "ledger_value": 13156.0, + "name": "ons.age.0_10@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10860.706946779068, + "kind": "calibration_drift", + "ledger_value": 11102.0, + "name": "ons.age.0_10@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12049.416862289252, + "kind": "calibration_drift", + "ledger_value": 12413.0, + "name": "ons.age.0_10@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12246.72521294221, + "kind": "calibration_drift", + "ledger_value": 12569.0, + "name": "ons.age.0_10@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12597.60360991619, + "kind": "calibration_drift", + "ledger_value": 12892.0, + "name": "ons.age.0_10@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12841.566151856547, + "kind": "calibration_drift", + "ledger_value": 13127.0, + "name": "ons.age.0_10@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19068.92872640581, + "kind": "calibration_drift", + "ledger_value": 19973.0, + "name": "ons.age.0_10@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14268.406835396163, + "kind": "calibration_drift", + "ledger_value": 14705.0, + "name": "ons.age.0_10@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16356.181895507263, + "kind": "calibration_drift", + "ledger_value": 17083.0, + "name": "ons.age.0_10@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16708.03225479973, + "kind": "calibration_drift", + "ledger_value": 17394.0, + "name": "ons.age.0_10@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12129.117772405227, + "kind": "calibration_drift", + "ledger_value": 12597.0, + "name": "ons.age.0_10@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10918.05272356983, + "kind": "calibration_drift", + "ledger_value": 11110.0, + "name": "ons.age.0_10@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14515.285264291982, + "kind": "calibration_drift", + "ledger_value": 14957.0, + "name": "ons.age.0_10@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10850.987323594194, + "kind": "calibration_drift", + "ledger_value": 11160.0, + "name": "ons.age.0_10@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12054.27667388169, + "kind": "calibration_drift", + "ledger_value": 12271.0, + "name": "ons.age.0_10@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10312.520199152132, + "kind": "calibration_drift", + "ledger_value": 10598.0, + "name": "ons.age.0_10@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13645.37898924569, + "kind": "calibration_drift", + "ledger_value": 14155.0, + "name": "ons.age.0_10@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8316.109596978853, + "kind": "calibration_drift", + "ledger_value": 8518.0, + "name": "ons.age.0_10@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8942.05333008479, + "kind": "calibration_drift", + "ledger_value": 9143.0, + "name": "ons.age.0_10@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8726.27769538057, + "kind": "calibration_drift", + "ledger_value": 8972.0, + "name": "ons.age.0_10@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16643.88274177956, + "kind": "calibration_drift", + "ledger_value": 17038.0, + "name": "ons.age.0_10@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9990.800671732777, + "kind": "calibration_drift", + "ledger_value": 10330.0, + "name": "ons.age.0_10@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17029.751782219086, + "kind": "calibration_drift", + "ledger_value": 17255.0, + "name": "ons.age.0_10@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9529.118570451225, + "kind": "calibration_drift", + "ledger_value": 9673.0, + "name": "ons.age.0_10@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14564.855342534844, + "kind": "calibration_drift", + "ledger_value": 14985.0, + "name": "ons.age.0_10@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8377.343223043565, + "kind": "calibration_drift", + "ledger_value": 8547.0, + "name": "ons.age.0_10@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18507.13450632005, + "kind": "calibration_drift", + "ledger_value": 19017.0, + "name": "ons.age.0_10@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9432.894300920965, + "kind": "calibration_drift", + "ledger_value": 9957.0, + "name": "ons.age.0_10@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12152.444868048926, + "kind": "calibration_drift", + "ledger_value": 12590.0, + "name": "ons.age.0_10@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9601.043782019298, + "kind": "calibration_drift", + "ledger_value": 9988.0, + "name": "ons.age.0_10@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10084.109054307575, + "kind": "calibration_drift", + "ledger_value": 10339.0, + "name": "ons.age.0_10@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13978.762064486895, + "kind": "calibration_drift", + "ledger_value": 14346.0, + "name": "ons.age.0_10@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12256.444836127086, + "kind": "calibration_drift", + "ledger_value": 12542.0, + "name": "ons.age.0_10@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6761.941849717377, + "kind": "calibration_drift", + "ledger_value": 7008.0, + "name": "ons.age.0_10@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15991.69602607446, + "kind": "calibration_drift", + "ledger_value": 16842.0, + "name": "ons.age.0_10@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13579.285551588542, + "kind": "calibration_drift", + "ledger_value": 14249.0, + "name": "ons.age.0_10@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13502.50052842803, + "kind": "calibration_drift", + "ledger_value": 14246.0, + "name": "ons.age.0_10@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15575.696153761819, + "kind": "calibration_drift", + "ledger_value": 16250.0, + "name": "ons.age.0_10@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6517.979307777021, + "kind": "calibration_drift", + "ledger_value": 6526.0, + "name": "ons.age.0_10@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14774.799203328139, + "kind": "calibration_drift", + "ledger_value": 15198.0, + "name": "ons.age.0_10@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11302.949801690871, + "kind": "calibration_drift", + "ledger_value": 11700.0, + "name": "ons.age.0_10@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15630.126043597118, + "kind": "calibration_drift", + "ledger_value": 15765.0, + "name": "ons.age.0_10@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15105.26639161388, + "kind": "calibration_drift", + "ledger_value": 15651.0, + "name": "ons.age.0_10@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17739.284274714944, + "kind": "calibration_drift", + "ledger_value": 18512.0, + "name": "ons.age.0_10@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10595.361233831987, + "kind": "calibration_drift", + "ledger_value": 10884.0, + "name": "ons.age.0_10@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10631.323839616023, + "kind": "calibration_drift", + "ledger_value": 10665.0, + "name": "ons.age.0_10@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6807.624078686289, + "kind": "calibration_drift", + "ledger_value": 7016.0, + "name": "ons.age.0_10@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9957.753952904202, + "kind": "calibration_drift", + "ledger_value": 10035.0, + "name": "ons.age.0_10@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10621.60421643115, + "kind": "calibration_drift", + "ledger_value": 10817.0, + "name": "ons.age.0_10@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12964.033403985968, + "kind": "calibration_drift", + "ledger_value": 13306.0, + "name": "ons.age.0_10@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9699.211976186534, + "kind": "calibration_drift", + "ledger_value": 9873.0, + "name": "ons.age.0_10@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17747.059973262843, + "kind": "calibration_drift", + "ledger_value": 18007.0, + "name": "ons.age.0_10@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13514.164076249881, + "kind": "calibration_drift", + "ledger_value": 13675.0, + "name": "ons.age.0_10@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16933.527512688826, + "kind": "calibration_drift", + "ledger_value": 17743.0, + "name": "ons.age.0_10@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10870.426569963944, + "kind": "calibration_drift", + "ledger_value": 11062.0, + "name": "ons.age.0_10@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21717.526044284186, + "kind": "calibration_drift", + "ledger_value": 21896.0, + "name": "ons.age.0_10@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20297.489096973983, + "kind": "calibration_drift", + "ledger_value": 21030.0, + "name": "ons.age.0_10@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38265.18451653348, + "kind": "calibration_drift", + "ledger_value": 39706.0, + "name": "ons.age.0_10@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22497.039823711144, + "kind": "calibration_drift", + "ledger_value": 23325.0, + "name": "ons.age.0_10@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 68785.77327935875, + "kind": "calibration_drift", + "ledger_value": 69401.0, + "name": "ons.age.0_10@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32883.42915906832, + "kind": "calibration_drift", + "ledger_value": 33999.0, + "name": "ons.age.0_10@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29611.803995039474, + "kind": "calibration_drift", + "ledger_value": 30974.0, + "name": "ons.age.0_10@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33965.22321954489, + "kind": "calibration_drift", + "ledger_value": 35399.0, + "name": "ons.age.0_10@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33782.49430366924, + "kind": "calibration_drift", + "ledger_value": 34496.0, + "name": "ons.age.0_10@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26864.066520675377, + "kind": "calibration_drift", + "ledger_value": 27695.0, + "name": "ons.age.0_10@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28185.935273818348, + "kind": "calibration_drift", + "ledger_value": 28578.0, + "name": "ons.age.0_10@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36862.64289095606, + "kind": "calibration_drift", + "ledger_value": 38202.0, + "name": "ons.age.0_10@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19473.265050896603, + "kind": "calibration_drift", + "ledger_value": 20373.0, + "name": "ons.age.0_10@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52606.48852581621, + "kind": "calibration_drift", + "ledger_value": 53849.0, + "name": "ons.age.0_10@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19274.98473792516, + "kind": "calibration_drift", + "ledger_value": 19924.0, + "name": "ons.age.0_10@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28086.795117332626, + "kind": "calibration_drift", + "ledger_value": 28841.0, + "name": "ons.age.0_10@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33378.157979178446, + "kind": "calibration_drift", + "ledger_value": 34219.0, + "name": "ons.age.0_10@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26861.150633719917, + "kind": "calibration_drift", + "ledger_value": 27727.0, + "name": "ons.age.0_10@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34803.05473808109, + "kind": "calibration_drift", + "ledger_value": 36380.0, + "name": "ons.age.0_10@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30256.215012196673, + "kind": "calibration_drift", + "ledger_value": 31490.0, + "name": "ons.age.0_10@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 60480.35526788326, + "kind": "calibration_drift", + "ledger_value": 61921.0, + "name": "ons.age.0_10@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32260.40131291785, + "kind": "calibration_drift", + "ledger_value": 33054.0, + "name": "ons.age.0_10@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21747.6568761573, + "kind": "calibration_drift", + "ledger_value": 22149.0, + "name": "ons.age.0_10@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15750.649371089565, + "kind": "calibration_drift", + "ledger_value": 16148.0, + "name": "ons.age.0_10@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28621.374392500737, + "kind": "calibration_drift", + "ledger_value": 29737.0, + "name": "ons.age.0_10@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 150954.4957219716, + "kind": "calibration_drift", + "ledger_value": 154027.0, + "name": "ons.age.0_10@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42925.743833680935, + "kind": "calibration_drift", + "ledger_value": 44470.0, + "name": "ons.age.0_10@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36661.446691029145, + "kind": "calibration_drift", + "ledger_value": 37891.0, + "name": "ons.age.0_10@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45412.99540669039, + "kind": "calibration_drift", + "ledger_value": 46990.0, + "name": "ons.age.0_10@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24480.814915744086, + "kind": "calibration_drift", + "ledger_value": 25008.0, + "name": "ons.age.0_10@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37007.46527641069, + "kind": "calibration_drift", + "ledger_value": 38353.0, + "name": "ons.age.0_10@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34680.58748595167, + "kind": "calibration_drift", + "ledger_value": 36459.0, + "name": "ons.age.0_10@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 73182.93080819609, + "kind": "calibration_drift", + "ledger_value": 74726.0, + "name": "ons.age.0_10@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22784.740669983436, + "kind": "calibration_drift", + "ledger_value": 23243.0, + "name": "ons.age.0_10@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50836.54514385051, + "kind": "calibration_drift", + "ledger_value": 52057.0, + "name": "ons.age.0_10@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 92613.42951707925, + "kind": "calibration_drift", + "ledger_value": 94180.0, + "name": "ons.age.0_10@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40216.88485205634, + "kind": "calibration_drift", + "ledger_value": 41569.0, + "name": "ons.age.0_10@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20581.30209397233, + "kind": "calibration_drift", + "ledger_value": 21120.0, + "name": "ons.age.0_10@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 371.2896056622162, + "kind": "calibration_drift", + "ledger_value": 425.0, + "name": "ons.age.0_10@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34361.78384548778, + "kind": "calibration_drift", + "ledger_value": 35977.0, + "name": "ons.age.0_10@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48467.87297369653, + "kind": "calibration_drift", + "ledger_value": 49424.0, + "name": "ons.age.0_10@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30267.878560018522, + "kind": "calibration_drift", + "ledger_value": 31052.0, + "name": "ons.age.0_10@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39311.9879335445, + "kind": "calibration_drift", + "ledger_value": 40228.0, + "name": "ons.age.0_10@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38171.876133958685, + "kind": "calibration_drift", + "ledger_value": 38938.0, + "name": "ons.age.0_10@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19133.078239425984, + "kind": "calibration_drift", + "ledger_value": 18624.0, + "name": "ons.age.0_10@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48734.190648962096, + "kind": "calibration_drift", + "ledger_value": 50673.0, + "name": "ons.age.0_10@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42320.211309263235, + "kind": "calibration_drift", + "ledger_value": 43069.0, + "name": "ons.age.0_10@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40944.88462860346, + "kind": "calibration_drift", + "ledger_value": 41791.0, + "name": "ons.age.0_10@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35578.6806682341, + "kind": "calibration_drift", + "ledger_value": 35928.0, + "name": "ons.age.0_10@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29647.766600823514, + "kind": "calibration_drift", + "ledger_value": 30393.0, + "name": "ons.age.0_10@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17328.14421399474, + "kind": "calibration_drift", + "ledger_value": 17617.0, + "name": "ons.age.0_10@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28530.9818968814, + "kind": "calibration_drift", + "ledger_value": 28919.0, + "name": "ons.age.0_10@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31583.915539250567, + "kind": "calibration_drift", + "ledger_value": 32204.0, + "name": "ons.age.0_10@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33540.475686365855, + "kind": "calibration_drift", + "ledger_value": 35647.0, + "name": "ons.age.0_10@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40365.595086784924, + "kind": "calibration_drift", + "ledger_value": 41520.0, + "name": "ons.age.0_10@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35910.11981883833, + "kind": "calibration_drift", + "ledger_value": 35699.0, + "name": "ons.age.0_10@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19749.302349347046, + "kind": "calibration_drift", + "ledger_value": 20021.0, + "name": "ons.age.0_10@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12409.04292012962, + "kind": "calibration_drift", + "ledger_value": 12390.0, + "name": "ons.age.0_10@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18757.90078448982, + "kind": "calibration_drift", + "ledger_value": 19111.0, + "name": "ons.age.0_10@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27497.785952329214, + "kind": "calibration_drift", + "ledger_value": 27593.0, + "name": "ons.age.0_10@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34131.42877600624, + "kind": "calibration_drift", + "ledger_value": 34462.0, + "name": "ons.age.0_10@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25456.66508350551, + "kind": "calibration_drift", + "ledger_value": 25603.0, + "name": "ons.age.0_10@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45879.53731956438, + "kind": "calibration_drift", + "ledger_value": 46845.0, + "name": "ons.age.0_10@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41733.1460688968, + "kind": "calibration_drift", + "ledger_value": 42722.0, + "name": "ons.age.0_10@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22287.09596291785, + "kind": "calibration_drift", + "ledger_value": 22353.0, + "name": "ons.age.0_10@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30206.644933953812, + "kind": "calibration_drift", + "ledger_value": 29745.0, + "name": "ons.age.0_10@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25524.702445799634, + "kind": "calibration_drift", + "ledger_value": 25849.0, + "name": "ons.age.0_10@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34551.31649759284, + "kind": "calibration_drift", + "ledger_value": 35158.0, + "name": "ons.age.0_10@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34807.91454967353, + "kind": "calibration_drift", + "ledger_value": 35455.0, + "name": "ons.age.0_10@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33283.87763428516, + "kind": "calibration_drift", + "ledger_value": 33812.0, + "name": "ons.age.0_10@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16304.667892627427, + "kind": "calibration_drift", + "ledger_value": 16218.0, + "name": "ons.age.0_10@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14100.733759554956, + "kind": "calibration_drift", + "ledger_value": 14764.0, + "name": "ons.age.0_10@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10712.702618917723, + "kind": "calibration_drift", + "ledger_value": 10109.0, + "name": "ons.age.0_10@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12723.559577490316, + "kind": "calibration_drift", + "ledger_value": 11930.0, + "name": "ons.age.0_10@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9490.645206897861, + "kind": "calibration_drift", + "ledger_value": 9448.0, + "name": "ons.age.0_10@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9319.225790560866, + "kind": "calibration_drift", + "ledger_value": 8683.0, + "name": "ons.age.0_10@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11152.124521851667, + "kind": "calibration_drift", + "ledger_value": 10675.0, + "name": "ons.age.0_10@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12920.138129151843, + "kind": "calibration_drift", + "ledger_value": 13801.0, + "name": "ons.age.0_10@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12353.746916861563, + "kind": "calibration_drift", + "ledger_value": 12686.0, + "name": "ons.age.0_10@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14450.67161042835, + "kind": "calibration_drift", + "ledger_value": 14881.0, + "name": "ons.age.0_10@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11954.287701632442, + "kind": "calibration_drift", + "ledger_value": 12246.0, + "name": "ons.age.0_10@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23289.76521635685, + "kind": "calibration_drift", + "ledger_value": 22847.0, + "name": "ons.age.0_10@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12260.684744802653, + "kind": "calibration_drift", + "ledger_value": 12161.0, + "name": "ons.age.0_10@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12512.670596445842, + "kind": "calibration_drift", + "ledger_value": 12460.0, + "name": "ons.age.0_10@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9885.942464029393, + "kind": "calibration_drift", + "ledger_value": 9699.0, + "name": "ons.age.0_10@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14686.583605320462, + "kind": "calibration_drift", + "ledger_value": 15015.0, + "name": "ons.age.0_10@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14052.378118435327, + "kind": "calibration_drift", + "ledger_value": 13437.0, + "name": "ons.age.0_10@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11769.623001586762, + "kind": "calibration_drift", + "ledger_value": 12018.0, + "name": "ons.age.0_10@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9250.45485735116, + "kind": "calibration_drift", + "ledger_value": 8548.0, + "name": "ons.age.0_10@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12680.549389661903, + "kind": "calibration_drift", + "ledger_value": 11336.0, + "name": "ons.age.0_10@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10903.580668729946, + "kind": "calibration_drift", + "ledger_value": 10769.0, + "name": "ons.age.0_10@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14013.313014206478, + "kind": "calibration_drift", + "ledger_value": 12775.0, + "name": "ons.age.0_10@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13678.12735083047, + "kind": "calibration_drift", + "ledger_value": 13507.0, + "name": "ons.age.0_10@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11736.297749426203, + "kind": "calibration_drift", + "ledger_value": 9030.0, + "name": "ons.age.0_10@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16922.925985658934, + "kind": "calibration_drift", + "ledger_value": 14206.0, + "name": "ons.age.0_10@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8096.882367202541, + "kind": "calibration_drift", + "ledger_value": 7720.0, + "name": "ons.age.0_10@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8457.197478902435, + "kind": "calibration_drift", + "ledger_value": 7780.0, + "name": "ons.age.0_10@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13513.404544797415, + "kind": "calibration_drift", + "ledger_value": 12750.0, + "name": "ons.age.0_10@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11611.981441795582, + "kind": "calibration_drift", + "ledger_value": 12179.0, + "name": "ons.age.0_10@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12698.558241524936, + "kind": "calibration_drift", + "ledger_value": 12296.0, + "name": "ons.age.0_10@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14094.131888638987, + "kind": "calibration_drift", + "ledger_value": 13335.0, + "name": "ons.age.0_10@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17521.00528175859, + "kind": "calibration_drift", + "ledger_value": 17351.0, + "name": "ons.age.0_10@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16503.820750215596, + "kind": "calibration_drift", + "ledger_value": 16967.0, + "name": "ons.age.0_10@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19574.872428159593, + "kind": "calibration_drift", + "ledger_value": 18982.0, + "name": "ons.age.0_10@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22596.799491970527, + "kind": "calibration_drift", + "ledger_value": 21430.0, + "name": "ons.age.0_10@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14816.294678542035, + "kind": "calibration_drift", + "ledger_value": 14298.0, + "name": "ons.age.0_10@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17159.70751041308, + "kind": "calibration_drift", + "ledger_value": 17764.0, + "name": "ons.age.0_10@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12601.12699970955, + "kind": "calibration_drift", + "ledger_value": 12008.0, + "name": "ons.age.0_10@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17640.045173317627, + "kind": "calibration_drift", + "ledger_value": 17465.0, + "name": "ons.age.0_10@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9694.033538100703, + "kind": "calibration_drift", + "ledger_value": 8833.0, + "name": "ons.age.0_10@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16371.259426069368, + "kind": "calibration_drift", + "ledger_value": 17065.0, + "name": "ons.age.0_10@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16664.28984738731, + "kind": "calibration_drift", + "ledger_value": 16862.0, + "name": "ons.age.0_10@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9644.499582069437, + "kind": "calibration_drift", + "ledger_value": 8738.0, + "name": "ons.age.0_10@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12546.9623696812, + "kind": "calibration_drift", + "ledger_value": 12757.0, + "name": "ons.age.0_10@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9512.066569523327, + "kind": "calibration_drift", + "ledger_value": 9363.0, + "name": "ons.age.0_10@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10620.468893494355, + "kind": "calibration_drift", + "ledger_value": 11440.0, + "name": "ons.age.0_10@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11072.17942152213, + "kind": "calibration_drift", + "ledger_value": 9946.0, + "name": "ons.age.0_10@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10971.986690921616, + "kind": "calibration_drift", + "ledger_value": 10974.0, + "name": "ons.age.0_10@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15178.562557311414, + "kind": "calibration_drift", + "ledger_value": 15089.0, + "name": "ons.age.0_10@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17586.00875526858, + "kind": "calibration_drift", + "ledger_value": 19398.0, + "name": "ons.age.0_10@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11574.997216994721, + "kind": "calibration_drift", + "ledger_value": 11959.0, + "name": "ons.age.0_10@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12434.589501046268, + "kind": "calibration_drift", + "ledger_value": 12309.0, + "name": "ons.age.0_10@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12927.239100313607, + "kind": "calibration_drift", + "ledger_value": 11701.0, + "name": "ons.age.0_10@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12483.901800780746, + "kind": "calibration_drift", + "ledger_value": 10915.0, + "name": "ons.age.0_10@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10711.489536344256, + "kind": "calibration_drift", + "ledger_value": 10006.0, + "name": "ons.age.0_10@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12184.388754653466, + "kind": "calibration_drift", + "ledger_value": 12077.0, + "name": "ons.age.0_10@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20044.680570189925, + "kind": "calibration_drift", + "ledger_value": 19044.0, + "name": "ons.age.0_10@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16575.619458628997, + "kind": "calibration_drift", + "ledger_value": 15965.0, + "name": "ons.age.0_10@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18442.80010069521, + "kind": "calibration_drift", + "ledger_value": 18803.0, + "name": "ons.age.0_10@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11531.473595360361, + "kind": "calibration_drift", + "ledger_value": 11452.0, + "name": "ons.age.0_10@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18632.455205474016, + "kind": "calibration_drift", + "ledger_value": 16872.0, + "name": "ons.age.0_10@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18068.864931808654, + "kind": "calibration_drift", + "ledger_value": 16078.0, + "name": "ons.age.0_10@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16891.15900216998, + "kind": "calibration_drift", + "ledger_value": 16176.0, + "name": "ons.age.0_10@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11122.88232810912, + "kind": "calibration_drift", + "ledger_value": 11577.0, + "name": "ons.age.0_10@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10168.314554768967, + "kind": "calibration_drift", + "ledger_value": 11013.0, + "name": "ons.age.0_10@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8711.254447134472, + "kind": "calibration_drift", + "ledger_value": 8061.0, + "name": "ons.age.0_10@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9706.031469678119, + "kind": "calibration_drift", + "ledger_value": 8544.0, + "name": "ons.age.0_10@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9203.982946081387, + "kind": "calibration_drift", + "ledger_value": 8195.0, + "name": "ons.age.0_10@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9295.03317631113, + "kind": "calibration_drift", + "ledger_value": 8145.0, + "name": "ons.age.0_10@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8787.116489045995, + "kind": "calibration_drift", + "ledger_value": 5420.0, + "name": "ons.age.0_10@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12780.801295022098, + "kind": "calibration_drift", + "ledger_value": 13106.0, + "name": "ons.age.0_10@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11954.906790702375, + "kind": "calibration_drift", + "ledger_value": 11414.0, + "name": "ons.age.0_10@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13066.201160965371, + "kind": "calibration_drift", + "ledger_value": 12711.0, + "name": "ons.age.0_10@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13470.62119354778, + "kind": "calibration_drift", + "ledger_value": 12981.0, + "name": "ons.age.0_10@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9241.573263875347, + "kind": "calibration_drift", + "ledger_value": 9051.0, + "name": "ons.age.0_10@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12419.119883946734, + "kind": "calibration_drift", + "ledger_value": 11382.0, + "name": "ons.age.0_10@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11125.84106609319, + "kind": "calibration_drift", + "ledger_value": 10661.0, + "name": "ons.age.0_10@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13458.54954257278, + "kind": "calibration_drift", + "ledger_value": 13408.0, + "name": "ons.age.0_10@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10139.831770442332, + "kind": "calibration_drift", + "ledger_value": 9511.0, + "name": "ons.age.0_10@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13360.553601689347, + "kind": "calibration_drift", + "ledger_value": 13415.0, + "name": "ons.age.0_10@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13631.41874052197, + "kind": "calibration_drift", + "ledger_value": 14496.0, + "name": "ons.age.0_10@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13631.892138599422, + "kind": "calibration_drift", + "ledger_value": 14141.0, + "name": "ons.age.0_10@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12116.2983311801, + "kind": "calibration_drift", + "ledger_value": 11903.0, + "name": "ons.age.0_10@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14120.325685670676, + "kind": "calibration_drift", + "ledger_value": 14792.0, + "name": "ons.age.0_10@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10651.220043608775, + "kind": "calibration_drift", + "ledger_value": 11365.0, + "name": "ons.age.0_10@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10654.306993572154, + "kind": "calibration_drift", + "ledger_value": 9534.0, + "name": "ons.age.0_10@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10878.845619183134, + "kind": "calibration_drift", + "ledger_value": 10558.0, + "name": "ons.age.0_10@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12034.696337579482, + "kind": "calibration_drift", + "ledger_value": 11092.0, + "name": "ons.age.0_10@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11034.12018858706, + "kind": "calibration_drift", + "ledger_value": 11134.0, + "name": "ons.age.0_10@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10123.568573989902, + "kind": "calibration_drift", + "ledger_value": 9885.0, + "name": "ons.age.0_10@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10908.511898703395, + "kind": "calibration_drift", + "ledger_value": 10914.0, + "name": "ons.age.0_10@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14135.863841885799, + "kind": "calibration_drift", + "ledger_value": 13296.0, + "name": "ons.age.0_10@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9602.958900773112, + "kind": "calibration_drift", + "ledger_value": 9392.0, + "name": "ons.age.0_10@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9307.61189719653, + "kind": "calibration_drift", + "ledger_value": 8953.0, + "name": "ons.age.0_10@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9595.000383836557, + "kind": "calibration_drift", + "ledger_value": 9472.0, + "name": "ons.age.0_10@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14228.6301401463, + "kind": "calibration_drift", + "ledger_value": 14347.0, + "name": "ons.age.0_10@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10774.737491983698, + "kind": "calibration_drift", + "ledger_value": 11059.0, + "name": "ons.age.0_10@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12790.081869832127, + "kind": "calibration_drift", + "ledger_value": 12921.0, + "name": "ons.age.0_10@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14429.673895643584, + "kind": "calibration_drift", + "ledger_value": 11260.0, + "name": "ons.age.0_10@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10573.247435268617, + "kind": "calibration_drift", + "ledger_value": 10020.0, + "name": "ons.age.0_10@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11527.124836412488, + "kind": "calibration_drift", + "ledger_value": 11379.0, + "name": "ons.age.0_10@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9825.012485339892, + "kind": "calibration_drift", + "ledger_value": 8454.0, + "name": "ons.age.0_10@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9997.158735088735, + "kind": "calibration_drift", + "ledger_value": 9460.0, + "name": "ons.age.0_10@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9749.041657506532, + "kind": "calibration_drift", + "ledger_value": 9325.0, + "name": "ons.age.0_10@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10205.5453410685, + "kind": "calibration_drift", + "ledger_value": 10307.0, + "name": "ons.age.0_10@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14444.637737903215, + "kind": "calibration_drift", + "ledger_value": 13521.0, + "name": "ons.age.0_10@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10444.050674686056, + "kind": "calibration_drift", + "ledger_value": 10283.0, + "name": "ons.age.0_10@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14488.87087076504, + "kind": "calibration_drift", + "ledger_value": 13807.0, + "name": "ons.age.0_10@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11672.102997631857, + "kind": "calibration_drift", + "ledger_value": 11099.0, + "name": "ons.age.0_10@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7223.374152165924, + "kind": "calibration_drift", + "ledger_value": 6813.0, + "name": "ons.age.0_10@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15478.756113175028, + "kind": "calibration_drift", + "ledger_value": 8515.0, + "name": "ons.age.0_10@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9461.784461227402, + "kind": "calibration_drift", + "ledger_value": 8206.0, + "name": "ons.age.0_10@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9267.109134517326, + "kind": "calibration_drift", + "ledger_value": 9253.0, + "name": "ons.age.0_10@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11070.769089749723, + "kind": "calibration_drift", + "ledger_value": 8423.0, + "name": "ons.age.0_10@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15131.388751367402, + "kind": "calibration_drift", + "ledger_value": 14871.0, + "name": "ons.age.0_10@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10899.951283469487, + "kind": "calibration_drift", + "ledger_value": 10053.0, + "name": "ons.age.0_10@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9083.069187132443, + "kind": "calibration_drift", + "ledger_value": 10292.0, + "name": "ons.age.0_10@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14438.93723605391, + "kind": "calibration_drift", + "ledger_value": 14353.0, + "name": "ons.age.0_10@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17651.820950494217, + "kind": "calibration_drift", + "ledger_value": 18022.0, + "name": "ons.age.0_10@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14143.753809843316, + "kind": "calibration_drift", + "ledger_value": 13876.0, + "name": "ons.age.0_10@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14306.494261427044, + "kind": "calibration_drift", + "ledger_value": 14116.0, + "name": "ons.age.0_10@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10475.531744484666, + "kind": "calibration_drift", + "ledger_value": 10397.0, + "name": "ons.age.0_10@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15764.1559791183, + "kind": "calibration_drift", + "ledger_value": 16108.0, + "name": "ons.age.0_10@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12420.042372624595, + "kind": "calibration_drift", + "ledger_value": 13186.0, + "name": "ons.age.0_10@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14657.114574999141, + "kind": "calibration_drift", + "ledger_value": 13307.0, + "name": "ons.age.0_10@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12999.215333006054, + "kind": "calibration_drift", + "ledger_value": 13223.0, + "name": "ons.age.0_10@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17595.032906119992, + "kind": "calibration_drift", + "ledger_value": 17823.0, + "name": "ons.age.0_10@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18535.55265128427, + "kind": "calibration_drift", + "ledger_value": 18827.0, + "name": "ons.age.0_10@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11093.945870624928, + "kind": "calibration_drift", + "ledger_value": 10653.0, + "name": "ons.age.0_10@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15192.251651717706, + "kind": "calibration_drift", + "ledger_value": 16686.0, + "name": "ons.age.0_10@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11361.547807599702, + "kind": "calibration_drift", + "ledger_value": 12087.0, + "name": "ons.age.0_10@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11884.26423600948, + "kind": "calibration_drift", + "ledger_value": 12450.0, + "name": "ons.age.0_10@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16927.92625285201, + "kind": "calibration_drift", + "ledger_value": 16749.0, + "name": "ons.age.0_10@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7973.670655085972, + "kind": "calibration_drift", + "ledger_value": 7664.0, + "name": "ons.age.0_10@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13545.50685192456, + "kind": "calibration_drift", + "ledger_value": 14753.0, + "name": "ons.age.0_10@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13351.344602950023, + "kind": "calibration_drift", + "ledger_value": 14690.0, + "name": "ons.age.0_10@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13774.414547292012, + "kind": "calibration_drift", + "ledger_value": 13754.0, + "name": "ons.age.0_10@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10212.715349449893, + "kind": "calibration_drift", + "ledger_value": 10198.0, + "name": "ons.age.0_10@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12077.795287547417, + "kind": "calibration_drift", + "ledger_value": 11503.0, + "name": "ons.age.0_10@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10032.229207681914, + "kind": "calibration_drift", + "ledger_value": 10332.0, + "name": "ons.age.0_10@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11289.597351051449, + "kind": "calibration_drift", + "ledger_value": 10943.0, + "name": "ons.age.0_10@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10815.962574561723, + "kind": "calibration_drift", + "ledger_value": 10710.0, + "name": "ons.age.0_10@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12662.451775659349, + "kind": "calibration_drift", + "ledger_value": 13466.0, + "name": "ons.age.0_10@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15127.031204088884, + "kind": "calibration_drift", + "ledger_value": 11115.0, + "name": "ons.age.0_10@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14299.146728766606, + "kind": "calibration_drift", + "ledger_value": 15830.0, + "name": "ons.age.0_10@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16063.614034559816, + "kind": "calibration_drift", + "ledger_value": 15122.0, + "name": "ons.age.0_10@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17199.24252599111, + "kind": "calibration_drift", + "ledger_value": 15908.0, + "name": "ons.age.0_10@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16316.147999886114, + "kind": "calibration_drift", + "ledger_value": 15228.0, + "name": "ons.age.0_10@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13047.87700924646, + "kind": "calibration_drift", + "ledger_value": 13153.0, + "name": "ons.age.0_10@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10496.754195920494, + "kind": "calibration_drift", + "ledger_value": 10035.0, + "name": "ons.age.0_10@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10582.5603868411, + "kind": "calibration_drift", + "ledger_value": 10598.0, + "name": "ons.age.0_10@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20903.42468268604, + "kind": "calibration_drift", + "ledger_value": 19627.0, + "name": "ons.age.0_10@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9403.441336047408, + "kind": "calibration_drift", + "ledger_value": 8580.0, + "name": "ons.age.0_10@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12245.249994985761, + "kind": "calibration_drift", + "ledger_value": 11905.0, + "name": "ons.age.0_10@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11713.091381171156, + "kind": "calibration_drift", + "ledger_value": 11988.0, + "name": "ons.age.0_10@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12236.03845739536, + "kind": "calibration_drift", + "ledger_value": 12048.0, + "name": "ons.age.0_10@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11114.992360151606, + "kind": "calibration_drift", + "ledger_value": 9819.0, + "name": "ons.age.0_10@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10606.602274809018, + "kind": "calibration_drift", + "ledger_value": 9881.0, + "name": "ons.age.0_10@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10628.506798351073, + "kind": "calibration_drift", + "ledger_value": 10477.0, + "name": "ons.age.0_10@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18522.02524144862, + "kind": "calibration_drift", + "ledger_value": 16095.0, + "name": "ons.age.0_10@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10216.399725396115, + "kind": "calibration_drift", + "ledger_value": 11436.0, + "name": "ons.age.0_10@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14919.15734640555, + "kind": "calibration_drift", + "ledger_value": 13645.0, + "name": "ons.age.0_10@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12182.753129931627, + "kind": "calibration_drift", + "ledger_value": 12184.0, + "name": "ons.age.0_10@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19136.288834321138, + "kind": "calibration_drift", + "ledger_value": 17370.0, + "name": "ons.age.0_10@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12762.02317128321, + "kind": "calibration_drift", + "ledger_value": 12351.0, + "name": "ons.age.0_10@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13122.229307683094, + "kind": "calibration_drift", + "ledger_value": 12620.0, + "name": "ons.age.0_10@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10697.810304397912, + "kind": "calibration_drift", + "ledger_value": 9813.0, + "name": "ons.age.0_10@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19848.812115644574, + "kind": "calibration_drift", + "ledger_value": 18406.0, + "name": "ons.age.0_10@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13931.237522907602, + "kind": "calibration_drift", + "ledger_value": 13357.0, + "name": "ons.age.0_10@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9836.564056518835, + "kind": "calibration_drift", + "ledger_value": 8175.0, + "name": "ons.age.0_10@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9706.898015847648, + "kind": "calibration_drift", + "ledger_value": 11839.0, + "name": "ons.age.0_10@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10276.328216107371, + "kind": "calibration_drift", + "ledger_value": 10070.0, + "name": "ons.age.0_10@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11220.155770565354, + "kind": "calibration_drift", + "ledger_value": 11408.0, + "name": "ons.age.0_10@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11924.029674515365, + "kind": "calibration_drift", + "ledger_value": 12726.0, + "name": "ons.age.0_10@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18468.12689783884, + "kind": "calibration_drift", + "ledger_value": 17962.0, + "name": "ons.age.0_10@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12549.847394185754, + "kind": "calibration_drift", + "ledger_value": 13410.0, + "name": "ons.age.0_10@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17398.36559231894, + "kind": "calibration_drift", + "ledger_value": 16329.0, + "name": "ons.age.0_10@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9559.485177327193, + "kind": "calibration_drift", + "ledger_value": 8994.0, + "name": "ons.age.0_10@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9055.710723239756, + "kind": "calibration_drift", + "ledger_value": 9056.0, + "name": "ons.age.0_10@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9835.673505680064, + "kind": "calibration_drift", + "ledger_value": 10038.0, + "name": "ons.age.0_10@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8850.670180943791, + "kind": "calibration_drift", + "ledger_value": 8559.0, + "name": "ons.age.0_10@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9816.27404696452, + "kind": "calibration_drift", + "ledger_value": 9411.0, + "name": "ons.age.0_10@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11032.029347078318, + "kind": "calibration_drift", + "ledger_value": 10991.0, + "name": "ons.age.0_10@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11083.452213241433, + "kind": "calibration_drift", + "ledger_value": 10748.0, + "name": "ons.age.0_10@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13232.46251075014, + "kind": "calibration_drift", + "ledger_value": 12981.0, + "name": "ons.age.0_10@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9206.951546525403, + "kind": "calibration_drift", + "ledger_value": 8199.0, + "name": "ons.age.0_10@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14626.471911944132, + "kind": "calibration_drift", + "ledger_value": 14268.0, + "name": "ons.age.0_10@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10733.465147716423, + "kind": "calibration_drift", + "ledger_value": 11461.0, + "name": "ons.age.0_10@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10025.457719025451, + "kind": "calibration_drift", + "ledger_value": 10632.0, + "name": "ons.age.0_10@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14767.860137742831, + "kind": "calibration_drift", + "ledger_value": 16872.0, + "name": "ons.age.0_10@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10317.119350447732, + "kind": "calibration_drift", + "ledger_value": 9504.0, + "name": "ons.age.0_10@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10799.433091690726, + "kind": "calibration_drift", + "ledger_value": 10253.0, + "name": "ons.age.0_10@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14182.217403636208, + "kind": "calibration_drift", + "ledger_value": 14348.0, + "name": "ons.age.0_10@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13262.572600968013, + "kind": "calibration_drift", + "ledger_value": 12711.0, + "name": "ons.age.0_10@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10667.236678562535, + "kind": "calibration_drift", + "ledger_value": 10247.0, + "name": "ons.age.0_10@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16475.732464286833, + "kind": "calibration_drift", + "ledger_value": 14357.0, + "name": "ons.age.0_10@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10652.779874650278, + "kind": "calibration_drift", + "ledger_value": 10091.0, + "name": "ons.age.0_10@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18649.965270748842, + "kind": "calibration_drift", + "ledger_value": 16745.0, + "name": "ons.age.0_10@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14511.855577791577, + "kind": "calibration_drift", + "ledger_value": 10283.0, + "name": "ons.age.0_10@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10963.6134624267, + "kind": "calibration_drift", + "ledger_value": 11443.0, + "name": "ons.age.0_10@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14133.013590961145, + "kind": "calibration_drift", + "ledger_value": 13860.0, + "name": "ons.age.0_10@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11329.836187634783, + "kind": "calibration_drift", + "ledger_value": 12079.0, + "name": "ons.age.0_10@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13968.052392335638, + "kind": "calibration_drift", + "ledger_value": 11373.0, + "name": "ons.age.0_10@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16698.55711390401, + "kind": "calibration_drift", + "ledger_value": 11714.0, + "name": "ons.age.0_10@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10888.155781373001, + "kind": "calibration_drift", + "ledger_value": 11690.0, + "name": "ons.age.0_10@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14808.542199135067, + "kind": "calibration_drift", + "ledger_value": 15337.0, + "name": "ons.age.0_10@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11774.583818940051, + "kind": "calibration_drift", + "ledger_value": 11266.0, + "name": "ons.age.0_10@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10579.098364537314, + "kind": "calibration_drift", + "ledger_value": 10050.0, + "name": "ons.age.0_10@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15715.449097717195, + "kind": "calibration_drift", + "ledger_value": 14373.0, + "name": "ons.age.0_10@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16675.202211024916, + "kind": "calibration_drift", + "ledger_value": 16209.0, + "name": "ons.age.0_10@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10770.79250800494, + "kind": "calibration_drift", + "ledger_value": 10970.0, + "name": "ons.age.0_10@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10033.322280718008, + "kind": "calibration_drift", + "ledger_value": 9984.0, + "name": "ons.age.0_10@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11530.458347874537, + "kind": "calibration_drift", + "ledger_value": 10453.0, + "name": "ons.age.0_10@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10437.441361799862, + "kind": "calibration_drift", + "ledger_value": 10157.0, + "name": "ons.age.0_10@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20517.861673522093, + "kind": "calibration_drift", + "ledger_value": 18938.0, + "name": "ons.age.0_10@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10620.13356985616, + "kind": "calibration_drift", + "ledger_value": 10510.0, + "name": "ons.age.0_10@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13768.605558383291, + "kind": "calibration_drift", + "ledger_value": 13942.0, + "name": "ons.age.0_10@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18631.173085680923, + "kind": "calibration_drift", + "ledger_value": 17863.0, + "name": "ons.age.0_10@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10086.061638811856, + "kind": "calibration_drift", + "ledger_value": 10188.0, + "name": "ons.age.0_10@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10686.517787758716, + "kind": "calibration_drift", + "ledger_value": 9696.0, + "name": "ons.age.0_10@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10810.015511213745, + "kind": "calibration_drift", + "ledger_value": 9594.0, + "name": "ons.age.0_10@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12719.180645273895, + "kind": "calibration_drift", + "ledger_value": 13030.0, + "name": "ons.age.0_10@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13448.86460690493, + "kind": "calibration_drift", + "ledger_value": 12524.0, + "name": "ons.age.0_10@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8676.993726000728, + "kind": "calibration_drift", + "ledger_value": 8435.0, + "name": "ons.age.0_10@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12959.183608081605, + "kind": "calibration_drift", + "ledger_value": 14188.0, + "name": "ons.age.0_10@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9263.808628119257, + "kind": "calibration_drift", + "ledger_value": 8767.0, + "name": "ons.age.0_10@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10687.937981991068, + "kind": "calibration_drift", + "ledger_value": 10244.0, + "name": "ons.age.0_10@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12427.39976774498, + "kind": "calibration_drift", + "ledger_value": 12940.0, + "name": "ons.age.0_10@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14056.254065194456, + "kind": "calibration_drift", + "ledger_value": 8528.0, + "name": "ons.age.0_10@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9006.106748575954, + "kind": "calibration_drift", + "ledger_value": 7880.0, + "name": "ons.age.0_10@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13510.773160786937, + "kind": "calibration_drift", + "ledger_value": 13659.0, + "name": "ons.age.0_10@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12910.537173824752, + "kind": "calibration_drift", + "ledger_value": 10800.0, + "name": "ons.age.0_10@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11541.711414673948, + "kind": "calibration_drift", + "ledger_value": 12099.0, + "name": "ons.age.0_10@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10992.500607611159, + "kind": "calibration_drift", + "ledger_value": 11554.0, + "name": "ons.age.0_10@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11021.298990656094, + "kind": "calibration_drift", + "ledger_value": 9627.0, + "name": "ons.age.0_10@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13771.268422568954, + "kind": "calibration_drift", + "ledger_value": 14495.0, + "name": "ons.age.0_10@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12991.640963766838, + "kind": "calibration_drift", + "ledger_value": 12537.0, + "name": "ons.age.0_10@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11977.957605504991, + "kind": "calibration_drift", + "ledger_value": 11833.0, + "name": "ons.age.0_10@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15986.859290591889, + "kind": "calibration_drift", + "ledger_value": 16093.0, + "name": "ons.age.0_10@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20514.992594264815, + "kind": "calibration_drift", + "ledger_value": 20637.0, + "name": "ons.age.0_10@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14518.527287825358, + "kind": "calibration_drift", + "ledger_value": 14262.0, + "name": "ons.age.0_10@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6471.253094155702, + "kind": "calibration_drift", + "ledger_value": 5300.0, + "name": "ons.age.0_10@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6471.253094155702, + "kind": "calibration_drift", + "ledger_value": 6441.0, + "name": "ons.age.0_10@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13362.646982049166, + "kind": "calibration_drift", + "ledger_value": 10479.0, + "name": "ons.age.0_10@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12992.568035001847, + "kind": "calibration_drift", + "ledger_value": 10664.0, + "name": "ons.age.0_10@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10617.135382032304, + "kind": "calibration_drift", + "ledger_value": 10581.0, + "name": "ons.age.0_10@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12074.60971298457, + "kind": "calibration_drift", + "ledger_value": 11547.0, + "name": "ons.age.0_10@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9032.09013166694, + "kind": "calibration_drift", + "ledger_value": 10105.0, + "name": "ons.age.0_10@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16418.175148036753, + "kind": "calibration_drift", + "ledger_value": 11598.0, + "name": "ons.age.0_10@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13476.735918714858, + "kind": "calibration_drift", + "ledger_value": 13668.0, + "name": "ons.age.0_10@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14978.275720709853, + "kind": "calibration_drift", + "ledger_value": 13464.0, + "name": "ons.age.0_10@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12892.621865900004, + "kind": "calibration_drift", + "ledger_value": 13205.0, + "name": "ons.age.0_10@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14068.883991174935, + "kind": "calibration_drift", + "ledger_value": 14128.0, + "name": "ons.age.0_10@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11874.799263084686, + "kind": "calibration_drift", + "ledger_value": 12224.0, + "name": "ons.age.0_10@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9315.409018561417, + "kind": "calibration_drift", + "ledger_value": 8335.0, + "name": "ons.age.0_10@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12225.830811350324, + "kind": "calibration_drift", + "ledger_value": 12735.0, + "name": "ons.age.0_10@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9583.54957959762, + "kind": "calibration_drift", + "ledger_value": 8906.0, + "name": "ons.age.0_10@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11697.719093600595, + "kind": "calibration_drift", + "ledger_value": 7296.0, + "name": "ons.age.0_10@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16206.354896888182, + "kind": "calibration_drift", + "ledger_value": 15771.0, + "name": "ons.age.0_10@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12056.857285080157, + "kind": "calibration_drift", + "ledger_value": 11867.0, + "name": "ons.age.0_10@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9727.34424562336, + "kind": "calibration_drift", + "ledger_value": 10415.0, + "name": "ons.age.0_10@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16371.722961686872, + "kind": "calibration_drift", + "ledger_value": 18105.0, + "name": "ons.age.0_10@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10900.714876959317, + "kind": "calibration_drift", + "ledger_value": 11014.0, + "name": "ons.age.0_10@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12117.750503691674, + "kind": "calibration_drift", + "ledger_value": 12445.0, + "name": "ons.age.0_10@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16337.105727273267, + "kind": "calibration_drift", + "ledger_value": 16194.0, + "name": "ons.age.0_10@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14307.23394592306, + "kind": "calibration_drift", + "ledger_value": 14398.0, + "name": "ons.age.0_10@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17338.500460441282, + "kind": "calibration_drift", + "ledger_value": 18004.0, + "name": "ons.age.0_10@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12189.94131960357, + "kind": "calibration_drift", + "ledger_value": 13374.0, + "name": "ons.age.0_10@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9446.747497295035, + "kind": "calibration_drift", + "ledger_value": 8578.0, + "name": "ons.age.0_10@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16530.128314209498, + "kind": "calibration_drift", + "ledger_value": 14719.0, + "name": "ons.age.0_10@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14519.1880726418, + "kind": "calibration_drift", + "ledger_value": 11883.0, + "name": "ons.age.0_10@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13834.935981049774, + "kind": "calibration_drift", + "ledger_value": 12389.0, + "name": "ons.age.0_10@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16063.008240429139, + "kind": "calibration_drift", + "ledger_value": 14996.0, + "name": "ons.age.0_10@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9720.60818547963, + "kind": "calibration_drift", + "ledger_value": 10087.0, + "name": "ons.age.0_10@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12125.894504708427, + "kind": "calibration_drift", + "ledger_value": 11978.0, + "name": "ons.age.0_10@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11872.478596372941, + "kind": "calibration_drift", + "ledger_value": 11450.0, + "name": "ons.age.0_10@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11180.025421041437, + "kind": "calibration_drift", + "ledger_value": 11356.0, + "name": "ons.age.0_10@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12892.779665259155, + "kind": "calibration_drift", + "ledger_value": 12862.0, + "name": "ons.age.0_10@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11332.005928823102, + "kind": "calibration_drift", + "ledger_value": 10806.0, + "name": "ons.age.0_10@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12710.965216138131, + "kind": "calibration_drift", + "ledger_value": 12199.0, + "name": "ons.age.0_10@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10034.342898850335, + "kind": "calibration_drift", + "ledger_value": 9500.0, + "name": "ons.age.0_10@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8683.215473505446, + "kind": "calibration_drift", + "ledger_value": 8059.0, + "name": "ons.age.0_10@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9817.575891677512, + "kind": "calibration_drift", + "ledger_value": 8851.0, + "name": "ons.age.0_10@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17026.905900879057, + "kind": "calibration_drift", + "ledger_value": 17173.0, + "name": "ons.age.0_10@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18718.04163289318, + "kind": "calibration_drift", + "ledger_value": 19298.0, + "name": "ons.age.0_10@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9747.069165517152, + "kind": "calibration_drift", + "ledger_value": 9575.0, + "name": "ons.age.0_10@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12357.464167674274, + "kind": "calibration_drift", + "ledger_value": 12949.0, + "name": "ons.age.0_10@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13198.545510992766, + "kind": "calibration_drift", + "ledger_value": 14050.0, + "name": "ons.age.0_10@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11361.139635506232, + "kind": "calibration_drift", + "ledger_value": 11068.0, + "name": "ons.age.0_10@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9939.929569778702, + "kind": "calibration_drift", + "ledger_value": 10396.0, + "name": "ons.age.0_10@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15415.784107172487, + "kind": "calibration_drift", + "ledger_value": 13601.0, + "name": "ons.age.0_10@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13886.126631110503, + "kind": "calibration_drift", + "ledger_value": 11954.0, + "name": "ons.age.0_10@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10098.074115027175, + "kind": "calibration_drift", + "ledger_value": 8825.0, + "name": "ons.age.0_10@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12302.876348455473, + "kind": "calibration_drift", + "ledger_value": 11828.0, + "name": "ons.age.0_10@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10525.033872161095, + "kind": "calibration_drift", + "ledger_value": 8954.0, + "name": "ons.age.0_10@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9794.241311443157, + "kind": "calibration_drift", + "ledger_value": 10027.0, + "name": "ons.age.0_10@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12013.472323773762, + "kind": "calibration_drift", + "ledger_value": 11483.0, + "name": "ons.age.0_10@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11966.11279110877, + "kind": "calibration_drift", + "ledger_value": 13376.0, + "name": "ons.age.0_10@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12001.217777873213, + "kind": "calibration_drift", + "ledger_value": 12085.0, + "name": "ons.age.0_10@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10065.656209181729, + "kind": "calibration_drift", + "ledger_value": 10890.0, + "name": "ons.age.0_10@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8725.564876517417, + "kind": "calibration_drift", + "ledger_value": 8172.0, + "name": "ons.age.0_10@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9211.021554617628, + "kind": "calibration_drift", + "ledger_value": 9213.0, + "name": "ons.age.0_10@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11467.989526570902, + "kind": "calibration_drift", + "ledger_value": 11466.0, + "name": "ons.age.0_10@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9800.336311690337, + "kind": "calibration_drift", + "ledger_value": 9302.0, + "name": "ons.age.0_10@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11223.686531226344, + "kind": "calibration_drift", + "ledger_value": 12343.0, + "name": "ons.age.0_10@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14970.809838530053, + "kind": "calibration_drift", + "ledger_value": 15720.0, + "name": "ons.age.0_10@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10308.8052967125, + "kind": "calibration_drift", + "ledger_value": 10172.0, + "name": "ons.age.0_10@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16985.601918621458, + "kind": "calibration_drift", + "ledger_value": 17902.0, + "name": "ons.age.0_10@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13163.326666522402, + "kind": "calibration_drift", + "ledger_value": 12927.0, + "name": "ons.age.0_10@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16063.087140108713, + "kind": "calibration_drift", + "ledger_value": 14989.0, + "name": "ons.age.0_10@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10748.187749806653, + "kind": "calibration_drift", + "ledger_value": 9499.0, + "name": "ons.age.0_10@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9312.134681859046, + "kind": "calibration_drift", + "ledger_value": 8451.0, + "name": "ons.age.0_10@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7150.28346149948, + "kind": "calibration_drift", + "ledger_value": 6357.0, + "name": "ons.age.0_10@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10740.968429125525, + "kind": "calibration_drift", + "ledger_value": 10790.0, + "name": "ons.age.0_10@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11199.257217937882, + "kind": "calibration_drift", + "ledger_value": 10836.0, + "name": "ons.age.0_10@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16337.923627912032, + "kind": "calibration_drift", + "ledger_value": 16277.0, + "name": "ons.age.0_10@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10729.61673772665, + "kind": "calibration_drift", + "ledger_value": 11587.0, + "name": "ons.age.0_10@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11746.02965383895, + "kind": "calibration_drift", + "ledger_value": 10990.0, + "name": "ons.age.0_10@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9706.583767435146, + "kind": "calibration_drift", + "ledger_value": 9442.0, + "name": "ons.age.0_10@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9092.20182504327, + "kind": "calibration_drift", + "ledger_value": 8316.0, + "name": "ons.age.0_10@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9827.024128306637, + "kind": "calibration_drift", + "ledger_value": 10473.0, + "name": "ons.age.0_10@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12733.865848134821, + "kind": "calibration_drift", + "ledger_value": 12048.0, + "name": "ons.age.0_10@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12929.77375251996, + "kind": "calibration_drift", + "ledger_value": 12730.0, + "name": "ons.age.0_10@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10561.984506009261, + "kind": "calibration_drift", + "ledger_value": 9303.0, + "name": "ons.age.0_10@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9597.958633580034, + "kind": "calibration_drift", + "ledger_value": 9926.0, + "name": "ons.age.0_10@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10135.650087424849, + "kind": "calibration_drift", + "ledger_value": 9442.0, + "name": "ons.age.0_10@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8893.719818611991, + "kind": "calibration_drift", + "ledger_value": 8424.0, + "name": "ons.age.0_10@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10180.858009888498, + "kind": "calibration_drift", + "ledger_value": 9546.0, + "name": "ons.age.0_10@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11769.859700625488, + "kind": "calibration_drift", + "ledger_value": 11190.0, + "name": "ons.age.0_10@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8985.687257616795, + "kind": "calibration_drift", + "ledger_value": 9386.0, + "name": "ons.age.0_10@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11684.184511066804, + "kind": "calibration_drift", + "ledger_value": 11455.0, + "name": "ons.age.0_10@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11998.668771393472, + "kind": "calibration_drift", + "ledger_value": 11709.0, + "name": "ons.age.0_10@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11169.86962614721, + "kind": "calibration_drift", + "ledger_value": 10427.0, + "name": "ons.age.0_10@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8599.522638396087, + "kind": "calibration_drift", + "ledger_value": 8102.0, + "name": "ons.age.0_10@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6877.840477027048, + "kind": "calibration_drift", + "ledger_value": 6007.0, + "name": "ons.age.0_10@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7852.342672819259, + "kind": "calibration_drift", + "ledger_value": 7373.0, + "name": "ons.age.0_10@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9913.665838940118, + "kind": "calibration_drift", + "ledger_value": 9660.0, + "name": "ons.age.0_10@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10104.770725331118, + "kind": "calibration_drift", + "ledger_value": 9479.0, + "name": "ons.age.0_10@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10522.258517343165, + "kind": "calibration_drift", + "ledger_value": 10507.0, + "name": "ons.age.0_10@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14868.378329521594, + "kind": "calibration_drift", + "ledger_value": 15994.0, + "name": "ons.age.0_10@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12377.270055612329, + "kind": "calibration_drift", + "ledger_value": 13182.0, + "name": "ons.age.0_10@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12747.56480500106, + "kind": "calibration_drift", + "ledger_value": 13707.0, + "name": "ons.age.0_10@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10911.529811447144, + "kind": "calibration_drift", + "ledger_value": 11435.0, + "name": "ons.age.0_10@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10862.542972890913, + "kind": "calibration_drift", + "ledger_value": 9829.0, + "name": "ons.age.0_10@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16424.072899084993, + "kind": "calibration_drift", + "ledger_value": 16191.0, + "name": "ons.age.0_10@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14038.595379483599, + "kind": "calibration_drift", + "ledger_value": 14189.0, + "name": "ons.age.0_10@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10659.887053865137, + "kind": "calibration_drift", + "ledger_value": 10305.0, + "name": "ons.age.0_10@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9920.559698442996, + "kind": "calibration_drift", + "ledger_value": 9618.0, + "name": "ons.age.0_10@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14479.824604094358, + "kind": "calibration_drift", + "ledger_value": 13433.0, + "name": "ons.age.0_10@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15233.172691591104, + "kind": "calibration_drift", + "ledger_value": 14721.0, + "name": "ons.age.0_10@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11742.531521458293, + "kind": "calibration_drift", + "ledger_value": 11091.0, + "name": "ons.age.0_10@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11929.6315517652, + "kind": "calibration_drift", + "ledger_value": 12935.0, + "name": "ons.age.0_10@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11931.130645677129, + "kind": "calibration_drift", + "ledger_value": 11911.0, + "name": "ons.age.0_10@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14907.108209733053, + "kind": "calibration_drift", + "ledger_value": 15479.0, + "name": "ons.age.0_10@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15637.916491798034, + "kind": "calibration_drift", + "ledger_value": 16393.0, + "name": "ons.age.0_10@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12335.21356144681, + "kind": "calibration_drift", + "ledger_value": 12017.0, + "name": "ons.age.0_10@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11597.671012412635, + "kind": "calibration_drift", + "ledger_value": 9346.0, + "name": "ons.age.0_10@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12219.282137945585, + "kind": "calibration_drift", + "ledger_value": 12563.0, + "name": "ons.age.0_10@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11075.019809986836, + "kind": "calibration_drift", + "ledger_value": 9110.0, + "name": "ons.age.0_10@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14314.2658798652, + "kind": "calibration_drift", + "ledger_value": 11033.0, + "name": "ons.age.0_10@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12992.291886123334, + "kind": "calibration_drift", + "ledger_value": 13398.0, + "name": "ons.age.0_10@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8657.267341385163, + "kind": "calibration_drift", + "ledger_value": 8175.0, + "name": "ons.age.0_10@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9410.700106568323, + "kind": "calibration_drift", + "ledger_value": 8524.0, + "name": "ons.age.0_10@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18604.98825452191, + "kind": "calibration_drift", + "ledger_value": 18242.0, + "name": "ons.age.0_10@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12547.416042838755, + "kind": "calibration_drift", + "ledger_value": 11360.0, + "name": "ons.age.0_10@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11100.790417828075, + "kind": "calibration_drift", + "ledger_value": 10330.0, + "name": "ons.age.0_10@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12094.285320578627, + "kind": "calibration_drift", + "ledger_value": 12431.0, + "name": "ons.age.0_10@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10590.309490976746, + "kind": "calibration_drift", + "ledger_value": 10215.0, + "name": "ons.age.0_10@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20518.63094539795, + "kind": "calibration_drift", + "ledger_value": 16202.0, + "name": "ons.age.0_10@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12308.350013726002, + "kind": "calibration_drift", + "ledger_value": 12237.0, + "name": "ons.age.0_10@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12092.362140888981, + "kind": "calibration_drift", + "ledger_value": 11197.0, + "name": "ons.age.0_10@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14718.399901109147, + "kind": "calibration_drift", + "ledger_value": 15296.0, + "name": "ons.age.0_10@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14161.121601809798, + "kind": "calibration_drift", + "ledger_value": 11986.0, + "name": "ons.age.0_10@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18798.66724295905, + "kind": "calibration_drift", + "ledger_value": 13318.0, + "name": "ons.age.0_10@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10952.59348168564, + "kind": "calibration_drift", + "ledger_value": 10683.0, + "name": "ons.age.0_10@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10123.144488212185, + "kind": "calibration_drift", + "ledger_value": 10460.0, + "name": "ons.age.0_10@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14378.84526759747, + "kind": "calibration_drift", + "ledger_value": 14230.0, + "name": "ons.age.0_10@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12181.005930891683, + "kind": "calibration_drift", + "ledger_value": 10868.0, + "name": "ons.age.0_10@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10720.020564198321, + "kind": "calibration_drift", + "ledger_value": 9973.0, + "name": "ons.age.0_10@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11705.950960169603, + "kind": "calibration_drift", + "ledger_value": 11297.0, + "name": "ons.age.0_10@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13607.374063171439, + "kind": "calibration_drift", + "ledger_value": 12994.0, + "name": "ons.age.0_10@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9675.921379460246, + "kind": "calibration_drift", + "ledger_value": 11273.0, + "name": "ons.age.0_10@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9257.021302713427, + "kind": "calibration_drift", + "ledger_value": 8289.0, + "name": "ons.age.0_10@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15571.87745999362, + "kind": "calibration_drift", + "ledger_value": 13139.0, + "name": "ons.age.0_10@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14746.941860195464, + "kind": "calibration_drift", + "ledger_value": 14626.0, + "name": "ons.age.0_10@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13064.445643094823, + "kind": "calibration_drift", + "ledger_value": 14387.0, + "name": "ons.age.0_10@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14251.453864879568, + "kind": "calibration_drift", + "ledger_value": 15274.0, + "name": "ons.age.0_10@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10018.809524433975, + "kind": "calibration_drift", + "ledger_value": 9604.0, + "name": "ons.age.0_10@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11463.561282054745, + "kind": "calibration_drift", + "ledger_value": 11473.0, + "name": "ons.age.0_10@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10228.74282334478, + "kind": "calibration_drift", + "ledger_value": 10059.0, + "name": "ons.age.0_10@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13668.454914121758, + "kind": "calibration_drift", + "ledger_value": 14348.0, + "name": "ons.age.0_10@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13057.630683271518, + "kind": "calibration_drift", + "ledger_value": 13738.0, + "name": "ons.age.0_10@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12216.750287944324, + "kind": "calibration_drift", + "ledger_value": 11437.0, + "name": "ons.age.0_10@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10425.238211358903, + "kind": "calibration_drift", + "ledger_value": 9969.0, + "name": "ons.age.0_10@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12706.201647983778, + "kind": "calibration_drift", + "ledger_value": 12664.0, + "name": "ons.age.0_10@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10942.330273861298, + "kind": "calibration_drift", + "ledger_value": 11183.0, + "name": "ons.age.0_10@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9707.382626690844, + "kind": "calibration_drift", + "ledger_value": 8672.0, + "name": "ons.age.0_10@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13484.75220585634, + "kind": "calibration_drift", + "ledger_value": 15170.0, + "name": "ons.age.0_10@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9863.682891929247, + "kind": "calibration_drift", + "ledger_value": 9133.0, + "name": "ons.age.0_10@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9489.65896090317, + "kind": "calibration_drift", + "ledger_value": 8910.0, + "name": "ons.age.0_10@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12684.93818433827, + "kind": "calibration_drift", + "ledger_value": 12096.0, + "name": "ons.age.0_10@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8394.136910001984, + "kind": "calibration_drift", + "ledger_value": 8560.0, + "name": "ons.age.0_10@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10953.492918503174, + "kind": "calibration_drift", + "ledger_value": 11681.0, + "name": "ons.age.0_10@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12369.694514595692, + "kind": "calibration_drift", + "ledger_value": 11758.0, + "name": "ons.age.0_10@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16903.260240524825, + "kind": "calibration_drift", + "ledger_value": 15843.0, + "name": "ons.age.0_10@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8619.040446630994, + "kind": "calibration_drift", + "ledger_value": 6994.0, + "name": "ons.age.0_10@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9427.410433754389, + "kind": "calibration_drift", + "ledger_value": 9418.0, + "name": "ons.age.0_10@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12396.707401797768, + "kind": "calibration_drift", + "ledger_value": 13717.0, + "name": "ons.age.0_10@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12304.6979741021, + "kind": "calibration_drift", + "ledger_value": 12184.0, + "name": "ons.age.0_10@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11478.453596574558, + "kind": "calibration_drift", + "ledger_value": 11653.0, + "name": "ons.age.0_10@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10921.688145192447, + "kind": "calibration_drift", + "ledger_value": 10454.0, + "name": "ons.age.0_10@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10237.598335895911, + "kind": "calibration_drift", + "ledger_value": 10386.0, + "name": "ons.age.0_10@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14552.020201805017, + "kind": "calibration_drift", + "ledger_value": 14147.0, + "name": "ons.age.0_10@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8919.23400249461, + "kind": "calibration_drift", + "ledger_value": 8473.0, + "name": "ons.age.0_10@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9834.056062248776, + "kind": "calibration_drift", + "ledger_value": 9705.0, + "name": "ons.age.0_10@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21645.535343850166, + "kind": "calibration_drift", + "ledger_value": 22231.0, + "name": "ons.age.0_10@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16143.505638515702, + "kind": "calibration_drift", + "ledger_value": 16860.0, + "name": "ons.age.0_10@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10864.821201138644, + "kind": "calibration_drift", + "ledger_value": 10568.0, + "name": "ons.age.0_10@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13648.303271951056, + "kind": "calibration_drift", + "ledger_value": 13708.0, + "name": "ons.age.0_10@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11954.416274613883, + "kind": "calibration_drift", + "ledger_value": 11738.0, + "name": "ons.age.0_10@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9573.543576916843, + "kind": "calibration_drift", + "ledger_value": 9369.0, + "name": "ons.age.0_10@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10892.968661827086, + "kind": "calibration_drift", + "ledger_value": 11706.0, + "name": "ons.age.0_10@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8257.127616419706, + "kind": "calibration_drift", + "ledger_value": 7568.0, + "name": "ons.age.0_10@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8979.082597318216, + "kind": "calibration_drift", + "ledger_value": 8366.0, + "name": "ons.age.0_10@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8491.578014277313, + "kind": "calibration_drift", + "ledger_value": 7698.0, + "name": "ons.age.0_10@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12070.664729005812, + "kind": "calibration_drift", + "ledger_value": 11758.0, + "name": "ons.age.0_10@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11357.885023723755, + "kind": "calibration_drift", + "ledger_value": 11498.0, + "name": "ons.age.0_10@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9841.137308490646, + "kind": "calibration_drift", + "ledger_value": 11045.0, + "name": "ons.age.0_10@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12050.3679610181, + "kind": "calibration_drift", + "ledger_value": 11158.0, + "name": "ons.age.0_10@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9709.956728736983, + "kind": "calibration_drift", + "ledger_value": 9636.0, + "name": "ons.age.0_10@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9897.76755350572, + "kind": "calibration_drift", + "ledger_value": 9337.0, + "name": "ons.age.0_10@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8199.28428883116, + "kind": "calibration_drift", + "ledger_value": 7623.0, + "name": "ons.age.0_10@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8895.14987530429, + "kind": "calibration_drift", + "ledger_value": 8982.0, + "name": "ons.age.0_10@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10044.432195376008, + "kind": "calibration_drift", + "ledger_value": 9538.0, + "name": "ons.age.0_10@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12092.87498880622, + "kind": "calibration_drift", + "ledger_value": 11142.0, + "name": "ons.age.0_10@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11669.726144784656, + "kind": "calibration_drift", + "ledger_value": 10989.0, + "name": "ons.age.0_10@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10246.947947925568, + "kind": "calibration_drift", + "ledger_value": 10134.0, + "name": "ons.age.0_10@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13853.797487404578, + "kind": "calibration_drift", + "ledger_value": 12530.0, + "name": "ons.age.0_10@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13763.062855893137, + "kind": "calibration_drift", + "ledger_value": 12819.0, + "name": "ons.age.0_10@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12074.047552767595, + "kind": "calibration_drift", + "ledger_value": 11761.0, + "name": "ons.age.0_10@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12332.266479097223, + "kind": "calibration_drift", + "ledger_value": 11951.0, + "name": "ons.age.0_10@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16066.958305069084, + "kind": "calibration_drift", + "ledger_value": 13989.0, + "name": "ons.age.0_10@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9488.583952768959, + "kind": "calibration_drift", + "ledger_value": 8964.0, + "name": "ons.age.0_10@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12476.99807881792, + "kind": "calibration_drift", + "ledger_value": 12724.0, + "name": "ons.age.0_10@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12398.916983418345, + "kind": "calibration_drift", + "ledger_value": 10634.0, + "name": "ons.age.0_10@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13264.61413017702, + "kind": "calibration_drift", + "ledger_value": 12167.0, + "name": "ons.age.0_10@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10877.267625591627, + "kind": "calibration_drift", + "ledger_value": 9939.0, + "name": "ons.age.0_10@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11334.925216967382, + "kind": "calibration_drift", + "ledger_value": 10897.0, + "name": "ons.age.0_10@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10643.468150090515, + "kind": "calibration_drift", + "ledger_value": 10578.0, + "name": "ons.age.0_10@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8426.544953387482, + "kind": "calibration_drift", + "ledger_value": 7617.0, + "name": "ons.age.0_10@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12251.826351138863, + "kind": "calibration_drift", + "ledger_value": 13396.0, + "name": "ons.age.0_10@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9666.285756092127, + "kind": "calibration_drift", + "ledger_value": 10016.0, + "name": "ons.age.0_10@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7984.825097285911, + "kind": "calibration_drift", + "ledger_value": 7632.0, + "name": "ons.age.0_10@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12249.175254044625, + "kind": "calibration_drift", + "ledger_value": 11623.0, + "name": "ons.age.0_10@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12814.294209001757, + "kind": "calibration_drift", + "ledger_value": 12299.0, + "name": "ons.age.0_10@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13623.95285834217, + "kind": "calibration_drift", + "ledger_value": 13160.0, + "name": "ons.age.0_10@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12061.857552273234, + "kind": "calibration_drift", + "ledger_value": 12416.0, + "name": "ons.age.0_10@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10741.767288381227, + "kind": "calibration_drift", + "ledger_value": 9665.0, + "name": "ons.age.0_10@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14130.133752656651, + "kind": "calibration_drift", + "ledger_value": 14957.0, + "name": "ons.age.0_10@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12925.118671425025, + "kind": "calibration_drift", + "ledger_value": 12667.0, + "name": "ons.age.0_10@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11051.695092212429, + "kind": "calibration_drift", + "ledger_value": 10773.0, + "name": "ons.age.0_10@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9062.791969481626, + "kind": "calibration_drift", + "ledger_value": 9139.0, + "name": "ons.age.0_10@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10591.94665932793, + "kind": "calibration_drift", + "ledger_value": 10227.0, + "name": "ons.age.0_10@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17504.820984985734, + "kind": "calibration_drift", + "ledger_value": 15930.0, + "name": "ons.age.0_10@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9250.573206870522, + "kind": "calibration_drift", + "ledger_value": 9491.0, + "name": "ons.age.0_10@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15805.588173355212, + "kind": "calibration_drift", + "ledger_value": 13576.0, + "name": "ons.age.0_10@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12908.973824491957, + "kind": "calibration_drift", + "ledger_value": 12764.0, + "name": "ons.age.0_10@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9951.409473156886, + "kind": "calibration_drift", + "ledger_value": 9609.0, + "name": "ons.age.0_10@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8299.50416560856, + "kind": "calibration_drift", + "ledger_value": 7987.0, + "name": "ons.age.0_10@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10216.522258989395, + "kind": "calibration_drift", + "ledger_value": 10537.0, + "name": "ons.age.0_10@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11234.219638449627, + "kind": "calibration_drift", + "ledger_value": 10836.0, + "name": "ons.age.0_10@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9240.362671822068, + "kind": "calibration_drift", + "ledger_value": 9648.0, + "name": "ons.age.0_10@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13550.033721040187, + "kind": "calibration_drift", + "ledger_value": 12985.0, + "name": "ons.age.0_10@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10830.953513681005, + "kind": "calibration_drift", + "ledger_value": 10398.0, + "name": "ons.age.0_10@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13118.255224565086, + "kind": "calibration_drift", + "ledger_value": 13745.0, + "name": "ons.age.0_10@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13988.873738837263, + "kind": "calibration_drift", + "ledger_value": 13746.0, + "name": "ons.age.0_10@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11073.402366555545, + "kind": "calibration_drift", + "ledger_value": 11251.0, + "name": "ons.age.0_10@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10379.61775913121, + "kind": "calibration_drift", + "ledger_value": 10382.0, + "name": "ons.age.0_10@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11556.909465452114, + "kind": "calibration_drift", + "ledger_value": 11936.0, + "name": "ons.age.0_10@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13884.114689281336, + "kind": "calibration_drift", + "ledger_value": 14142.0, + "name": "ons.age.0_10@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11207.058423755878, + "kind": "calibration_drift", + "ledger_value": 11143.0, + "name": "ons.age.0_10@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11536.45472352225, + "kind": "calibration_drift", + "ledger_value": 11803.0, + "name": "ons.age.0_10@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8960.553413154897, + "kind": "calibration_drift", + "ledger_value": 8662.0, + "name": "ons.age.0_10@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10507.627010097503, + "kind": "calibration_drift", + "ledger_value": 11359.0, + "name": "ons.age.0_10@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19280.20184986624, + "kind": "calibration_drift", + "ledger_value": 18316.0, + "name": "ons.age.0_10@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15619.572316296808, + "kind": "calibration_drift", + "ledger_value": 15664.0, + "name": "ons.age.0_10@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9239.339864991009, + "kind": "calibration_drift", + "ledger_value": 7812.0, + "name": "ons.age.0_10@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11911.33668856371, + "kind": "calibration_drift", + "ledger_value": 10818.0, + "name": "ons.age.0_10@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13636.82336857287, + "kind": "calibration_drift", + "ledger_value": 10980.0, + "name": "ons.age.0_10@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10403.672298941688, + "kind": "calibration_drift", + "ledger_value": 9313.0, + "name": "ons.age.0_10@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8589.660178449192, + "kind": "calibration_drift", + "ledger_value": 8075.0, + "name": "ons.age.0_10@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19086.53082123026, + "kind": "calibration_drift", + "ledger_value": 17122.0, + "name": "ons.age.0_10@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9403.007387809745, + "kind": "calibration_drift", + "ledger_value": 8769.0, + "name": "ons.age.0_10@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12624.934978021358, + "kind": "calibration_drift", + "ledger_value": 12639.0, + "name": "ons.age.0_10@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13406.613828492427, + "kind": "calibration_drift", + "ledger_value": 12190.0, + "name": "ons.age.0_10@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10403.997760119937, + "kind": "calibration_drift", + "ledger_value": 9604.0, + "name": "ons.age.0_10@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15398.36895981401, + "kind": "calibration_drift", + "ledger_value": 16539.0, + "name": "ons.age.0_10@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10283.92231026648, + "kind": "calibration_drift", + "ledger_value": 8218.0, + "name": "ons.age.0_10@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12165.13303396804, + "kind": "calibration_drift", + "ledger_value": 12958.0, + "name": "ons.age.0_10@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11287.072561305044, + "kind": "calibration_drift", + "ledger_value": 10240.0, + "name": "ons.age.0_10@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17358.1464806555, + "kind": "calibration_drift", + "ledger_value": 18192.0, + "name": "ons.age.0_10@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18669.636679473813, + "kind": "calibration_drift", + "ledger_value": 16508.0, + "name": "ons.age.0_10@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11067.652552406505, + "kind": "calibration_drift", + "ledger_value": 10215.0, + "name": "ons.age.0_10@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11451.243069581073, + "kind": "calibration_drift", + "ledger_value": 11448.0, + "name": "ons.age.0_10@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11452.919687772044, + "kind": "calibration_drift", + "ledger_value": 12298.0, + "name": "ons.age.0_10@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10669.810780608675, + "kind": "calibration_drift", + "ledger_value": 10037.0, + "name": "ons.age.0_10@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14499.374390608487, + "kind": "calibration_drift", + "ledger_value": 15136.0, + "name": "ons.age.0_10@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9172.178465715015, + "kind": "calibration_drift", + "ledger_value": 7357.0, + "name": "ons.age.0_10@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11226.951005468767, + "kind": "calibration_drift", + "ledger_value": 10591.0, + "name": "ons.age.0_10@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13822.346999221196, + "kind": "calibration_drift", + "ledger_value": 13260.0, + "name": "ons.age.0_10@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8934.146041934317, + "kind": "calibration_drift", + "ledger_value": 8554.0, + "name": "ons.age.0_10@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14100.358986076973, + "kind": "calibration_drift", + "ledger_value": 13309.0, + "name": "ons.age.0_10@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14677.125506231388, + "kind": "calibration_drift", + "ledger_value": 14886.0, + "name": "ons.age.0_10@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7836.207688346139, + "kind": "calibration_drift", + "ledger_value": 7454.0, + "name": "ons.age.0_10@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19899.889795709547, + "kind": "calibration_drift", + "ledger_value": 17925.0, + "name": "ons.age.0_10@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10215.536012994706, + "kind": "calibration_drift", + "ledger_value": 10205.0, + "name": "ons.age.0_10@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14879.335522522595, + "kind": "calibration_drift", + "ledger_value": 14612.0, + "name": "ons.age.0_10@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8829.86039045584, + "kind": "calibration_drift", + "ledger_value": 8587.0, + "name": "ons.age.0_10@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7619.697105131933, + "kind": "calibration_drift", + "ledger_value": 6962.0, + "name": "ons.age.0_10@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10678.381258302525, + "kind": "calibration_drift", + "ledger_value": 10634.0, + "name": "ons.age.0_10@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9392.034424144467, + "kind": "calibration_drift", + "ledger_value": 9462.0, + "name": "ons.age.0_10@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9287.291145252815, + "kind": "calibration_drift", + "ledger_value": 9501.0, + "name": "ons.age.0_10@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11181.494927573525, + "kind": "calibration_drift", + "ledger_value": 10314.0, + "name": "ons.age.0_10@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12192.959232347319, + "kind": "calibration_drift", + "ledger_value": 12198.0, + "name": "ons.age.0_10@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14698.714431055145, + "kind": "calibration_drift", + "ledger_value": 13200.0, + "name": "ons.age.0_10@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10810.66643357024, + "kind": "calibration_drift", + "ledger_value": 10624.0, + "name": "ons.age.0_10@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13128.078234672195, + "kind": "calibration_drift", + "ledger_value": 11605.0, + "name": "ons.age.0_10@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9150.952498946928, + "kind": "calibration_drift", + "ledger_value": 8259.0, + "name": "ons.age.0_10@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11357.382038266463, + "kind": "calibration_drift", + "ledger_value": 12331.0, + "name": "ons.age.0_10@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10920.366575559563, + "kind": "calibration_drift", + "ledger_value": 11794.0, + "name": "ons.age.0_10@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13122.5059448022, + "kind": "calibration_drift", + "ledger_value": 12613.0, + "name": "ons.age.0_10@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12167.199084690874, + "kind": "calibration_drift", + "ledger_value": 12206.0, + "name": "ons.age.0_10@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15015.151458451297, + "kind": "calibration_drift", + "ledger_value": 14878.0, + "name": "ons.age.0_10@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17143.006779373914, + "kind": "calibration_drift", + "ledger_value": 18163.0, + "name": "ons.age.0_10@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14203.806328459963, + "kind": "calibration_drift", + "ledger_value": 14687.0, + "name": "ons.age.0_10@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11249.121815429387, + "kind": "calibration_drift", + "ledger_value": 10966.0, + "name": "ons.age.0_10@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13552.558510786592, + "kind": "calibration_drift", + "ledger_value": 13528.0, + "name": "ons.age.0_10@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9566.280412230606, + "kind": "calibration_drift", + "ledger_value": 9419.0, + "name": "ons.age.0_10@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13994.278366888162, + "kind": "calibration_drift", + "ledger_value": 14044.0, + "name": "ons.age.0_10@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10698.7965503926, + "kind": "calibration_drift", + "ledger_value": 9918.0, + "name": "ons.age.0_10@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15851.931872645675, + "kind": "calibration_drift", + "ledger_value": 15916.0, + "name": "ons.age.0_10@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11169.43313905847, + "kind": "calibration_drift", + "ledger_value": 10952.0, + "name": "ons.age.0_10@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11025.529985973311, + "kind": "calibration_drift", + "ledger_value": 9371.0, + "name": "ons.age.0_10@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8751.660945536902, + "kind": "calibration_drift", + "ledger_value": 8384.0, + "name": "ons.age.0_10@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12640.457641673995, + "kind": "calibration_drift", + "ledger_value": 11529.0, + "name": "ons.age.0_10@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11922.07964409992, + "kind": "calibration_drift", + "ledger_value": 12954.0, + "name": "ons.age.0_10@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12762.00050361317, + "kind": "calibration_drift", + "ledger_value": 11573.0, + "name": "ons.age.0_10@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12996.662464782858, + "kind": "calibration_drift", + "ledger_value": 13569.0, + "name": "ons.age.0_10@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12766.814082303828, + "kind": "calibration_drift", + "ledger_value": 10026.0, + "name": "ons.age.0_10@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12522.597896763282, + "kind": "calibration_drift", + "ledger_value": 11622.0, + "name": "ons.age.0_10@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12516.507990389491, + "kind": "calibration_drift", + "ledger_value": 14716.0, + "name": "ons.age.0_10@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11540.433355840672, + "kind": "calibration_drift", + "ledger_value": 12423.0, + "name": "ons.age.0_10@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12032.74333197813, + "kind": "calibration_drift", + "ledger_value": 13739.0, + "name": "ons.age.0_10@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11798.081370808439, + "kind": "calibration_drift", + "ledger_value": 14531.0, + "name": "ons.age.0_10@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11303.486160343093, + "kind": "calibration_drift", + "ledger_value": 15369.0, + "name": "ons.age.0_10@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11301.079370997762, + "kind": "calibration_drift", + "ledger_value": 12103.0, + "name": "ons.age.0_10@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12762.000503613168, + "kind": "calibration_drift", + "ledger_value": 9750.0, + "name": "ons.age.0_10@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12392.509717098013, + "kind": "calibration_drift", + "ledger_value": 12727.0, + "name": "ons.age.0_10@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10817.3147125864, + "kind": "calibration_drift", + "ledger_value": 13531.0, + "name": "ons.age.0_10@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12518.914779734823, + "kind": "calibration_drift", + "ledger_value": 10804.0, + "name": "ons.age.0_10@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11181.94329840392, + "kind": "calibration_drift", + "ledger_value": 15853.0, + "name": "ons.age.0_10@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13001.524665480496, + "kind": "calibration_drift", + "ledger_value": 12686.0, + "name": "ons.age.0_10@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 16904.0, + "name": "ons.age.0_10@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 28413.0, + "name": "ons.age.0_10@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 39475.0, + "name": "ons.age.0_10@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 16004.0, + "name": "ons.age.0_10@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 18923.0, + "name": "ons.age.0_10@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 14715.0, + "name": "ons.age.0_10@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 18176.0, + "name": "ons.age.0_10@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 15208.0, + "name": "ons.age.0_10@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 21128.0, + "name": "ons.age.0_10@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.66788551253, + "kind": "calibration_drift", + "ledger_value": 23674.0, + "name": "ons.age.0_10@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5571.539888741596, + "kind": "calibration_drift", + "ledger_value": 4904.0, + "name": "ons.age.0_10@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15698.94186851472, + "kind": "calibration_drift", + "ledger_value": 12427.0, + "name": "ons.age.0_10@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12947.390118833167, + "kind": "calibration_drift", + "ledger_value": 11986.0, + "name": "ons.age.0_10@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12082.250856878623, + "kind": "calibration_drift", + "ledger_value": 11834.0, + "name": "ons.age.0_10@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10417.933821474278, + "kind": "calibration_drift", + "ledger_value": 11143.0, + "name": "ons.age.0_10@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2812.7786452104233, + "kind": "calibration_drift", + "ledger_value": 2138.0, + "name": "ons.age.0_10@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17044.96513067758, + "kind": "calibration_drift", + "ledger_value": 15467.0, + "name": "ons.age.0_10@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25324.799806002997, + "kind": "calibration_drift", + "ledger_value": 21167.0, + "name": "ons.age.0_10@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8438.981561946162, + "kind": "calibration_drift", + "ledger_value": 7065.0, + "name": "ons.age.0_10@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10386.728549587857, + "kind": "calibration_drift", + "ledger_value": 11543.0, + "name": "ons.age.0_10@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10038.735965861362, + "kind": "calibration_drift", + "ledger_value": 8835.0, + "name": "ons.age.0_10@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14355.823924768865, + "kind": "calibration_drift", + "ledger_value": 11872.0, + "name": "ons.age.0_10@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2362.7771037310813, + "kind": "calibration_drift", + "ledger_value": 2000.0, + "name": "ons.age.0_10@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12570.451955322374, + "kind": "calibration_drift", + "ledger_value": 10085.0, + "name": "ons.age.0_10@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2473.39441234915, + "kind": "calibration_drift", + "ledger_value": 2235.0, + "name": "ons.age.0_10@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11999.933501729962, + "kind": "calibration_drift", + "ledger_value": 9552.0, + "name": "ons.age.0_10@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35192.660007189756, + "kind": "calibration_drift", + "ledger_value": 33717.0, + "name": "ons.age.0_10@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9964.59654403466, + "kind": "calibration_drift", + "ledger_value": 8219.0, + "name": "ons.age.0_10@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24105.642114716313, + "kind": "calibration_drift", + "ledger_value": 22651.0, + "name": "ons.age.0_10@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28377.751440353037, + "kind": "calibration_drift", + "ledger_value": 27377.0, + "name": "ons.age.0_10@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9250.749048536349, + "kind": "calibration_drift", + "ledger_value": 6880.0, + "name": "ons.age.0_10@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55367.08349053202, + "kind": "calibration_drift", + "ledger_value": 44811.0, + "name": "ons.age.0_10@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19785.64883739179, + "kind": "calibration_drift", + "ledger_value": 18214.0, + "name": "ons.age.0_10@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9512.120101681567, + "kind": "calibration_drift", + "ledger_value": 8689.0, + "name": "ons.age.0_10@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19506.30785181542, + "kind": "calibration_drift", + "ledger_value": 20026.0, + "name": "ons.age.0_10@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12303.700682886389, + "kind": "calibration_drift", + "ledger_value": 10252.0, + "name": "ons.age.0_10@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16000.449357569029, + "kind": "calibration_drift", + "ledger_value": 13868.0, + "name": "ons.age.0_10@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11722.098977555008, + "kind": "calibration_drift", + "ledger_value": 11277.0, + "name": "ons.age.0_10@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40005.26616277645, + "kind": "calibration_drift", + "ledger_value": 34781.0, + "name": "ons.age.0_10@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16243.20485196821, + "kind": "calibration_drift", + "ledger_value": 13818.0, + "name": "ons.age.0_10@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66796.0681211263, + "kind": "calibration_drift", + "ledger_value": 60199.0, + "name": "ons.age.0_10@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36690.19024458049, + "kind": "calibration_drift", + "ledger_value": 35277.0, + "name": "ons.age.0_10@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10624.959775941114, + "kind": "calibration_drift", + "ledger_value": 11146.0, + "name": "ons.age.0_10@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11362.461135347194, + "kind": "calibration_drift", + "ledger_value": 2138.0, + "name": "ons.age.0_10@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10313.256649557366, + "kind": "calibration_drift", + "ledger_value": 11580.0, + "name": "ons.age.0_10@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11387.16213781534, + "kind": "calibration_drift", + "ledger_value": 7928.0, + "name": "ons.age.0_10@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3073.5104499650324, + "kind": "calibration_drift", + "ledger_value": 4221.0, + "name": "ons.age.0_10@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11261.30464904907, + "kind": "calibration_drift", + "ledger_value": 11755.0, + "name": "ons.age.0_10@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11353.05122964504, + "kind": "calibration_drift", + "ledger_value": 11450.0, + "name": "ons.age.0_10@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10767.284599686149, + "kind": "calibration_drift", + "ledger_value": 9299.0, + "name": "ons.age.0_10@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5287.190766396028, + "kind": "calibration_drift", + "ledger_value": 9676.0, + "name": "ons.age.0_10@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11467.14633628362, + "kind": "calibration_drift", + "ledger_value": 9258.0, + "name": "ons.age.0_10@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13800.167781782144, + "kind": "calibration_drift", + "ledger_value": 8628.0, + "name": "ons.age.0_10@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15816.68704898882, + "kind": "calibration_drift", + "ledger_value": 9498.0, + "name": "ons.age.0_10@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11735.178090303687, + "kind": "calibration_drift", + "ledger_value": 7326.0, + "name": "ons.age.0_10@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12281.491338129883, + "kind": "calibration_drift", + "ledger_value": 10152.0, + "name": "ons.age.0_10@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9557.704738538141, + "kind": "calibration_drift", + "ledger_value": 8622.0, + "name": "ons.age.0_10@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12648.230650489088, + "kind": "calibration_drift", + "ledger_value": 9906.0, + "name": "ons.age.0_10@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12963.834182786377, + "kind": "calibration_drift", + "ledger_value": 9116.0, + "name": "ons.age.0_10@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11719.026685921317, + "kind": "calibration_drift", + "ledger_value": 9172.0, + "name": "ons.age.0_10@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9124.366818571965, + "kind": "calibration_drift", + "ledger_value": 8229.0, + "name": "ons.age.0_10@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16867.454234120138, + "kind": "calibration_drift", + "ledger_value": 7501.0, + "name": "ons.age.0_10@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11321.092837404112, + "kind": "calibration_drift", + "ledger_value": 9823.0, + "name": "ons.age.0_10@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10733.383061917724, + "kind": "calibration_drift", + "ledger_value": 9605.0, + "name": "ons.age.0_10@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11182.304926321292, + "kind": "calibration_drift", + "ledger_value": 10188.0, + "name": "ons.age.0_10@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11558.75176829406, + "kind": "calibration_drift", + "ledger_value": 9132.0, + "name": "ons.age.0_10@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10569.041411306083, + "kind": "calibration_drift", + "ledger_value": 8922.0, + "name": "ons.age.0_10@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13195.068500558182, + "kind": "calibration_drift", + "ledger_value": 9043.0, + "name": "ons.age.0_10@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10226.784321107452, + "kind": "calibration_drift", + "ledger_value": 9129.0, + "name": "ons.age.0_10@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10375.665496650461, + "kind": "calibration_drift", + "ledger_value": 10401.0, + "name": "ons.age.0_10@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14051.478133369486, + "kind": "calibration_drift", + "ledger_value": 9405.0, + "name": "ons.age.0_10@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12592.818068285545, + "kind": "calibration_drift", + "ledger_value": 11078.0, + "name": "ons.age.0_10@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12416.01770252426, + "kind": "calibration_drift", + "ledger_value": 8686.0, + "name": "ons.age.0_10@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12588.101353052345, + "kind": "calibration_drift", + "ledger_value": 10828.0, + "name": "ons.age.0_10@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11942.334811860112, + "kind": "calibration_drift", + "ledger_value": 9016.0, + "name": "ons.age.0_10@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9871.275731203767, + "kind": "calibration_drift", + "ledger_value": 10492.0, + "name": "ons.age.0_10@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12067.083358202628, + "kind": "calibration_drift", + "ledger_value": 9038.0, + "name": "ons.age.0_10@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15275.330841660763, + "kind": "calibration_drift", + "ledger_value": 9334.0, + "name": "ons.age.0_10@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14884.313268893942, + "kind": "calibration_drift", + "ledger_value": 9885.0, + "name": "ons.age.0_10@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10786.105109845823, + "kind": "calibration_drift", + "ledger_value": 9907.0, + "name": "ons.age.0_10@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12141.626249760286, + "kind": "calibration_drift", + "ledger_value": 8204.0, + "name": "ons.age.0_10@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13959.971505368921, + "kind": "calibration_drift", + "ledger_value": 9701.0, + "name": "ons.age.0_10@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11278.821188513624, + "kind": "calibration_drift", + "ledger_value": 11462.0, + "name": "ons.age.0_10@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9965.240697069019, + "kind": "calibration_drift", + "ledger_value": 10879.0, + "name": "ons.age.0_10@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10587.783590988343, + "kind": "calibration_drift", + "ledger_value": 9911.0, + "name": "ons.age.0_10@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12434.456692249774, + "kind": "calibration_drift", + "ledger_value": 9219.0, + "name": "ons.age.0_10@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13341.411758704446, + "kind": "calibration_drift", + "ledger_value": 10393.0, + "name": "ons.age.0_10@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11055.133615114944, + "kind": "calibration_drift", + "ledger_value": 7196.0, + "name": "ons.age.0_10@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9840.390068212882, + "kind": "calibration_drift", + "ledger_value": 10047.0, + "name": "ons.age.0_10@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12262.6362395792, + "kind": "calibration_drift", + "ledger_value": 8780.0, + "name": "ons.age.0_10@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12321.74280383054, + "kind": "calibration_drift", + "ledger_value": 9423.0, + "name": "ons.age.0_10@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11745.637200491627, + "kind": "calibration_drift", + "ledger_value": 9874.0, + "name": "ons.age.0_10@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12272.222581013264, + "kind": "calibration_drift", + "ledger_value": 9156.0, + "name": "ons.age.0_10@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10620.92772451513, + "kind": "calibration_drift", + "ledger_value": 9042.0, + "name": "ons.age.0_10@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11487.297276675245, + "kind": "calibration_drift", + "ledger_value": 8022.0, + "name": "ons.age.0_10@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11787.017260816836, + "kind": "calibration_drift", + "ledger_value": 8325.0, + "name": "ons.age.0_10@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9391.608140513052, + "kind": "calibration_drift", + "ledger_value": 7784.0, + "name": "ons.age.0_10@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13002.857061733197, + "kind": "calibration_drift", + "ledger_value": 9678.0, + "name": "ons.age.0_10@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11208.693866268344, + "kind": "calibration_drift", + "ledger_value": 10380.0, + "name": "ons.age.0_10@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6466.465304897185, + "kind": "calibration_drift", + "ledger_value": 6436.0, + "name": "ons.age.0_10@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10827.660227950495, + "kind": "calibration_drift", + "ledger_value": 10945.0, + "name": "ons.age.0_10@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10155.06230355716, + "kind": "calibration_drift", + "ledger_value": 10239.0, + "name": "ons.age.0_10@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9667.137219676446, + "kind": "calibration_drift", + "ledger_value": 9942.0, + "name": "ons.age.0_10@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15388.107426293736, + "kind": "calibration_drift", + "ledger_value": 15587.0, + "name": "ons.age.0_10@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13965.15459202807, + "kind": "calibration_drift", + "ledger_value": 14202.0, + "name": "ons.age.0_10@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5692.7832993811535, + "kind": "calibration_drift", + "ledger_value": 5842.0, + "name": "ons.age.0_10@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11642.164650843, + "kind": "calibration_drift", + "ledger_value": 11748.0, + "name": "ons.age.0_10@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18236.928981780533, + "kind": "calibration_drift", + "ledger_value": 18492.0, + "name": "ons.age.0_10@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23805.301104395287, + "kind": "calibration_drift", + "ledger_value": 24545.0, + "name": "ons.age.0_10@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14097.341467342367, + "kind": "calibration_drift", + "ledger_value": 14233.0, + "name": "ons.age.0_10@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14689.26651930124, + "kind": "calibration_drift", + "ledger_value": 14813.0, + "name": "ons.age.0_10@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14054.575125328918, + "kind": "calibration_drift", + "ledger_value": 14251.0, + "name": "ons.age.0_10@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39261.445892983145, + "kind": "calibration_drift", + "ledger_value": 39373.0, + "name": "ons.age.0_10@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24871.54376777605, + "kind": "calibration_drift", + "ledger_value": 25096.0, + "name": "ons.age.0_10@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18311.770080304068, + "kind": "calibration_drift", + "ledger_value": 18443.0, + "name": "ons.age.0_10@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6973.829635147647, + "kind": "calibration_drift", + "ledger_value": 7131.0, + "name": "ons.age.0_10@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9971.361425363028, + "kind": "calibration_drift", + "ledger_value": 10193.0, + "name": "ons.age.0_10@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8396.782469413314, + "kind": "calibration_drift", + "ledger_value": 8607.0, + "name": "ons.age.0_10@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19954.386398547904, + "kind": "calibration_drift", + "ledger_value": 20751.0, + "name": "ons.age.0_10@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11675.211369671575, + "kind": "calibration_drift", + "ledger_value": 11844.0, + "name": "ons.age.0_10@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6544.222290376183, + "kind": "calibration_drift", + "ledger_value": 6689.0, + "name": "ons.age.0_10@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10273.004567105267, + "kind": "calibration_drift", + "ledger_value": 9837.0, + "name": "ons.age.0_10@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11513.928865003541, + "kind": "calibration_drift", + "ledger_value": 10807.0, + "name": "ons.age.0_10@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9418.609799445734, + "kind": "calibration_drift", + "ledger_value": 8273.0, + "name": "ons.age.0_10@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10591.956521787879, + "kind": "calibration_drift", + "ledger_value": 10294.0, + "name": "ons.age.0_10@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8630.974023166738, + "kind": "calibration_drift", + "ledger_value": 8064.0, + "name": "ons.age.0_10@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10505.758621852008, + "kind": "calibration_drift", + "ledger_value": 9460.0, + "name": "ons.age.0_10@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9097.399341435283, + "kind": "calibration_drift", + "ledger_value": 8796.0, + "name": "ons.age.0_10@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11244.00319871695, + "kind": "calibration_drift", + "ledger_value": 10192.0, + "name": "ons.age.0_10@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11030.68805252554, + "kind": "calibration_drift", + "ledger_value": 12257.0, + "name": "ons.age.0_10@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10899.793484110338, + "kind": "calibration_drift", + "ledger_value": 10156.0, + "name": "ons.age.0_10@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12571.717144147908, + "kind": "calibration_drift", + "ledger_value": 10083.0, + "name": "ons.age.0_10@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12968.957305888976, + "kind": "calibration_drift", + "ledger_value": 12246.0, + "name": "ons.age.0_10@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8728.85893813968, + "kind": "calibration_drift", + "ledger_value": 7759.0, + "name": "ons.age.0_10@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10091.971107634294, + "kind": "calibration_drift", + "ledger_value": 8811.0, + "name": "ons.age.0_10@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10321.261583625428, + "kind": "calibration_drift", + "ledger_value": 10355.0, + "name": "ons.age.0_10@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9653.487505468962, + "kind": "calibration_drift", + "ledger_value": 8804.0, + "name": "ons.age.0_10@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9779.270097243767, + "kind": "calibration_drift", + "ledger_value": 9305.0, + "name": "ons.age.0_10@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10297.828378791604, + "kind": "calibration_drift", + "ledger_value": 9736.0, + "name": "ons.age.0_10@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11818.777501962093, + "kind": "calibration_drift", + "ledger_value": 11182.0, + "name": "ons.age.0_10@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10348.383348479392, + "kind": "calibration_drift", + "ledger_value": 9866.0, + "name": "ons.age.0_10@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9212.01098847816, + "kind": "calibration_drift", + "ledger_value": 8610.0, + "name": "ons.age.0_10@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10039.652222337785, + "kind": "calibration_drift", + "ledger_value": 9604.0, + "name": "ons.age.0_10@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10795.655769531066, + "kind": "calibration_drift", + "ledger_value": 10225.0, + "name": "ons.age.0_10@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13750.251520422118, + "kind": "calibration_drift", + "ledger_value": 15137.0, + "name": "ons.age.0_10@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11599.160243864615, + "kind": "calibration_drift", + "ledger_value": 11056.0, + "name": "ons.age.0_10@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11390.707290427024, + "kind": "calibration_drift", + "ledger_value": 11011.0, + "name": "ons.age.0_10@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11480.593750383034, + "kind": "calibration_drift", + "ledger_value": 10630.0, + "name": "ons.age.0_10@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11022.087987451847, + "kind": "calibration_drift", + "ledger_value": 11248.0, + "name": "ons.age.0_10@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10564.75585725434, + "kind": "calibration_drift", + "ledger_value": 10221.0, + "name": "ons.age.0_10@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10826.456231945222, + "kind": "calibration_drift", + "ledger_value": 10533.0, + "name": "ons.age.0_10@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11127.66708590514, + "kind": "calibration_drift", + "ledger_value": 10556.0, + "name": "ons.age.0_10@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7198.609515239269, + "kind": "calibration_drift", + "ledger_value": 6438.0, + "name": "ons.age.0_10@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11581.902987096777, + "kind": "calibration_drift", + "ledger_value": 12274.0, + "name": "ons.age.10_20@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18889.115697485628, + "kind": "calibration_drift", + "ledger_value": 19524.0, + "name": "ons.age.10_20@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15532.92981174837, + "kind": "calibration_drift", + "ledger_value": 16103.0, + "name": "ons.age.10_20@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24960.9643010769, + "kind": "calibration_drift", + "ledger_value": 26094.0, + "name": "ons.age.10_20@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12560.669041813666, + "kind": "calibration_drift", + "ledger_value": 13214.0, + "name": "ons.age.10_20@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15372.556029197936, + "kind": "calibration_drift", + "ledger_value": 16066.0, + "name": "ons.age.10_20@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24380.702796939873, + "kind": "calibration_drift", + "ledger_value": 25441.0, + "name": "ons.age.10_20@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22706.01172218595, + "kind": "calibration_drift", + "ledger_value": 23837.0, + "name": "ons.age.10_20@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15669.004536336617, + "kind": "calibration_drift", + "ledger_value": 16120.0, + "name": "ons.age.10_20@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33945.78397317514, + "kind": "calibration_drift", + "ledger_value": 35618.0, + "name": "ons.age.10_20@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35492.176021888714, + "kind": "calibration_drift", + "ledger_value": 36568.0, + "name": "ons.age.10_20@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18492.555071542738, + "kind": "calibration_drift", + "ledger_value": 19196.0, + "name": "ons.age.10_20@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19355.657610359616, + "kind": "calibration_drift", + "ledger_value": 19957.0, + "name": "ons.age.10_20@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25016.366153230683, + "kind": "calibration_drift", + "ledger_value": 26603.0, + "name": "ons.age.10_20@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33969.111068818835, + "kind": "calibration_drift", + "ledger_value": 35350.0, + "name": "ons.age.10_20@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52937.92767642044, + "kind": "calibration_drift", + "ledger_value": 55223.0, + "name": "ons.age.10_20@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5399.250679197935, + "kind": "calibration_drift", + "ledger_value": 5463.0, + "name": "ons.age.10_20@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47967.31237967548, + "kind": "calibration_drift", + "ledger_value": 48322.0, + "name": "ons.age.10_20@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19405.22768860248, + "kind": "calibration_drift", + "ledger_value": 19745.0, + "name": "ons.age.10_20@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24070.64681734237, + "kind": "calibration_drift", + "ledger_value": 25328.0, + "name": "ons.age.10_20@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32784.2890025826, + "kind": "calibration_drift", + "ledger_value": 34958.0, + "name": "ons.age.10_20@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26000.9639818585, + "kind": "calibration_drift", + "ledger_value": 27077.0, + "name": "ons.age.10_20@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54444.46927007603, + "kind": "calibration_drift", + "ledger_value": 56387.0, + "name": "ons.age.10_20@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24422.497176634835, + "kind": "calibration_drift", + "ledger_value": 25370.0, + "name": "ons.age.10_20@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33847.6157790079, + "kind": "calibration_drift", + "ledger_value": 35455.0, + "name": "ons.age.10_20@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31560.588443606866, + "kind": "calibration_drift", + "ledger_value": 32813.0, + "name": "ons.age.10_20@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14466.687148367608, + "kind": "calibration_drift", + "ledger_value": 15007.0, + "name": "ons.age.10_20@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28342.42120709483, + "kind": "calibration_drift", + "ledger_value": 29737.0, + "name": "ons.age.10_20@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29695.3927544294, + "kind": "calibration_drift", + "ledger_value": 30852.0, + "name": "ons.age.10_20@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31560.588443606866, + "kind": "calibration_drift", + "ledger_value": 32157.0, + "name": "ons.age.10_20@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20596.853491068126, + "kind": "calibration_drift", + "ledger_value": 21572.0, + "name": "ons.age.10_20@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23607.992753742332, + "kind": "calibration_drift", + "ledger_value": 24312.0, + "name": "ons.age.10_20@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35435.80220741644, + "kind": "calibration_drift", + "ledger_value": 37036.0, + "name": "ons.age.10_20@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15797.303562376965, + "kind": "calibration_drift", + "ledger_value": 16567.0, + "name": "ons.age.10_20@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20300.404983929446, + "kind": "calibration_drift", + "ledger_value": 20808.0, + "name": "ons.age.10_20@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21342.34858934802, + "kind": "calibration_drift", + "ledger_value": 22255.0, + "name": "ons.age.10_20@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23539.955391448206, + "kind": "calibration_drift", + "ledger_value": 24600.0, + "name": "ons.age.10_20@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19936.89107681513, + "kind": "calibration_drift", + "ledger_value": 20576.0, + "name": "ons.age.10_20@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24726.721382321415, + "kind": "calibration_drift", + "ledger_value": 26305.0, + "name": "ons.age.10_20@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39240.06272197642, + "kind": "calibration_drift", + "ledger_value": 40514.0, + "name": "ons.age.10_20@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32249.709727414487, + "kind": "calibration_drift", + "ledger_value": 32674.0, + "name": "ons.age.10_20@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24984.291396720597, + "kind": "calibration_drift", + "ledger_value": 26003.0, + "name": "ons.age.10_20@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30852.999875747984, + "kind": "calibration_drift", + "ledger_value": 32185.0, + "name": "ons.age.10_20@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13459.734186414582, + "kind": "calibration_drift", + "ledger_value": 13969.0, + "name": "ons.age.10_20@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 60601.8505576942, + "kind": "calibration_drift", + "ledger_value": 62850.0, + "name": "ons.age.10_20@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44348.696667946606, + "kind": "calibration_drift", + "ledger_value": 45894.0, + "name": "ons.age.10_20@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39595.80093054284, + "kind": "calibration_drift", + "ledger_value": 41460.0, + "name": "ons.age.10_20@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34195.578289026416, + "kind": "calibration_drift", + "ledger_value": 35345.0, + "name": "ons.age.10_20@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61586.44838632201, + "kind": "calibration_drift", + "ledger_value": 63998.0, + "name": "ons.age.10_20@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 197.30835065295784, + "kind": "calibration_drift", + "ledger_value": 185.0, + "name": "ons.age.10_20@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58424.65496428224, + "kind": "calibration_drift", + "ledger_value": 60542.0, + "name": "ons.age.10_20@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22999.54434236917, + "kind": "calibration_drift", + "ledger_value": 24057.0, + "name": "ons.age.10_20@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34218.90538467011, + "kind": "calibration_drift", + "ledger_value": 36158.0, + "name": "ons.age.10_20@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33378.157979178446, + "kind": "calibration_drift", + "ledger_value": 34637.0, + "name": "ons.age.10_20@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44616.95826784915, + "kind": "calibration_drift", + "ledger_value": 46142.0, + "name": "ons.age.10_20@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39586.08130735796, + "kind": "calibration_drift", + "ledger_value": 41284.0, + "name": "ons.age.10_20@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 70020.16542383784, + "kind": "calibration_drift", + "ledger_value": 73316.0, + "name": "ons.age.10_20@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44624.73396639705, + "kind": "calibration_drift", + "ledger_value": 46624.0, + "name": "ons.age.10_20@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51605.36733777411, + "kind": "calibration_drift", + "ledger_value": 53645.0, + "name": "ons.age.10_20@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28955.72943006043, + "kind": "calibration_drift", + "ledger_value": 30383.0, + "name": "ons.age.10_20@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22959.693887311183, + "kind": "calibration_drift", + "ledger_value": 23412.0, + "name": "ons.age.10_20@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 65961.25078183414, + "kind": "calibration_drift", + "ledger_value": 67925.0, + "name": "ons.age.10_20@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 63673.25148411462, + "kind": "calibration_drift", + "ledger_value": 66001.0, + "name": "ons.age.10_20@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18005.60194998051, + "kind": "calibration_drift", + "ledger_value": 18478.0, + "name": "ons.age.10_20@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10520.520135308452, + "kind": "calibration_drift", + "ledger_value": 10863.0, + "name": "ons.age.10_20@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10819.884529402594, + "kind": "calibration_drift", + "ledger_value": 11212.0, + "name": "ons.age.10_20@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19794.984578315958, + "kind": "calibration_drift", + "ledger_value": 21031.0, + "name": "ons.age.10_20@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20516.180618633665, + "kind": "calibration_drift", + "ledger_value": 21515.0, + "name": "ons.age.10_20@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13254.650137213725, + "kind": "calibration_drift", + "ledger_value": 13927.0, + "name": "ons.age.10_20@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8631.025388168797, + "kind": "calibration_drift", + "ledger_value": 8935.0, + "name": "ons.age.10_20@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11127.996584363125, + "kind": "calibration_drift", + "ledger_value": 11474.0, + "name": "ons.age.10_20@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7052.558582945134, + "kind": "calibration_drift", + "ledger_value": 7246.0, + "name": "ons.age.10_20@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12230.201853527924, + "kind": "calibration_drift", + "ledger_value": 12684.0, + "name": "ons.age.10_20@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9727.398883422671, + "kind": "calibration_drift", + "ledger_value": 9938.0, + "name": "ons.age.10_20@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10434.015488963067, + "kind": "calibration_drift", + "ledger_value": 11046.0, + "name": "ons.age.10_20@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13157.453905364977, + "kind": "calibration_drift", + "ledger_value": 13771.0, + "name": "ons.age.10_20@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15558.200832029044, + "kind": "calibration_drift", + "ledger_value": 16055.0, + "name": "ons.age.10_20@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16344.518347685414, + "kind": "calibration_drift", + "ledger_value": 17538.0, + "name": "ons.age.10_20@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9752.669903703345, + "kind": "calibration_drift", + "ledger_value": 10232.0, + "name": "ons.age.10_20@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10873.342456919405, + "kind": "calibration_drift", + "ledger_value": 11218.0, + "name": "ons.age.10_20@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9287.099953147843, + "kind": "calibration_drift", + "ledger_value": 9832.0, + "name": "ons.age.10_20@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13706.612615310401, + "kind": "calibration_drift", + "ledger_value": 14168.0, + "name": "ons.age.10_20@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6913.567971401424, + "kind": "calibration_drift", + "ledger_value": 7248.0, + "name": "ons.age.10_20@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6093.2317745979935, + "kind": "calibration_drift", + "ledger_value": 6145.0, + "name": "ons.age.10_20@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11792.818810208559, + "kind": "calibration_drift", + "ledger_value": 11914.0, + "name": "ons.age.10_20@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9939.286668852941, + "kind": "calibration_drift", + "ledger_value": 10229.0, + "name": "ons.age.10_20@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11081.342393075725, + "kind": "calibration_drift", + "ledger_value": 11396.0, + "name": "ons.age.10_20@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9441.641961787353, + "kind": "calibration_drift", + "ledger_value": 9822.0, + "name": "ons.age.10_20@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17285.37787198129, + "kind": "calibration_drift", + "ledger_value": 18214.0, + "name": "ons.age.10_20@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22824.591125041425, + "kind": "calibration_drift", + "ledger_value": 23784.0, + "name": "ons.age.10_20@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17547.807697972912, + "kind": "calibration_drift", + "ledger_value": 18442.0, + "name": "ons.age.10_20@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8652.408559175521, + "kind": "calibration_drift", + "ledger_value": 8887.0, + "name": "ons.age.10_20@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9717.679260237795, + "kind": "calibration_drift", + "ledger_value": 9960.0, + "name": "ons.age.10_20@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21365.675684991722, + "kind": "calibration_drift", + "ledger_value": 22162.0, + "name": "ons.age.10_20@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23531.20773058182, + "kind": "calibration_drift", + "ledger_value": 24699.0, + "name": "ons.age.10_20@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14966.275780070171, + "kind": "calibration_drift", + "ledger_value": 15297.0, + "name": "ons.age.10_20@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12098.986940532115, + "kind": "calibration_drift", + "ledger_value": 12651.0, + "name": "ons.age.10_20@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7062.278206130009, + "kind": "calibration_drift", + "ledger_value": 7084.0, + "name": "ons.age.10_20@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9820.707265997467, + "kind": "calibration_drift", + "ledger_value": 10280.0, + "name": "ons.age.10_20@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15018.761745268495, + "kind": "calibration_drift", + "ledger_value": 15759.0, + "name": "ons.age.10_20@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11314.61334951272, + "kind": "calibration_drift", + "ledger_value": 11480.0, + "name": "ons.age.10_20@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13867.958360179322, + "kind": "calibration_drift", + "ledger_value": 14493.0, + "name": "ons.age.10_20@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9547.585854502488, + "kind": "calibration_drift", + "ledger_value": 9729.0, + "name": "ons.age.10_20@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9792.52035876133, + "kind": "calibration_drift", + "ledger_value": 9963.0, + "name": "ons.age.10_20@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16113.191315885395, + "kind": "calibration_drift", + "ledger_value": 16890.0, + "name": "ons.age.10_20@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13762.986429782675, + "kind": "calibration_drift", + "ledger_value": 14298.0, + "name": "ons.age.10_20@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10586.6135729656, + "kind": "calibration_drift", + "ledger_value": 11465.0, + "name": "ons.age.10_20@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21026.460835839593, + "kind": "calibration_drift", + "ledger_value": 21927.0, + "name": "ons.age.10_20@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14591.098325134006, + "kind": "calibration_drift", + "ledger_value": 15119.0, + "name": "ons.age.10_20@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16289.116495531627, + "kind": "calibration_drift", + "ledger_value": 17061.0, + "name": "ons.age.10_20@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11902.650552197643, + "kind": "calibration_drift", + "ledger_value": 12302.0, + "name": "ons.age.10_20@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9290.987802421792, + "kind": "calibration_drift", + "ledger_value": 9608.0, + "name": "ons.age.10_20@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12065.94022170354, + "kind": "calibration_drift", + "ledger_value": 12342.0, + "name": "ons.age.10_20@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13518.05192552383, + "kind": "calibration_drift", + "ledger_value": 14066.0, + "name": "ons.age.10_20@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17599.321700852746, + "kind": "calibration_drift", + "ledger_value": 18038.0, + "name": "ons.age.10_20@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10821.828454039569, + "kind": "calibration_drift", + "ledger_value": 11343.0, + "name": "ons.age.10_20@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14625.117006281067, + "kind": "calibration_drift", + "ledger_value": 15127.0, + "name": "ons.age.10_20@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16720.667764940066, + "kind": "calibration_drift", + "ledger_value": 17666.0, + "name": "ons.age.10_20@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11985.26734926908, + "kind": "calibration_drift", + "ledger_value": 12425.0, + "name": "ons.age.10_20@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18614.05036135367, + "kind": "calibration_drift", + "ledger_value": 19544.0, + "name": "ons.age.10_20@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13321.71553718936, + "kind": "calibration_drift", + "ledger_value": 13535.0, + "name": "ons.age.10_20@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15248.14485243154, + "kind": "calibration_drift", + "ledger_value": 15730.0, + "name": "ons.age.10_20@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12079.547694162366, + "kind": "calibration_drift", + "ledger_value": 12576.0, + "name": "ons.age.10_20@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12446.949450550632, + "kind": "calibration_drift", + "ledger_value": 12897.0, + "name": "ons.age.10_20@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16457.265976629962, + "kind": "calibration_drift", + "ledger_value": 16994.0, + "name": "ons.age.10_20@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20423.844198377355, + "kind": "calibration_drift", + "ledger_value": 21460.0, + "name": "ons.age.10_20@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15311.322403133227, + "kind": "calibration_drift", + "ledger_value": 16311.0, + "name": "ons.age.10_20@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13051.510012649842, + "kind": "calibration_drift", + "ledger_value": 13483.0, + "name": "ons.age.10_20@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13686.201406622164, + "kind": "calibration_drift", + "ledger_value": 14458.0, + "name": "ons.age.10_20@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20621.152549030314, + "kind": "calibration_drift", + "ledger_value": 21744.0, + "name": "ons.age.10_20@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14929.341211967647, + "kind": "calibration_drift", + "ledger_value": 15258.0, + "name": "ons.age.10_20@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11739.360882691748, + "kind": "calibration_drift", + "ledger_value": 12030.0, + "name": "ons.age.10_20@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18347.732686088104, + "kind": "calibration_drift", + "ledger_value": 19181.0, + "name": "ons.age.10_20@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15596.107362450057, + "kind": "calibration_drift", + "ledger_value": 15883.0, + "name": "ons.age.10_20@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16672.069649015695, + "kind": "calibration_drift", + "ledger_value": 17221.0, + "name": "ons.age.10_20@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15007.098197446645, + "kind": "calibration_drift", + "ledger_value": 15585.0, + "name": "ons.age.10_20@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12213.678494113637, + "kind": "calibration_drift", + "ledger_value": 12913.0, + "name": "ons.age.10_20@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13242.014627073388, + "kind": "calibration_drift", + "ledger_value": 13783.0, + "name": "ons.age.10_20@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7937.044292768737, + "kind": "calibration_drift", + "ledger_value": 8354.0, + "name": "ons.age.10_20@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10524.407984582402, + "kind": "calibration_drift", + "ledger_value": 11017.0, + "name": "ons.age.10_20@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18073.639312274634, + "kind": "calibration_drift", + "ledger_value": 18880.0, + "name": "ons.age.10_20@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12825.04279244226, + "kind": "calibration_drift", + "ledger_value": 13475.0, + "name": "ons.age.10_20@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19471.321126259627, + "kind": "calibration_drift", + "ledger_value": 20465.0, + "name": "ons.age.10_20@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7353.8669016762515, + "kind": "calibration_drift", + "ledger_value": 7759.0, + "name": "ons.age.10_20@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8622.27772730241, + "kind": "calibration_drift", + "ledger_value": 9020.0, + "name": "ons.age.10_20@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12481.94009401618, + "kind": "calibration_drift", + "ledger_value": 13039.0, + "name": "ons.age.10_20@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14214.948907879352, + "kind": "calibration_drift", + "ledger_value": 14710.0, + "name": "ons.age.10_20@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12219.510268024562, + "kind": "calibration_drift", + "ledger_value": 12415.0, + "name": "ons.age.10_20@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11945.416894211094, + "kind": "calibration_drift", + "ledger_value": 12235.0, + "name": "ons.age.10_20@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23518.57222044148, + "kind": "calibration_drift", + "ledger_value": 23766.0, + "name": "ons.age.10_20@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11636.332876932076, + "kind": "calibration_drift", + "ledger_value": 11971.0, + "name": "ons.age.10_20@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12261.304647719522, + "kind": "calibration_drift", + "ledger_value": 12796.0, + "name": "ons.age.10_20@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5804.558966007213, + "kind": "calibration_drift", + "ledger_value": 6053.0, + "name": "ons.age.10_20@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11670.351558079137, + "kind": "calibration_drift", + "ledger_value": 12253.0, + "name": "ons.age.10_20@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7792.221907314103, + "kind": "calibration_drift", + "ledger_value": 8547.0, + "name": "ons.age.10_20@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8309.30586074944, + "kind": "calibration_drift", + "ledger_value": 8631.0, + "name": "ons.age.10_20@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13771.734090649063, + "kind": "calibration_drift", + "ledger_value": 14001.0, + "name": "ons.age.10_20@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12957.229667756557, + "kind": "calibration_drift", + "ledger_value": 14046.0, + "name": "ons.age.10_20@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12888.220343143947, + "kind": "calibration_drift", + "ledger_value": 13465.0, + "name": "ons.age.10_20@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10104.520262995811, + "kind": "calibration_drift", + "ledger_value": 10543.0, + "name": "ons.age.10_20@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16378.537028832476, + "kind": "calibration_drift", + "ledger_value": 16901.0, + "name": "ons.age.10_20@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10233.791251354645, + "kind": "calibration_drift", + "ledger_value": 10754.0, + "name": "ons.age.10_20@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14965.303817751685, + "kind": "calibration_drift", + "ledger_value": 15463.0, + "name": "ons.age.10_20@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13791.173337018812, + "kind": "calibration_drift", + "ledger_value": 14413.0, + "name": "ons.age.10_20@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10763.51071493032, + "kind": "calibration_drift", + "ledger_value": 11110.0, + "name": "ons.age.10_20@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15724.406388490404, + "kind": "calibration_drift", + "ledger_value": 16142.0, + "name": "ons.age.10_20@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9348.333579212554, + "kind": "calibration_drift", + "ledger_value": 9695.0, + "name": "ons.age.10_20@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16912.144341682102, + "kind": "calibration_drift", + "ledger_value": 17261.0, + "name": "ons.age.10_20@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15853.677376849238, + "kind": "calibration_drift", + "ledger_value": 16550.0, + "name": "ons.age.10_20@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14455.02360054576, + "kind": "calibration_drift", + "ledger_value": 15231.0, + "name": "ons.age.10_20@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12861.977360544784, + "kind": "calibration_drift", + "ledger_value": 13586.0, + "name": "ons.age.10_20@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12267.136421630448, + "kind": "calibration_drift", + "ledger_value": 12676.0, + "name": "ons.age.10_20@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12998.052085133031, + "kind": "calibration_drift", + "ledger_value": 13448.0, + "name": "ons.age.10_20@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12545.117644717866, + "kind": "calibration_drift", + "ledger_value": 13095.0, + "name": "ons.age.10_20@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13608.444421143166, + "kind": "calibration_drift", + "ledger_value": 13973.0, + "name": "ons.age.10_20@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14299.509629587763, + "kind": "calibration_drift", + "ledger_value": 14934.0, + "name": "ons.age.10_20@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18717.078367113347, + "kind": "calibration_drift", + "ledger_value": 19434.0, + "name": "ons.age.10_20@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22126.722180367415, + "kind": "calibration_drift", + "ledger_value": 23288.0, + "name": "ons.age.10_20@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17238.723680693893, + "kind": "calibration_drift", + "ledger_value": 17798.0, + "name": "ons.age.10_20@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17055.994764818246, + "kind": "calibration_drift", + "ledger_value": 17986.0, + "name": "ons.age.10_20@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13173.005302460777, + "kind": "calibration_drift", + "ledger_value": 13647.0, + "name": "ons.age.10_20@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11039.548013380765, + "kind": "calibration_drift", + "ledger_value": 11527.0, + "name": "ons.age.10_20@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14709.677727989478, + "kind": "calibration_drift", + "ledger_value": 15460.0, + "name": "ons.age.10_20@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11400.146033539619, + "kind": "calibration_drift", + "ledger_value": 11943.0, + "name": "ons.age.10_20@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14547.360020802069, + "kind": "calibration_drift", + "ledger_value": 14955.0, + "name": "ons.age.10_20@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11104.669488719424, + "kind": "calibration_drift", + "ledger_value": 11657.0, + "name": "ons.age.10_20@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14526.948812113833, + "kind": "calibration_drift", + "ledger_value": 15063.0, + "name": "ons.age.10_20@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9824.595115271419, + "kind": "calibration_drift", + "ledger_value": 10203.0, + "name": "ons.age.10_20@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9251.137347363807, + "kind": "calibration_drift", + "ledger_value": 9434.0, + "name": "ons.age.10_20@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10162.83800210506, + "kind": "calibration_drift", + "ledger_value": 10394.0, + "name": "ons.age.10_20@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17158.05080825943, + "kind": "calibration_drift", + "ledger_value": 17678.0, + "name": "ons.age.10_20@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11000.669520641266, + "kind": "calibration_drift", + "ledger_value": 11575.0, + "name": "ons.age.10_20@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18269.00373829062, + "kind": "calibration_drift", + "ledger_value": 18678.0, + "name": "ons.age.10_20@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10539.959381678202, + "kind": "calibration_drift", + "ledger_value": 10976.0, + "name": "ons.age.10_20@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18355.508384636003, + "kind": "calibration_drift", + "ledger_value": 19505.0, + "name": "ons.age.10_20@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10031.623089109251, + "kind": "calibration_drift", + "ledger_value": 10438.0, + "name": "ons.age.10_20@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18516.854129504925, + "kind": "calibration_drift", + "ledger_value": 19257.0, + "name": "ons.age.10_20@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11380.70678716987, + "kind": "calibration_drift", + "ledger_value": 12025.0, + "name": "ons.age.10_20@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11566.351590000977, + "kind": "calibration_drift", + "ledger_value": 12121.0, + "name": "ons.age.10_20@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10805.305094625282, + "kind": "calibration_drift", + "ledger_value": 11254.0, + "name": "ons.age.10_20@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10780.034074344609, + "kind": "calibration_drift", + "ledger_value": 11025.0, + "name": "ons.age.10_20@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17384.518028467013, + "kind": "calibration_drift", + "ledger_value": 18260.0, + "name": "ons.age.10_20@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12261.304647719522, + "kind": "calibration_drift", + "ledger_value": 12638.0, + "name": "ons.age.10_20@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6986.465145287985, + "kind": "calibration_drift", + "ledger_value": 7297.0, + "name": "ons.age.10_20@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15768.14469282234, + "kind": "calibration_drift", + "ledger_value": 16719.0, + "name": "ons.age.10_20@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14415.173145487772, + "kind": "calibration_drift", + "ledger_value": 15418.0, + "name": "ons.age.10_20@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14434.612391857521, + "kind": "calibration_drift", + "ledger_value": 15147.0, + "name": "ons.age.10_20@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17533.228263195597, + "kind": "calibration_drift", + "ledger_value": 18015.0, + "name": "ons.age.10_20@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7382.053808912388, + "kind": "calibration_drift", + "ledger_value": 7740.0, + "name": "ons.age.10_20@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16223.995020192968, + "kind": "calibration_drift", + "ledger_value": 16775.0, + "name": "ons.age.10_20@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13445.15475163727, + "kind": "calibration_drift", + "ledger_value": 13846.0, + "name": "ons.age.10_20@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14871.023472858398, + "kind": "calibration_drift", + "ledger_value": 15715.0, + "name": "ons.age.10_20@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17242.611529967842, + "kind": "calibration_drift", + "ledger_value": 17674.0, + "name": "ons.age.10_20@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18671.396138144435, + "kind": "calibration_drift", + "ledger_value": 19444.0, + "name": "ons.age.10_20@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11851.136549317807, + "kind": "calibration_drift", + "ledger_value": 12201.0, + "name": "ons.age.10_20@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11567.323552319463, + "kind": "calibration_drift", + "ledger_value": 12125.0, + "name": "ons.age.10_20@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9045.081335844461, + "kind": "calibration_drift", + "ledger_value": 9323.0, + "name": "ons.age.10_20@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10084.109054307575, + "kind": "calibration_drift", + "ledger_value": 10416.0, + "name": "ons.age.10_20@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12129.117772405227, + "kind": "calibration_drift", + "ledger_value": 12544.0, + "name": "ons.age.10_20@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13983.621876079333, + "kind": "calibration_drift", + "ledger_value": 14352.0, + "name": "ons.age.10_20@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10794.61350912192, + "kind": "calibration_drift", + "ledger_value": 11159.0, + "name": "ons.age.10_20@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20057.414404307576, + "kind": "calibration_drift", + "ledger_value": 20704.0, + "name": "ons.age.10_20@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14699.958104804602, + "kind": "calibration_drift", + "ledger_value": 14893.0, + "name": "ons.age.10_20@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18550.87281065199, + "kind": "calibration_drift", + "ledger_value": 19133.0, + "name": "ons.age.10_20@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10927.772346754704, + "kind": "calibration_drift", + "ledger_value": 11243.0, + "name": "ons.age.10_20@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25661.74913270637, + "kind": "calibration_drift", + "ledger_value": 26542.0, + "name": "ons.age.10_20@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19316.779117620117, + "kind": "calibration_drift", + "ledger_value": 20113.0, + "name": "ons.age.10_20@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40484.17448964039, + "kind": "calibration_drift", + "ledger_value": 42081.0, + "name": "ons.age.10_20@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24369.039249118025, + "kind": "calibration_drift", + "ledger_value": 25175.0, + "name": "ons.age.10_20@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 80946.96580827406, + "kind": "calibration_drift", + "ledger_value": 83575.0, + "name": "ons.age.10_20@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34670.86786276679, + "kind": "calibration_drift", + "ledger_value": 35898.0, + "name": "ons.age.10_20@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30474.906533856356, + "kind": "calibration_drift", + "ledger_value": 32117.0, + "name": "ons.age.10_20@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32612.251672210317, + "kind": "calibration_drift", + "ledger_value": 34416.0, + "name": "ons.age.10_20@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33917.597065939, + "kind": "calibration_drift", + "ledger_value": 35411.0, + "name": "ons.age.10_20@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28386.159511426766, + "kind": "calibration_drift", + "ledger_value": 29790.0, + "name": "ons.age.10_20@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30831.61670474126, + "kind": "calibration_drift", + "ledger_value": 32077.0, + "name": "ons.age.10_20@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38406.119052714166, + "kind": "calibration_drift", + "ledger_value": 39904.0, + "name": "ons.age.10_20@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18144.592561524223, + "kind": "calibration_drift", + "ledger_value": 19022.0, + "name": "ons.age.10_20@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58686.112827955374, + "kind": "calibration_drift", + "ledger_value": 60908.0, + "name": "ons.age.10_20@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20445.22736938408, + "kind": "calibration_drift", + "ledger_value": 21158.0, + "name": "ons.age.10_20@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29546.682519700815, + "kind": "calibration_drift", + "ledger_value": 30813.0, + "name": "ons.age.10_20@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36850.00738081572, + "kind": "calibration_drift", + "ledger_value": 38287.0, + "name": "ons.age.10_20@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27524.028934928374, + "kind": "calibration_drift", + "ledger_value": 28585.0, + "name": "ons.age.10_20@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35468.84892624501, + "kind": "calibration_drift", + "ledger_value": 37319.0, + "name": "ons.age.10_20@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31631.541692856452, + "kind": "calibration_drift", + "ledger_value": 33287.0, + "name": "ons.age.10_20@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 68971.41808218986, + "kind": "calibration_drift", + "ledger_value": 70890.0, + "name": "ons.age.10_20@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38237.96957161583, + "kind": "calibration_drift", + "ledger_value": 40385.0, + "name": "ons.age.10_20@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22909.151846749835, + "kind": "calibration_drift", + "ledger_value": 24106.0, + "name": "ons.age.10_20@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16404.780011431638, + "kind": "calibration_drift", + "ledger_value": 17256.0, + "name": "ons.age.10_20@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31327.317487169872, + "kind": "calibration_drift", + "ledger_value": 32533.0, + "name": "ons.age.10_20@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 167938.56527522174, + "kind": "calibration_drift", + "ledger_value": 172017.0, + "name": "ons.age.10_20@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47365.667704531734, + "kind": "calibration_drift", + "ledger_value": 49388.0, + "name": "ons.age.10_20@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37971.65189635027, + "kind": "calibration_drift", + "ledger_value": 39547.0, + "name": "ons.age.10_20@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47511.46205230485, + "kind": "calibration_drift", + "ledger_value": 48835.0, + "name": "ons.age.10_20@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26915.580523555214, + "kind": "calibration_drift", + "ledger_value": 28126.0, + "name": "ons.age.10_20@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37669.37161530066, + "kind": "calibration_drift", + "ledger_value": 39265.0, + "name": "ons.age.10_20@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34973.1481438164, + "kind": "calibration_drift", + "ledger_value": 37092.0, + "name": "ons.age.10_20@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 78907.78886408734, + "kind": "calibration_drift", + "ledger_value": 79820.0, + "name": "ons.age.10_20@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25380.852022663486, + "kind": "calibration_drift", + "ledger_value": 25990.0, + "name": "ons.age.10_20@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55470.8614783988, + "kind": "calibration_drift", + "ledger_value": 57138.0, + "name": "ons.age.10_20@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 102180.45461795149, + "kind": "calibration_drift", + "ledger_value": 105443.0, + "name": "ons.age.10_20@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40545.408115705104, + "kind": "calibration_drift", + "ledger_value": 42202.0, + "name": "ons.age.10_20@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22602.98371642628, + "kind": "calibration_drift", + "ledger_value": 23576.0, + "name": "ons.age.10_20@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 596.7848635513109, + "kind": "calibration_drift", + "ledger_value": 630.0, + "name": "ons.age.10_20@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33880.66249783648, + "kind": "calibration_drift", + "ledger_value": 35084.0, + "name": "ons.age.10_20@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49313.48019078063, + "kind": "calibration_drift", + "ledger_value": 49972.0, + "name": "ons.age.10_20@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31093.07456841439, + "kind": "calibration_drift", + "ledger_value": 32199.0, + "name": "ons.age.10_20@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41066.37991841439, + "kind": "calibration_drift", + "ledger_value": 40851.0, + "name": "ons.age.10_20@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38548.99751353183, + "kind": "calibration_drift", + "ledger_value": 39509.0, + "name": "ons.age.10_20@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24335.02056797096, + "kind": "calibration_drift", + "ledger_value": 23788.0, + "name": "ons.age.10_20@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48456.20942587468, + "kind": "calibration_drift", + "ledger_value": 49586.0, + "name": "ons.age.10_20@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45498.528090717286, + "kind": "calibration_drift", + "ledger_value": 45748.0, + "name": "ons.age.10_20@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45259.42536036937, + "kind": "calibration_drift", + "ledger_value": 45300.0, + "name": "ons.age.10_20@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33952.58770940455, + "kind": "calibration_drift", + "ledger_value": 34720.0, + "name": "ons.age.10_20@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28979.056525704127, + "kind": "calibration_drift", + "ledger_value": 28629.0, + "name": "ons.age.10_20@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16929.639663414877, + "kind": "calibration_drift", + "ledger_value": 16367.0, + "name": "ons.age.10_20@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29174.420951720112, + "kind": "calibration_drift", + "ledger_value": 28683.0, + "name": "ons.age.10_20@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31919.242539128747, + "kind": "calibration_drift", + "ledger_value": 32002.0, + "name": "ons.age.10_20@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31480.887533490895, + "kind": "calibration_drift", + "ledger_value": 32913.0, + "name": "ons.age.10_20@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39124.399206076414, + "kind": "calibration_drift", + "ledger_value": 39970.0, + "name": "ons.age.10_20@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36406.792563585426, + "kind": "calibration_drift", + "ledger_value": 36067.0, + "name": "ons.age.10_20@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20232.367621635323, + "kind": "calibration_drift", + "ledger_value": 20864.0, + "name": "ons.age.10_20@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12805.60354607251, + "kind": "calibration_drift", + "ledger_value": 11416.0, + "name": "ons.age.10_20@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20808.741276498396, + "kind": "calibration_drift", + "ledger_value": 21591.0, + "name": "ons.age.10_20@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29531.131122605017, + "kind": "calibration_drift", + "ledger_value": 28902.0, + "name": "ons.age.10_20@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32245.821878140538, + "kind": "calibration_drift", + "ledger_value": 32298.0, + "name": "ons.age.10_20@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24215.469202797005, + "kind": "calibration_drift", + "ledger_value": 24245.0, + "name": "ons.age.10_20@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44373.967688227276, + "kind": "calibration_drift", + "ledger_value": 44660.0, + "name": "ons.age.10_20@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40651.35200842024, + "kind": "calibration_drift", + "ledger_value": 41054.0, + "name": "ons.age.10_20@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24016.21692750707, + "kind": "calibration_drift", + "ledger_value": 24540.0, + "name": "ons.age.10_20@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32586.980651929643, + "kind": "calibration_drift", + "ledger_value": 32708.0, + "name": "ons.age.10_20@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27048.739361188, + "kind": "calibration_drift", + "ledger_value": 28106.0, + "name": "ons.age.10_20@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35466.90500160804, + "kind": "calibration_drift", + "ledger_value": 35798.0, + "name": "ons.age.10_20@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31218.457707499274, + "kind": "calibration_drift", + "ledger_value": 31514.0, + "name": "ons.age.10_20@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28694.2715663873, + "kind": "calibration_drift", + "ledger_value": 28875.0, + "name": "ons.age.10_20@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18202.91030063347, + "kind": "calibration_drift", + "ledger_value": 17875.0, + "name": "ons.age.10_20@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12139.780848313658, + "kind": "calibration_drift", + "ledger_value": 13864.0, + "name": "ons.age.10_20@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10597.657023637183, + "kind": "calibration_drift", + "ledger_value": 11051.0, + "name": "ons.age.10_20@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13592.442298811839, + "kind": "calibration_drift", + "ledger_value": 14654.0, + "name": "ons.age.10_20@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9221.400050347605, + "kind": "calibration_drift", + "ledger_value": 9803.0, + "name": "ons.age.10_20@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10201.324208211228, + "kind": "calibration_drift", + "ledger_value": 10857.0, + "name": "ons.age.10_20@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10821.229128173363, + "kind": "calibration_drift", + "ledger_value": 11608.0, + "name": "ons.age.10_20@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12576.648374121356, + "kind": "calibration_drift", + "ledger_value": 14185.0, + "name": "ons.age.10_20@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11151.177725696765, + "kind": "calibration_drift", + "ledger_value": 13741.0, + "name": "ons.age.10_20@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12960.324821640013, + "kind": "calibration_drift", + "ledger_value": 14444.0, + "name": "ons.age.10_20@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11028.182987699029, + "kind": "calibration_drift", + "ledger_value": 12616.0, + "name": "ons.age.10_20@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18963.53798589131, + "kind": "calibration_drift", + "ledger_value": 22056.0, + "name": "ons.age.10_20@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11294.094632787233, + "kind": "calibration_drift", + "ledger_value": 12280.0, + "name": "ons.age.10_20@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11634.1522517562, + "kind": "calibration_drift", + "ledger_value": 12509.0, + "name": "ons.age.10_20@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10088.418766739165, + "kind": "calibration_drift", + "ledger_value": 10408.0, + "name": "ons.age.10_20@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12879.189195452333, + "kind": "calibration_drift", + "ledger_value": 14624.0, + "name": "ons.age.10_20@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11952.79847018046, + "kind": "calibration_drift", + "ledger_value": 13316.0, + "name": "ons.age.10_20@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10911.825685245549, + "kind": "calibration_drift", + "ledger_value": 12200.0, + "name": "ons.age.10_20@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13446.241192559055, + "kind": "calibration_drift", + "ledger_value": 15286.0, + "name": "ons.age.10_20@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8219.157145624156, + "kind": "calibration_drift", + "ledger_value": 9054.0, + "name": "ons.age.10_20@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10971.631642363527, + "kind": "calibration_drift", + "ledger_value": 12082.0, + "name": "ons.age.10_20@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12055.678372443677, + "kind": "calibration_drift", + "ledger_value": 11840.0, + "name": "ons.age.10_20@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12744.310193218585, + "kind": "calibration_drift", + "ledger_value": 14401.0, + "name": "ons.age.10_20@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10128.164480325155, + "kind": "calibration_drift", + "ledger_value": 10634.0, + "name": "ons.age.10_20@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15659.998539619135, + "kind": "calibration_drift", + "ledger_value": 16176.0, + "name": "ons.age.10_20@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9339.552320511417, + "kind": "calibration_drift", + "ledger_value": 9701.0, + "name": "ons.age.10_20@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9115.546267737573, + "kind": "calibration_drift", + "ledger_value": 9635.0, + "name": "ons.age.10_20@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12172.386140898096, + "kind": "calibration_drift", + "ledger_value": 13349.0, + "name": "ons.age.10_20@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11336.68073483793, + "kind": "calibration_drift", + "ledger_value": 12061.0, + "name": "ons.age.10_20@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12468.052827646085, + "kind": "calibration_drift", + "ledger_value": 13671.0, + "name": "ons.age.10_20@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15437.084131654361, + "kind": "calibration_drift", + "ledger_value": 16837.0, + "name": "ons.age.10_20@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15815.144897043752, + "kind": "calibration_drift", + "ledger_value": 17400.0, + "name": "ons.age.10_20@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17284.513354691975, + "kind": "calibration_drift", + "ledger_value": 18386.0, + "name": "ons.age.10_20@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19249.8451981497, + "kind": "calibration_drift", + "ledger_value": 20769.0, + "name": "ons.age.10_20@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22798.129159185464, + "kind": "calibration_drift", + "ledger_value": 26479.0, + "name": "ons.age.10_20@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13261.625804813111, + "kind": "calibration_drift", + "ledger_value": 15369.0, + "name": "ons.age.10_20@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17134.885491901277, + "kind": "calibration_drift", + "ledger_value": 19669.0, + "name": "ons.age.10_20@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12033.36490548665, + "kind": "calibration_drift", + "ledger_value": 13938.0, + "name": "ons.age.10_20@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16053.106330642457, + "kind": "calibration_drift", + "ledger_value": 18430.0, + "name": "ons.age.10_20@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9982.819316050793, + "kind": "calibration_drift", + "ledger_value": 10571.0, + "name": "ons.age.10_20@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16064.172010702872, + "kind": "calibration_drift", + "ledger_value": 19100.0, + "name": "ons.age.10_20@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14344.823367129751, + "kind": "calibration_drift", + "ledger_value": 17626.0, + "name": "ons.age.10_20@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10503.056307826559, + "kind": "calibration_drift", + "ledger_value": 10457.0, + "name": "ons.age.10_20@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11677.428726003182, + "kind": "calibration_drift", + "ledger_value": 13278.0, + "name": "ons.age.10_20@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9769.057370537546, + "kind": "calibration_drift", + "ledger_value": 10440.0, + "name": "ons.age.10_20@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10853.291985460724, + "kind": "calibration_drift", + "ledger_value": 12095.0, + "name": "ons.age.10_20@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10155.503219297949, + "kind": "calibration_drift", + "ledger_value": 11235.0, + "name": "ons.age.10_20@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10360.514174214073, + "kind": "calibration_drift", + "ledger_value": 11186.0, + "name": "ons.age.10_20@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13883.542666604415, + "kind": "calibration_drift", + "ledger_value": 16087.0, + "name": "ons.age.10_20@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15459.731427937466, + "kind": "calibration_drift", + "ledger_value": 19874.0, + "name": "ons.age.10_20@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10769.954198909454, + "kind": "calibration_drift", + "ledger_value": 12730.0, + "name": "ons.age.10_20@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11191.919547737392, + "kind": "calibration_drift", + "ledger_value": 11974.0, + "name": "ons.age.10_20@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11773.992071343237, + "kind": "calibration_drift", + "ledger_value": 13282.0, + "name": "ons.age.10_20@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11615.019079459224, + "kind": "calibration_drift", + "ledger_value": 12409.0, + "name": "ons.age.10_20@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11408.301918972285, + "kind": "calibration_drift", + "ledger_value": 13904.0, + "name": "ons.age.10_20@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13067.078919900643, + "kind": "calibration_drift", + "ledger_value": 13815.0, + "name": "ons.age.10_20@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18917.71699697803, + "kind": "calibration_drift", + "ledger_value": 20431.0, + "name": "ons.age.10_20@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15274.445392915137, + "kind": "calibration_drift", + "ledger_value": 16440.0, + "name": "ons.age.10_20@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19568.106780636026, + "kind": "calibration_drift", + "ledger_value": 20558.0, + "name": "ons.age.10_20@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11997.800874918144, + "kind": "calibration_drift", + "ledger_value": 12621.0, + "name": "ons.age.10_20@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15808.438424279862, + "kind": "calibration_drift", + "ledger_value": 17833.0, + "name": "ons.age.10_20@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14737.769772444852, + "kind": "calibration_drift", + "ledger_value": 16506.0, + "name": "ons.age.10_20@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13394.650664576842, + "kind": "calibration_drift", + "ledger_value": 16346.0, + "name": "ons.age.10_20@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10769.80626201025, + "kind": "calibration_drift", + "ledger_value": 11352.0, + "name": "ons.age.10_20@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10322.23796716017, + "kind": "calibration_drift", + "ledger_value": 11880.0, + "name": "ons.age.10_20@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9129.81724728073, + "kind": "calibration_drift", + "ledger_value": 9108.0, + "name": "ons.age.10_20@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9989.547605771533, + "kind": "calibration_drift", + "ledger_value": 10486.0, + "name": "ons.age.10_20@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10952.991593063894, + "kind": "calibration_drift", + "ledger_value": 11401.0, + "name": "ons.age.10_20@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12648.861305852526, + "kind": "calibration_drift", + "ledger_value": 12877.0, + "name": "ons.age.10_20@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9895.913411035704, + "kind": "calibration_drift", + "ledger_value": 10898.0, + "name": "ons.age.10_20@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11244.50618417424, + "kind": "calibration_drift", + "ledger_value": 12479.0, + "name": "ons.age.10_20@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10606.21512665132, + "kind": "calibration_drift", + "ledger_value": 11871.0, + "name": "ons.age.10_20@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13241.180925343197, + "kind": "calibration_drift", + "ledger_value": 15188.0, + "name": "ons.age.10_20@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10774.06684470731, + "kind": "calibration_drift", + "ledger_value": 11938.0, + "name": "ons.age.10_20@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9660.339290468995, + "kind": "calibration_drift", + "ledger_value": 10145.0, + "name": "ons.age.10_20@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11451.585267054988, + "kind": "calibration_drift", + "ledger_value": 12311.0, + "name": "ons.age.10_20@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11135.703526040086, + "kind": "calibration_drift", + "ledger_value": 12213.0, + "name": "ons.age.10_20@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12481.86027157174, + "kind": "calibration_drift", + "ledger_value": 14099.0, + "name": "ons.age.10_20@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10229.373044300199, + "kind": "calibration_drift", + "ledger_value": 11173.0, + "name": "ons.age.10_20@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12994.829760717588, + "kind": "calibration_drift", + "ledger_value": 15434.0, + "name": "ons.age.10_20@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12416.324225224616, + "kind": "calibration_drift", + "ledger_value": 15412.0, + "name": "ons.age.10_20@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12418.809565131234, + "kind": "calibration_drift", + "ledger_value": 14313.0, + "name": "ons.age.10_20@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11998.629321553684, + "kind": "calibration_drift", + "ledger_value": 13485.0, + "name": "ons.age.10_20@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12761.255692581886, + "kind": "calibration_drift", + "ledger_value": 15288.0, + "name": "ons.age.10_20@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11118.345596533549, + "kind": "calibration_drift", + "ledger_value": 11383.0, + "name": "ons.age.10_20@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11275.178434609086, + "kind": "calibration_drift", + "ledger_value": 11615.0, + "name": "ons.age.10_20@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11032.197008897414, + "kind": "calibration_drift", + "ledger_value": 12419.0, + "name": "ons.age.10_20@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13448.115059948967, + "kind": "calibration_drift", + "ledger_value": 16335.0, + "name": "ons.age.10_20@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10890.12827336238, + "kind": "calibration_drift", + "ledger_value": 11614.0, + "name": "ons.age.10_20@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14706.111276015316, + "kind": "calibration_drift", + "ledger_value": 16461.0, + "name": "ons.age.10_20@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10656.486597220417, + "kind": "calibration_drift", + "ledger_value": 11969.0, + "name": "ons.age.10_20@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13089.45684152015, + "kind": "calibration_drift", + "ledger_value": 14862.0, + "name": "ons.age.10_20@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9863.406743050737, + "kind": "calibration_drift", + "ledger_value": 10257.0, + "name": "ons.age.10_20@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9783.042239121436, + "kind": "calibration_drift", + "ledger_value": 10644.0, + "name": "ons.age.10_20@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10904.841110640782, + "kind": "calibration_drift", + "ledger_value": 11632.0, + "name": "ons.age.10_20@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12937.614408177742, + "kind": "calibration_drift", + "ledger_value": 14098.0, + "name": "ons.age.10_20@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11071.597536385263, + "kind": "calibration_drift", + "ledger_value": 12274.0, + "name": "ons.age.10_20@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11981.508091085872, + "kind": "calibration_drift", + "ledger_value": 13364.0, + "name": "ons.age.10_20@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11979.191608448044, + "kind": "calibration_drift", + "ledger_value": 10466.0, + "name": "ons.age.10_20@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11601.36943489272, + "kind": "calibration_drift", + "ledger_value": 12519.0, + "name": "ons.age.10_20@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12746.716633445627, + "kind": "calibration_drift", + "ledger_value": 13460.0, + "name": "ons.age.10_20@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9406.326155392278, + "kind": "calibration_drift", + "ledger_value": 10685.0, + "name": "ons.age.10_20@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9957.598814308814, + "kind": "calibration_drift", + "ledger_value": 11447.0, + "name": "ons.age.10_20@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9365.391965572284, + "kind": "calibration_drift", + "ledger_value": 10406.0, + "name": "ons.age.10_20@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10404.08652225946, + "kind": "calibration_drift", + "ledger_value": 11472.0, + "name": "ons.age.10_20@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12281.050724592993, + "kind": "calibration_drift", + "ledger_value": 13336.0, + "name": "ons.age.10_20@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11109.316758572462, + "kind": "calibration_drift", + "ledger_value": 12102.0, + "name": "ons.age.10_20@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13498.16704417946, + "kind": "calibration_drift", + "ledger_value": 15070.0, + "name": "ons.age.10_20@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11182.609385547523, + "kind": "calibration_drift", + "ledger_value": 12177.0, + "name": "ons.age.10_20@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8383.140267161192, + "kind": "calibration_drift", + "ledger_value": 8496.0, + "name": "ons.age.10_20@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15300.225863216321, + "kind": "calibration_drift", + "ledger_value": 10888.0, + "name": "ons.age.10_20@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12151.798106327738, + "kind": "calibration_drift", + "ledger_value": 13688.0, + "name": "ons.age.10_20@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9389.354813799693, + "kind": "calibration_drift", + "ledger_value": 10025.0, + "name": "ons.age.10_20@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9606.667185713144, + "kind": "calibration_drift", + "ledger_value": 8595.0, + "name": "ons.age.10_20@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13195.662840892843, + "kind": "calibration_drift", + "ledger_value": 15501.0, + "name": "ons.age.10_20@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10840.91459822737, + "kind": "calibration_drift", + "ledger_value": 11207.0, + "name": "ons.age.10_20@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8895.623273381741, + "kind": "calibration_drift", + "ledger_value": 10295.0, + "name": "ons.age.10_20@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13809.613666842484, + "kind": "calibration_drift", + "ledger_value": 16011.0, + "name": "ons.age.10_20@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15922.300524366776, + "kind": "calibration_drift", + "ledger_value": 18060.0, + "name": "ons.age.10_20@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12296.515061789725, + "kind": "calibration_drift", + "ledger_value": 14085.0, + "name": "ons.age.10_20@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17807.312494016976, + "kind": "calibration_drift", + "ledger_value": 18660.0, + "name": "ons.age.10_20@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10284.47216682055, + "kind": "calibration_drift", + "ledger_value": 10928.0, + "name": "ons.age.10_20@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13584.552330854322, + "kind": "calibration_drift", + "ledger_value": 15999.0, + "name": "ons.age.10_20@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12042.359468958219, + "kind": "calibration_drift", + "ledger_value": 13334.0, + "name": "ons.age.10_20@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13154.549077169664, + "kind": "calibration_drift", + "ledger_value": 14820.0, + "name": "ons.age.10_20@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11616.30119925232, + "kind": "calibration_drift", + "ledger_value": 12520.0, + "name": "ons.age.10_20@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15856.508054061034, + "kind": "calibration_drift", + "ledger_value": 16503.0, + "name": "ons.age.10_20@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15519.695483277017, + "kind": "calibration_drift", + "ledger_value": 18056.0, + "name": "ons.age.10_20@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10995.972193512467, + "kind": "calibration_drift", + "ledger_value": 12046.0, + "name": "ons.age.10_20@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12672.20574854683, + "kind": "calibration_drift", + "ledger_value": 15581.0, + "name": "ons.age.10_20@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11565.292152005677, + "kind": "calibration_drift", + "ledger_value": 11966.0, + "name": "ons.age.10_20@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12546.03529844619, + "kind": "calibration_drift", + "ledger_value": 13887.0, + "name": "ons.age.10_20@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16162.599360972892, + "kind": "calibration_drift", + "ledger_value": 17798.0, + "name": "ons.age.10_20@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9226.538391979937, + "kind": "calibration_drift", + "ledger_value": 9652.0, + "name": "ons.age.10_20@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13486.943564759891, + "kind": "calibration_drift", + "ledger_value": 15676.0, + "name": "ons.age.10_20@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11355.55748317629, + "kind": "calibration_drift", + "ledger_value": 13458.0, + "name": "ons.age.10_20@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12820.379346788992, + "kind": "calibration_drift", + "ledger_value": 14086.0, + "name": "ons.age.10_20@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10219.254160394683, + "kind": "calibration_drift", + "ledger_value": 11055.0, + "name": "ons.age.10_20@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11547.244254704154, + "kind": "calibration_drift", + "ledger_value": 11806.0, + "name": "ons.age.10_20@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10851.404447334255, + "kind": "calibration_drift", + "ledger_value": 11380.0, + "name": "ons.age.10_20@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11149.4813825859, + "kind": "calibration_drift", + "ledger_value": 12278.0, + "name": "ons.age.10_20@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10409.333350951207, + "kind": "calibration_drift", + "ledger_value": 11322.0, + "name": "ons.age.10_20@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12046.915925453686, + "kind": "calibration_drift", + "ledger_value": 13375.0, + "name": "ons.age.10_20@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12182.238738385044, + "kind": "calibration_drift", + "ledger_value": 12382.0, + "name": "ons.age.10_20@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12123.310540202341, + "kind": "calibration_drift", + "ledger_value": 13655.0, + "name": "ons.age.10_20@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12652.013706686463, + "kind": "calibration_drift", + "ledger_value": 14851.0, + "name": "ons.age.10_20@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15228.506054482494, + "kind": "calibration_drift", + "ledger_value": 18091.0, + "name": "ons.age.10_20@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14303.821534781435, + "kind": "calibration_drift", + "ledger_value": 16583.0, + "name": "ons.age.10_20@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12395.261497506312, + "kind": "calibration_drift", + "ledger_value": 17269.0, + "name": "ons.age.10_20@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10551.934659323373, + "kind": "calibration_drift", + "ledger_value": 11433.0, + "name": "ons.age.10_20@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11188.796734283298, + "kind": "calibration_drift", + "ledger_value": 12186.0, + "name": "ons.age.10_20@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16706.277328005475, + "kind": "calibration_drift", + "ledger_value": 19272.0, + "name": "ons.age.10_20@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10361.293308549879, + "kind": "calibration_drift", + "ledger_value": 10924.0, + "name": "ons.age.10_20@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11175.104053527935, + "kind": "calibration_drift", + "ledger_value": 12821.0, + "name": "ons.age.10_20@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12244.263748991072, + "kind": "calibration_drift", + "ledger_value": 12423.0, + "name": "ons.age.10_20@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11902.766210869855, + "kind": "calibration_drift", + "ledger_value": 13301.0, + "name": "ons.age.10_20@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11165.290905880775, + "kind": "calibration_drift", + "ledger_value": 12092.0, + "name": "ons.age.10_20@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10658.883174987513, + "kind": "calibration_drift", + "ledger_value": 12169.0, + "name": "ons.age.10_20@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10991.307249957583, + "kind": "calibration_drift", + "ledger_value": 11776.0, + "name": "ons.age.10_20@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17510.10726351727, + "kind": "calibration_drift", + "ledger_value": 17999.0, + "name": "ons.age.10_20@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10018.20851210206, + "kind": "calibration_drift", + "ledger_value": 11161.0, + "name": "ons.age.10_20@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12874.37213092433, + "kind": "calibration_drift", + "ledger_value": 14447.0, + "name": "ons.age.10_20@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12071.37572566829, + "kind": "calibration_drift", + "ledger_value": 13046.0, + "name": "ons.age.10_20@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17423.475415343735, + "kind": "calibration_drift", + "ledger_value": 19609.0, + "name": "ons.age.10_20@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10941.413065086239, + "kind": "calibration_drift", + "ledger_value": 12045.0, + "name": "ons.age.10_20@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13354.38380298356, + "kind": "calibration_drift", + "ledger_value": 14509.0, + "name": "ons.age.10_20@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10456.180035698962, + "kind": "calibration_drift", + "ledger_value": 10801.0, + "name": "ons.age.10_20@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17633.368287933576, + "kind": "calibration_drift", + "ledger_value": 18883.0, + "name": "ons.age.10_20@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12781.14648112024, + "kind": "calibration_drift", + "ledger_value": 13993.0, + "name": "ons.age.10_20@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12250.22907253717, + "kind": "calibration_drift", + "ledger_value": 13737.0, + "name": "ons.age.10_20@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10374.069007389444, + "kind": "calibration_drift", + "ledger_value": 12263.0, + "name": "ons.age.10_20@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10706.213120272667, + "kind": "calibration_drift", + "ledger_value": 10395.0, + "name": "ons.age.10_20@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12253.297762302427, + "kind": "calibration_drift", + "ledger_value": 13442.0, + "name": "ons.age.10_20@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11659.32124954068, + "kind": "calibration_drift", + "ledger_value": 12723.0, + "name": "ons.age.10_20@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15172.645081343275, + "kind": "calibration_drift", + "ledger_value": 18653.0, + "name": "ons.age.10_20@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12533.708879585203, + "kind": "calibration_drift", + "ledger_value": 15299.0, + "name": "ons.age.10_20@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15603.3978819839, + "kind": "calibration_drift", + "ledger_value": 16535.0, + "name": "ons.age.10_20@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9764.624344222628, + "kind": "calibration_drift", + "ledger_value": 10324.0, + "name": "ons.age.10_20@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9942.34587246569, + "kind": "calibration_drift", + "ledger_value": 10501.0, + "name": "ons.age.10_20@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10411.73979117825, + "kind": "calibration_drift", + "ledger_value": 11704.0, + "name": "ons.age.10_20@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9606.450211594312, + "kind": "calibration_drift", + "ledger_value": 9987.0, + "name": "ons.age.10_20@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9909.069932604863, + "kind": "calibration_drift", + "ledger_value": 10905.0, + "name": "ons.age.10_20@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11291.21479448274, + "kind": "calibration_drift", + "ledger_value": 12646.0, + "name": "ons.age.10_20@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11132.527813937186, + "kind": "calibration_drift", + "ledger_value": 11668.0, + "name": "ons.age.10_20@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12298.487553779105, + "kind": "calibration_drift", + "ledger_value": 13850.0, + "name": "ons.age.10_20@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10091.742415741268, + "kind": "calibration_drift", + "ledger_value": 11026.0, + "name": "ons.age.10_20@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13342.87274985564, + "kind": "calibration_drift", + "ledger_value": 15211.0, + "name": "ons.age.10_20@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12056.201773262103, + "kind": "calibration_drift", + "ledger_value": 13135.0, + "name": "ons.age.10_20@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10869.666358734376, + "kind": "calibration_drift", + "ledger_value": 11898.0, + "name": "ons.age.10_20@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14479.738232854217, + "kind": "calibration_drift", + "ledger_value": 17226.0, + "name": "ons.age.10_20@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11131.758542061329, + "kind": "calibration_drift", + "ledger_value": 11244.0, + "name": "ons.age.10_20@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10838.448983240645, + "kind": "calibration_drift", + "ledger_value": 11820.0, + "name": "ons.age.10_20@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13251.201184649242, + "kind": "calibration_drift", + "ledger_value": 14672.0, + "name": "ons.age.10_20@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12717.158840984779, + "kind": "calibration_drift", + "ledger_value": 13477.0, + "name": "ons.age.10_20@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10755.998818084596, + "kind": "calibration_drift", + "ledger_value": 11233.0, + "name": "ons.age.10_20@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11998.234823155808, + "kind": "calibration_drift", + "ledger_value": 12899.0, + "name": "ons.age.10_20@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13589.293146997112, + "kind": "calibration_drift", + "ledger_value": 14346.0, + "name": "ons.age.10_20@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13938.798709650851, + "kind": "calibration_drift", + "ledger_value": 15003.0, + "name": "ons.age.10_20@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12879.637400315265, + "kind": "calibration_drift", + "ledger_value": 11557.0, + "name": "ons.age.10_20@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10675.116784060103, + "kind": "calibration_drift", + "ledger_value": 12123.0, + "name": "ons.age.10_20@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13334.617870880087, + "kind": "calibration_drift", + "ledger_value": 14741.0, + "name": "ons.age.10_20@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11233.312292134515, + "kind": "calibration_drift", + "ledger_value": 12721.0, + "name": "ons.age.10_20@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11541.250269955824, + "kind": "calibration_drift", + "ledger_value": 11333.0, + "name": "ons.age.10_20@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14500.311822407479, + "kind": "calibration_drift", + "ledger_value": 12232.0, + "name": "ons.age.10_20@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12387.091893942017, + "kind": "calibration_drift", + "ledger_value": 14157.0, + "name": "ons.age.10_20@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12074.60971298457, + "kind": "calibration_drift", + "ledger_value": 14885.0, + "name": "ons.age.10_20@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11988.372363208913, + "kind": "calibration_drift", + "ledger_value": 13679.0, + "name": "ons.age.10_20@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11673.901452070457, + "kind": "calibration_drift", + "ledger_value": 13006.0, + "name": "ons.age.10_20@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13097.200337300239, + "kind": "calibration_drift", + "ledger_value": 14151.0, + "name": "ons.age.10_20@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13824.614568042522, + "kind": "calibration_drift", + "ledger_value": 16023.0, + "name": "ons.age.10_20@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10955.220509011893, + "kind": "calibration_drift", + "ledger_value": 12366.0, + "name": "ons.age.10_20@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11416.799258225543, + "kind": "calibration_drift", + "ledger_value": 11569.0, + "name": "ons.age.10_20@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11123.799536884182, + "kind": "calibration_drift", + "ledger_value": 11788.0, + "name": "ons.age.10_20@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10765.861278031492, + "kind": "calibration_drift", + "ledger_value": 11243.0, + "name": "ons.age.10_20@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17302.69973083405, + "kind": "calibration_drift", + "ledger_value": 18402.0, + "name": "ons.age.10_20@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10297.828378791604, + "kind": "calibration_drift", + "ledger_value": 10913.0, + "name": "ons.age.10_20@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11917.914949348287, + "kind": "calibration_drift", + "ledger_value": 13063.0, + "name": "ons.age.10_20@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16227.494347423468, + "kind": "calibration_drift", + "ledger_value": 17811.0, + "name": "ons.age.10_20@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10670.392665745541, + "kind": "calibration_drift", + "ledger_value": 11424.0, + "name": "ons.age.10_20@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10404.342946218077, + "kind": "calibration_drift", + "ledger_value": 10769.0, + "name": "ons.age.10_20@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10913.61079049594, + "kind": "calibration_drift", + "ledger_value": 10886.0, + "name": "ons.age.10_20@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12962.349457724556, + "kind": "calibration_drift", + "ledger_value": 13633.0, + "name": "ons.age.10_20@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12715.778096592216, + "kind": "calibration_drift", + "ledger_value": 13388.0, + "name": "ons.age.10_20@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9787.637955092176, + "kind": "calibration_drift", + "ledger_value": 10209.0, + "name": "ons.age.10_20@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11363.812362151839, + "kind": "calibration_drift", + "ledger_value": 14055.0, + "name": "ons.age.10_20@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9669.155731936677, + "kind": "calibration_drift", + "ledger_value": 10011.0, + "name": "ons.age.10_20@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10461.633976049596, + "kind": "calibration_drift", + "ledger_value": 11188.0, + "name": "ons.age.10_20@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12016.953772135017, + "kind": "calibration_drift", + "ledger_value": 12775.0, + "name": "ons.age.10_20@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16240.039396475919, + "kind": "calibration_drift", + "ledger_value": 13715.0, + "name": "ons.age.10_20@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9592.19192630653, + "kind": "calibration_drift", + "ledger_value": 9306.0, + "name": "ons.age.10_20@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12306.008924748707, + "kind": "calibration_drift", + "ledger_value": 13893.0, + "name": "ons.age.10_20@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11337.995629876708, + "kind": "calibration_drift", + "ledger_value": 11358.0, + "name": "ons.age.10_20@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12263.179947169217, + "kind": "calibration_drift", + "ledger_value": 13365.0, + "name": "ons.age.10_20@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10561.234959053298, + "kind": "calibration_drift", + "ledger_value": 12016.0, + "name": "ons.age.10_20@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10521.272271348476, + "kind": "calibration_drift", + "ledger_value": 11441.0, + "name": "ons.age.10_20@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13740.320023255594, + "kind": "calibration_drift", + "ledger_value": 15631.0, + "name": "ons.age.10_20@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11521.069286005095, + "kind": "calibration_drift", + "ledger_value": 12716.0, + "name": "ons.age.10_20@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11220.52068158339, + "kind": "calibration_drift", + "ledger_value": 12633.0, + "name": "ons.age.10_20@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14833.951968575244, + "kind": "calibration_drift", + "ledger_value": 16192.0, + "name": "ons.age.10_20@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18051.799389372263, + "kind": "calibration_drift", + "ledger_value": 19953.0, + "name": "ons.age.10_20@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12914.891300460094, + "kind": "calibration_drift", + "ledger_value": 14779.0, + "name": "ons.age.10_20@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6907.666946805843, + "kind": "calibration_drift", + "ledger_value": 6665.0, + "name": "ons.age.10_20@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6907.666946805843, + "kind": "calibration_drift", + "ledger_value": 7422.0, + "name": "ons.age.10_20@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11640.661475321152, + "kind": "calibration_drift", + "ledger_value": 10865.0, + "name": "ons.age.10_20@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12213.12796293872, + "kind": "calibration_drift", + "ledger_value": 11350.0, + "name": "ons.age.10_20@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10321.656082023304, + "kind": "calibration_drift", + "ledger_value": 11429.0, + "name": "ons.age.10_20@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11977.957605504991, + "kind": "calibration_drift", + "ledger_value": 12645.0, + "name": "ons.age.10_20@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9970.335533794982, + "kind": "calibration_drift", + "ledger_value": 12332.0, + "name": "ons.age.10_20@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14520.371567835426, + "kind": "calibration_drift", + "ledger_value": 11169.0, + "name": "ons.age.10_20@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12742.613850107718, + "kind": "calibration_drift", + "ledger_value": 14350.0, + "name": "ons.age.10_20@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13116.470119314698, + "kind": "calibration_drift", + "ledger_value": 14450.0, + "name": "ons.age.10_20@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11598.06551081051, + "kind": "calibration_drift", + "ledger_value": 14053.0, + "name": "ons.age.10_20@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13392.998553104526, + "kind": "calibration_drift", + "ledger_value": 15804.0, + "name": "ons.age.10_20@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10732.469379550685, + "kind": "calibration_drift", + "ledger_value": 12477.0, + "name": "ons.age.10_20@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9346.830815952228, + "kind": "calibration_drift", + "ledger_value": 9454.0, + "name": "ons.age.10_20@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10276.318353647424, + "kind": "calibration_drift", + "ledger_value": 11707.0, + "name": "ons.age.10_20@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11783.568519951672, + "kind": "calibration_drift", + "ledger_value": 13322.0, + "name": "ons.age.10_20@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12494.432716346268, + "kind": "calibration_drift", + "ledger_value": 15656.0, + "name": "ons.age.10_20@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14570.884939424825, + "kind": "calibration_drift", + "ledger_value": 16248.0, + "name": "ons.age.10_20@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10812.214839781904, + "kind": "calibration_drift", + "ledger_value": 12211.0, + "name": "ons.age.10_20@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9587.790437374784, + "kind": "calibration_drift", + "ledger_value": 11398.0, + "name": "ons.age.10_20@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17316.734011338485, + "kind": "calibration_drift", + "ledger_value": 18381.0, + "name": "ons.age.10_20@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9649.534118820307, + "kind": "calibration_drift", + "ledger_value": 11645.0, + "name": "ons.age.10_20@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10466.286566624343, + "kind": "calibration_drift", + "ledger_value": 12526.0, + "name": "ons.age.10_20@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15445.973296311548, + "kind": "calibration_drift", + "ledger_value": 18176.0, + "name": "ons.age.10_20@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15657.710448911454, + "kind": "calibration_drift", + "ledger_value": 18674.0, + "name": "ons.age.10_20@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15138.432207787495, + "kind": "calibration_drift", + "ledger_value": 19884.0, + "name": "ons.age.10_20@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11967.296286302395, + "kind": "calibration_drift", + "ledger_value": 13514.0, + "name": "ons.age.10_20@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10706.585203988845, + "kind": "calibration_drift", + "ledger_value": 10833.0, + "name": "ons.age.10_20@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13643.928723050167, + "kind": "calibration_drift", + "ledger_value": 14174.0, + "name": "ons.age.10_20@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11148.169675412964, + "kind": "calibration_drift", + "ledger_value": 11890.0, + "name": "ons.age.10_20@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10576.463493798574, + "kind": "calibration_drift", + "ledger_value": 10514.0, + "name": "ons.age.10_20@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12491.998880397148, + "kind": "calibration_drift", + "ledger_value": 12634.0, + "name": "ons.age.10_20@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10154.93119662103, + "kind": "calibration_drift", + "ledger_value": 11123.0, + "name": "ons.age.10_20@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14072.744098225665, + "kind": "calibration_drift", + "ledger_value": 15722.0, + "name": "ons.age.10_20@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9899.000360999084, + "kind": "calibration_drift", + "ledger_value": 10829.0, + "name": "ons.age.10_20@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14021.222607463083, + "kind": "calibration_drift", + "ledger_value": 17786.0, + "name": "ons.age.10_20@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11293.463435350632, + "kind": "calibration_drift", + "ledger_value": 12764.0, + "name": "ons.age.10_20@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11948.212426305154, + "kind": "calibration_drift", + "ledger_value": 12152.0, + "name": "ons.age.10_20@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10843.380213214094, + "kind": "calibration_drift", + "ledger_value": 11916.0, + "name": "ons.age.10_20@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12645.685593749628, + "kind": "calibration_drift", + "ledger_value": 14098.0, + "name": "ons.age.10_20@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8852.10023763609, + "kind": "calibration_drift", + "ledger_value": 9555.0, + "name": "ons.age.10_20@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10251.95807757859, + "kind": "calibration_drift", + "ledger_value": 10732.0, + "name": "ons.age.10_20@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14475.132464059016, + "kind": "calibration_drift", + "ledger_value": 17314.0, + "name": "ons.age.10_20@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14911.664666228518, + "kind": "calibration_drift", + "ledger_value": 17364.0, + "name": "ons.age.10_20@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9650.417058037574, + "kind": "calibration_drift", + "ledger_value": 10536.0, + "name": "ons.age.10_20@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12906.221600441928, + "kind": "calibration_drift", + "ledger_value": 13416.0, + "name": "ons.age.10_20@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12813.919435523776, + "kind": "calibration_drift", + "ledger_value": 13910.0, + "name": "ons.age.10_20@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12117.65935065277, + "kind": "calibration_drift", + "ledger_value": 12397.0, + "name": "ons.age.10_20@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10547.309165608282, + "kind": "calibration_drift", + "ledger_value": 10925.0, + "name": "ons.age.10_20@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15665.897187254646, + "kind": "calibration_drift", + "ledger_value": 18165.0, + "name": "ons.age.10_20@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15035.389226262327, + "kind": "calibration_drift", + "ledger_value": 21851.0, + "name": "ons.age.10_20@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8544.10547595448, + "kind": "calibration_drift", + "ledger_value": 9041.0, + "name": "ons.age.10_20@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10947.133291855436, + "kind": "calibration_drift", + "ledger_value": 12547.0, + "name": "ons.age.10_20@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10839.325765694737, + "kind": "calibration_drift", + "ledger_value": 10817.0, + "name": "ons.age.10_20@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10775.348964500407, + "kind": "calibration_drift", + "ledger_value": 11375.0, + "name": "ons.age.10_20@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11756.811666115746, + "kind": "calibration_drift", + "ledger_value": 13162.0, + "name": "ons.age.10_20@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10937.98092902472, + "kind": "calibration_drift", + "ledger_value": 12942.0, + "name": "ons.age.10_20@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11840.829571810878, + "kind": "calibration_drift", + "ledger_value": 12922.0, + "name": "ons.age.10_20@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10249.255763553141, + "kind": "calibration_drift", + "ledger_value": 11553.0, + "name": "ons.age.10_20@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9236.933424763965, + "kind": "calibration_drift", + "ledger_value": 10063.0, + "name": "ons.age.10_20@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10804.290602266592, + "kind": "calibration_drift", + "ledger_value": 11408.0, + "name": "ons.age.10_20@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11492.389252479523, + "kind": "calibration_drift", + "ledger_value": 12347.0, + "name": "ons.age.10_20@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10230.181766015845, + "kind": "calibration_drift", + "ledger_value": 10706.0, + "name": "ons.age.10_20@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10997.698124003173, + "kind": "calibration_drift", + "ledger_value": 12757.0, + "name": "ons.age.10_20@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13798.804410740686, + "kind": "calibration_drift", + "ledger_value": 15954.0, + "name": "ons.age.10_20@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9765.945913855512, + "kind": "calibration_drift", + "ledger_value": 11237.0, + "name": "ons.age.10_20@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15231.583141985928, + "kind": "calibration_drift", + "ledger_value": 18596.0, + "name": "ons.age.10_20@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11768.498681152818, + "kind": "calibration_drift", + "ledger_value": 13344.0, + "name": "ons.age.10_20@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13182.065340421503, + "kind": "calibration_drift", + "ledger_value": 15209.0, + "name": "ons.age.10_20@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10633.635277523459, + "kind": "calibration_drift", + "ledger_value": 12075.0, + "name": "ons.age.10_20@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9706.63307973488, + "kind": "calibration_drift", + "ledger_value": 10059.0, + "name": "ons.age.10_20@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8304.191275286292, + "kind": "calibration_drift", + "ledger_value": 8191.0, + "name": "ons.age.10_20@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11649.005116436227, + "kind": "calibration_drift", + "ledger_value": 12463.0, + "name": "ons.age.10_20@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12103.408096029505, + "kind": "calibration_drift", + "ledger_value": 12407.0, + "name": "ons.age.10_20@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17921.67679837623, + "kind": "calibration_drift", + "ledger_value": 20236.0, + "name": "ons.age.10_20@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12100.05485964756, + "kind": "calibration_drift", + "ledger_value": 14928.0, + "name": "ons.age.10_20@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12148.872766959157, + "kind": "calibration_drift", + "ledger_value": 11772.0, + "name": "ons.age.10_20@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11197.294588408451, + "kind": "calibration_drift", + "ledger_value": 11872.0, + "name": "ons.age.10_20@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9201.675130453814, + "kind": "calibration_drift", + "ledger_value": 9740.0, + "name": "ons.age.10_20@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10598.120559254687, + "kind": "calibration_drift", + "ledger_value": 11390.0, + "name": "ons.age.10_20@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11139.549885419376, + "kind": "calibration_drift", + "ledger_value": 12482.0, + "name": "ons.age.10_20@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11486.13645287319, + "kind": "calibration_drift", + "ledger_value": 12700.0, + "name": "ons.age.10_20@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10822.116749568586, + "kind": "calibration_drift", + "ledger_value": 11473.0, + "name": "ons.age.10_20@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9745.274197806819, + "kind": "calibration_drift", + "ledger_value": 11108.0, + "name": "ons.age.10_20@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10254.985852782289, + "kind": "calibration_drift", + "ledger_value": 11278.0, + "name": "ons.age.10_20@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10458.724550365263, + "kind": "calibration_drift", + "ledger_value": 11224.0, + "name": "ons.age.10_20@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10286.784814550461, + "kind": "calibration_drift", + "ledger_value": 10990.0, + "name": "ons.age.10_20@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10515.749293778214, + "kind": "calibration_drift", + "ledger_value": 11371.0, + "name": "ons.age.10_20@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9480.782746950965, + "kind": "calibration_drift", + "ledger_value": 10121.0, + "name": "ons.age.10_20@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11600.836862055587, + "kind": "calibration_drift", + "ledger_value": 12534.0, + "name": "ons.age.10_20@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11602.19788152826, + "kind": "calibration_drift", + "ledger_value": 12303.0, + "name": "ons.age.10_20@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10814.874774524016, + "kind": "calibration_drift", + "ledger_value": 11288.0, + "name": "ons.age.10_20@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9174.61254035953, + "kind": "calibration_drift", + "ledger_value": 9301.0, + "name": "ons.age.10_20@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7714.734957046064, + "kind": "calibration_drift", + "ledger_value": 8149.0, + "name": "ons.age.10_20@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8671.79474488694, + "kind": "calibration_drift", + "ledger_value": 9011.0, + "name": "ons.age.10_20@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11222.966571650222, + "kind": "calibration_drift", + "ledger_value": 11776.0, + "name": "ons.age.10_20@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10256.445496854429, + "kind": "calibration_drift", + "ledger_value": 11114.0, + "name": "ons.age.10_20@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10263.862066734495, + "kind": "calibration_drift", + "ledger_value": 11087.0, + "name": "ons.age.10_20@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12262.06548919522, + "kind": "calibration_drift", + "ledger_value": 15951.0, + "name": "ons.age.10_20@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12551.952774414329, + "kind": "calibration_drift", + "ledger_value": 13481.0, + "name": "ons.age.10_20@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11719.758404095257, + "kind": "calibration_drift", + "ledger_value": 13118.0, + "name": "ons.age.10_20@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10899.349673412726, + "kind": "calibration_drift", + "ledger_value": 11624.0, + "name": "ons.age.10_20@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10489.92937363724, + "kind": "calibration_drift", + "ledger_value": 10921.0, + "name": "ons.age.10_20@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14420.533885793, + "kind": "calibration_drift", + "ledger_value": 16943.0, + "name": "ons.age.10_20@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12594.755459991382, + "kind": "calibration_drift", + "ledger_value": 15890.0, + "name": "ons.age.10_20@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10255.790788907247, + "kind": "calibration_drift", + "ledger_value": 11258.0, + "name": "ons.age.10_20@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12114.069415232101, + "kind": "calibration_drift", + "ledger_value": 12904.0, + "name": "ons.age.10_20@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17421.617088799805, + "kind": "calibration_drift", + "ledger_value": 17203.0, + "name": "ons.age.10_20@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14786.770259051716, + "kind": "calibration_drift", + "ledger_value": 15660.0, + "name": "ons.age.10_20@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16463.868323453953, + "kind": "calibration_drift", + "ledger_value": 18344.0, + "name": "ons.age.10_20@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10636.663052727157, + "kind": "calibration_drift", + "ledger_value": 12606.0, + "name": "ons.age.10_20@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11338.55460222784, + "kind": "calibration_drift", + "ledger_value": 12338.0, + "name": "ons.age.10_20@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13995.816910639878, + "kind": "calibration_drift", + "ledger_value": 15794.0, + "name": "ons.age.10_20@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15286.812917688543, + "kind": "calibration_drift", + "ledger_value": 18113.0, + "name": "ons.age.10_20@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11626.654092434757, + "kind": "calibration_drift", + "ledger_value": 12561.0, + "name": "ons.age.10_20@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10966.631375170451, + "kind": "calibration_drift", + "ledger_value": 10732.0, + "name": "ons.age.10_20@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14341.703243437461, + "kind": "calibration_drift", + "ledger_value": 15620.0, + "name": "ons.age.10_20@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12744.310193218585, + "kind": "calibration_drift", + "ledger_value": 16403.0, + "name": "ons.age.10_20@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11522.745904196066, + "kind": "calibration_drift", + "ledger_value": 12307.0, + "name": "ons.age.10_20@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12343.6181704961, + "kind": "calibration_drift", + "ledger_value": 14831.0, + "name": "ons.age.10_20@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9464.016565041242, + "kind": "calibration_drift", + "ledger_value": 9863.0, + "name": "ons.age.10_20@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9858.702349656067, + "kind": "calibration_drift", + "ledger_value": 10421.0, + "name": "ons.age.10_20@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15123.204569629488, + "kind": "calibration_drift", + "ledger_value": 19216.0, + "name": "ons.age.10_20@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11680.998936503956, + "kind": "calibration_drift", + "ledger_value": 13065.0, + "name": "ons.age.10_20@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11859.706710741708, + "kind": "calibration_drift", + "ledger_value": 13219.0, + "name": "ons.age.10_20@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10513.234366491755, + "kind": "calibration_drift", + "ledger_value": 12037.0, + "name": "ons.age.10_20@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9984.547338578457, + "kind": "calibration_drift", + "ledger_value": 10528.0, + "name": "ons.age.10_20@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15910.820620988587, + "kind": "calibration_drift", + "ledger_value": 15727.0, + "name": "ons.age.10_20@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12282.707617864071, + "kind": "calibration_drift", + "ledger_value": 12594.0, + "name": "ons.age.10_20@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13827.16884554796, + "kind": "calibration_drift", + "ledger_value": 13919.0, + "name": "ons.age.10_20@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14323.270305796714, + "kind": "calibration_drift", + "ledger_value": 16347.0, + "name": "ons.age.10_20@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10791.720648012253, + "kind": "calibration_drift", + "ledger_value": 11195.0, + "name": "ons.age.10_20@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15934.57928700066, + "kind": "calibration_drift", + "ledger_value": 13600.0, + "name": "ons.age.10_20@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10580.022261715307, + "kind": "calibration_drift", + "ledger_value": 11573.0, + "name": "ons.age.10_20@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10659.031111886716, + "kind": "calibration_drift", + "ledger_value": 11455.0, + "name": "ons.age.10_20@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12961.787297507582, + "kind": "calibration_drift", + "ledger_value": 13562.0, + "name": "ons.age.10_20@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10978.377564967204, + "kind": "calibration_drift", + "ledger_value": 12779.0, + "name": "ons.age.10_20@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10261.435901587558, + "kind": "calibration_drift", + "ledger_value": 11249.0, + "name": "ons.age.10_20@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10918.236284211034, + "kind": "calibration_drift", + "ledger_value": 11731.0, + "name": "ons.age.10_20@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12959.903567657728, + "kind": "calibration_drift", + "ledger_value": 14211.0, + "name": "ons.age.10_20@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10858.70647597157, + "kind": "calibration_drift", + "ledger_value": 12637.0, + "name": "ons.age.10_20@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9995.954689404756, + "kind": "calibration_drift", + "ledger_value": 9816.0, + "name": "ons.age.10_20@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14570.167128107305, + "kind": "calibration_drift", + "ledger_value": 14700.0, + "name": "ons.age.10_20@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13775.884053824102, + "kind": "calibration_drift", + "ledger_value": 15787.0, + "name": "ons.age.10_20@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11779.090963135783, + "kind": "calibration_drift", + "ledger_value": 13496.0, + "name": "ons.age.10_20@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11803.730775190585, + "kind": "calibration_drift", + "ledger_value": 13300.0, + "name": "ons.age.10_20@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11784.40682904716, + "kind": "calibration_drift", + "ledger_value": 13178.0, + "name": "ons.age.10_20@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11579.316974451462, + "kind": "calibration_drift", + "ledger_value": 12720.0, + "name": "ons.age.10_20@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9852.60940001937, + "kind": "calibration_drift", + "ledger_value": 11005.0, + "name": "ons.age.10_20@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13157.920671397846, + "kind": "calibration_drift", + "ledger_value": 14355.0, + "name": "ons.age.10_20@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12466.741120473149, + "kind": "calibration_drift", + "ledger_value": 14766.0, + "name": "ons.age.10_20@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10436.775302012344, + "kind": "calibration_drift", + "ledger_value": 11914.0, + "name": "ons.age.10_20@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10548.313841452366, + "kind": "calibration_drift", + "ledger_value": 11270.0, + "name": "ons.age.10_20@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12806.0590549461, + "kind": "calibration_drift", + "ledger_value": 13085.0, + "name": "ons.age.10_20@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11938.241479298842, + "kind": "calibration_drift", + "ledger_value": 12752.0, + "name": "ons.age.10_20@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10475.471007355092, + "kind": "calibration_drift", + "ledger_value": 11726.0, + "name": "ons.age.10_20@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11929.201189876609, + "kind": "calibration_drift", + "ledger_value": 14731.0, + "name": "ons.age.10_20@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10286.604899372034, + "kind": "calibration_drift", + "ledger_value": 10604.0, + "name": "ons.age.10_20@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9630.692138143782, + "kind": "calibration_drift", + "ledger_value": 10340.0, + "name": "ons.age.10_20@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12881.842197178046, + "kind": "calibration_drift", + "ledger_value": 13144.0, + "name": "ons.age.10_20@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9169.957459264597, + "kind": "calibration_drift", + "ledger_value": 10115.0, + "name": "ons.age.10_20@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11366.366348685613, + "kind": "calibration_drift", + "ledger_value": 11792.0, + "name": "ons.age.10_20@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12075.576234059365, + "kind": "calibration_drift", + "ledger_value": 12995.0, + "name": "ons.age.10_20@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15786.662112717118, + "kind": "calibration_drift", + "ledger_value": 16271.0, + "name": "ons.age.10_20@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11604.485972235938, + "kind": "calibration_drift", + "ledger_value": 11002.0, + "name": "ons.age.10_20@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12124.11164536476, + "kind": "calibration_drift", + "ledger_value": 13164.0, + "name": "ons.age.10_20@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12212.854450559402, + "kind": "calibration_drift", + "ledger_value": 13240.0, + "name": "ons.age.10_20@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12235.856050710403, + "kind": "calibration_drift", + "ledger_value": 12749.0, + "name": "ons.age.10_20@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11121.925669494272, + "kind": "calibration_drift", + "ledger_value": 12029.0, + "name": "ons.age.10_20@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10200.74232307436, + "kind": "calibration_drift", + "ledger_value": 11297.0, + "name": "ons.age.10_20@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11150.33941660128, + "kind": "calibration_drift", + "ledger_value": 11763.0, + "name": "ons.age.10_20@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13563.920064645417, + "kind": "calibration_drift", + "ledger_value": 14636.0, + "name": "ons.age.10_20@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10211.798140674831, + "kind": "calibration_drift", + "ledger_value": 10626.0, + "name": "ons.age.10_20@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10130.7188574514, + "kind": "calibration_drift", + "ledger_value": 11193.0, + "name": "ons.age.10_20@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18201.56433039414, + "kind": "calibration_drift", + "ledger_value": 21948.0, + "name": "ons.age.10_20@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15078.675562969252, + "kind": "calibration_drift", + "ledger_value": 17183.0, + "name": "ons.age.10_20@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10899.655409671082, + "kind": "calibration_drift", + "ledger_value": 12144.0, + "name": "ons.age.10_20@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11735.853938728591, + "kind": "calibration_drift", + "ledger_value": 12976.0, + "name": "ons.age.10_20@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12670.047290154724, + "kind": "calibration_drift", + "ledger_value": 13247.0, + "name": "ons.age.10_20@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10246.529525738712, + "kind": "calibration_drift", + "ledger_value": 10945.0, + "name": "ons.age.10_20@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10942.438760920717, + "kind": "calibration_drift", + "ledger_value": 12139.0, + "name": "ons.age.10_20@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8846.015099848855, + "kind": "calibration_drift", + "ledger_value": 9719.0, + "name": "ons.age.10_20@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9851.21156227438, + "kind": "calibration_drift", + "ledger_value": 10467.0, + "name": "ons.age.10_20@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9295.368499949323, + "kind": "calibration_drift", + "ledger_value": 9601.0, + "name": "ons.age.10_20@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11162.332167896706, + "kind": "calibration_drift", + "ledger_value": 12476.0, + "name": "ons.age.10_20@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11491.541080924088, + "kind": "calibration_drift", + "ledger_value": 12098.0, + "name": "ons.age.10_20@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9774.901027487293, + "kind": "calibration_drift", + "ledger_value": 11535.0, + "name": "ons.age.10_20@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11705.23269217452, + "kind": "calibration_drift", + "ledger_value": 12155.0, + "name": "ons.age.10_20@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10437.530123939383, + "kind": "calibration_drift", + "ledger_value": 11090.0, + "name": "ons.age.10_20@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9750.422401899099, + "kind": "calibration_drift", + "ledger_value": 10158.0, + "name": "ons.age.10_20@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9275.801379414683, + "kind": "calibration_drift", + "ledger_value": 9271.0, + "name": "ons.age.10_20@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10043.613611200417, + "kind": "calibration_drift", + "ledger_value": 10540.0, + "name": "ons.age.10_20@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10408.05123115811, + "kind": "calibration_drift", + "ledger_value": 11554.0, + "name": "ons.age.10_20@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11966.063478809032, + "kind": "calibration_drift", + "ledger_value": 13322.0, + "name": "ons.age.10_20@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10565.436366990676, + "kind": "calibration_drift", + "ledger_value": 11451.0, + "name": "ons.age.10_20@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10656.170998502117, + "kind": "calibration_drift", + "ledger_value": 10886.0, + "name": "ons.age.10_20@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12201.835446299527, + "kind": "calibration_drift", + "ledger_value": 14006.0, + "name": "ons.age.10_20@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12378.373479348962, + "kind": "calibration_drift", + "ledger_value": 13411.0, + "name": "ons.age.10_20@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11216.861708943092, + "kind": "calibration_drift", + "ledger_value": 12108.0, + "name": "ons.age.10_20@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11584.475041003687, + "kind": "calibration_drift", + "ledger_value": 12460.0, + "name": "ons.age.10_20@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13717.294666007856, + "kind": "calibration_drift", + "ledger_value": 14550.0, + "name": "ons.age.10_20@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10102.502359543332, + "kind": "calibration_drift", + "ledger_value": 10207.0, + "name": "ons.age.10_20@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10994.670348799476, + "kind": "calibration_drift", + "ledger_value": 12440.0, + "name": "ons.age.10_20@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12174.605194386148, + "kind": "calibration_drift", + "ledger_value": 12026.0, + "name": "ons.age.10_20@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12304.562829106391, + "kind": "calibration_drift", + "ledger_value": 13550.0, + "name": "ons.age.10_20@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10556.067030041126, + "kind": "calibration_drift", + "ledger_value": 11315.0, + "name": "ons.age.10_20@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10909.853193256171, + "kind": "calibration_drift", + "ledger_value": 11679.0, + "name": "ons.age.10_20@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9987.515939022473, + "kind": "calibration_drift", + "ledger_value": 11111.0, + "name": "ons.age.10_20@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9343.842490588317, + "kind": "calibration_drift", + "ledger_value": 9047.0, + "name": "ons.age.10_20@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12159.976846402335, + "kind": "calibration_drift", + "ledger_value": 14753.0, + "name": "ons.age.10_20@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10048.850577432218, + "kind": "calibration_drift", + "ledger_value": 10476.0, + "name": "ons.age.10_20@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9145.399933996825, + "kind": "calibration_drift", + "ledger_value": 9059.0, + "name": "ons.age.10_20@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10862.51338551107, + "kind": "calibration_drift", + "ledger_value": 12361.0, + "name": "ons.age.10_20@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11045.955140523334, + "kind": "calibration_drift", + "ledger_value": 12588.0, + "name": "ons.age.10_20@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11757.817637030328, + "kind": "calibration_drift", + "ledger_value": 12700.0, + "name": "ons.age.10_20@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11479.725853907707, + "kind": "calibration_drift", + "ledger_value": 13296.0, + "name": "ons.age.10_20@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11089.251339690207, + "kind": "calibration_drift", + "ledger_value": 12018.0, + "name": "ons.age.10_20@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12764.587410869402, + "kind": "calibration_drift", + "ledger_value": 15656.0, + "name": "ons.age.10_20@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11621.4494033446, + "kind": "calibration_drift", + "ledger_value": 13208.0, + "name": "ons.age.10_20@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10361.59904480823, + "kind": "calibration_drift", + "ledger_value": 12100.0, + "name": "ons.age.10_20@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9502.006760756685, + "kind": "calibration_drift", + "ledger_value": 9966.0, + "name": "ons.age.10_20@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10558.138146629972, + "kind": "calibration_drift", + "ledger_value": 11101.0, + "name": "ons.age.10_20@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14219.30025303654, + "kind": "calibration_drift", + "ledger_value": 13912.0, + "name": "ons.age.10_20@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9610.119046694555, + "kind": "calibration_drift", + "ledger_value": 10649.0, + "name": "ons.age.10_20@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13326.609553403208, + "kind": "calibration_drift", + "ledger_value": 13246.0, + "name": "ons.age.10_20@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12664.384817808941, + "kind": "calibration_drift", + "ledger_value": 13595.0, + "name": "ons.age.10_20@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10607.637833103443, + "kind": "calibration_drift", + "ledger_value": 11239.0, + "name": "ons.age.10_20@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9342.718072506252, + "kind": "calibration_drift", + "ledger_value": 9217.0, + "name": "ons.age.10_20@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10411.798965937933, + "kind": "calibration_drift", + "ledger_value": 11762.0, + "name": "ons.age.10_20@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11315.841356970139, + "kind": "calibration_drift", + "ledger_value": 12714.0, + "name": "ons.age.10_20@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10584.874378958739, + "kind": "calibration_drift", + "ledger_value": 10535.0, + "name": "ons.age.10_20@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11476.944640202682, + "kind": "calibration_drift", + "ledger_value": 13864.0, + "name": "ons.age.10_20@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10414.757703922001, + "kind": "calibration_drift", + "ledger_value": 11726.0, + "name": "ons.age.10_20@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11685.358143800486, + "kind": "calibration_drift", + "ledger_value": 14443.0, + "name": "ons.age.10_20@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12440.42807733483, + "kind": "calibration_drift", + "ledger_value": 14080.0, + "name": "ons.age.10_20@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11317.61659976058, + "kind": "calibration_drift", + "ledger_value": 11847.0, + "name": "ons.age.10_20@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10393.484377816543, + "kind": "calibration_drift", + "ledger_value": 11524.0, + "name": "ons.age.10_20@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11581.210566761265, + "kind": "calibration_drift", + "ledger_value": 13658.0, + "name": "ons.age.10_20@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12417.685244697288, + "kind": "calibration_drift", + "ledger_value": 14765.0, + "name": "ons.age.10_20@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10164.389295710103, + "kind": "calibration_drift", + "ledger_value": 11503.0, + "name": "ons.age.10_20@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12610.792210457508, + "kind": "calibration_drift", + "ledger_value": 14029.0, + "name": "ons.age.10_20@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9809.778787080484, + "kind": "calibration_drift", + "ledger_value": 9911.0, + "name": "ons.age.10_20@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10215.214337407144, + "kind": "calibration_drift", + "ledger_value": 11250.0, + "name": "ons.age.10_20@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15711.608792521241, + "kind": "calibration_drift", + "ledger_value": 17498.0, + "name": "ons.age.10_20@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13881.97453547286, + "kind": "calibration_drift", + "ledger_value": 16693.0, + "name": "ons.age.10_20@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9420.947202453148, + "kind": "calibration_drift", + "ledger_value": 10203.0, + "name": "ons.age.10_20@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12419.421037647942, + "kind": "calibration_drift", + "ledger_value": 12565.0, + "name": "ons.age.10_20@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9677.045699894192, + "kind": "calibration_drift", + "ledger_value": 9527.0, + "name": "ons.age.10_20@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10157.051625509612, + "kind": "calibration_drift", + "ledger_value": 11254.0, + "name": "ons.age.10_20@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9634.360973244027, + "kind": "calibration_drift", + "ledger_value": 10302.0, + "name": "ons.age.10_20@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16519.996800161007, + "kind": "calibration_drift", + "ledger_value": 16215.0, + "name": "ons.age.10_20@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9929.998072612178, + "kind": "calibration_drift", + "ledger_value": 10771.0, + "name": "ons.age.10_20@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13491.8452073535, + "kind": "calibration_drift", + "ledger_value": 14095.0, + "name": "ons.age.10_20@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12910.305256584788, + "kind": "calibration_drift", + "ledger_value": 14310.0, + "name": "ons.age.10_20@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10587.232403473316, + "kind": "calibration_drift", + "ledger_value": 11038.0, + "name": "ons.age.10_20@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13403.885637715632, + "kind": "calibration_drift", + "ledger_value": 15607.0, + "name": "ons.age.10_20@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9731.989464258348, + "kind": "calibration_drift", + "ledger_value": 10253.0, + "name": "ons.age.10_20@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11251.891018415865, + "kind": "calibration_drift", + "ledger_value": 13306.0, + "name": "ons.age.10_20@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11118.621745412062, + "kind": "calibration_drift", + "ledger_value": 11696.0, + "name": "ons.age.10_20@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15627.896232491988, + "kind": "calibration_drift", + "ledger_value": 18263.0, + "name": "ons.age.10_20@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13498.748929316329, + "kind": "calibration_drift", + "ledger_value": 14488.0, + "name": "ons.age.10_20@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10555.790881162611, + "kind": "calibration_drift", + "ledger_value": 11324.0, + "name": "ons.age.10_20@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11636.450204923829, + "kind": "calibration_drift", + "ledger_value": 12802.0, + "name": "ons.age.10_20@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10845.628854081986, + "kind": "calibration_drift", + "ledger_value": 11879.0, + "name": "ons.age.10_20@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10673.144292070725, + "kind": "calibration_drift", + "ledger_value": 11400.0, + "name": "ons.age.10_20@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12779.420550629535, + "kind": "calibration_drift", + "ledger_value": 14175.0, + "name": "ons.age.10_20@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9635.290095089518, + "kind": "calibration_drift", + "ledger_value": 9023.0, + "name": "ons.age.10_20@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10809.857711854595, + "kind": "calibration_drift", + "ledger_value": 11617.0, + "name": "ons.age.10_20@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13279.199811851213, + "kind": "calibration_drift", + "ledger_value": 14501.0, + "name": "ons.age.10_20@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9899.76963287494, + "kind": "calibration_drift", + "ledger_value": 10622.0, + "name": "ons.age.10_20@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13950.449594884158, + "kind": "calibration_drift", + "ledger_value": 14623.0, + "name": "ons.age.10_20@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13508.473314823968, + "kind": "calibration_drift", + "ledger_value": 15306.0, + "name": "ons.age.10_20@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9593.826262862287, + "kind": "calibration_drift", + "ledger_value": 10178.0, + "name": "ons.age.10_20@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15433.80302073708, + "kind": "calibration_drift", + "ledger_value": 17574.0, + "name": "ons.age.10_20@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12034.173627202297, + "kind": "calibration_drift", + "ledger_value": 13062.0, + "name": "ons.age.10_20@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11984.979676987181, + "kind": "calibration_drift", + "ledger_value": 13734.0, + "name": "ons.age.10_20@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10206.659799042498, + "kind": "calibration_drift", + "ledger_value": 11494.0, + "name": "ons.age.10_20@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9335.883485411172, + "kind": "calibration_drift", + "ledger_value": 8668.0, + "name": "ons.age.10_20@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.410856490013, + "kind": "calibration_drift", + "ledger_value": 11193.0, + "name": "ons.age.10_20@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9717.314738350071, + "kind": "calibration_drift", + "ledger_value": 10344.0, + "name": "ons.age.10_20@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9646.570698658285, + "kind": "calibration_drift", + "ledger_value": 10403.0, + "name": "ons.age.10_20@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10492.335813864283, + "kind": "calibration_drift", + "ledger_value": 11396.0, + "name": "ons.age.10_20@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11799.447080466176, + "kind": "calibration_drift", + "ledger_value": 12720.0, + "name": "ons.age.10_20@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10859.899833625144, + "kind": "calibration_drift", + "ledger_value": 12200.0, + "name": "ons.age.10_20@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13597.314354025606, + "kind": "calibration_drift", + "ledger_value": 14981.0, + "name": "ons.age.10_20@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14432.9211354863, + "kind": "calibration_drift", + "ledger_value": 18145.0, + "name": "ons.age.10_20@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9459.60804544498, + "kind": "calibration_drift", + "ledger_value": 9547.0, + "name": "ons.age.10_20@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11308.1782255914, + "kind": "calibration_drift", + "ledger_value": 12394.0, + "name": "ons.age.10_20@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10339.181673348938, + "kind": "calibration_drift", + "ledger_value": 12325.0, + "name": "ons.age.10_20@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11961.319635574577, + "kind": "calibration_drift", + "ledger_value": 12838.0, + "name": "ons.age.10_20@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12295.022941334326, + "kind": "calibration_drift", + "ledger_value": 14514.0, + "name": "ons.age.10_20@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12914.062853824555, + "kind": "calibration_drift", + "ledger_value": 15154.0, + "name": "ons.age.10_20@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15369.144733325229, + "kind": "calibration_drift", + "ledger_value": 18336.0, + "name": "ons.age.10_20@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12797.616789231557, + "kind": "calibration_drift", + "ledger_value": 14925.0, + "name": "ons.age.10_20@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11581.486715639778, + "kind": "calibration_drift", + "ledger_value": 12717.0, + "name": "ons.age.10_20@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11742.560411492479, + "kind": "calibration_drift", + "ledger_value": 13188.0, + "name": "ons.age.10_20@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9275.130732138294, + "kind": "calibration_drift", + "ledger_value": 10167.0, + "name": "ons.age.10_20@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13872.713685582725, + "kind": "calibration_drift", + "ledger_value": 15112.0, + "name": "ons.age.10_20@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10215.536012994706, + "kind": "calibration_drift", + "ledger_value": 11280.0, + "name": "ons.age.10_20@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12448.396944971922, + "kind": "calibration_drift", + "ledger_value": 15476.0, + "name": "ons.age.10_20@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10616.85923315379, + "kind": "calibration_drift", + "ledger_value": 11751.0, + "name": "ons.age.10_20@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12353.08613204512, + "kind": "calibration_drift", + "ledger_value": 16111.0, + "name": "ons.age.10_20@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11802.050769892156, + "kind": "calibration_drift", + "ledger_value": 10839.0, + "name": "ons.age.10_20@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13180.648139181432, + "kind": "calibration_drift", + "ledger_value": 12053.0, + "name": "ons.age.10_20@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12431.570227181113, + "kind": "calibration_drift", + "ledger_value": 14843.0, + "name": "ons.age.10_20@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13307.385140519717, + "kind": "calibration_drift", + "ledger_value": 13892.0, + "name": "ons.age.10_20@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13552.075390628283, + "kind": "calibration_drift", + "ledger_value": 14766.0, + "name": "ons.age.10_20@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13312.404427701429, + "kind": "calibration_drift", + "ledger_value": 11866.0, + "name": "ons.age.10_20@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13057.751653035219, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.10_20@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13051.401494252292, + "kind": "calibration_drift", + "ledger_value": 15396.0, + "name": "ons.age.10_20@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12033.614268483438, + "kind": "calibration_drift", + "ledger_value": 13546.0, + "name": "ons.age.10_20@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12546.963132490018, + "kind": "calibration_drift", + "ledger_value": 14677.0, + "name": "ons.age.10_20@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12302.27288238145, + "kind": "calibration_drift", + "ledger_value": 15266.0, + "name": "ons.age.10_20@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11786.54112446032, + "kind": "calibration_drift", + "ledger_value": 16003.0, + "name": "ons.age.10_20@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11784.031480869464, + "kind": "calibration_drift", + "ledger_value": 13147.0, + "name": "ons.age.10_20@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13307.385140519717, + "kind": "calibration_drift", + "ledger_value": 11932.0, + "name": "ons.age.10_20@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12922.10414945263, + "kind": "calibration_drift", + "ledger_value": 14388.0, + "name": "ons.age.10_20@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11279.593119107189, + "kind": "calibration_drift", + "ledger_value": 15057.0, + "name": "ons.age.10_20@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13053.91113784315, + "kind": "calibration_drift", + "ledger_value": 12036.0, + "name": "ons.age.10_20@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11659.804123122038, + "kind": "calibration_drift", + "ledger_value": 17158.0, + "name": "ons.age.10_20@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13557.14537768052, + "kind": "calibration_drift", + "ledger_value": 13471.0, + "name": "ons.age.10_20@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 19299.0, + "name": "ons.age.10_20@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 30889.0, + "name": "ons.age.10_20@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 44783.0, + "name": "ons.age.10_20@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 17991.0, + "name": "ons.age.10_20@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 20725.0, + "name": "ons.age.10_20@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 15764.0, + "name": "ons.age.10_20@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 19171.0, + "name": "ons.age.10_20@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 17051.0, + "name": "ons.age.10_20@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 21742.0, + "name": "ons.age.10_20@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22933.568222500246, + "kind": "calibration_drift", + "ledger_value": 25452.0, + "name": "ons.age.10_20@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6041.727667298858, + "kind": "calibration_drift", + "ledger_value": 6052.0, + "name": "ons.age.10_20@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17023.79114721632, + "kind": "calibration_drift", + "ledger_value": 15347.0, + "name": "ons.age.10_20@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14040.03321565274, + "kind": "calibration_drift", + "ledger_value": 13383.0, + "name": "ons.age.10_20@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13101.88399310489, + "kind": "calibration_drift", + "ledger_value": 13611.0, + "name": "ons.age.10_20@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11297.11359196712, + "kind": "calibration_drift", + "ledger_value": 13774.0, + "name": "ons.age.10_20@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3050.151825547377, + "kind": "calibration_drift", + "ledger_value": 2665.0, + "name": "ons.age.10_20@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18483.406647819695, + "kind": "calibration_drift", + "ledger_value": 18241.0, + "name": "ons.age.10_20@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27461.984785554738, + "kind": "calibration_drift", + "ledger_value": 25254.0, + "name": "ons.age.10_20@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9151.155588002242, + "kind": "calibration_drift", + "ledger_value": 8222.0, + "name": "ons.age.10_20@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11263.274876228454, + "kind": "calibration_drift", + "ledger_value": 11256.0, + "name": "ons.age.10_20@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10885.914853128976, + "kind": "calibration_drift", + "ledger_value": 10875.0, + "name": "ons.age.10_20@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15567.326147733445, + "kind": "calibration_drift", + "ledger_value": 14841.0, + "name": "ons.age.10_20@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2562.1742075504717, + "kind": "calibration_drift", + "ledger_value": 2330.0, + "name": "ons.age.10_20@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13631.284866574986, + "kind": "calibration_drift", + "ledger_value": 12585.0, + "name": "ons.age.10_20@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2682.12662058271, + "kind": "calibration_drift", + "ledger_value": 2843.0, + "name": "ons.age.10_20@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13012.619794690818, + "kind": "calibration_drift", + "ledger_value": 11715.0, + "name": "ons.age.10_20@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38162.60349870784, + "kind": "calibration_drift", + "ledger_value": 36322.0, + "name": "ons.age.10_20@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10805.518731942973, + "kind": "calibration_drift", + "ledger_value": 11172.0, + "name": "ons.age.10_20@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26139.94116721305, + "kind": "calibration_drift", + "ledger_value": 23428.0, + "name": "ons.age.10_20@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30772.57803706316, + "kind": "calibration_drift", + "ledger_value": 31803.0, + "name": "ons.age.10_20@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10031.42893811431, + "kind": "calibration_drift", + "ledger_value": 8764.0, + "name": "ons.age.10_20@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 60039.56659420903, + "kind": "calibration_drift", + "ledger_value": 51754.0, + "name": "ons.age.10_20@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21455.379371488085, + "kind": "calibration_drift", + "ledger_value": 19939.0, + "name": "ons.age.10_20@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10314.857353732312, + "kind": "calibration_drift", + "ledger_value": 10104.0, + "name": "ons.age.10_20@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21152.464523013678, + "kind": "calibration_drift", + "ledger_value": 23091.0, + "name": "ons.age.10_20@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13342.022189622732, + "kind": "calibration_drift", + "ledger_value": 12480.0, + "name": "ons.age.10_20@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17350.743152387848, + "kind": "calibration_drift", + "ledger_value": 16734.0, + "name": "ons.age.10_20@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12711.338539390003, + "kind": "calibration_drift", + "ledger_value": 12726.0, + "name": "ons.age.10_20@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43381.350262197004, + "kind": "calibration_drift", + "ledger_value": 43160.0, + "name": "ons.age.10_20@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17613.985023789337, + "kind": "calibration_drift", + "ledger_value": 16867.0, + "name": "ons.age.10_20@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 72433.05457610896, + "kind": "calibration_drift", + "ledger_value": 63401.0, + "name": "ons.age.10_20@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39786.51179848378, + "kind": "calibration_drift", + "ledger_value": 39844.0, + "name": "ons.age.10_20@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10307.638180975822, + "kind": "calibration_drift", + "ledger_value": 13934.0, + "name": "ons.age.10_20@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11023.11356451084, + "kind": "calibration_drift", + "ledger_value": 2711.0, + "name": "ons.age.10_20@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10005.244278843795, + "kind": "calibration_drift", + "ledger_value": 11335.0, + "name": "ons.age.10_20@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11047.076854868474, + "kind": "calibration_drift", + "ledger_value": 10338.0, + "name": "ons.age.10_20@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2981.7179859282437, + "kind": "calibration_drift", + "ledger_value": 5204.0, + "name": "ons.age.10_20@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10924.978184951016, + "kind": "calibration_drift", + "ledger_value": 12227.0, + "name": "ons.age.10_20@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11013.984691993648, + "kind": "calibration_drift", + "ledger_value": 11671.0, + "name": "ons.age.10_20@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10445.712377798372, + "kind": "calibration_drift", + "ledger_value": 11020.0, + "name": "ons.age.10_20@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5129.285245597955, + "kind": "calibration_drift", + "ledger_value": 11042.0, + "name": "ons.age.10_20@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11124.672271264619, + "kind": "calibration_drift", + "ledger_value": 11024.0, + "name": "ons.age.10_20@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13388.016456633628, + "kind": "calibration_drift", + "ledger_value": 10736.0, + "name": "ons.age.10_20@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15344.311014886847, + "kind": "calibration_drift", + "ledger_value": 11758.0, + "name": "ons.age.10_20@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11384.699076044351, + "kind": "calibration_drift", + "ledger_value": 9452.0, + "name": "ons.age.10_20@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11914.696309993167, + "kind": "calibration_drift", + "ledger_value": 11787.0, + "name": "ons.age.10_20@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9272.25743560267, + "kind": "calibration_drift", + "ledger_value": 10413.0, + "name": "ons.age.10_20@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12270.482705260129, + "kind": "calibration_drift", + "ledger_value": 11064.0, + "name": "ons.age.10_20@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12576.660525050534, + "kind": "calibration_drift", + "ledger_value": 10801.0, + "name": "ons.age.10_20@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11369.03004425516, + "kind": "calibration_drift", + "ledger_value": 10559.0, + "name": "ons.age.10_20@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8851.861445095275, + "kind": "calibration_drift", + "ledger_value": 10209.0, + "name": "ons.age.10_20@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16363.696328824824, + "kind": "calibration_drift", + "ledger_value": 9719.0, + "name": "ons.age.10_20@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10982.98075870713, + "kind": "calibration_drift", + "ledger_value": 11687.0, + "name": "ons.age.10_20@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10412.823332337053, + "kind": "calibration_drift", + "ledger_value": 11530.0, + "name": "ons.age.10_20@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10848.337842262921, + "kind": "calibration_drift", + "ledger_value": 11400.0, + "name": "ons.age.10_20@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11213.541845219497, + "kind": "calibration_drift", + "ledger_value": 10515.0, + "name": "ons.age.10_20@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10253.3898560424, + "kind": "calibration_drift", + "ledger_value": 8766.0, + "name": "ons.age.10_20@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12800.988873851782, + "kind": "calibration_drift", + "ledger_value": 11444.0, + "name": "ons.age.10_20@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9921.354504847048, + "kind": "calibration_drift", + "ledger_value": 11581.0, + "name": "ons.age.10_20@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10065.789243595951, + "kind": "calibration_drift", + "ledger_value": 11342.0, + "name": "ons.age.10_20@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13631.821254950315, + "kind": "calibration_drift", + "ledger_value": 11142.0, + "name": "ons.age.10_20@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12216.725057224503, + "kind": "calibration_drift", + "ledger_value": 9915.0, + "name": "ons.age.10_20@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12045.204953717091, + "kind": "calibration_drift", + "ledger_value": 12024.0, + "name": "ons.age.10_20@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12212.149209875264, + "kind": "calibration_drift", + "ledger_value": 12316.0, + "name": "ons.age.10_20@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11585.66892229223, + "kind": "calibration_drift", + "ledger_value": 7937.0, + "name": "ons.age.10_20@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9576.463418929357, + "kind": "calibration_drift", + "ledger_value": 10604.0, + "name": "ons.age.10_20@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11706.6917690999, + "kind": "calibration_drift", + "ledger_value": 9652.0, + "name": "ons.age.10_20@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14819.12277607597, + "kind": "calibration_drift", + "ledger_value": 10982.0, + "name": "ons.age.10_20@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14439.783207034943, + "kind": "calibration_drift", + "ledger_value": 11215.0, + "name": "ons.age.10_20@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10463.97080071933, + "kind": "calibration_drift", + "ledger_value": 11086.0, + "name": "ons.age.10_20@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11779.008386888881, + "kind": "calibration_drift", + "ledger_value": 9818.0, + "name": "ons.age.10_20@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13543.047534156867, + "kind": "calibration_drift", + "ledger_value": 11449.0, + "name": "ons.age.10_20@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10941.97158114177, + "kind": "calibration_drift", + "ledger_value": 13373.0, + "name": "ons.age.10_20@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9667.622057667919, + "kind": "calibration_drift", + "ledger_value": 12691.0, + "name": "ons.age.10_20@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10271.572287878522, + "kind": "calibration_drift", + "ledger_value": 11375.0, + "name": "ons.age.10_20@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12063.093250569162, + "kind": "calibration_drift", + "ledger_value": 11479.0, + "name": "ons.age.10_20@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12942.961491819946, + "kind": "calibration_drift", + "ledger_value": 11794.0, + "name": "ons.age.10_20@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10724.964588099312, + "kind": "calibration_drift", + "ledger_value": 10922.0, + "name": "ons.age.10_20@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9546.500177109803, + "kind": "calibration_drift", + "ledger_value": 10819.0, + "name": "ons.age.10_20@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11896.404331686843, + "kind": "calibration_drift", + "ledger_value": 9838.0, + "name": "ons.age.10_20@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11953.745638503173, + "kind": "calibration_drift", + "ledger_value": 11425.0, + "name": "ons.age.10_20@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11394.845817847212, + "kind": "calibration_drift", + "ledger_value": 10028.0, + "name": "ons.age.10_20@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11905.704370563732, + "kind": "calibration_drift", + "ledger_value": 12389.0, + "name": "ons.age.10_20@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10303.72654948708, + "kind": "calibration_drift", + "ledger_value": 10597.0, + "name": "ons.age.10_20@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11144.221390220682, + "kind": "calibration_drift", + "ledger_value": 9780.0, + "name": "ons.age.10_20@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11434.990034741568, + "kind": "calibration_drift", + "ledger_value": 10162.0, + "name": "ons.age.10_20@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9111.121424583562, + "kind": "calibration_drift", + "ledger_value": 9548.0, + "name": "ons.age.10_20@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12614.517959379331, + "kind": "calibration_drift", + "ledger_value": 10802.0, + "name": "ons.age.10_20@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10873.938658707388, + "kind": "calibration_drift", + "ledger_value": 12504.0, + "name": "ons.age.10_20@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7476.334153805674, + "kind": "calibration_drift", + "ledger_value": 7559.0, + "name": "ons.age.10_20@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13195.360435785988, + "kind": "calibration_drift", + "ledger_value": 13771.0, + "name": "ons.age.10_20@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11697.566502996786, + "kind": "calibration_drift", + "ledger_value": 11815.0, + "name": "ons.age.10_20@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10941.37981921353, + "kind": "calibration_drift", + "ledger_value": 11208.0, + "name": "ons.age.10_20@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17593.489926941824, + "kind": "calibration_drift", + "ledger_value": 17889.0, + "name": "ons.age.10_20@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15798.275524695451, + "kind": "calibration_drift", + "ledger_value": 16317.0, + "name": "ons.age.10_20@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8241.268498455318, + "kind": "calibration_drift", + "ledger_value": 8058.0, + "name": "ons.age.10_20@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13565.678079129717, + "kind": "calibration_drift", + "ledger_value": 13799.0, + "name": "ons.age.10_20@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21115.88136914044, + "kind": "calibration_drift", + "ledger_value": 21306.0, + "name": "ons.age.10_20@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28079.991381103213, + "kind": "calibration_drift", + "ledger_value": 28755.0, + "name": "ons.age.10_20@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17651.80766605107, + "kind": "calibration_drift", + "ledger_value": 17619.0, + "name": "ons.age.10_20@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16346.46227232239, + "kind": "calibration_drift", + "ledger_value": 16516.0, + "name": "ons.age.10_20@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15738.013860949228, + "kind": "calibration_drift", + "ledger_value": 16006.0, + "name": "ons.age.10_20@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48359.98515634442, + "kind": "calibration_drift", + "ledger_value": 48403.0, + "name": "ons.age.10_20@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27874.907331902356, + "kind": "calibration_drift", + "ledger_value": 28230.0, + "name": "ons.age.10_20@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20358.722723038692, + "kind": "calibration_drift", + "ledger_value": 20580.0, + "name": "ons.age.10_20@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7231.399649546829, + "kind": "calibration_drift", + "ledger_value": 7476.0, + "name": "ons.age.10_20@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10792.669584484946, + "kind": "calibration_drift", + "ledger_value": 11170.0, + "name": "ons.age.10_20@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9718.651222556284, + "kind": "calibration_drift", + "ledger_value": 9837.0, + "name": "ons.age.10_20@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19343.02210021928, + "kind": "calibration_drift", + "ledger_value": 20085.0, + "name": "ons.age.10_20@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13457.790261777607, + "kind": "calibration_drift", + "ledger_value": 13601.0, + "name": "ons.age.10_20@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6679.325052645942, + "kind": "calibration_drift", + "ledger_value": 6842.0, + "name": "ons.age.10_20@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10561.63931991112, + "kind": "calibration_drift", + "ledger_value": 11166.0, + "name": "ons.age.10_20@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11970.314199046146, + "kind": "calibration_drift", + "ledger_value": 12039.0, + "name": "ons.age.10_20@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10226.009945458309, + "kind": "calibration_drift", + "ledger_value": 10874.0, + "name": "ons.age.10_20@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10530.740232897497, + "kind": "calibration_drift", + "ledger_value": 10762.0, + "name": "ons.age.10_20@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9507.64808784631, + "kind": "calibration_drift", + "ledger_value": 9541.0, + "name": "ons.age.10_20@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10167.239546634757, + "kind": "calibration_drift", + "ledger_value": 10563.0, + "name": "ons.age.10_20@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10026.068294954888, + "kind": "calibration_drift", + "ledger_value": 10554.0, + "name": "ons.age.10_20@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11586.802581551156, + "kind": "calibration_drift", + "ledger_value": 11722.0, + "name": "ons.age.10_20@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12953.206957353786, + "kind": "calibration_drift", + "ledger_value": 15990.0, + "name": "ons.age.10_20@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11567.40312283561, + "kind": "calibration_drift", + "ledger_value": 13236.0, + "name": "ons.age.10_20@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12760.001366994096, + "kind": "calibration_drift", + "ledger_value": 12722.0, + "name": "ons.age.10_20@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12285.626906008352, + "kind": "calibration_drift", + "ledger_value": 13891.0, + "name": "ons.age.10_20@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10410.368909245632, + "kind": "calibration_drift", + "ledger_value": 10666.0, + "name": "ons.age.10_20@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10958.923618601657, + "kind": "calibration_drift", + "ledger_value": 10985.0, + "name": "ons.age.10_20@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10927.704245760053, + "kind": "calibration_drift", + "ledger_value": 11649.0, + "name": "ons.age.10_20@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11086.26233078947, + "kind": "calibration_drift", + "ledger_value": 10361.0, + "name": "ons.age.10_20@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10985.03472543136, + "kind": "calibration_drift", + "ledger_value": 11524.0, + "name": "ons.age.10_20@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10946.068146181173, + "kind": "calibration_drift", + "ledger_value": 11252.0, + "name": "ons.age.10_20@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11451.903854397515, + "kind": "calibration_drift", + "ledger_value": 11819.0, + "name": "ons.age.10_20@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11058.618539095149, + "kind": "calibration_drift", + "ledger_value": 11635.0, + "name": "ons.age.10_20@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10158.895905519683, + "kind": "calibration_drift", + "ledger_value": 10030.0, + "name": "ons.age.10_20@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10625.287046946827, + "kind": "calibration_drift", + "ledger_value": 11314.0, + "name": "ons.age.10_20@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11444.171685799147, + "kind": "calibration_drift", + "ledger_value": 13095.0, + "name": "ons.age.10_20@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12570.829522752687, + "kind": "calibration_drift", + "ledger_value": 14119.0, + "name": "ons.age.10_20@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11710.734253243849, + "kind": "calibration_drift", + "ledger_value": 12626.0, + "name": "ons.age.10_20@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11774.297807601592, + "kind": "calibration_drift", + "ledger_value": 12557.0, + "name": "ons.age.10_20@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11462.032600762976, + "kind": "calibration_drift", + "ledger_value": 12016.0, + "name": "ons.age.10_20@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11781.142354804737, + "kind": "calibration_drift", + "ledger_value": 13478.0, + "name": "ons.age.10_20@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10494.584454732176, + "kind": "calibration_drift", + "ledger_value": 11280.0, + "name": "ons.age.10_20@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10829.178270890565, + "kind": "calibration_drift", + "ledger_value": 11713.0, + "name": "ons.age.10_20@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11299.361772287586, + "kind": "calibration_drift", + "ledger_value": 11991.0, + "name": "ons.age.10_20@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7212.416959164923, + "kind": "calibration_drift", + "ledger_value": 7681.0, + "name": "ons.age.10_20@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10538.987419359713, + "kind": "calibration_drift", + "ledger_value": 11110.0, + "name": "ons.age.20_30@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21970.236247090932, + "kind": "calibration_drift", + "ledger_value": 22634.0, + "name": "ons.age.20_30@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13338.238896603647, + "kind": "calibration_drift", + "ledger_value": 13474.0, + "name": "ons.age.20_30@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20749.45157507066, + "kind": "calibration_drift", + "ledger_value": 21416.0, + "name": "ons.age.20_30@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11493.454416114417, + "kind": "calibration_drift", + "ledger_value": 11827.0, + "name": "ons.age.20_30@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13930.163948562522, + "kind": "calibration_drift", + "ledger_value": 14449.0, + "name": "ons.age.20_30@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20685.302062050487, + "kind": "calibration_drift", + "ledger_value": 21448.0, + "name": "ons.age.20_30@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19223.47073504532, + "kind": "calibration_drift", + "ledger_value": 20779.0, + "name": "ons.age.20_30@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15080.967333651693, + "kind": "calibration_drift", + "ledger_value": 15351.0, + "name": "ons.age.20_30@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36641.03548234091, + "kind": "calibration_drift", + "ledger_value": 36807.0, + "name": "ons.age.20_30@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29717.74788775461, + "kind": "calibration_drift", + "ledger_value": 30474.0, + "name": "ons.age.20_30@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15990.724063755972, + "kind": "calibration_drift", + "ledger_value": 16153.0, + "name": "ons.age.20_30@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15774.948429051752, + "kind": "calibration_drift", + "ledger_value": 16291.0, + "name": "ons.age.20_30@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35634.082520387885, + "kind": "calibration_drift", + "ledger_value": 36915.0, + "name": "ons.age.20_30@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35622.41897256603, + "kind": "calibration_drift", + "ledger_value": 37748.0, + "name": "ons.age.20_30@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66276.16657302408, + "kind": "calibration_drift", + "ledger_value": 71270.0, + "name": "ons.age.20_30@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3394.0924161582698, + "kind": "calibration_drift", + "ledger_value": 3665.0, + "name": "ons.age.20_30@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 70699.56708446059, + "kind": "calibration_drift", + "ledger_value": 72901.0, + "name": "ons.age.20_30@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16542.79866065686, + "kind": "calibration_drift", + "ledger_value": 16900.0, + "name": "ons.age.20_30@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21589.22701824384, + "kind": "calibration_drift", + "ledger_value": 22433.0, + "name": "ons.age.20_30@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32704.588092466627, + "kind": "calibration_drift", + "ledger_value": 35006.0, + "name": "ons.age.20_30@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32243.877953503565, + "kind": "calibration_drift", + "ledger_value": 32528.0, + "name": "ons.age.20_30@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 99202.36207410585, + "kind": "calibration_drift", + "ledger_value": 108666.0, + "name": "ons.age.20_30@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19595.732303026023, + "kind": "calibration_drift", + "ledger_value": 20577.0, + "name": "ons.age.20_30@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37279.614725587184, + "kind": "calibration_drift", + "ledger_value": 39370.0, + "name": "ons.age.20_30@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38336.13776578307, + "kind": "calibration_drift", + "ledger_value": 40423.0, + "name": "ons.age.20_30@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12162.1644912338, + "kind": "calibration_drift", + "ledger_value": 12323.0, + "name": "ons.age.20_30@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25643.281848655108, + "kind": "calibration_drift", + "ledger_value": 26762.0, + "name": "ons.age.20_30@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24437.076611412147, + "kind": "calibration_drift", + "ledger_value": 25837.0, + "name": "ons.age.20_30@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33485.073834212075, + "kind": "calibration_drift", + "ledger_value": 37865.0, + "name": "ons.age.20_30@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19215.695036497422, + "kind": "calibration_drift", + "ledger_value": 19736.0, + "name": "ons.age.20_30@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19908.704169578992, + "kind": "calibration_drift", + "ledger_value": 20653.0, + "name": "ons.age.20_30@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32561.70963164897, + "kind": "calibration_drift", + "ledger_value": 33363.0, + "name": "ons.age.20_30@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13691.061218214601, + "kind": "calibration_drift", + "ledger_value": 13822.0, + "name": "ons.age.20_30@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14888.518794591173, + "kind": "calibration_drift", + "ledger_value": 15310.0, + "name": "ons.age.20_30@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29085.972380737752, + "kind": "calibration_drift", + "ledger_value": 31257.0, + "name": "ons.age.20_30@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18816.21852359907, + "kind": "calibration_drift", + "ledger_value": 21718.0, + "name": "ons.age.20_30@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14006.948971723032, + "kind": "calibration_drift", + "ledger_value": 15362.0, + "name": "ons.age.20_30@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16850.91071561739, + "kind": "calibration_drift", + "ledger_value": 17121.0, + "name": "ons.age.20_30@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32076.700434723716, + "kind": "calibration_drift", + "ledger_value": 34367.0, + "name": "ons.age.20_30@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48320.134701286435, + "kind": "calibration_drift", + "ledger_value": 52562.0, + "name": "ons.age.20_30@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34550.344535274344, + "kind": "calibration_drift", + "ledger_value": 35468.0, + "name": "ons.age.20_30@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48912.05975324531, + "kind": "calibration_drift", + "ledger_value": 52573.0, + "name": "ons.age.20_30@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11643.136613161487, + "kind": "calibration_drift", + "ledger_value": 11683.0, + "name": "ons.age.20_30@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 64234.0737418819, + "kind": "calibration_drift", + "ledger_value": 66131.0, + "name": "ons.age.20_30@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37565.3716472225, + "kind": "calibration_drift", + "ledger_value": 39066.0, + "name": "ons.age.20_30@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39226.455249517596, + "kind": "calibration_drift", + "ledger_value": 41021.0, + "name": "ons.age.20_30@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29855.766536979834, + "kind": "calibration_drift", + "ledger_value": 30241.0, + "name": "ons.age.20_30@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53594.00224139948, + "kind": "calibration_drift", + "ledger_value": 54198.0, + "name": "ons.age.20_30@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 267.2896375840562, + "kind": "calibration_drift", + "ledger_value": 363.0, + "name": "ons.age.20_30@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49928.73233838321, + "kind": "calibration_drift", + "ledger_value": 51407.0, + "name": "ons.age.20_30@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20129.33961587565, + "kind": "calibration_drift", + "ledger_value": 21453.0, + "name": "ons.age.20_30@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31103.766153917753, + "kind": "calibration_drift", + "ledger_value": 31857.0, + "name": "ons.age.20_30@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28839.093951841933, + "kind": "calibration_drift", + "ledger_value": 29568.0, + "name": "ons.age.20_30@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48518.41501425788, + "kind": "calibration_drift", + "ledger_value": 51092.0, + "name": "ons.age.20_30@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29920.888012318494, + "kind": "calibration_drift", + "ledger_value": 30796.0, + "name": "ons.age.20_30@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51999.984039080024, + "kind": "calibration_drift", + "ledger_value": 54318.0, + "name": "ons.age.20_30@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37699.50244717377, + "kind": "calibration_drift", + "ledger_value": 38464.0, + "name": "ons.age.20_30@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48244.32164044441, + "kind": "calibration_drift", + "ledger_value": 49986.0, + "name": "ons.age.20_30@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26695.917039577045, + "kind": "calibration_drift", + "ledger_value": 27318.0, + "name": "ons.age.20_30@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20815.54501272781, + "kind": "calibration_drift", + "ledger_value": 21360.0, + "name": "ons.age.20_30@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55264.80546687946, + "kind": "calibration_drift", + "ledger_value": 55970.0, + "name": "ons.age.20_30@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52538.451163522084, + "kind": "calibration_drift", + "ledger_value": 54129.0, + "name": "ons.age.20_30@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38063.98831660658, + "kind": "calibration_drift", + "ledger_value": 39798.0, + "name": "ons.age.20_30@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8142.128341969596, + "kind": "calibration_drift", + "ledger_value": 8505.0, + "name": "ons.age.20_30@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10103.548300677325, + "kind": "calibration_drift", + "ledger_value": 10575.0, + "name": "ons.age.20_30@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18263.171964379693, + "kind": "calibration_drift", + "ledger_value": 19014.0, + "name": "ons.age.20_30@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14213.004983242377, + "kind": "calibration_drift", + "ledger_value": 14723.0, + "name": "ons.age.20_30@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12279.771931770785, + "kind": "calibration_drift", + "ledger_value": 12786.0, + "name": "ons.age.20_30@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9168.52055029237, + "kind": "calibration_drift", + "ledger_value": 9315.0, + "name": "ons.age.20_30@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10941.37981921353, + "kind": "calibration_drift", + "ledger_value": 11114.0, + "name": "ons.age.20_30@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5225.269424188677, + "kind": "calibration_drift", + "ledger_value": 5270.0, + "name": "ons.age.20_30@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12451.809262143068, + "kind": "calibration_drift", + "ledger_value": 12472.0, + "name": "ons.age.20_30@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8276.259141920867, + "kind": "calibration_drift", + "ledger_value": 8231.0, + "name": "ons.age.20_30@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9914.987610890754, + "kind": "calibration_drift", + "ledger_value": 10024.0, + "name": "ons.age.20_30@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11689.790804448887, + "kind": "calibration_drift", + "ledger_value": 12165.0, + "name": "ons.age.20_30@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13003.883859043955, + "kind": "calibration_drift", + "ledger_value": 13048.0, + "name": "ons.age.20_30@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29699.280603703348, + "kind": "calibration_drift", + "ledger_value": 30448.0, + "name": "ons.age.20_30@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7158.502475660269, + "kind": "calibration_drift", + "ledger_value": 7197.0, + "name": "ons.age.20_30@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8714.61414755872, + "kind": "calibration_drift", + "ledger_value": 8813.0, + "name": "ons.age.20_30@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6683.212901919892, + "kind": "calibration_drift", + "ledger_value": 6868.0, + "name": "ons.age.20_30@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11100.781639445475, + "kind": "calibration_drift", + "ledger_value": 11358.0, + "name": "ons.age.20_30@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5291.362861845825, + "kind": "calibration_drift", + "ledger_value": 5490.0, + "name": "ons.age.20_30@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4247.475331790275, + "kind": "calibration_drift", + "ledger_value": 4418.0, + "name": "ons.age.20_30@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10422.351941141216, + "kind": "calibration_drift", + "ledger_value": 10657.0, + "name": "ons.age.20_30@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8851.660834465454, + "kind": "calibration_drift", + "ledger_value": 8843.0, + "name": "ons.age.20_30@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8169.343286887244, + "kind": "calibration_drift", + "ledger_value": 8431.0, + "name": "ons.age.20_30@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7424.820150925837, + "kind": "calibration_drift", + "ledger_value": 7251.0, + "name": "ons.age.20_30@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13444.182789318782, + "kind": "calibration_drift", + "ledger_value": 13461.0, + "name": "ons.age.20_30@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20575.470320061402, + "kind": "calibration_drift", + "ledger_value": 20867.0, + "name": "ons.age.20_30@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16004.331536214797, + "kind": "calibration_drift", + "ledger_value": 16457.0, + "name": "ons.age.20_30@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7635.73597403762, + "kind": "calibration_drift", + "ledger_value": 7751.0, + "name": "ons.age.20_30@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8719.473959151157, + "kind": "calibration_drift", + "ledger_value": 8803.0, + "name": "ons.age.20_30@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19561.713621878964, + "kind": "calibration_drift", + "ledger_value": 20494.0, + "name": "ons.age.20_30@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24536.21676789787, + "kind": "calibration_drift", + "ledger_value": 24839.0, + "name": "ons.age.20_30@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13762.014467464187, + "kind": "calibration_drift", + "ledger_value": 14081.0, + "name": "ons.age.20_30@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10555.510778774002, + "kind": "calibration_drift", + "ledger_value": 10939.0, + "name": "ons.age.20_30@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6230.278461504728, + "kind": "calibration_drift", + "ledger_value": 6346.0, + "name": "ons.age.20_30@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8500.782437491474, + "kind": "calibration_drift", + "ledger_value": 8763.0, + "name": "ons.age.20_30@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13494.724829880131, + "kind": "calibration_drift", + "ledger_value": 13973.0, + "name": "ons.age.20_30@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7794.165831951079, + "kind": "calibration_drift", + "ledger_value": 8233.0, + "name": "ons.age.20_30@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14922.537475738236, + "kind": "calibration_drift", + "ledger_value": 15434.0, + "name": "ons.age.20_30@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7151.698739430856, + "kind": "calibration_drift", + "ledger_value": 7200.0, + "name": "ons.age.20_30@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8116.857321688921, + "kind": "calibration_drift", + "ledger_value": 8080.0, + "name": "ons.age.20_30@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17031.69570685606, + "kind": "calibration_drift", + "ledger_value": 17847.0, + "name": "ons.age.20_30@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10646.875236711823, + "kind": "calibration_drift", + "ledger_value": 10476.0, + "name": "ons.age.20_30@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9049.941147436899, + "kind": "calibration_drift", + "ledger_value": 9411.0, + "name": "ons.age.20_30@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20169.190070933637, + "kind": "calibration_drift", + "ledger_value": 20371.0, + "name": "ons.age.20_30@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10705.192975821072, + "kind": "calibration_drift", + "ledger_value": 10747.0, + "name": "ons.age.20_30@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13898.089192052434, + "kind": "calibration_drift", + "ledger_value": 14176.0, + "name": "ons.age.20_30@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10295.996839737845, + "kind": "calibration_drift", + "ledger_value": 10781.0, + "name": "ons.age.20_30@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8510.502060676348, + "kind": "calibration_drift", + "ledger_value": 8801.0, + "name": "ons.age.20_30@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9451.361584972226, + "kind": "calibration_drift", + "ledger_value": 10069.0, + "name": "ons.age.20_30@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11762.687978335447, + "kind": "calibration_drift", + "ledger_value": 11940.0, + "name": "ons.age.20_30@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13486.949131332232, + "kind": "calibration_drift", + "ledger_value": 13814.0, + "name": "ons.age.20_30@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12887.248380825458, + "kind": "calibration_drift", + "ledger_value": 13631.0, + "name": "ons.age.20_30@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12193.2672854254, + "kind": "calibration_drift", + "ledger_value": 12213.0, + "name": "ons.age.20_30@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15197.60281187019, + "kind": "calibration_drift", + "ledger_value": 15585.0, + "name": "ons.age.20_30@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10519.548172989964, + "kind": "calibration_drift", + "ledger_value": 11007.0, + "name": "ons.age.20_30@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15199.546736507165, + "kind": "calibration_drift", + "ledger_value": 15789.0, + "name": "ons.age.20_30@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11084.258280031188, + "kind": "calibration_drift", + "ledger_value": 11406.0, + "name": "ons.age.20_30@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13095.248316981779, + "kind": "calibration_drift", + "ledger_value": 13319.0, + "name": "ons.age.20_30@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9017.866390926813, + "kind": "calibration_drift", + "ledger_value": 9267.0, + "name": "ons.age.20_30@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12380.856012893482, + "kind": "calibration_drift", + "ledger_value": 13174.0, + "name": "ons.age.20_30@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13757.154655871751, + "kind": "calibration_drift", + "ledger_value": 14377.0, + "name": "ons.age.20_30@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22724.479006237212, + "kind": "calibration_drift", + "ledger_value": 22416.0, + "name": "ons.age.20_30@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12447.921412869118, + "kind": "calibration_drift", + "ledger_value": 13173.0, + "name": "ons.age.20_30@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10817.94060476562, + "kind": "calibration_drift", + "ledger_value": 11275.0, + "name": "ons.age.20_30@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11299.061952416921, + "kind": "calibration_drift", + "ledger_value": 12309.0, + "name": "ons.age.20_30@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18949.37736123185, + "kind": "calibration_drift", + "ledger_value": 19905.0, + "name": "ons.age.20_30@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9698.240013868046, + "kind": "calibration_drift", + "ledger_value": 10151.0, + "name": "ons.age.20_30@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10116.183810817662, + "kind": "calibration_drift", + "ledger_value": 10062.0, + "name": "ons.age.20_30@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16286.200608576166, + "kind": "calibration_drift", + "ledger_value": 16870.0, + "name": "ons.age.20_30@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12738.538146096875, + "kind": "calibration_drift", + "ledger_value": 13289.0, + "name": "ons.age.20_30@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12414.874694040544, + "kind": "calibration_drift", + "ledger_value": 12533.0, + "name": "ons.age.20_30@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9914.015648572265, + "kind": "calibration_drift", + "ledger_value": 9997.0, + "name": "ons.age.20_30@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10832.520039542931, + "kind": "calibration_drift", + "ledger_value": 11735.0, + "name": "ons.age.20_30@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11274.762894454734, + "kind": "calibration_drift", + "ledger_value": 11677.0, + "name": "ons.age.20_30@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6416.895226654324, + "kind": "calibration_drift", + "ledger_value": 6873.0, + "name": "ons.age.20_30@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10017.04365433194, + "kind": "calibration_drift", + "ledger_value": 10452.0, + "name": "ons.age.20_30@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22001.339041282532, + "kind": "calibration_drift", + "ledger_value": 21223.0, + "name": "ons.age.20_30@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10487.473416479877, + "kind": "calibration_drift", + "ledger_value": 11401.0, + "name": "ons.age.20_30@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24919.169921381937, + "kind": "calibration_drift", + "ledger_value": 26735.0, + "name": "ons.age.20_30@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5279.699314023976, + "kind": "calibration_drift", + "ledger_value": 5584.0, + "name": "ons.age.20_30@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6972.85767282916, + "kind": "calibration_drift", + "ledger_value": 7347.0, + "name": "ons.age.20_30@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10965.678877175716, + "kind": "calibration_drift", + "ledger_value": 11708.0, + "name": "ons.age.20_30@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14783.546864194526, + "kind": "calibration_drift", + "ledger_value": 14952.0, + "name": "ons.age.20_30@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9973.305350000002, + "kind": "calibration_drift", + "ledger_value": 10323.0, + "name": "ons.age.20_30@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10298.912726693306, + "kind": "calibration_drift", + "ledger_value": 10819.0, + "name": "ons.age.20_30@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27618.30927982166, + "kind": "calibration_drift", + "ledger_value": 27395.0, + "name": "ons.age.20_30@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9338.613956027679, + "kind": "calibration_drift", + "ledger_value": 9500.0, + "name": "ons.age.20_30@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10786.837810574021, + "kind": "calibration_drift", + "ledger_value": 11098.0, + "name": "ons.age.20_30@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4573.082708483579, + "kind": "calibration_drift", + "ledger_value": 4792.0, + "name": "ons.age.20_30@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12309.902763643897, + "kind": "calibration_drift", + "ledger_value": 12313.0, + "name": "ons.age.20_30@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6170.016797758504, + "kind": "calibration_drift", + "ledger_value": 6566.0, + "name": "ons.age.20_30@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7057.418394537571, + "kind": "calibration_drift", + "ledger_value": 7269.0, + "name": "ons.age.20_30@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12029.977615919503, + "kind": "calibration_drift", + "ledger_value": 11991.0, + "name": "ons.age.20_30@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19903.844357986556, + "kind": "calibration_drift", + "ledger_value": 19925.0, + "name": "ons.age.20_30@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11764.631902972422, + "kind": "calibration_drift", + "ledger_value": 12095.0, + "name": "ons.age.20_30@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9086.875715539423, + "kind": "calibration_drift", + "ledger_value": 9404.0, + "name": "ons.age.20_30@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12878.500719959071, + "kind": "calibration_drift", + "ledger_value": 13221.0, + "name": "ons.age.20_30@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8459.960020115, + "kind": "calibration_drift", + "ledger_value": 8743.0, + "name": "ons.age.20_30@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13979.734026805383, + "kind": "calibration_drift", + "ledger_value": 14091.0, + "name": "ons.age.20_30@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11892.93092901277, + "kind": "calibration_drift", + "ledger_value": 12031.0, + "name": "ons.age.20_30@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9842.090437004194, + "kind": "calibration_drift", + "ledger_value": 10011.0, + "name": "ons.age.20_30@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14218.836757153302, + "kind": "calibration_drift", + "ledger_value": 14380.0, + "name": "ons.age.20_30@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7526.876194367022, + "kind": "calibration_drift", + "ledger_value": 7643.0, + "name": "ons.age.20_30@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29366.86949078063, + "kind": "calibration_drift", + "ledger_value": 29780.0, + "name": "ons.age.20_30@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12337.117708561545, + "kind": "calibration_drift", + "ledger_value": 12614.0, + "name": "ons.age.20_30@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13483.061282058281, + "kind": "calibration_drift", + "ledger_value": 13667.0, + "name": "ons.age.20_30@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12044.557050696816, + "kind": "calibration_drift", + "ledger_value": 12420.0, + "name": "ons.age.20_30@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14237.304041204563, + "kind": "calibration_drift", + "ledger_value": 14367.0, + "name": "ons.age.20_30@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11371.959126303482, + "kind": "calibration_drift", + "ledger_value": 11566.0, + "name": "ons.age.20_30@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11495.398340751392, + "kind": "calibration_drift", + "ledger_value": 11459.0, + "name": "ons.age.20_30@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12298.239215822046, + "kind": "calibration_drift", + "ledger_value": 12739.0, + "name": "ons.age.20_30@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12391.547598396844, + "kind": "calibration_drift", + "ledger_value": 12774.0, + "name": "ons.age.20_30@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16974.3499300653, + "kind": "calibration_drift", + "ledger_value": 18128.0, + "name": "ons.age.20_30@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39046.642220597416, + "kind": "calibration_drift", + "ledger_value": 41035.0, + "name": "ons.age.20_30@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14206.201247012965, + "kind": "calibration_drift", + "ledger_value": 14409.0, + "name": "ons.age.20_30@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14093.453618068417, + "kind": "calibration_drift", + "ledger_value": 14682.0, + "name": "ons.age.20_30@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11998.874821727904, + "kind": "calibration_drift", + "ledger_value": 12238.0, + "name": "ons.age.20_30@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11382.650711806844, + "kind": "calibration_drift", + "ledger_value": 11544.0, + "name": "ons.age.20_30@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13598.724797958292, + "kind": "calibration_drift", + "ledger_value": 14007.0, + "name": "ons.age.20_30@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10593.417309195012, + "kind": "calibration_drift", + "ledger_value": 11031.0, + "name": "ons.age.20_30@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17076.405973506484, + "kind": "calibration_drift", + "ledger_value": 16521.0, + "name": "ons.age.20_30@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10852.931248231169, + "kind": "calibration_drift", + "ledger_value": 10815.0, + "name": "ons.age.20_30@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13498.612679154081, + "kind": "calibration_drift", + "ledger_value": 13648.0, + "name": "ons.age.20_30@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8034.240524617485, + "kind": "calibration_drift", + "ledger_value": 8412.0, + "name": "ons.age.20_30@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8551.324478052824, + "kind": "calibration_drift", + "ledger_value": 8771.0, + "name": "ons.age.20_30@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8382.203034636002, + "kind": "calibration_drift", + "ledger_value": 8402.0, + "name": "ons.age.20_30@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15819.658695702177, + "kind": "calibration_drift", + "ledger_value": 16156.0, + "name": "ons.age.20_30@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10392.221109268105, + "kind": "calibration_drift", + "ledger_value": 10791.0, + "name": "ons.age.20_30@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10382.50148608323, + "kind": "calibration_drift", + "ledger_value": 11008.0, + "name": "ons.age.20_30@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7764.035000077966, + "kind": "calibration_drift", + "ledger_value": 8231.0, + "name": "ons.age.20_30@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23204.628391570026, + "kind": "calibration_drift", + "ledger_value": 24076.0, + "name": "ons.age.20_30@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7223.623950998929, + "kind": "calibration_drift", + "ledger_value": 7242.0, + "name": "ons.age.20_30@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14562.911417897869, + "kind": "calibration_drift", + "ledger_value": 15096.0, + "name": "ons.age.20_30@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12879.47268227756, + "kind": "calibration_drift", + "ledger_value": 13182.0, + "name": "ons.age.20_30@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10470.950057065591, + "kind": "calibration_drift", + "ledger_value": 11094.0, + "name": "ons.age.20_30@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8491.062814306599, + "kind": "calibration_drift", + "ledger_value": 9170.0, + "name": "ons.age.20_30@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7679.4742783695565, + "kind": "calibration_drift", + "ledger_value": 7824.0, + "name": "ons.age.20_30@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10575.921987462238, + "kind": "calibration_drift", + "ledger_value": 11109.0, + "name": "ons.age.20_30@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10648.819161348798, + "kind": "calibration_drift", + "ledger_value": 11504.0, + "name": "ons.age.20_30@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6542.278365739208, + "kind": "calibration_drift", + "ledger_value": 6639.0, + "name": "ons.age.20_30@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14870.051510539912, + "kind": "calibration_drift", + "ledger_value": 15481.0, + "name": "ons.age.20_30@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11814.201981215283, + "kind": "calibration_drift", + "ledger_value": 12403.0, + "name": "ons.age.20_30@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11705.342201544687, + "kind": "calibration_drift", + "ledger_value": 12536.0, + "name": "ons.age.20_30@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20873.862751837056, + "kind": "calibration_drift", + "ledger_value": 21100.0, + "name": "ons.age.20_30@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5317.605844444987, + "kind": "calibration_drift", + "ledger_value": 5208.0, + "name": "ons.age.20_30@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14955.584194566809, + "kind": "calibration_drift", + "ledger_value": 15306.0, + "name": "ons.age.20_30@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12542.201757762405, + "kind": "calibration_drift", + "ledger_value": 12635.0, + "name": "ons.age.20_30@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13751.322881960825, + "kind": "calibration_drift", + "ledger_value": 14698.0, + "name": "ons.age.20_30@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12228.25792889095, + "kind": "calibration_drift", + "ledger_value": 12549.0, + "name": "ons.age.20_30@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13521.93977479778, + "kind": "calibration_drift", + "ledger_value": 13914.0, + "name": "ons.age.20_30@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10652.70701062275, + "kind": "calibration_drift", + "ledger_value": 10768.0, + "name": "ons.age.20_30@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8760.29637652763, + "kind": "calibration_drift", + "ledger_value": 8918.0, + "name": "ons.age.20_30@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6520.895194732483, + "kind": "calibration_drift", + "ledger_value": 6875.0, + "name": "ons.age.20_30@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9039.249561933537, + "kind": "calibration_drift", + "ledger_value": 9257.0, + "name": "ons.age.20_30@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13603.58460955073, + "kind": "calibration_drift", + "ledger_value": 14499.0, + "name": "ons.age.20_30@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11992.071085498492, + "kind": "calibration_drift", + "ledger_value": 12343.0, + "name": "ons.age.20_30@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9703.099825460484, + "kind": "calibration_drift", + "ledger_value": 9975.0, + "name": "ons.age.20_30@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12544.14568239938, + "kind": "calibration_drift", + "ledger_value": 13198.0, + "name": "ons.age.20_30@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17784.966503683856, + "kind": "calibration_drift", + "ledger_value": 18175.0, + "name": "ons.age.20_30@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14368.518954200374, + "kind": "calibration_drift", + "ledger_value": 15194.0, + "name": "ons.age.20_30@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9977.193199273952, + "kind": "calibration_drift", + "ledger_value": 10434.0, + "name": "ons.age.20_30@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20655.171230177373, + "kind": "calibration_drift", + "ledger_value": 21716.0, + "name": "ons.age.20_30@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22201.56327889095, + "kind": "calibration_drift", + "ledger_value": 22502.0, + "name": "ons.age.20_30@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33995.354051418, + "kind": "calibration_drift", + "ledger_value": 36636.0, + "name": "ons.age.20_30@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20330.53581580256, + "kind": "calibration_drift", + "ledger_value": 21524.0, + "name": "ons.age.20_30@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 127389.26931024269, + "kind": "calibration_drift", + "ledger_value": 134621.0, + "name": "ons.age.20_30@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28659.28092292175, + "kind": "calibration_drift", + "ledger_value": 30810.0, + "name": "ons.age.20_30@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25951.393903615637, + "kind": "calibration_drift", + "ledger_value": 27201.0, + "name": "ons.age.20_30@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52816.4323866095, + "kind": "calibration_drift", + "ledger_value": 57876.0, + "name": "ons.age.20_30@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28791.467798236044, + "kind": "calibration_drift", + "ledger_value": 29117.0, + "name": "ons.age.20_30@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25672.44071820973, + "kind": "calibration_drift", + "ledger_value": 27217.0, + "name": "ons.age.20_30@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22517.45103239938, + "kind": "calibration_drift", + "ledger_value": 23987.0, + "name": "ons.age.20_30@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36864.58681559303, + "kind": "calibration_drift", + "ledger_value": 37901.0, + "name": "ons.age.20_30@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18424.517709248616, + "kind": "calibration_drift", + "ledger_value": 18397.0, + "name": "ons.age.20_30@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 95358.25110448789, + "kind": "calibration_drift", + "ledger_value": 98236.0, + "name": "ons.age.20_30@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19973.825644917655, + "kind": "calibration_drift", + "ledger_value": 20881.0, + "name": "ons.age.20_30@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26877.6739931342, + "kind": "calibration_drift", + "ledger_value": 27868.0, + "name": "ons.age.20_30@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31889.111707255634, + "kind": "calibration_drift", + "ledger_value": 33032.0, + "name": "ons.age.20_30@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26248.814373072804, + "kind": "calibration_drift", + "ledger_value": 26947.0, + "name": "ons.age.20_30@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33769.8587935289, + "kind": "calibration_drift", + "ledger_value": 35004.0, + "name": "ons.age.20_30@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29441.710589304166, + "kind": "calibration_drift", + "ledger_value": 30632.0, + "name": "ons.age.20_30@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 95081.24184371895, + "kind": "calibration_drift", + "ledger_value": 100132.0, + "name": "ons.age.20_30@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 63562.44777980705, + "kind": "calibration_drift", + "ledger_value": 69052.0, + "name": "ons.age.20_30@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20526.872204137027, + "kind": "calibration_drift", + "ledger_value": 21232.0, + "name": "ons.age.20_30@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15053.752388734045, + "kind": "calibration_drift", + "ledger_value": 15810.0, + "name": "ons.age.20_30@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31009.485809024467, + "kind": "calibration_drift", + "ledger_value": 32768.0, + "name": "ons.age.20_30@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 182243.90667872044, + "kind": "calibration_drift", + "ledger_value": 194989.0, + "name": "ons.age.20_30@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 60620.317841745455, + "kind": "calibration_drift", + "ledger_value": 63907.0, + "name": "ons.age.20_30@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35406.64333786182, + "kind": "calibration_drift", + "ledger_value": 37159.0, + "name": "ons.age.20_30@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41917.81890940942, + "kind": "calibration_drift", + "ledger_value": 46158.0, + "name": "ons.age.20_30@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21505.638258853916, + "kind": "calibration_drift", + "ledger_value": 21563.0, + "name": "ons.age.20_30@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32577.261028744768, + "kind": "calibration_drift", + "ledger_value": 35413.0, + "name": "ons.age.20_30@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31866.756573930423, + "kind": "calibration_drift", + "ledger_value": 35069.0, + "name": "ons.age.20_30@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 68253.13792882761, + "kind": "calibration_drift", + "ledger_value": 69064.0, + "name": "ons.age.20_30@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21134.3486531917, + "kind": "calibration_drift", + "ledger_value": 21760.0, + "name": "ons.age.20_30@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51432.35804508333, + "kind": "calibration_drift", + "ledger_value": 53133.0, + "name": "ons.age.20_30@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 133337.67869938604, + "kind": "calibration_drift", + "ledger_value": 143027.0, + "name": "ons.age.20_30@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38785.184356924285, + "kind": "calibration_drift", + "ledger_value": 39685.0, + "name": "ons.age.20_30@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22336.66604116071, + "kind": "calibration_drift", + "ledger_value": 23022.0, + "name": "ons.age.20_30@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4071.5501521440415, + "kind": "calibration_drift", + "ledger_value": 5163.0, + "name": "ons.age.20_30@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29015.991093806653, + "kind": "calibration_drift", + "ledger_value": 34235.0, + "name": "ons.age.20_30@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47516.32186389729, + "kind": "calibration_drift", + "ledger_value": 52687.0, + "name": "ons.age.20_30@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27366.571039333405, + "kind": "calibration_drift", + "ledger_value": 29472.0, + "name": "ons.age.20_30@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 56759.6835127132, + "kind": "calibration_drift", + "ledger_value": 64851.0, + "name": "ons.age.20_30@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30672.214884509314, + "kind": "calibration_drift", + "ledger_value": 31987.0, + "name": "ons.age.20_30@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49516.62031534452, + "kind": "calibration_drift", + "ledger_value": 51952.0, + "name": "ons.age.20_30@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47995.49928691162, + "kind": "calibration_drift", + "ledger_value": 52045.0, + "name": "ons.age.20_30@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53490.97423563981, + "kind": "calibration_drift", + "ledger_value": 62077.0, + "name": "ons.age.20_30@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38824.06284966378, + "kind": "calibration_drift", + "ledger_value": 41195.0, + "name": "ons.age.20_30@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43530.30439578015, + "kind": "calibration_drift", + "ledger_value": 47099.0, + "name": "ons.age.20_30@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51913.47939273464, + "kind": "calibration_drift", + "ledger_value": 56068.0, + "name": "ons.age.20_30@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41739.94980512621, + "kind": "calibration_drift", + "ledger_value": 45185.0, + "name": "ons.age.20_30@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39059.277730737755, + "kind": "calibration_drift", + "ledger_value": 42665.0, + "name": "ons.age.20_30@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32718.195564925452, + "kind": "calibration_drift", + "ledger_value": 37879.0, + "name": "ons.age.20_30@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29422.27134293442, + "kind": "calibration_drift", + "ledger_value": 32049.0, + "name": "ons.age.20_30@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42699.276613473354, + "kind": "calibration_drift", + "ledger_value": 48691.0, + "name": "ons.age.20_30@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38656.88533088394, + "kind": "calibration_drift", + "ledger_value": 43290.0, + "name": "ons.age.20_30@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50977.479680031196, + "kind": "calibration_drift", + "ledger_value": 54737.0, + "name": "ons.age.20_30@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27212.029030693895, + "kind": "calibration_drift", + "ledger_value": 28762.0, + "name": "ons.age.20_30@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21624.21766170939, + "kind": "calibration_drift", + "ledger_value": 23008.0, + "name": "ons.age.20_30@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 72868.98697932465, + "kind": "calibration_drift", + "ledger_value": 77174.0, + "name": "ons.age.20_30@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44386.603198367615, + "kind": "calibration_drift", + "ledger_value": 46625.0, + "name": "ons.age.20_30@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26930.159958332526, + "kind": "calibration_drift", + "ledger_value": 29879.0, + "name": "ons.age.20_30@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 71680.27706381446, + "kind": "calibration_drift", + "ledger_value": 84231.0, + "name": "ons.age.20_30@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42150.11790352793, + "kind": "calibration_drift", + "ledger_value": 49061.0, + "name": "ons.age.20_30@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17606.12543708216, + "kind": "calibration_drift", + "ledger_value": 18714.0, + "name": "ons.age.20_30@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 65698.82095584253, + "kind": "calibration_drift", + "ledger_value": 68442.0, + "name": "ons.age.20_30@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20583.2460186093, + "kind": "calibration_drift", + "ledger_value": 21389.0, + "name": "ons.age.20_30@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 84104.87138103988, + "kind": "calibration_drift", + "ledger_value": 91058.0, + "name": "ons.age.20_30@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35123.80230318196, + "kind": "calibration_drift", + "ledger_value": 38455.0, + "name": "ons.age.20_30@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 72383.9777823994, + "kind": "calibration_drift", + "ledger_value": 78594.0, + "name": "ons.age.20_30@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45260.39732268786, + "kind": "calibration_drift", + "ledger_value": 49502.0, + "name": "ons.age.20_30@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12686.476728089987, + "kind": "calibration_drift", + "ledger_value": 15964.0, + "name": "ons.age.20_30@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10124.604132284325, + "kind": "calibration_drift", + "ledger_value": 9185.0, + "name": "ons.age.20_30@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8515.247918149864, + "kind": "calibration_drift", + "ledger_value": 8742.0, + "name": "ons.age.20_30@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10477.877447582134, + "kind": "calibration_drift", + "ledger_value": 9829.0, + "name": "ons.age.20_30@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7373.165193839379, + "kind": "calibration_drift", + "ledger_value": 7383.0, + "name": "ons.age.20_30@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10855.954849646387, + "kind": "calibration_drift", + "ledger_value": 10318.0, + "name": "ons.age.20_30@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10870.40335346859, + "kind": "calibration_drift", + "ledger_value": 12314.0, + "name": "ons.age.20_30@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12155.107111071133, + "kind": "calibration_drift", + "ledger_value": 12500.0, + "name": "ons.age.20_30@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11793.668948362834, + "kind": "calibration_drift", + "ledger_value": 12507.0, + "name": "ons.age.20_30@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9397.405510559907, + "kind": "calibration_drift", + "ledger_value": 11076.0, + "name": "ons.age.20_30@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17246.838757694833, + "kind": "calibration_drift", + "ledger_value": 21110.0, + "name": "ons.age.20_30@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12986.551934434241, + "kind": "calibration_drift", + "ledger_value": 12080.0, + "name": "ons.age.20_30@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12490.549098784955, + "kind": "calibration_drift", + "ledger_value": 12278.0, + "name": "ons.age.20_30@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10279.375716230961, + "kind": "calibration_drift", + "ledger_value": 10584.0, + "name": "ons.age.20_30@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11770.64869742124, + "kind": "calibration_drift", + "ledger_value": 12208.0, + "name": "ons.age.20_30@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12243.15915347702, + "kind": "calibration_drift", + "ledger_value": 13425.0, + "name": "ons.age.20_30@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11027.334816143593, + "kind": "calibration_drift", + "ledger_value": 11365.0, + "name": "ons.age.20_30@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26125.962135585418, + "kind": "calibration_drift", + "ledger_value": 22701.0, + "name": "ons.age.20_30@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23227.77965559061, + "kind": "calibration_drift", + "ledger_value": 30244.0, + "name": "ons.age.20_30@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7821.325236286273, + "kind": "calibration_drift", + "ledger_value": 8429.0, + "name": "ons.age.20_30@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11153.094629275536, + "kind": "calibration_drift", + "ledger_value": 10810.0, + "name": "ons.age.20_30@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12409.686789680354, + "kind": "calibration_drift", + "ledger_value": 13885.0, + "name": "ons.age.20_30@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24962.25103661139, + "kind": "calibration_drift", + "ledger_value": 28577.0, + "name": "ons.age.20_30@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29932.418001929655, + "kind": "calibration_drift", + "ledger_value": 37301.0, + "name": "ons.age.20_30@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7261.630634299933, + "kind": "calibration_drift", + "ledger_value": 7950.0, + "name": "ons.age.20_30@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7826.414265618871, + "kind": "calibration_drift", + "ledger_value": 7312.0, + "name": "ons.age.20_30@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11740.153971265438, + "kind": "calibration_drift", + "ledger_value": 11524.0, + "name": "ons.age.20_30@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10354.369861667157, + "kind": "calibration_drift", + "ledger_value": 10667.0, + "name": "ons.age.20_30@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12180.493082974444, + "kind": "calibration_drift", + "ledger_value": 13132.0, + "name": "ons.age.20_30@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22874.776810785283, + "kind": "calibration_drift", + "ledger_value": 16544.0, + "name": "ons.age.20_30@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17627.815722983472, + "kind": "calibration_drift", + "ledger_value": 16639.0, + "name": "ons.age.20_30@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18733.466520250127, + "kind": "calibration_drift", + "ledger_value": 18640.0, + "name": "ons.age.20_30@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17151.735056426918, + "kind": "calibration_drift", + "ledger_value": 17855.0, + "name": "ons.age.20_30@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36818.467631981584, + "kind": "calibration_drift", + "ledger_value": 44147.0, + "name": "ons.age.20_30@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14428.995876427438, + "kind": "calibration_drift", + "ledger_value": 12718.0, + "name": "ons.age.20_30@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22137.08483053979, + "kind": "calibration_drift", + "ledger_value": 20518.0, + "name": "ons.age.20_30@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27202.84413718697, + "kind": "calibration_drift", + "ledger_value": 24327.0, + "name": "ons.age.20_30@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15957.3418445581, + "kind": "calibration_drift", + "ledger_value": 17314.0, + "name": "ons.age.20_30@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9716.956285916669, + "kind": "calibration_drift", + "ledger_value": 9510.0, + "name": "ons.age.20_30@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14333.961212379147, + "kind": "calibration_drift", + "ledger_value": 16073.0, + "name": "ons.age.20_30@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18337.253847518063, + "kind": "calibration_drift", + "ledger_value": 14128.0, + "name": "ons.age.20_30@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12877.088491483642, + "kind": "calibration_drift", + "ledger_value": 9124.0, + "name": "ons.age.20_30@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12310.223881115911, + "kind": "calibration_drift", + "ledger_value": 12845.0, + "name": "ons.age.20_30@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8931.77227733215, + "kind": "calibration_drift", + "ledger_value": 9787.0, + "name": "ons.age.20_30@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10505.11756195546, + "kind": "calibration_drift", + "ledger_value": 12017.0, + "name": "ons.age.20_30@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10221.492938802628, + "kind": "calibration_drift", + "ledger_value": 10278.0, + "name": "ons.age.20_30@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11708.712448954735, + "kind": "calibration_drift", + "ledger_value": 11651.0, + "name": "ons.age.20_30@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13680.020943140275, + "kind": "calibration_drift", + "ledger_value": 14076.0, + "name": "ons.age.20_30@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14603.738941766538, + "kind": "calibration_drift", + "ledger_value": 17380.0, + "name": "ons.age.20_30@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10577.350218606525, + "kind": "calibration_drift", + "ledger_value": 10669.0, + "name": "ons.age.20_30@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12041.077349165123, + "kind": "calibration_drift", + "ledger_value": 12230.0, + "name": "ons.age.20_30@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11853.621572954475, + "kind": "calibration_drift", + "ledger_value": 10935.0, + "name": "ons.age.20_30@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12787.665567145139, + "kind": "calibration_drift", + "ledger_value": 13423.0, + "name": "ons.age.20_30@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18250.38350713127, + "kind": "calibration_drift", + "ledger_value": 21194.0, + "name": "ons.age.20_30@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10542.624497133505, + "kind": "calibration_drift", + "ledger_value": 11904.0, + "name": "ons.age.20_30@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15223.673449108515, + "kind": "calibration_drift", + "ledger_value": 17402.0, + "name": "ons.age.20_30@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12229.470059070729, + "kind": "calibration_drift", + "ledger_value": 13167.0, + "name": "ons.age.20_30@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18973.400445838204, + "kind": "calibration_drift", + "ledger_value": 20433.0, + "name": "ons.age.20_30@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10040.414072956657, + "kind": "calibration_drift", + "ledger_value": 11075.0, + "name": "ons.age.20_30@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19971.441942624275, + "kind": "calibration_drift", + "ledger_value": 22131.0, + "name": "ons.age.20_30@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16159.857597107655, + "kind": "calibration_drift", + "ledger_value": 30397.0, + "name": "ons.age.20_30@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14801.402364022224, + "kind": "calibration_drift", + "ledger_value": 17972.0, + "name": "ons.age.20_30@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9985.740696232033, + "kind": "calibration_drift", + "ledger_value": 10113.0, + "name": "ons.age.20_30@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9334.5224659385, + "kind": "calibration_drift", + "ledger_value": 11016.0, + "name": "ons.age.20_30@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7639.0768389275845, + "kind": "calibration_drift", + "ledger_value": 7742.0, + "name": "ons.age.20_30@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8864.724186368117, + "kind": "calibration_drift", + "ledger_value": 7887.0, + "name": "ons.age.20_30@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19235.781330265425, + "kind": "calibration_drift", + "ledger_value": 16697.0, + "name": "ons.age.20_30@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29770.782145859976, + "kind": "calibration_drift", + "ledger_value": 23956.0, + "name": "ons.age.20_30@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34019.18470488456, + "kind": "calibration_drift", + "ledger_value": 41186.0, + "name": "ons.age.20_30@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24113.714570160315, + "kind": "calibration_drift", + "ledger_value": 19531.0, + "name": "ons.age.20_30@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13721.918377398206, + "kind": "calibration_drift", + "ledger_value": 16735.0, + "name": "ons.age.20_30@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18560.232411282897, + "kind": "calibration_drift", + "ledger_value": 18007.0, + "name": "ons.age.20_30@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16502.18358186441, + "kind": "calibration_drift", + "ledger_value": 18219.0, + "name": "ons.age.20_30@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8217.820035145296, + "kind": "calibration_drift", + "ledger_value": 8307.0, + "name": "ons.age.20_30@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9451.40985070892, + "kind": "calibration_drift", + "ledger_value": 9756.0, + "name": "ons.age.20_30@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9464.016565041242, + "kind": "calibration_drift", + "ledger_value": 9146.0, + "name": "ons.age.20_30@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11654.90286748447, + "kind": "calibration_drift", + "ledger_value": 11992.0, + "name": "ons.age.20_30@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12232.714808393257, + "kind": "calibration_drift", + "ledger_value": 12897.0, + "name": "ons.age.20_30@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9394.025323297315, + "kind": "calibration_drift", + "ledger_value": 11245.0, + "name": "ons.age.20_30@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11993.382492861934, + "kind": "calibration_drift", + "ledger_value": 13732.0, + "name": "ons.age.20_30@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12788.651813139828, + "kind": "calibration_drift", + "ledger_value": 13145.0, + "name": "ons.age.20_30@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11284.76474567747, + "kind": "calibration_drift", + "ledger_value": 11537.0, + "name": "ons.age.20_30@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12334.930239870153, + "kind": "calibration_drift", + "ledger_value": 13057.0, + "name": "ons.age.20_30@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11071.952584943352, + "kind": "calibration_drift", + "ledger_value": 12180.0, + "name": "ons.age.20_30@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9753.134578384494, + "kind": "calibration_drift", + "ledger_value": 9413.0, + "name": "ons.age.20_30@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10884.911032050473, + "kind": "calibration_drift", + "ledger_value": 9637.0, + "name": "ons.age.20_30@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28234.437722712388, + "kind": "calibration_drift", + "ledger_value": 33569.0, + "name": "ons.age.20_30@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11795.502096487418, + "kind": "calibration_drift", + "ledger_value": 11675.0, + "name": "ons.age.20_30@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26084.234067550104, + "kind": "calibration_drift", + "ledger_value": 17239.0, + "name": "ons.age.20_30@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11057.494218661204, + "kind": "calibration_drift", + "ledger_value": 11679.0, + "name": "ons.age.20_30@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10330.926794373387, + "kind": "calibration_drift", + "ledger_value": 11097.0, + "name": "ons.age.20_30@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9628.877445513554, + "kind": "calibration_drift", + "ledger_value": 9283.0, + "name": "ons.age.20_30@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7491.8931726499895, + "kind": "calibration_drift", + "ledger_value": 7885.0, + "name": "ons.age.20_30@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8158.196011266856, + "kind": "calibration_drift", + "ledger_value": 9143.0, + "name": "ons.age.20_30@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12641.799784530549, + "kind": "calibration_drift", + "ledger_value": 12287.0, + "name": "ons.age.20_30@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8235.154055658022, + "kind": "calibration_drift", + "ledger_value": 8205.0, + "name": "ons.age.20_30@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13134.873469575605, + "kind": "calibration_drift", + "ledger_value": 13450.0, + "name": "ons.age.20_30@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20015.548656681334, + "kind": "calibration_drift", + "ledger_value": 27159.0, + "name": "ons.age.20_30@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12960.455865414753, + "kind": "calibration_drift", + "ledger_value": 13718.0, + "name": "ons.age.20_30@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7929.575596663401, + "kind": "calibration_drift", + "ledger_value": 8442.0, + "name": "ons.age.20_30@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12319.358112959657, + "kind": "calibration_drift", + "ledger_value": 14605.0, + "name": "ons.age.20_30@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9642.40206596659, + "kind": "calibration_drift", + "ledger_value": 8026.0, + "name": "ons.age.20_30@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10950.289279038445, + "kind": "calibration_drift", + "ledger_value": 10137.0, + "name": "ons.age.20_30@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9832.96132919467, + "kind": "calibration_drift", + "ledger_value": 11769.0, + "name": "ons.age.20_30@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11793.450704818464, + "kind": "calibration_drift", + "ledger_value": 12095.0, + "name": "ons.age.20_30@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8183.099210873358, + "kind": "calibration_drift", + "ledger_value": 11468.0, + "name": "ons.age.20_30@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12051.462519489205, + "kind": "calibration_drift", + "ledger_value": 12639.0, + "name": "ons.age.20_30@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10483.873823229846, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.20_30@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6900.644875323653, + "kind": "calibration_drift", + "ledger_value": 6489.0, + "name": "ons.age.20_30@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30522.094482154553, + "kind": "calibration_drift", + "ledger_value": 30810.0, + "name": "ons.age.20_30@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22393.93805521879, + "kind": "calibration_drift", + "ledger_value": 20065.0, + "name": "ons.age.20_30@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9204.956107228227, + "kind": "calibration_drift", + "ledger_value": 9016.0, + "name": "ons.age.20_30@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21950.52205524797, + "kind": "calibration_drift", + "ledger_value": 29549.0, + "name": "ons.age.20_30@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20019.19187246618, + "kind": "calibration_drift", + "ledger_value": 16668.0, + "name": "ons.age.20_30@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8923.435410431988, + "kind": "calibration_drift", + "ledger_value": 8969.0, + "name": "ons.age.20_30@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7191.646618516761, + "kind": "calibration_drift", + "ledger_value": 8551.0, + "name": "ons.age.20_30@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11422.799735094224, + "kind": "calibration_drift", + "ledger_value": 11927.0, + "name": "ons.age.20_30@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24511.842353296608, + "kind": "calibration_drift", + "ledger_value": 16447.0, + "name": "ons.age.20_30@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19974.440130448133, + "kind": "calibration_drift", + "ledger_value": 14971.0, + "name": "ons.age.20_30@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35957.85831910582, + "kind": "calibration_drift", + "ledger_value": 31850.0, + "name": "ons.age.20_30@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10316.449874948763, + "kind": "calibration_drift", + "ledger_value": 10366.0, + "name": "ons.age.20_30@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12559.842742371844, + "kind": "calibration_drift", + "ledger_value": 14733.0, + "name": "ons.age.20_30@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12340.25507165421, + "kind": "calibration_drift", + "ledger_value": 13330.0, + "name": "ons.age.20_30@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12614.559670157225, + "kind": "calibration_drift", + "ledger_value": 13518.0, + "name": "ons.age.20_30@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9984.971424356176, + "kind": "calibration_drift", + "ledger_value": 10898.0, + "name": "ons.age.20_30@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14316.060847575533, + "kind": "calibration_drift", + "ledger_value": 20460.0, + "name": "ons.age.20_30@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14734.937154403135, + "kind": "calibration_drift", + "ledger_value": 17094.0, + "name": "ons.age.20_30@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10813.33916021585, + "kind": "calibration_drift", + "ledger_value": 11124.0, + "name": "ons.age.20_30@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11323.090265031107, + "kind": "calibration_drift", + "ledger_value": 12539.0, + "name": "ons.age.20_30@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9470.889004097813, + "kind": "calibration_drift", + "ledger_value": 10225.0, + "name": "ons.age.20_30@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15973.240129992493, + "kind": "calibration_drift", + "ledger_value": 15720.0, + "name": "ons.age.20_30@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16165.55809895696, + "kind": "calibration_drift", + "ledger_value": 17870.0, + "name": "ons.age.20_30@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8019.994629456542, + "kind": "calibration_drift", + "ledger_value": 7501.0, + "name": "ons.age.20_30@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11445.17765671373, + "kind": "calibration_drift", + "ledger_value": 14812.0, + "name": "ons.age.20_30@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10287.344583868055, + "kind": "calibration_drift", + "ledger_value": 11628.0, + "name": "ons.age.20_30@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14376.931950367774, + "kind": "calibration_drift", + "ledger_value": 13334.0, + "name": "ons.age.20_30@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9725.608452672708, + "kind": "calibration_drift", + "ledger_value": 9386.0, + "name": "ons.age.20_30@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10943.257345096308, + "kind": "calibration_drift", + "ledger_value": 10963.0, + "name": "ons.age.20_30@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8771.266246485795, + "kind": "calibration_drift", + "ledger_value": 8530.0, + "name": "ons.age.20_30@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11038.292009144596, + "kind": "calibration_drift", + "ledger_value": 10301.0, + "name": "ons.age.20_30@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9527.678743998455, + "kind": "calibration_drift", + "ledger_value": 10015.0, + "name": "ons.age.20_30@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12148.104764508837, + "kind": "calibration_drift", + "ledger_value": 12292.0, + "name": "ons.age.20_30@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13815.363480991526, + "kind": "calibration_drift", + "ledger_value": 17890.0, + "name": "ons.age.20_30@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11367.747483670651, + "kind": "calibration_drift", + "ledger_value": 12520.0, + "name": "ons.age.20_30@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19892.024035608265, + "kind": "calibration_drift", + "ledger_value": 24754.0, + "name": "ons.age.20_30@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12400.465389630008, + "kind": "calibration_drift", + "ledger_value": 19171.0, + "name": "ons.age.20_30@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11993.362767942042, + "kind": "calibration_drift", + "ledger_value": 22165.0, + "name": "ons.age.20_30@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12562.95778540295, + "kind": "calibration_drift", + "ledger_value": 12773.0, + "name": "ons.age.20_30@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10936.363485593427, + "kind": "calibration_drift", + "ledger_value": 10735.0, + "name": "ons.age.20_30@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8694.131722354547, + "kind": "calibration_drift", + "ledger_value": 8785.0, + "name": "ons.age.20_30@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18124.814667087394, + "kind": "calibration_drift", + "ledger_value": 27989.0, + "name": "ons.age.20_30@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8104.338386922395, + "kind": "calibration_drift", + "ledger_value": 7407.0, + "name": "ons.age.20_30@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9127.075483415494, + "kind": "calibration_drift", + "ledger_value": 9324.0, + "name": "ons.age.20_30@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10517.504811648761, + "kind": "calibration_drift", + "ledger_value": 10496.0, + "name": "ons.age.20_30@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11384.632015099736, + "kind": "calibration_drift", + "ledger_value": 11513.0, + "name": "ons.age.20_30@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8938.347449871695, + "kind": "calibration_drift", + "ledger_value": 8789.0, + "name": "ons.age.20_30@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10402.064717970346, + "kind": "calibration_drift", + "ledger_value": 10611.0, + "name": "ons.age.20_30@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10535.848987149988, + "kind": "calibration_drift", + "ledger_value": 9578.0, + "name": "ons.age.20_30@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16171.238875886374, + "kind": "calibration_drift", + "ledger_value": 15912.0, + "name": "ons.age.20_30@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9466.539760854728, + "kind": "calibration_drift", + "ledger_value": 11363.0, + "name": "ons.age.20_30@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11865.545087788656, + "kind": "calibration_drift", + "ledger_value": 12966.0, + "name": "ons.age.20_30@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9940.15267107037, + "kind": "calibration_drift", + "ledger_value": 10465.0, + "name": "ons.age.20_30@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15648.400286721586, + "kind": "calibration_drift", + "ledger_value": 16069.0, + "name": "ons.age.20_30@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11166.277151875463, + "kind": "calibration_drift", + "ledger_value": 11134.0, + "name": "ons.age.20_30@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9862.355268113031, + "kind": "calibration_drift", + "ledger_value": 10859.0, + "name": "ons.age.20_30@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11353.663890866485, + "kind": "calibration_drift", + "ledger_value": 11370.0, + "name": "ons.age.20_30@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17886.67570920965, + "kind": "calibration_drift", + "ledger_value": 20303.0, + "name": "ons.age.20_30@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8115.049018424724, + "kind": "calibration_drift", + "ledger_value": 8443.0, + "name": "ons.age.20_30@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25225.648535598084, + "kind": "calibration_drift", + "ledger_value": 26301.0, + "name": "ons.age.20_30@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10824.213181678686, + "kind": "calibration_drift", + "ledger_value": 11040.0, + "name": "ons.age.20_30@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9568.558640478339, + "kind": "calibration_drift", + "ledger_value": 10008.0, + "name": "ons.age.20_30@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8416.879742639523, + "kind": "calibration_drift", + "ledger_value": 9887.0, + "name": "ons.age.20_30@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9436.243877830784, + "kind": "calibration_drift", + "ledger_value": 9706.0, + "name": "ons.age.20_30@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15589.117039980794, + "kind": "calibration_drift", + "ledger_value": 20880.0, + "name": "ons.age.20_30@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16435.435567513246, + "kind": "calibration_drift", + "ledger_value": 18899.0, + "name": "ons.age.20_30@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16973.29356860773, + "kind": "calibration_drift", + "ledger_value": 16273.0, + "name": "ons.age.20_30@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9057.683215229135, + "kind": "calibration_drift", + "ledger_value": 8858.0, + "name": "ons.age.20_30@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8916.650037988524, + "kind": "calibration_drift", + "ledger_value": 8562.0, + "name": "ons.age.20_30@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8430.71677394502, + "kind": "calibration_drift", + "ledger_value": 8610.0, + "name": "ons.age.20_30@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8235.094880898341, + "kind": "calibration_drift", + "ledger_value": 8319.0, + "name": "ons.age.20_30@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8910.318338702617, + "kind": "calibration_drift", + "ledger_value": 8945.0, + "name": "ons.age.20_30@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14442.349647195535, + "kind": "calibration_drift", + "ledger_value": 12878.0, + "name": "ons.age.20_30@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11294.64693054426, + "kind": "calibration_drift", + "ledger_value": 10287.0, + "name": "ons.age.20_30@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12701.862165607145, + "kind": "calibration_drift", + "ledger_value": 12521.0, + "name": "ons.age.20_30@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7483.762819683869, + "kind": "calibration_drift", + "ledger_value": 8330.0, + "name": "ons.age.20_30@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14150.509594906938, + "kind": "calibration_drift", + "ledger_value": 16588.0, + "name": "ons.age.20_30@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11509.748939652187, + "kind": "calibration_drift", + "ledger_value": 8301.0, + "name": "ons.age.20_30@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8973.693609734102, + "kind": "calibration_drift", + "ledger_value": 10202.0, + "name": "ons.age.20_30@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21331.021496143658, + "kind": "calibration_drift", + "ledger_value": 16145.0, + "name": "ons.age.20_30@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10796.43490386687, + "kind": "calibration_drift", + "ledger_value": 10450.0, + "name": "ons.age.20_30@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9006.93099634241, + "kind": "calibration_drift", + "ledger_value": 9481.0, + "name": "ons.age.20_30@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11397.058714632825, + "kind": "calibration_drift", + "ledger_value": 12283.0, + "name": "ons.age.20_30@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12278.506209926692, + "kind": "calibration_drift", + "ledger_value": 11824.0, + "name": "ons.age.20_30@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10362.486666203453, + "kind": "calibration_drift", + "ledger_value": 10053.0, + "name": "ons.age.20_30@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18982.079410591472, + "kind": "calibration_drift", + "ledger_value": 22162.0, + "name": "ons.age.20_30@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19293.62036133676, + "kind": "calibration_drift", + "ledger_value": 18851.0, + "name": "ons.age.20_30@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17999.386635630086, + "kind": "calibration_drift", + "ledger_value": 21383.0, + "name": "ons.age.20_30@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20760.06962848882, + "kind": "calibration_drift", + "ledger_value": 27101.0, + "name": "ons.age.20_30@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10281.604632178958, + "kind": "calibration_drift", + "ledger_value": 10858.0, + "name": "ons.age.20_30@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13007.450487061711, + "kind": "calibration_drift", + "ledger_value": 12928.0, + "name": "ons.age.20_30@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10629.50290680571, + "kind": "calibration_drift", + "ledger_value": 10620.0, + "name": "ons.age.20_30@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18815.782197315988, + "kind": "calibration_drift", + "ledger_value": 22530.0, + "name": "ons.age.20_30@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22480.72182512383, + "kind": "calibration_drift", + "ledger_value": 19861.0, + "name": "ons.age.20_30@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.470031249693, + "kind": "calibration_drift", + "ledger_value": 10989.0, + "name": "ons.age.20_30@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11530.612046012722, + "kind": "calibration_drift", + "ledger_value": 12702.0, + "name": "ons.age.20_30@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8565.743713077969, + "kind": "calibration_drift", + "ledger_value": 6947.0, + "name": "ons.age.20_30@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7940.924996783705, + "kind": "calibration_drift", + "ledger_value": 9508.0, + "name": "ons.age.20_30@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13681.39309449843, + "kind": "calibration_drift", + "ledger_value": 17764.0, + "name": "ons.age.20_30@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14314.300647527032, + "kind": "calibration_drift", + "ledger_value": 19058.0, + "name": "ons.age.20_30@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11128.79980407726, + "kind": "calibration_drift", + "ledger_value": 11322.0, + "name": "ons.age.20_30@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12203.115027241547, + "kind": "calibration_drift", + "ledger_value": 10506.0, + "name": "ons.age.20_30@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10771.226456242603, + "kind": "calibration_drift", + "ledger_value": 10087.0, + "name": "ons.age.20_30@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10290.490708591113, + "kind": "calibration_drift", + "ledger_value": 9287.0, + "name": "ons.age.20_30@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15633.971507819277, + "kind": "calibration_drift", + "ledger_value": 24490.0, + "name": "ons.age.20_30@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9016.063634253234, + "kind": "calibration_drift", + "ledger_value": 8919.0, + "name": "ons.age.20_30@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10863.687018244751, + "kind": "calibration_drift", + "ledger_value": 12150.0, + "name": "ons.age.20_30@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17249.146573322407, + "kind": "calibration_drift", + "ledger_value": 21182.0, + "name": "ons.age.20_30@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7635.319241687818, + "kind": "calibration_drift", + "ledger_value": 8517.0, + "name": "ons.age.20_30@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10994.078601202662, + "kind": "calibration_drift", + "ledger_value": 9607.0, + "name": "ons.age.20_30@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11049.49576364427, + "kind": "calibration_drift", + "ledger_value": 8899.0, + "name": "ons.age.20_30@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11026.979767585506, + "kind": "calibration_drift", + "ledger_value": 11368.0, + "name": "ons.age.20_30@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10686.182464120522, + "kind": "calibration_drift", + "ledger_value": 11300.0, + "name": "ons.age.20_30@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7754.111204674521, + "kind": "calibration_drift", + "ledger_value": 7737.0, + "name": "ons.age.20_30@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11890.083087378149, + "kind": "calibration_drift", + "ledger_value": 11700.0, + "name": "ons.age.20_30@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9672.114469920745, + "kind": "calibration_drift", + "ledger_value": 8386.0, + "name": "ons.age.20_30@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9998.985979940713, + "kind": "calibration_drift", + "ledger_value": 9866.0, + "name": "ons.age.20_30@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8956.849424732072, + "kind": "calibration_drift", + "ledger_value": 10154.0, + "name": "ons.age.20_30@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31344.278455627526, + "kind": "calibration_drift", + "ledger_value": 31189.0, + "name": "ons.age.20_30@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7784.321091269282, + "kind": "calibration_drift", + "ledger_value": 7026.0, + "name": "ons.age.20_30@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12111.051004384311, + "kind": "calibration_drift", + "ledger_value": 11963.0, + "name": "ons.age.20_30@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13052.738903137859, + "kind": "calibration_drift", + "ledger_value": 13499.0, + "name": "ons.age.20_30@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9479.599251757338, + "kind": "calibration_drift", + "ledger_value": 10013.0, + "name": "ons.age.20_30@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11567.679271714123, + "kind": "calibration_drift", + "ledger_value": 11328.0, + "name": "ons.age.20_30@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15187.202072224894, + "kind": "calibration_drift", + "ledger_value": 13479.0, + "name": "ons.age.20_30@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18774.849402187298, + "kind": "calibration_drift", + "ledger_value": 17148.0, + "name": "ons.age.20_30@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10983.969579757093, + "kind": "calibration_drift", + "ledger_value": 11499.0, + "name": "ons.age.20_30@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11018.340252672026, + "kind": "calibration_drift", + "ledger_value": 12031.0, + "name": "ons.age.20_30@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14955.964146548173, + "kind": "calibration_drift", + "ledger_value": 18653.0, + "name": "ons.age.20_30@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17688.59089093805, + "kind": "calibration_drift", + "ledger_value": 24023.0, + "name": "ons.age.20_30@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14306.484398967097, + "kind": "calibration_drift", + "ledger_value": 13498.0, + "name": "ons.age.20_30@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6599.465073465347, + "kind": "calibration_drift", + "ledger_value": 5461.0, + "name": "ons.age.20_30@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6599.465073465347, + "kind": "calibration_drift", + "ledger_value": 6515.0, + "name": "ons.age.20_30@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27183.898351628988, + "kind": "calibration_drift", + "ledger_value": 24250.0, + "name": "ons.age.20_30@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36995.231306160116, + "kind": "calibration_drift", + "ledger_value": 30109.0, + "name": "ons.age.20_30@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11178.90110060749, + "kind": "calibration_drift", + "ledger_value": 10667.0, + "name": "ons.age.20_30@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9677.045699894192, + "kind": "calibration_drift", + "ledger_value": 10404.0, + "name": "ons.age.20_30@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10946.9360426565, + "kind": "calibration_drift", + "ledger_value": 9362.0, + "name": "ons.age.20_30@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20532.625776062596, + "kind": "calibration_drift", + "ledger_value": 26353.0, + "name": "ons.age.20_30@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11184.779126735839, + "kind": "calibration_drift", + "ledger_value": 11895.0, + "name": "ons.age.20_30@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16220.925949098833, + "kind": "calibration_drift", + "ledger_value": 17105.0, + "name": "ons.age.20_30@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13900.713209371961, + "kind": "calibration_drift", + "ledger_value": 11757.0, + "name": "ons.age.20_30@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18675.194225464293, + "kind": "calibration_drift", + "ledger_value": 17718.0, + "name": "ons.age.20_30@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13250.10236714203, + "kind": "calibration_drift", + "ledger_value": 12759.0, + "name": "ons.age.20_30@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9999.41006571843, + "kind": "calibration_drift", + "ledger_value": 8424.0, + "name": "ons.age.20_30@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11715.744382896872, + "kind": "calibration_drift", + "ledger_value": 11922.0, + "name": "ons.age.20_30@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16917.807368946495, + "kind": "calibration_drift", + "ledger_value": 16642.0, + "name": "ons.age.20_30@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29138.372722514065, + "kind": "calibration_drift", + "ledger_value": 51702.0, + "name": "ons.age.20_30@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14268.086327061574, + "kind": "calibration_drift", + "ledger_value": 15011.0, + "name": "ons.age.20_30@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12151.536900570358, + "kind": "calibration_drift", + "ledger_value": 11335.0, + "name": "ons.age.20_30@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17317.98654375174, + "kind": "calibration_drift", + "ledger_value": 9096.0, + "name": "ons.age.20_30@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37503.1578558852, + "kind": "calibration_drift", + "ledger_value": 23729.0, + "name": "ons.age.20_30@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13001.89064979266, + "kind": "calibration_drift", + "ledger_value": 11382.0, + "name": "ons.age.20_30@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15246.008234918356, + "kind": "calibration_drift", + "ledger_value": 13232.0, + "name": "ons.age.20_30@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15380.249863225434, + "kind": "calibration_drift", + "ledger_value": 19127.0, + "name": "ons.age.20_30@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31372.208942197136, + "kind": "calibration_drift", + "ledger_value": 29420.0, + "name": "ons.age.20_30@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23802.593408675537, + "kind": "calibration_drift", + "ledger_value": 22798.0, + "name": "ons.age.20_30@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11931.248995196493, + "kind": "calibration_drift", + "ledger_value": 13175.0, + "name": "ons.age.20_30@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8319.793985784703, + "kind": "calibration_drift", + "ledger_value": 7979.0, + "name": "ons.age.20_30@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14441.817074358401, + "kind": "calibration_drift", + "ledger_value": 15358.0, + "name": "ons.age.20_30@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20735.76286358881, + "kind": "calibration_drift", + "ledger_value": 22973.0, + "name": "ons.age.20_30@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13346.123775289045, + "kind": "calibration_drift", + "ledger_value": 12651.0, + "name": "ons.age.20_30@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16731.929586327347, + "kind": "calibration_drift", + "ledger_value": 15699.0, + "name": "ons.age.20_30@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8874.921969953208, + "kind": "calibration_drift", + "ledger_value": 9363.0, + "name": "ons.age.20_30@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23583.114225017318, + "kind": "calibration_drift", + "ledger_value": 21580.0, + "name": "ons.age.20_30@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11225.649160755775, + "kind": "calibration_drift", + "ledger_value": 9870.0, + "name": "ons.age.20_30@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37030.124689452234, + "kind": "calibration_drift", + "ledger_value": 40842.0, + "name": "ons.age.20_30@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12920.94685086749, + "kind": "calibration_drift", + "ledger_value": 12618.0, + "name": "ons.age.20_30@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26726.00406121451, + "kind": "calibration_drift", + "ledger_value": 25316.0, + "name": "ons.age.20_30@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12677.275052959534, + "kind": "calibration_drift", + "ledger_value": 12618.0, + "name": "ons.age.20_30@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21768.145445909973, + "kind": "calibration_drift", + "ledger_value": 19137.0, + "name": "ons.age.20_30@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7887.492480069996, + "kind": "calibration_drift", + "ledger_value": 8102.0, + "name": "ons.age.20_30@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9569.870347651276, + "kind": "calibration_drift", + "ledger_value": 9072.0, + "name": "ons.age.20_30@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11267.308191571463, + "kind": "calibration_drift", + "ledger_value": 15868.0, + "name": "ons.age.20_30@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16461.708046242347, + "kind": "calibration_drift", + "ledger_value": 23414.0, + "name": "ons.age.20_30@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7817.971999904327, + "kind": "calibration_drift", + "ledger_value": 8686.0, + "name": "ons.age.20_30@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8798.581150440627, + "kind": "calibration_drift", + "ledger_value": 10497.0, + "name": "ons.age.20_30@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11667.0435556791, + "kind": "calibration_drift", + "ledger_value": 13319.0, + "name": "ons.age.20_30@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11337.7261555923, + "kind": "calibration_drift", + "ledger_value": 11263.0, + "name": "ons.age.20_30@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9207.543294122217, + "kind": "calibration_drift", + "ledger_value": 9955.0, + "name": "ons.age.20_30@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35995.781569638595, + "kind": "calibration_drift", + "ledger_value": 40266.0, + "name": "ons.age.20_30@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33781.982680701774, + "kind": "calibration_drift", + "ledger_value": 37996.0, + "name": "ons.age.20_30@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21399.111919617026, + "kind": "calibration_drift", + "ledger_value": 24108.0, + "name": "ons.age.20_30@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11671.383038055732, + "kind": "calibration_drift", + "ledger_value": 10672.0, + "name": "ons.age.20_30@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9133.676593859753, + "kind": "calibration_drift", + "ledger_value": 8021.0, + "name": "ons.age.20_30@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10203.947622557103, + "kind": "calibration_drift", + "ledger_value": 9126.0, + "name": "ons.age.20_30@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10741.72783854144, + "kind": "calibration_drift", + "ledger_value": 10172.0, + "name": "ons.age.20_30@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9774.042993471912, + "kind": "calibration_drift", + "ledger_value": 10969.0, + "name": "ons.age.20_30@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9363.888965735625, + "kind": "calibration_drift", + "ledger_value": 8392.0, + "name": "ons.age.20_30@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8362.18253977404, + "kind": "calibration_drift", + "ledger_value": 10598.0, + "name": "ons.age.20_30@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8146.194666937021, + "kind": "calibration_drift", + "ledger_value": 8248.0, + "name": "ons.age.20_30@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8167.619317049135, + "kind": "calibration_drift", + "ledger_value": 8151.0, + "name": "ons.age.20_30@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10657.975828672399, + "kind": "calibration_drift", + "ledger_value": 9974.0, + "name": "ons.age.20_30@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9207.839167920623, + "kind": "calibration_drift", + "ledger_value": 9249.0, + "name": "ons.age.20_30@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8434.701207763565, + "kind": "calibration_drift", + "ledger_value": 8889.0, + "name": "ons.age.20_30@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17875.69879128875, + "kind": "calibration_drift", + "ledger_value": 19506.0, + "name": "ons.age.20_30@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10022.734783492839, + "kind": "calibration_drift", + "ledger_value": 9800.0, + "name": "ons.age.20_30@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12157.493826378282, + "kind": "calibration_drift", + "ledger_value": 16852.0, + "name": "ons.age.20_30@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9833.523489411644, + "kind": "calibration_drift", + "ledger_value": 10237.0, + "name": "ons.age.20_30@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14070.672981636817, + "kind": "calibration_drift", + "ledger_value": 17819.0, + "name": "ons.age.20_30@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10947.833526511668, + "kind": "calibration_drift", + "ledger_value": 8469.0, + "name": "ons.age.20_30@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8715.455855071848, + "kind": "calibration_drift", + "ledger_value": 7728.0, + "name": "ons.age.20_30@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6513.168548930009, + "kind": "calibration_drift", + "ledger_value": 6444.0, + "name": "ons.age.20_30@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10586.0094584399, + "kind": "calibration_drift", + "ledger_value": 10133.0, + "name": "ons.age.20_30@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9151.771083122521, + "kind": "calibration_drift", + "ledger_value": 10019.0, + "name": "ons.age.20_30@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25757.17712375351, + "kind": "calibration_drift", + "ledger_value": 27895.0, + "name": "ons.age.20_30@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30088.885928987154, + "kind": "calibration_drift", + "ledger_value": 23408.0, + "name": "ons.age.20_30@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20408.68248424383, + "kind": "calibration_drift", + "ledger_value": 23443.0, + "name": "ons.age.20_30@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15653.696427713068, + "kind": "calibration_drift", + "ledger_value": 13522.0, + "name": "ons.age.20_30@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8407.747104728698, + "kind": "calibration_drift", + "ledger_value": 8160.0, + "name": "ons.age.20_30@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11526.937449673496, + "kind": "calibration_drift", + "ledger_value": 11039.0, + "name": "ons.age.20_30@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11530.053987016718, + "kind": "calibration_drift", + "ledger_value": 11292.0, + "name": "ons.age.20_30@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9511.454997385812, + "kind": "calibration_drift", + "ledger_value": 10510.0, + "name": "ons.age.20_30@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8888.206703501675, + "kind": "calibration_drift", + "ledger_value": 8261.0, + "name": "ons.age.20_30@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8149.025192941781, + "kind": "calibration_drift", + "ledger_value": 8206.0, + "name": "ons.age.20_30@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8981.742273638036, + "kind": "calibration_drift", + "ledger_value": 9060.0, + "name": "ons.age.20_30@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7545.531406331277, + "kind": "calibration_drift", + "ledger_value": 7722.0, + "name": "ons.age.20_30@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10559.725903060615, + "kind": "calibration_drift", + "ledger_value": 10475.0, + "name": "ons.age.20_30@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10739.577822273015, + "kind": "calibration_drift", + "ledger_value": 10475.0, + "name": "ons.age.20_30@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9266.767366103326, + "kind": "calibration_drift", + "ledger_value": 9070.0, + "name": "ons.age.20_30@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8350.801260995322, + "kind": "calibration_drift", + "ledger_value": 9521.0, + "name": "ons.age.20_30@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9104.036776979545, + "kind": "calibration_drift", + "ledger_value": 9961.0, + "name": "ons.age.20_30@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10665.26565129493, + "kind": "calibration_drift", + "ledger_value": 10195.0, + "name": "ons.age.20_30@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7855.054849304656, + "kind": "calibration_drift", + "ledger_value": 7345.0, + "name": "ons.age.20_30@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6884.584805697804, + "kind": "calibration_drift", + "ledger_value": 6317.0, + "name": "ons.age.20_30@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8295.285473954245, + "kind": "calibration_drift", + "ledger_value": 7319.0, + "name": "ons.age.20_30@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9928.183379981949, + "kind": "calibration_drift", + "ledger_value": 9313.0, + "name": "ons.age.20_30@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7192.435615312513, + "kind": "calibration_drift", + "ledger_value": 7534.0, + "name": "ons.age.20_30@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9965.02953034355, + "kind": "calibration_drift", + "ledger_value": 9897.0, + "name": "ons.age.20_30@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10891.163831656804, + "kind": "calibration_drift", + "ledger_value": 12621.0, + "name": "ons.age.20_30@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9310.328191670755, + "kind": "calibration_drift", + "ledger_value": 10052.0, + "name": "ons.age.20_30@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9961.262070643837, + "kind": "calibration_drift", + "ledger_value": 11555.0, + "name": "ons.age.20_30@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10749.44028221991, + "kind": "calibration_drift", + "ledger_value": 11919.0, + "name": "ons.age.20_30@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9022.099459740735, + "kind": "calibration_drift", + "ledger_value": 9168.0, + "name": "ons.age.20_30@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14740.669335669238, + "kind": "calibration_drift", + "ledger_value": 19092.0, + "name": "ons.age.20_30@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12860.752840127443, + "kind": "calibration_drift", + "ledger_value": 13054.0, + "name": "ons.age.20_30@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12256.019602006156, + "kind": "calibration_drift", + "ledger_value": 11762.0, + "name": "ons.age.20_30@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24698.903631109373, + "kind": "calibration_drift", + "ledger_value": 23663.0, + "name": "ons.age.20_30@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34119.00086883256, + "kind": "calibration_drift", + "ledger_value": 32569.0, + "name": "ons.age.20_30@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16213.623245801791, + "kind": "calibration_drift", + "ledger_value": 12093.0, + "name": "ons.age.20_30@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33459.022980931644, + "kind": "calibration_drift", + "ledger_value": 29293.0, + "name": "ons.age.20_30@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11192.905793732081, + "kind": "calibration_drift", + "ledger_value": 11915.0, + "name": "ons.age.20_30@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11763.11377802181, + "kind": "calibration_drift", + "ledger_value": 11436.0, + "name": "ons.age.20_30@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12795.555535102656, + "kind": "calibration_drift", + "ledger_value": 12852.0, + "name": "ons.age.20_30@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14085.56529615663, + "kind": "calibration_drift", + "ledger_value": 15689.0, + "name": "ons.age.20_30@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8792.908442796625, + "kind": "calibration_drift", + "ledger_value": 9414.0, + "name": "ons.age.20_30@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10590.053067018127, + "kind": "calibration_drift", + "ledger_value": 9218.0, + "name": "ons.age.20_30@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30434.535562746016, + "kind": "calibration_drift", + "ledger_value": 24345.0, + "name": "ons.age.20_30@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16532.28380962234, + "kind": "calibration_drift", + "ledger_value": 21492.0, + "name": "ons.age.20_30@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18512.458655300135, + "kind": "calibration_drift", + "ledger_value": 24411.0, + "name": "ons.age.20_30@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11152.045622172092, + "kind": "calibration_drift", + "ledger_value": 12174.0, + "name": "ons.age.20_30@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8389.994676824286, + "kind": "calibration_drift", + "ledger_value": 8386.0, + "name": "ons.age.20_30@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9352.491867961744, + "kind": "calibration_drift", + "ledger_value": 8604.0, + "name": "ons.age.20_30@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13849.02405679028, + "kind": "calibration_drift", + "ledger_value": 15802.0, + "name": "ons.age.20_30@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11318.208347357393, + "kind": "calibration_drift", + "ledger_value": 11346.0, + "name": "ons.age.20_30@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23630.404720462684, + "kind": "calibration_drift", + "ledger_value": 23730.0, + "name": "ons.age.20_30@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11909.019010476188, + "kind": "calibration_drift", + "ledger_value": 12053.0, + "name": "ons.age.20_30@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10042.43011600679, + "kind": "calibration_drift", + "ledger_value": 9793.0, + "name": "ons.age.20_30@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27168.808787910235, + "kind": "calibration_drift", + "ledger_value": 39817.0, + "name": "ons.age.20_30@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12620.00374804791, + "kind": "calibration_drift", + "ledger_value": 12536.0, + "name": "ons.age.20_30@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29709.674344029012, + "kind": "calibration_drift", + "ledger_value": 23057.0, + "name": "ons.age.20_30@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21157.047702680415, + "kind": "calibration_drift", + "ledger_value": 23123.0, + "name": "ons.age.20_30@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17564.34093076525, + "kind": "calibration_drift", + "ledger_value": 21774.0, + "name": "ons.age.20_30@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21863.72254525534, + "kind": "calibration_drift", + "ledger_value": 22612.0, + "name": "ons.age.20_30@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10218.61974057018, + "kind": "calibration_drift", + "ledger_value": 10417.0, + "name": "ons.age.20_30@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10031.30526118669, + "kind": "calibration_drift", + "ledger_value": 10087.0, + "name": "ons.age.20_30@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17326.3696347066, + "kind": "calibration_drift", + "ledger_value": 22611.0, + "name": "ons.age.20_30@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9402.662201711602, + "kind": "calibration_drift", + "ledger_value": 9231.0, + "name": "ons.age.20_30@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10413.238885090179, + "kind": "calibration_drift", + "ledger_value": 9685.0, + "name": "ons.age.20_30@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10286.003289315277, + "kind": "calibration_drift", + "ledger_value": 10239.0, + "name": "ons.age.20_30@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10029.135519998374, + "kind": "calibration_drift", + "ledger_value": 10897.0, + "name": "ons.age.20_30@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9648.33607898878, + "kind": "calibration_drift", + "ledger_value": 10811.0, + "name": "ons.age.20_30@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9513.21949888324, + "kind": "calibration_drift", + "ledger_value": 9610.0, + "name": "ons.age.20_30@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11603.144677683162, + "kind": "calibration_drift", + "ledger_value": 10849.0, + "name": "ons.age.20_30@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13112.830871594295, + "kind": "calibration_drift", + "ledger_value": 13462.0, + "name": "ons.age.20_30@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12571.48044510918, + "kind": "calibration_drift", + "ledger_value": 12540.0, + "name": "ons.age.20_30@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13809.675431743162, + "kind": "calibration_drift", + "ledger_value": 13771.0, + "name": "ons.age.20_30@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13669.172237198689, + "kind": "calibration_drift", + "ledger_value": 13638.0, + "name": "ons.age.20_30@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10573.68138350628, + "kind": "calibration_drift", + "ledger_value": 11112.0, + "name": "ons.age.20_30@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9383.71622085738, + "kind": "calibration_drift", + "ledger_value": 9576.0, + "name": "ons.age.20_30@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13793.531412353237, + "kind": "calibration_drift", + "ledger_value": 13972.0, + "name": "ons.age.20_30@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11073.333329335917, + "kind": "calibration_drift", + "ledger_value": 11945.0, + "name": "ons.age.20_30@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9783.789930763152, + "kind": "calibration_drift", + "ledger_value": 10158.0, + "name": "ons.age.20_30@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9706.186081171429, + "kind": "calibration_drift", + "ledger_value": 10168.0, + "name": "ons.age.20_30@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14749.486374861766, + "kind": "calibration_drift", + "ledger_value": 11850.0, + "name": "ons.age.20_30@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11638.491734132835, + "kind": "calibration_drift", + "ledger_value": 11379.0, + "name": "ons.age.20_30@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8524.69615477899, + "kind": "calibration_drift", + "ledger_value": 8311.0, + "name": "ons.age.20_30@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24372.02733929065, + "kind": "calibration_drift", + "ledger_value": 38354.0, + "name": "ons.age.20_30@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7746.745314167845, + "kind": "calibration_drift", + "ledger_value": 8328.0, + "name": "ons.age.20_30@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9287.478531991806, + "kind": "calibration_drift", + "ledger_value": 8933.0, + "name": "ons.age.20_30@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11978.874814280052, + "kind": "calibration_drift", + "ledger_value": 11090.0, + "name": "ons.age.20_30@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7839.5707871880295, + "kind": "calibration_drift", + "ledger_value": 8144.0, + "name": "ons.age.20_30@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9880.59906134866, + "kind": "calibration_drift", + "ledger_value": 10654.0, + "name": "ons.age.20_30@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9008.725964052743, + "kind": "calibration_drift", + "ledger_value": 8562.0, + "name": "ons.age.20_30@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15371.304612053598, + "kind": "calibration_drift", + "ledger_value": 15565.0, + "name": "ons.age.20_30@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42549.53204921312, + "kind": "calibration_drift", + "ledger_value": 39687.0, + "name": "ons.age.20_30@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14863.953697985815, + "kind": "calibration_drift", + "ledger_value": 11594.0, + "name": "ons.age.20_30@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21440.19502183106, + "kind": "calibration_drift", + "ledger_value": 14230.0, + "name": "ons.age.20_30@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13094.358777058113, + "kind": "calibration_drift", + "ledger_value": 13494.0, + "name": "ons.age.20_30@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10662.5815974676, + "kind": "calibration_drift", + "ledger_value": 11219.0, + "name": "ons.age.20_30@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8953.141139792038, + "kind": "calibration_drift", + "ledger_value": 8702.0, + "name": "ons.age.20_30@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9998.86763042135, + "kind": "calibration_drift", + "ledger_value": 10519.0, + "name": "ons.age.20_30@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13010.438812425622, + "kind": "calibration_drift", + "ledger_value": 12743.0, + "name": "ons.age.20_30@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7645.280326234181, + "kind": "calibration_drift", + "ledger_value": 8113.0, + "name": "ons.age.20_30@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8665.551807740556, + "kind": "calibration_drift", + "ledger_value": 9946.0, + "name": "ons.age.20_30@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13743.929683596158, + "kind": "calibration_drift", + "ledger_value": 18960.0, + "name": "ons.age.20_30@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14196.182646921014, + "kind": "calibration_drift", + "ledger_value": 16542.0, + "name": "ons.age.20_30@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9887.451420401268, + "kind": "calibration_drift", + "ledger_value": 9197.0, + "name": "ons.age.20_30@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11516.749528548355, + "kind": "calibration_drift", + "ledger_value": 11458.0, + "name": "ons.age.20_30@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10305.760723073423, + "kind": "calibration_drift", + "ledger_value": 11414.0, + "name": "ons.age.20_30@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7830.534430321834, + "kind": "calibration_drift", + "ledger_value": 8227.0, + "name": "ons.age.20_30@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10607.430721444558, + "kind": "calibration_drift", + "ledger_value": 10639.0, + "name": "ons.age.20_30@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6731.543137074177, + "kind": "calibration_drift", + "ledger_value": 6966.0, + "name": "ons.age.20_30@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9151.84659569464, + "kind": "calibration_drift", + "ledger_value": 9243.0, + "name": "ons.age.20_30@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7367.257580331188, + "kind": "calibration_drift", + "ledger_value": 7256.0, + "name": "ons.age.20_30@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10347.69297628311, + "kind": "calibration_drift", + "ledger_value": 10739.0, + "name": "ons.age.20_30@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10068.940408344044, + "kind": "calibration_drift", + "ledger_value": 10888.0, + "name": "ons.age.20_30@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8482.169227487975, + "kind": "calibration_drift", + "ledger_value": 8605.0, + "name": "ons.age.20_30@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9006.177596724323, + "kind": "calibration_drift", + "ledger_value": 9329.0, + "name": "ons.age.20_30@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9190.984223871377, + "kind": "calibration_drift", + "ledger_value": 9667.0, + "name": "ons.age.20_30@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10863.499631505761, + "kind": "calibration_drift", + "ledger_value": 9529.0, + "name": "ons.age.20_30@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7735.807846086738, + "kind": "calibration_drift", + "ledger_value": 7583.0, + "name": "ons.age.20_30@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8033.5653743434705, + "kind": "calibration_drift", + "ledger_value": 8567.0, + "name": "ons.age.20_30@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8117.5343583313415, + "kind": "calibration_drift", + "ledger_value": 8822.0, + "name": "ons.age.20_30@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9425.247234989993, + "kind": "calibration_drift", + "ledger_value": 9988.0, + "name": "ons.age.20_30@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10112.118257991555, + "kind": "calibration_drift", + "ledger_value": 10612.0, + "name": "ons.age.20_30@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8680.453984720316, + "kind": "calibration_drift", + "ledger_value": 10135.0, + "name": "ons.age.20_30@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22437.096379188024, + "kind": "calibration_drift", + "ledger_value": 20955.0, + "name": "ons.age.20_30@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24975.69356951901, + "kind": "calibration_drift", + "ledger_value": 22263.0, + "name": "ons.age.20_30@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11377.66911837723, + "kind": "calibration_drift", + "ledger_value": 11982.0, + "name": "ons.age.20_30@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10002.960551299311, + "kind": "calibration_drift", + "ledger_value": 10318.0, + "name": "ons.age.20_30@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16182.656914743076, + "kind": "calibration_drift", + "ledger_value": 17151.0, + "name": "ons.age.20_30@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9058.886435342654, + "kind": "calibration_drift", + "ledger_value": 9407.0, + "name": "ons.age.20_30@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9726.357999628672, + "kind": "calibration_drift", + "ledger_value": 11323.0, + "name": "ons.age.20_30@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10811.455430365993, + "kind": "calibration_drift", + "ledger_value": 10182.0, + "name": "ons.age.20_30@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9904.434576429823, + "kind": "calibration_drift", + "ledger_value": 10151.0, + "name": "ons.age.20_30@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9332.96419726689, + "kind": "calibration_drift", + "ledger_value": 9745.0, + "name": "ons.age.20_30@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11441.439784393857, + "kind": "calibration_drift", + "ledger_value": 11151.0, + "name": "ons.age.20_30@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11134.322781647521, + "kind": "calibration_drift", + "ledger_value": 11405.0, + "name": "ons.age.20_30@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7771.135177616519, + "kind": "calibration_drift", + "ledger_value": 7603.0, + "name": "ons.age.20_30@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9910.629010079068, + "kind": "calibration_drift", + "ledger_value": 10901.0, + "name": "ons.age.20_30@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10424.935762587198, + "kind": "calibration_drift", + "ledger_value": 9977.0, + "name": "ons.age.20_30@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8117.356834052297, + "kind": "calibration_drift", + "ledger_value": 7678.0, + "name": "ons.age.20_30@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10925.633129171205, + "kind": "calibration_drift", + "ledger_value": 11317.0, + "name": "ons.age.20_30@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11355.636382855864, + "kind": "calibration_drift", + "ledger_value": 11567.0, + "name": "ons.age.20_30@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12726.005467557146, + "kind": "calibration_drift", + "ledger_value": 12957.0, + "name": "ons.age.20_30@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11165.478292619764, + "kind": "calibration_drift", + "ledger_value": 11940.0, + "name": "ons.age.20_30@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9768.894789379634, + "kind": "calibration_drift", + "ledger_value": 8566.0, + "name": "ons.age.20_30@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17471.46614544533, + "kind": "calibration_drift", + "ledger_value": 17975.0, + "name": "ons.age.20_30@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12508.084552570537, + "kind": "calibration_drift", + "ledger_value": 12056.0, + "name": "ons.age.20_30@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10391.482298447327, + "kind": "calibration_drift", + "ledger_value": 9646.0, + "name": "ons.age.20_30@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10007.950956032442, + "kind": "calibration_drift", + "ledger_value": 9519.0, + "name": "ons.age.20_30@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10375.386763813993, + "kind": "calibration_drift", + "ledger_value": 10872.0, + "name": "ons.age.20_30@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27213.337794570474, + "kind": "calibration_drift", + "ledger_value": 34281.0, + "name": "ons.age.20_30@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8679.359251666208, + "kind": "calibration_drift", + "ledger_value": 8759.0, + "name": "ons.age.20_30@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17973.139895564083, + "kind": "calibration_drift", + "ledger_value": 18131.0, + "name": "ons.age.20_30@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11105.129900204709, + "kind": "calibration_drift", + "ledger_value": 13152.0, + "name": "ons.age.20_30@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8715.534754751423, + "kind": "calibration_drift", + "ledger_value": 8660.0, + "name": "ons.age.20_30@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7769.011233395679, + "kind": "calibration_drift", + "ledger_value": 8183.0, + "name": "ons.age.20_30@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15607.342865962657, + "kind": "calibration_drift", + "ledger_value": 13517.0, + "name": "ons.age.20_30@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9644.568619289064, + "kind": "calibration_drift", + "ledger_value": 10742.0, + "name": "ons.age.20_30@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8240.993827396274, + "kind": "calibration_drift", + "ledger_value": 7938.0, + "name": "ons.age.20_30@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10230.329702915049, + "kind": "calibration_drift", + "ledger_value": 10532.0, + "name": "ons.age.20_30@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9862.459946895835, + "kind": "calibration_drift", + "ledger_value": 8644.0, + "name": "ons.age.20_30@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10086.692836248458, + "kind": "calibration_drift", + "ledger_value": 11723.0, + "name": "ons.age.20_30@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11929.079254008175, + "kind": "calibration_drift", + "ledger_value": 13953.0, + "name": "ons.age.20_30@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10970.31993519059, + "kind": "calibration_drift", + "ledger_value": 11454.0, + "name": "ons.age.20_30@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7913.3419875908085, + "kind": "calibration_drift", + "ledger_value": 8096.0, + "name": "ons.age.20_30@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10302.799058604838, + "kind": "calibration_drift", + "ledger_value": 11274.0, + "name": "ons.age.20_30@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12426.334622070717, + "kind": "calibration_drift", + "ledger_value": 12545.0, + "name": "ons.age.20_30@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9511.060498987936, + "kind": "calibration_drift", + "ledger_value": 9411.0, + "name": "ons.age.20_30@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12554.64522597983, + "kind": "calibration_drift", + "ledger_value": 13352.0, + "name": "ons.age.20_30@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8577.96925748739, + "kind": "calibration_drift", + "ledger_value": 8690.0, + "name": "ons.age.20_30@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9319.260956705928, + "kind": "calibration_drift", + "ledger_value": 10559.0, + "name": "ons.age.20_30@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14090.180927411779, + "kind": "calibration_drift", + "ledger_value": 14704.0, + "name": "ons.age.20_30@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13509.548322958179, + "kind": "calibration_drift", + "ledger_value": 14207.0, + "name": "ons.age.20_30@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8201.089119001443, + "kind": "calibration_drift", + "ledger_value": 7445.0, + "name": "ons.age.20_30@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9101.807861031546, + "kind": "calibration_drift", + "ledger_value": 8523.0, + "name": "ons.age.20_30@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19736.754845727944, + "kind": "calibration_drift", + "ledger_value": 25333.0, + "name": "ons.age.20_30@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9677.81497177005, + "kind": "calibration_drift", + "ledger_value": 9732.0, + "name": "ons.age.20_30@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7467.913846549208, + "kind": "calibration_drift", + "ledger_value": 7621.0, + "name": "ons.age.20_30@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21231.647718611624, + "kind": "calibration_drift", + "ledger_value": 24466.0, + "name": "ons.age.20_30@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12586.964507225808, + "kind": "calibration_drift", + "ledger_value": 13329.0, + "name": "ons.age.20_30@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9263.808628119257, + "kind": "calibration_drift", + "ledger_value": 9469.0, + "name": "ons.age.20_30@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9714.365248333248, + "kind": "calibration_drift", + "ledger_value": 10751.0, + "name": "ons.age.20_30@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8676.65693764076, + "kind": "calibration_drift", + "ledger_value": 9031.0, + "name": "ons.age.20_30@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18879.08632725475, + "kind": "calibration_drift", + "ledger_value": 18248.0, + "name": "ons.age.20_30@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23740.28238673105, + "kind": "calibration_drift", + "ledger_value": 27060.0, + "name": "ons.age.20_30@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12048.11563023495, + "kind": "calibration_drift", + "ledger_value": 12269.0, + "name": "ons.age.20_30@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10980.428956636157, + "kind": "calibration_drift", + "ledger_value": 10247.0, + "name": "ons.age.20_30@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15335.661681805519, + "kind": "calibration_drift", + "ledger_value": 17081.0, + "name": "ons.age.20_30@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14899.218241775536, + "kind": "calibration_drift", + "ledger_value": 17181.0, + "name": "ons.age.20_30@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10538.0384532582, + "kind": "calibration_drift", + "ledger_value": 9886.0, + "name": "ons.age.20_30@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10447.964606563199, + "kind": "calibration_drift", + "ledger_value": 11028.0, + "name": "ons.age.20_30@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17634.315084088477, + "kind": "calibration_drift", + "ledger_value": 16278.0, + "name": "ons.age.20_30@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10375.722087452188, + "kind": "calibration_drift", + "ledger_value": 10326.0, + "name": "ons.age.20_30@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11609.09174103114, + "kind": "calibration_drift", + "ledger_value": 14211.0, + "name": "ons.age.20_30@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8269.144877392822, + "kind": "calibration_drift", + "ledger_value": 7329.0, + "name": "ons.age.20_30@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9624.311126558141, + "kind": "calibration_drift", + "ledger_value": 8334.0, + "name": "ons.age.20_30@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11453.3231520426, + "kind": "calibration_drift", + "ledger_value": 12657.0, + "name": "ons.age.20_30@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7935.739634130211, + "kind": "calibration_drift", + "ledger_value": 7613.0, + "name": "ons.age.20_30@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21589.91106974967, + "kind": "calibration_drift", + "ledger_value": 17302.0, + "name": "ons.age.20_30@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12749.971245228102, + "kind": "calibration_drift", + "ledger_value": 15145.0, + "name": "ons.age.20_30@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6519.066299978253, + "kind": "calibration_drift", + "ledger_value": 7214.0, + "name": "ons.age.20_30@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25839.66478578698, + "kind": "calibration_drift", + "ledger_value": 30860.0, + "name": "ons.age.20_30@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13453.381613560607, + "kind": "calibration_drift", + "ledger_value": 13411.0, + "name": "ons.age.20_30@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13395.035300514772, + "kind": "calibration_drift", + "ledger_value": 15427.0, + "name": "ons.age.20_30@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7986.620064996247, + "kind": "calibration_drift", + "ledger_value": 8467.0, + "name": "ons.age.20_30@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7791.2447334482395, + "kind": "calibration_drift", + "ledger_value": 7913.0, + "name": "ons.age.20_30@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9800.671635328532, + "kind": "calibration_drift", + "ledger_value": 10861.0, + "name": "ons.age.20_30@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8617.661895868885, + "kind": "calibration_drift", + "ledger_value": 7151.0, + "name": "ons.age.20_30@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9436.3523648902, + "kind": "calibration_drift", + "ledger_value": 9488.0, + "name": "ons.age.20_30@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10685.186355665883, + "kind": "calibration_drift", + "ledger_value": 10174.0, + "name": "ons.age.20_30@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12147.591916591598, + "kind": "calibration_drift", + "ledger_value": 12462.0, + "name": "ons.age.20_30@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13210.76509886697, + "kind": "calibration_drift", + "ledger_value": 13683.0, + "name": "ons.age.20_30@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11575.894700849887, + "kind": "calibration_drift", + "ledger_value": 12850.0, + "name": "ons.age.20_30@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11442.978328145573, + "kind": "calibration_drift", + "ledger_value": 13999.0, + "name": "ons.age.20_30@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7785.780930637659, + "kind": "calibration_drift", + "ledger_value": 7096.0, + "name": "ons.age.20_30@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9506.405417893, + "kind": "calibration_drift", + "ledger_value": 10369.0, + "name": "ons.age.20_30@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9136.928080902442, + "kind": "calibration_drift", + "ledger_value": 11395.0, + "name": "ons.age.20_30@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9301.414187896771, + "kind": "calibration_drift", + "ledger_value": 11458.0, + "name": "ons.age.20_30@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9155.476379438327, + "kind": "calibration_drift", + "ledger_value": 8807.0, + "name": "ons.age.20_30@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13088.865093923338, + "kind": "calibration_drift", + "ledger_value": 12943.0, + "name": "ons.age.20_30@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14959.280622852133, + "kind": "calibration_drift", + "ledger_value": 16613.0, + "name": "ons.age.20_30@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14682.826008080696, + "kind": "calibration_drift", + "ledger_value": 15021.0, + "name": "ons.age.20_30@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14858.782155993264, + "kind": "calibration_drift", + "ledger_value": 14450.0, + "name": "ons.age.20_30@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14598.472388154896, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.20_30@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8088.696525446619, + "kind": "calibration_drift", + "ledger_value": 9314.0, + "name": "ons.age.20_30@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11335.013979106905, + "kind": "calibration_drift", + "ledger_value": 13424.0, + "name": "ons.age.20_30@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10109.02144556823, + "kind": "calibration_drift", + "ledger_value": 10145.0, + "name": "ons.age.20_30@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12080.527188952707, + "kind": "calibration_drift", + "ledger_value": 12394.0, + "name": "ons.age.20_30@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10285.677828137028, + "kind": "calibration_drift", + "ledger_value": 10416.0, + "name": "ons.age.20_30@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29146.882929619347, + "kind": "calibration_drift", + "ledger_value": 27810.0, + "name": "ons.age.20_30@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10718.166421728303, + "kind": "calibration_drift", + "ledger_value": 9240.0, + "name": "ons.age.20_30@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12424.381442671018, + "kind": "calibration_drift", + "ledger_value": 11250.0, + "name": "ons.age.20_30@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11718.283410867441, + "kind": "calibration_drift", + "ledger_value": 13841.0, + "name": "ons.age.20_30@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12543.846648850547, + "kind": "calibration_drift", + "ledger_value": 28045.0, + "name": "ons.age.20_30@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12774.497294444689, + "kind": "calibration_drift", + "ledger_value": 12228.0, + "name": "ons.age.20_30@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12548.577944144787, + "kind": "calibration_drift", + "ledger_value": 9837.0, + "name": "ons.age.20_30@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12308.536394254506, + "kind": "calibration_drift", + "ledger_value": 10937.0, + "name": "ons.age.20_30@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12302.550588844371, + "kind": "calibration_drift", + "ledger_value": 11319.0, + "name": "ons.age.20_30@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11343.160990783565, + "kind": "calibration_drift", + "ledger_value": 11363.0, + "name": "ons.age.20_30@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11827.055411773374, + "kind": "calibration_drift", + "ledger_value": 11007.0, + "name": "ons.age.20_30@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11596.404766179234, + "kind": "calibration_drift", + "ledger_value": 11627.0, + "name": "ons.age.20_30@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11110.2641746962, + "kind": "calibration_drift", + "ledger_value": 11964.0, + "name": "ons.age.20_30@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11107.898527049081, + "kind": "calibration_drift", + "ledger_value": 10684.0, + "name": "ons.age.20_30@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12543.84664885055, + "kind": "calibration_drift", + "ledger_value": 8850.0, + "name": "ons.age.20_30@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12180.671944156164, + "kind": "calibration_drift", + "ledger_value": 11705.0, + "name": "ons.age.20_30@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10632.403349978083, + "kind": "calibration_drift", + "ledger_value": 10853.0, + "name": "ons.age.20_30@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12304.91623649149, + "kind": "calibration_drift", + "ledger_value": 9562.0, + "name": "ons.age.20_30@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10990.79896851667, + "kind": "calibration_drift", + "ledger_value": 13560.0, + "name": "ons.age.20_30@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12779.276380600486, + "kind": "calibration_drift", + "ledger_value": 10893.0, + "name": "ons.age.20_30@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 16064.0, + "name": "ons.age.20_30@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 23481.0, + "name": "ons.age.20_30@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 56879.0, + "name": "ons.age.20_30@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 14752.0, + "name": "ons.age.20_30@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 16966.0, + "name": "ons.age.20_30@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 11929.0, + "name": "ons.age.20_30@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 14284.0, + "name": "ons.age.20_30@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 14203.0, + "name": "ons.age.20_30@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 16677.0, + "name": "ons.age.20_30@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21617.70775071744, + "kind": "calibration_drift", + "ledger_value": 19015.0, + "name": "ons.age.20_30@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6298.075619088478, + "kind": "calibration_drift", + "ledger_value": 5200.0, + "name": "ons.age.20_30@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17746.10341162102, + "kind": "calibration_drift", + "ledger_value": 12467.0, + "name": "ons.age.20_30@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14635.745891907796, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "ons.age.20_30@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13657.791394293532, + "kind": "calibration_drift", + "ledger_value": 10654.0, + "name": "ons.age.20_30@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11776.445347701518, + "kind": "calibration_drift", + "ledger_value": 8488.0, + "name": "ons.age.20_30@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3179.5684785617987, + "kind": "calibration_drift", + "ledger_value": 1958.0, + "name": "ons.age.20_30@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19267.649781105705, + "kind": "calibration_drift", + "ledger_value": 17037.0, + "name": "ons.age.20_30@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28627.185195026694, + "kind": "calibration_drift", + "ledger_value": 21499.0, + "name": "ons.age.20_30@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9539.43525247466, + "kind": "calibration_drift", + "ledger_value": 8327.0, + "name": "ons.age.20_30@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11741.17086955374, + "kind": "calibration_drift", + "ledger_value": 10029.0, + "name": "ons.age.20_30@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11347.79962014024, + "kind": "calibration_drift", + "ledger_value": 9385.0, + "name": "ons.age.20_30@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16227.841217688032, + "kind": "calibration_drift", + "ledger_value": 13240.0, + "name": "ons.age.20_30@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2670.886176444528, + "kind": "calibration_drift", + "ledger_value": 1719.0, + "name": "ons.age.20_30@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14209.654523108944, + "kind": "calibration_drift", + "ledger_value": 9899.0, + "name": "ons.age.20_30@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2795.9281196718243, + "kind": "calibration_drift", + "ledger_value": 2053.0, + "name": "ons.age.20_30@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13564.739753662323, + "kind": "calibration_drift", + "ledger_value": 10072.0, + "name": "ons.age.20_30@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39781.826638274964, + "kind": "calibration_drift", + "ledger_value": 35254.0, + "name": "ons.age.20_30@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11263.992325506377, + "kind": "calibration_drift", + "ledger_value": 13421.0, + "name": "ons.age.20_30@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27249.047824632467, + "kind": "calibration_drift", + "ledger_value": 37581.0, + "name": "ons.age.20_30@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32078.245519194843, + "kind": "calibration_drift", + "ledger_value": 21498.0, + "name": "ons.age.20_30@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10457.058228843067, + "kind": "calibration_drift", + "ledger_value": 7655.0, + "name": "ons.age.20_30@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 62587.02003307663, + "kind": "calibration_drift", + "ledger_value": 105829.0, + "name": "ons.age.20_30@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22365.72205153298, + "kind": "calibration_drift", + "ledger_value": 22318.0, + "name": "ons.age.20_30@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10752.512392363597, + "kind": "calibration_drift", + "ledger_value": 9678.0, + "name": "ons.age.20_30@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22049.95465404459, + "kind": "calibration_drift", + "ledger_value": 19186.0, + "name": "ons.age.20_30@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13908.118553011214, + "kind": "calibration_drift", + "ledger_value": 10449.0, + "name": "ons.age.20_30@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18086.927852207486, + "kind": "calibration_drift", + "ledger_value": 25867.0, + "name": "ons.age.20_30@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13250.675262015557, + "kind": "calibration_drift", + "ledger_value": 9062.0, + "name": "ons.age.20_30@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45222.00262158317, + "kind": "calibration_drift", + "ledger_value": 43544.0, + "name": "ons.age.20_30@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18361.33896497089, + "kind": "calibration_drift", + "ledger_value": 14124.0, + "name": "ons.age.20_30@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 75506.35847276618, + "kind": "calibration_drift", + "ledger_value": 136093.0, + "name": "ons.age.20_30@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41474.63668097368, + "kind": "calibration_drift", + "ledger_value": 40385.0, + "name": "ons.age.20_30@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11424.934921954009, + "kind": "calibration_drift", + "ledger_value": 8606.0, + "name": "ons.age.20_30@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12217.964280535341, + "kind": "calibration_drift", + "ledger_value": 1998.0, + "name": "ons.age.20_30@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11089.763023989011, + "kind": "calibration_drift", + "ledger_value": 10069.0, + "name": "ons.age.20_30@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12244.525072449545, + "kind": "calibration_drift", + "ledger_value": 8931.0, + "name": "ons.age.20_30@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3304.9213938963617, + "kind": "calibration_drift", + "ledger_value": 3900.0, + "name": "ons.age.20_30@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12109.191513648586, + "kind": "calibration_drift", + "ledger_value": 15395.0, + "name": "ons.age.20_30@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12207.845883615642, + "kind": "calibration_drift", + "ledger_value": 21501.0, + "name": "ons.age.20_30@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11577.975675364443, + "kind": "calibration_drift", + "ledger_value": 9258.0, + "name": "ons.age.20_30@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5685.274269255317, + "kind": "calibration_drift", + "ledger_value": 10986.0, + "name": "ons.age.20_30@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12330.531446266981, + "kind": "calibration_drift", + "ledger_value": 9862.0, + "name": "ons.age.20_30@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14839.210890560007, + "kind": "calibration_drift", + "ledger_value": 8461.0, + "name": "ons.age.20_30@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17007.558054458987, + "kind": "calibration_drift", + "ledger_value": 9829.0, + "name": "ons.age.20_30@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12618.743864127659, + "kind": "calibration_drift", + "ledger_value": 8173.0, + "name": "ons.age.20_30@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13206.190163693795, + "kind": "calibration_drift", + "ledger_value": 9565.0, + "name": "ons.age.20_30@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10277.324050516472, + "kind": "calibration_drift", + "ledger_value": 7781.0, + "name": "ons.age.20_30@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13600.542035642873, + "kind": "calibration_drift", + "ledger_value": 11672.0, + "name": "ons.age.20_30@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13939.908009131086, + "kind": "calibration_drift", + "ledger_value": 9813.0, + "name": "ons.age.20_30@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12601.376387181106, + "kind": "calibration_drift", + "ledger_value": 10303.0, + "name": "ons.age.20_30@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9811.359224368229, + "kind": "calibration_drift", + "ledger_value": 8325.0, + "name": "ons.age.20_30@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18137.439669204847, + "kind": "calibration_drift", + "ledger_value": 7112.0, + "name": "ons.age.20_30@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12173.481278077119, + "kind": "calibration_drift", + "ledger_value": 21125.0, + "name": "ons.age.20_30@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11541.521620862, + "kind": "calibration_drift", + "ledger_value": 9720.0, + "name": "ons.age.20_30@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12024.243738781614, + "kind": "calibration_drift", + "ledger_value": 10801.0, + "name": "ons.age.20_30@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12429.03404028024, + "kind": "calibration_drift", + "ledger_value": 29430.0, + "name": "ons.age.20_30@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11364.806348258702, + "kind": "calibration_drift", + "ledger_value": 22273.0, + "name": "ons.age.20_30@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14188.552435837286, + "kind": "calibration_drift", + "ledger_value": 18894.0, + "name": "ons.age.20_30@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10996.780015495448, + "kind": "calibration_drift", + "ledger_value": 23618.0, + "name": "ons.age.20_30@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11156.87076195968, + "kind": "calibration_drift", + "ledger_value": 11055.0, + "name": "ons.age.20_30@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15109.442917094382, + "kind": "calibration_drift", + "ledger_value": 10765.0, + "name": "ons.age.20_30@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13540.957325782003, + "kind": "calibration_drift", + "ledger_value": 19352.0, + "name": "ons.age.20_30@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13350.845295657029, + "kind": "calibration_drift", + "ledger_value": 37126.0, + "name": "ons.age.20_30@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13535.885479326007, + "kind": "calibration_drift", + "ledger_value": 21667.0, + "name": "ons.age.20_30@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12841.49784271558, + "kind": "calibration_drift", + "ledger_value": 15188.0, + "name": "ons.age.20_30@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10614.504450270028, + "kind": "calibration_drift", + "ledger_value": 17216.0, + "name": "ons.age.20_30@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12975.638964529415, + "kind": "calibration_drift", + "ledger_value": 22149.0, + "name": "ons.age.20_30@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16425.44202119889, + "kind": "calibration_drift", + "ledger_value": 10268.0, + "name": "ons.age.20_30@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16004.983928518197, + "kind": "calibration_drift", + "ledger_value": 7378.0, + "name": "ons.age.20_30@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11598.213220569945, + "kind": "calibration_drift", + "ledger_value": 10854.0, + "name": "ons.age.20_30@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13055.79434421085, + "kind": "calibration_drift", + "ledger_value": 9172.0, + "name": "ons.age.20_30@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15011.046566248777, + "kind": "calibration_drift", + "ledger_value": 10982.0, + "name": "ons.age.20_30@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12128.026909514605, + "kind": "calibration_drift", + "ledger_value": 11211.0, + "name": "ons.age.20_30@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10715.544232310902, + "kind": "calibration_drift", + "ledger_value": 9324.0, + "name": "ons.age.20_30@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11384.959665323511, + "kind": "calibration_drift", + "ledger_value": 7637.0, + "name": "ons.age.20_30@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13370.672594967622, + "kind": "calibration_drift", + "ledger_value": 9570.0, + "name": "ons.age.20_30@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14345.914179867012, + "kind": "calibration_drift", + "ledger_value": 11585.0, + "name": "ons.age.20_30@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11887.497437138005, + "kind": "calibration_drift", + "ledger_value": 13677.0, + "name": "ons.age.20_30@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10581.293341980348, + "kind": "calibration_drift", + "ledger_value": 11245.0, + "name": "ons.age.20_30@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13185.915425865951, + "kind": "calibration_drift", + "ledger_value": 12268.0, + "name": "ons.age.20_30@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13249.47224530549, + "kind": "calibration_drift", + "ledger_value": 9989.0, + "name": "ons.age.20_30@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12629.990462303904, + "kind": "calibration_drift", + "ledger_value": 9942.0, + "name": "ons.age.20_30@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13196.223542727894, + "kind": "calibration_drift", + "ledger_value": 13980.0, + "name": "ons.age.20_30@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11420.599289056065, + "kind": "calibration_drift", + "ledger_value": 10221.0, + "name": "ons.age.20_30@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12352.199592541921, + "kind": "calibration_drift", + "ledger_value": 8675.0, + "name": "ons.age.20_30@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12674.486112758275, + "kind": "calibration_drift", + "ledger_value": 8522.0, + "name": "ons.age.20_30@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10098.721696887651, + "kind": "calibration_drift", + "ledger_value": 8186.0, + "name": "ons.age.20_30@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13981.869001157076, + "kind": "calibration_drift", + "ledger_value": 9944.0, + "name": "ons.age.20_30@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12052.619556470558, + "kind": "calibration_drift", + "ledger_value": 7005.0, + "name": "ons.age.20_30@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6017.41871375597, + "kind": "calibration_drift", + "ledger_value": 6012.0, + "name": "ons.age.20_30@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15142.200959716405, + "kind": "calibration_drift", + "ledger_value": 15886.0, + "name": "ons.age.20_30@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9784.744660213431, + "kind": "calibration_drift", + "ledger_value": 9732.0, + "name": "ons.age.20_30@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8997.455182238575, + "kind": "calibration_drift", + "ledger_value": 9214.0, + "name": "ons.age.20_30@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15058.612200326483, + "kind": "calibration_drift", + "ledger_value": 15309.0, + "name": "ons.age.20_30@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14235.360116567588, + "kind": "calibration_drift", + "ledger_value": 15062.0, + "name": "ons.age.20_30@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10331.959445521881, + "kind": "calibration_drift", + "ledger_value": 10373.0, + "name": "ons.age.20_30@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11048.295674247152, + "kind": "calibration_drift", + "ledger_value": 11365.0, + "name": "ons.age.20_30@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17602.23758780821, + "kind": "calibration_drift", + "ledger_value": 17688.0, + "name": "ons.age.20_30@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35840.13853190723, + "kind": "calibration_drift", + "ledger_value": 37876.0, + "name": "ons.age.20_30@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14683.434745390316, + "kind": "calibration_drift", + "ledger_value": 15321.0, + "name": "ons.age.20_30@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15061.528087281944, + "kind": "calibration_drift", + "ledger_value": 15509.0, + "name": "ons.age.20_30@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12767.697015651498, + "kind": "calibration_drift", + "ledger_value": 12910.0, + "name": "ons.age.20_30@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 76237.80837520224, + "kind": "calibration_drift", + "ledger_value": 76925.0, + "name": "ons.age.20_30@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28164.552102811624, + "kind": "calibration_drift", + "ledger_value": 28994.0, + "name": "ons.age.20_30@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18607.246625124262, + "kind": "calibration_drift", + "ledger_value": 19032.0, + "name": "ons.age.20_30@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7255.6987075090165, + "kind": "calibration_drift", + "ledger_value": 7345.0, + "name": "ons.age.20_30@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9805.15586890167, + "kind": "calibration_drift", + "ledger_value": 10050.0, + "name": "ons.age.20_30@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8032.29659998051, + "kind": "calibration_drift", + "ledger_value": 8032.0, + "name": "ons.age.20_30@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18439.097144025927, + "kind": "calibration_drift", + "ledger_value": 19644.0, + "name": "ons.age.20_30@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11271.847007499271, + "kind": "calibration_drift", + "ledger_value": 11390.0, + "name": "ons.age.20_30@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6358.577487545075, + "kind": "calibration_drift", + "ledger_value": 6376.0, + "name": "ons.age.20_30@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11053.924008160426, + "kind": "calibration_drift", + "ledger_value": 10002.0, + "name": "ons.age.20_30@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11599.239143544191, + "kind": "calibration_drift", + "ledger_value": 10447.0, + "name": "ons.age.20_30@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12123.310540202343, + "kind": "calibration_drift", + "ledger_value": 12246.0, + "name": "ons.age.20_30@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12041.047761785281, + "kind": "calibration_drift", + "ledger_value": 10763.0, + "name": "ons.age.20_30@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8457.325690881744, + "kind": "calibration_drift", + "ledger_value": 7908.0, + "name": "ons.age.20_30@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11039.021831180666, + "kind": "calibration_drift", + "ledger_value": 9959.0, + "name": "ons.age.20_30@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8848.53988959526, + "kind": "calibration_drift", + "ledger_value": 8414.0, + "name": "ons.age.20_30@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11718.338209862904, + "kind": "calibration_drift", + "ledger_value": 10347.0, + "name": "ons.age.20_30@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31747.071182318698, + "kind": "calibration_drift", + "ledger_value": 22728.0, + "name": "ons.age.20_30@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13141.648979559124, + "kind": "calibration_drift", + "ledger_value": 12432.0, + "name": "ons.age.20_30@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22402.72570627309, + "kind": "calibration_drift", + "ledger_value": 31517.0, + "name": "ons.age.20_30@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13969.770153920126, + "kind": "calibration_drift", + "ledger_value": 13928.0, + "name": "ons.age.20_30@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14373.785825644714, + "kind": "calibration_drift", + "ledger_value": 11899.0, + "name": "ons.age.20_30@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10174.14287800511, + "kind": "calibration_drift", + "ledger_value": 8795.0, + "name": "ons.age.20_30@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10146.843979464575, + "kind": "calibration_drift", + "ledger_value": 9791.0, + "name": "ons.age.20_30@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13864.834458918222, + "kind": "calibration_drift", + "ledger_value": 9341.0, + "name": "ons.age.20_30@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13497.654196262223, + "kind": "calibration_drift", + "ledger_value": 9583.0, + "name": "ons.age.20_30@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10377.674854521672, + "kind": "calibration_drift", + "ledger_value": 9548.0, + "name": "ons.age.20_30@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12785.328164137723, + "kind": "calibration_drift", + "ledger_value": 11145.0, + "name": "ons.age.20_30@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10549.301382517553, + "kind": "calibration_drift", + "ledger_value": 9650.0, + "name": "ons.age.20_30@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9532.028088835037, + "kind": "calibration_drift", + "ledger_value": 8008.0, + "name": "ons.age.20_30@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10061.232456479014, + "kind": "calibration_drift", + "ledger_value": 9517.0, + "name": "ons.age.20_30@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12174.161383688535, + "kind": "calibration_drift", + "ledger_value": 12803.0, + "name": "ons.age.20_30@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13755.863260131904, + "kind": "calibration_drift", + "ledger_value": 14634.0, + "name": "ons.age.20_30@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12229.657445809718, + "kind": "calibration_drift", + "ledger_value": 10481.0, + "name": "ons.age.20_30@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13522.764019287019, + "kind": "calibration_drift", + "ledger_value": 13339.0, + "name": "ons.age.20_30@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13200.340478703101, + "kind": "calibration_drift", + "ledger_value": 12028.0, + "name": "ons.age.20_30@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20677.23902626393, + "kind": "calibration_drift", + "ledger_value": 22028.0, + "name": "ons.age.20_30@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11526.976899513284, + "kind": "calibration_drift", + "ledger_value": 10035.0, + "name": "ons.age.20_30@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10808.309305642933, + "kind": "calibration_drift", + "ledger_value": 9769.0, + "name": "ons.age.20_30@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10754.524331498476, + "kind": "calibration_drift", + "ledger_value": 11293.0, + "name": "ons.age.20_30@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6812.987331315642, + "kind": "calibration_drift", + "ledger_value": 6179.0, + "name": "ons.age.20_30@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11729.641259506872, + "kind": "calibration_drift", + "ledger_value": 12787.0, + "name": "ons.age.30_40@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22588.404281648967, + "kind": "calibration_drift", + "ledger_value": 23965.0, + "name": "ons.age.30_40@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15601.939136360981, + "kind": "calibration_drift", + "ledger_value": 16425.0, + "name": "ons.age.30_40@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27231.468277063643, + "kind": "calibration_drift", + "ledger_value": 29006.0, + "name": "ons.age.30_40@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13940.855534065884, + "kind": "calibration_drift", + "ledger_value": 14830.0, + "name": "ons.age.30_40@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17004.480761938412, + "kind": "calibration_drift", + "ledger_value": 17842.0, + "name": "ons.age.30_40@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27499.729876966187, + "kind": "calibration_drift", + "ledger_value": 28752.0, + "name": "ons.age.30_40@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21128.516879280774, + "kind": "calibration_drift", + "ledger_value": 22555.0, + "name": "ons.age.30_40@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18385.639216509117, + "kind": "calibration_drift", + "ledger_value": 19414.0, + "name": "ons.age.30_40@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41217.03407777995, + "kind": "calibration_drift", + "ledger_value": 44205.0, + "name": "ons.age.30_40@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37584.81089359225, + "kind": "calibration_drift", + "ledger_value": 39912.0, + "name": "ons.age.30_40@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19847.470543514282, + "kind": "calibration_drift", + "ledger_value": 20995.0, + "name": "ons.age.30_40@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20563.806772239554, + "kind": "calibration_drift", + "ledger_value": 21297.0, + "name": "ons.age.30_40@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24894.87086341975, + "kind": "calibration_drift", + "ledger_value": 25888.0, + "name": "ons.age.30_40@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36765.44665910731, + "kind": "calibration_drift", + "ledger_value": 40990.0, + "name": "ons.age.30_40@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54653.44116855083, + "kind": "calibration_drift", + "ledger_value": 57477.0, + "name": "ons.age.30_40@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3984.0735434801686, + "kind": "calibration_drift", + "ledger_value": 4419.0, + "name": "ons.age.30_40@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45239.98611399962, + "kind": "calibration_drift", + "ledger_value": 47966.0, + "name": "ons.age.30_40@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20813.601088090832, + "kind": "calibration_drift", + "ledger_value": 22310.0, + "name": "ons.age.30_40@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25765.749100784527, + "kind": "calibration_drift", + "ledger_value": 27648.0, + "name": "ons.age.30_40@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36899.57745905858, + "kind": "calibration_drift", + "ledger_value": 40053.0, + "name": "ons.age.30_40@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23109.376084358253, + "kind": "calibration_drift", + "ledger_value": 23698.0, + "name": "ons.age.30_40@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 80183.00342594291, + "kind": "calibration_drift", + "ledger_value": 84973.0, + "name": "ons.age.30_40@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25534.42206898451, + "kind": "calibration_drift", + "ledger_value": 27142.0, + "name": "ons.age.30_40@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41980.996460111106, + "kind": "calibration_drift", + "ledger_value": 44877.0, + "name": "ons.age.30_40@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35884.84879855765, + "kind": "calibration_drift", + "ledger_value": 37776.0, + "name": "ons.age.30_40@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14962.387930796222, + "kind": "calibration_drift", + "ledger_value": 15692.0, + "name": "ons.age.30_40@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34463.83988892896, + "kind": "calibration_drift", + "ledger_value": 36928.0, + "name": "ons.age.30_40@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33644.47565444402, + "kind": "calibration_drift", + "ledger_value": 35743.0, + "name": "ons.age.30_40@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34733.07345114999, + "kind": "calibration_drift", + "ledger_value": 37587.0, + "name": "ons.age.30_40@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23852.927258001175, + "kind": "calibration_drift", + "ledger_value": 25278.0, + "name": "ons.age.30_40@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27065.262720602284, + "kind": "calibration_drift", + "ledger_value": 28946.0, + "name": "ons.age.30_40@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40621.22117654713, + "kind": "calibration_drift", + "ledger_value": 43465.0, + "name": "ons.age.30_40@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18797.751239547808, + "kind": "calibration_drift", + "ledger_value": 19789.0, + "name": "ons.age.30_40@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19827.059334826045, + "kind": "calibration_drift", + "ledger_value": 20727.0, + "name": "ons.age.30_40@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29296.888203849532, + "kind": "calibration_drift", + "ledger_value": 31815.0, + "name": "ons.age.30_40@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24901.674599649163, + "kind": "calibration_drift", + "ledger_value": 26811.0, + "name": "ons.age.30_40@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18730.685839572172, + "kind": "calibration_drift", + "ledger_value": 19834.0, + "name": "ons.age.30_40@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22683.65658886074, + "kind": "calibration_drift", + "ledger_value": 23997.0, + "name": "ons.age.30_40@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45142.78988215087, + "kind": "calibration_drift", + "ledger_value": 48383.0, + "name": "ons.age.30_40@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39244.92253356886, + "kind": "calibration_drift", + "ledger_value": 41596.0, + "name": "ons.age.30_40@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31240.81284082449, + "kind": "calibration_drift", + "ledger_value": 33326.0, + "name": "ons.age.30_40@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38174.79202091415, + "kind": "calibration_drift", + "ledger_value": 40244.0, + "name": "ons.age.30_40@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14128.444261533967, + "kind": "calibration_drift", + "ledger_value": 14660.0, + "name": "ons.age.30_40@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61338.5979951077, + "kind": "calibration_drift", + "ledger_value": 64199.0, + "name": "ons.age.30_40@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50959.01239597993, + "kind": "calibration_drift", + "ledger_value": 54784.0, + "name": "ons.age.30_40@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45907.724226800514, + "kind": "calibration_drift", + "ledger_value": 48794.0, + "name": "ons.age.30_40@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35848.886192773614, + "kind": "calibration_drift", + "ledger_value": 37673.0, + "name": "ons.age.30_40@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 62653.66301202126, + "kind": "calibration_drift", + "ledger_value": 65287.0, + "name": "ons.age.30_40@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 219.6634839781698, + "kind": "calibration_drift", + "ledger_value": 266.0, + "name": "ons.age.30_40@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61592.280160232935, + "kind": "calibration_drift", + "ledger_value": 64808.0, + "name": "ons.age.30_40@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26736.739456953517, + "kind": "calibration_drift", + "ledger_value": 28813.0, + "name": "ons.age.30_40@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44484.77139253485, + "kind": "calibration_drift", + "ledger_value": 47869.0, + "name": "ons.age.30_40@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35050.905129295395, + "kind": "calibration_drift", + "ledger_value": 36711.0, + "name": "ons.age.30_40@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50747.12461054966, + "kind": "calibration_drift", + "ledger_value": 52994.0, + "name": "ons.age.30_40@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37329.184803830045, + "kind": "calibration_drift", + "ledger_value": 39313.0, + "name": "ons.age.30_40@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 71065.02491621189, + "kind": "calibration_drift", + "ledger_value": 75647.0, + "name": "ons.age.30_40@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50030.78838182439, + "kind": "calibration_drift", + "ledger_value": 53998.0, + "name": "ons.age.30_40@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 60904.1308387438, + "kind": "calibration_drift", + "ledger_value": 64519.0, + "name": "ons.age.30_40@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32132.102286877504, + "kind": "calibration_drift", + "ledger_value": 34193.0, + "name": "ons.age.30_40@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24727.693344639905, + "kind": "calibration_drift", + "ledger_value": 26130.0, + "name": "ons.age.30_40@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 67829.36235796707, + "kind": "calibration_drift", + "ledger_value": 71250.0, + "name": "ons.age.30_40@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 65452.91448926519, + "kind": "calibration_drift", + "ledger_value": 69677.0, + "name": "ons.age.30_40@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23397.07693063055, + "kind": "calibration_drift", + "ledger_value": 24514.0, + "name": "ons.age.30_40@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11664.519784168213, + "kind": "calibration_drift", + "ledger_value": 12327.0, + "name": "ons.age.30_40@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12681.192369306113, + "kind": "calibration_drift", + "ledger_value": 13722.0, + "name": "ons.age.30_40@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24808.366217074363, + "kind": "calibration_drift", + "ledger_value": 26749.0, + "name": "ons.age.30_40@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21349.152325577434, + "kind": "calibration_drift", + "ledger_value": 22969.0, + "name": "ons.age.30_40@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15098.462655384468, + "kind": "calibration_drift", + "ledger_value": 16254.0, + "name": "ons.age.30_40@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10885.006004741255, + "kind": "calibration_drift", + "ledger_value": 11607.0, + "name": "ons.age.30_40@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12954.313780801094, + "kind": "calibration_drift", + "ledger_value": 13895.0, + "name": "ons.age.30_40@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6351.773751315663, + "kind": "calibration_drift", + "ledger_value": 6642.0, + "name": "ons.age.30_40@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14543.47217152812, + "kind": "calibration_drift", + "ledger_value": 15258.0, + "name": "ons.age.30_40@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10814.05275549167, + "kind": "calibration_drift", + "ledger_value": 11215.0, + "name": "ons.age.30_40@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12284.631743363223, + "kind": "calibration_drift", + "ledger_value": 13270.0, + "name": "ons.age.30_40@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15446.425165402985, + "kind": "calibration_drift", + "ledger_value": 16587.0, + "name": "ons.age.30_40@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15708.854991394604, + "kind": "calibration_drift", + "ledger_value": 16670.0, + "name": "ons.age.30_40@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17759.695483403182, + "kind": "calibration_drift", + "ledger_value": 18851.0, + "name": "ons.age.30_40@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9224.894364764645, + "kind": "calibration_drift", + "ledger_value": 9459.0, + "name": "ons.age.30_40@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10643.959349756362, + "kind": "calibration_drift", + "ledger_value": 11157.0, + "name": "ons.age.30_40@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9042.165448889, + "kind": "calibration_drift", + "ledger_value": 9331.0, + "name": "ons.age.30_40@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14690.238481619728, + "kind": "calibration_drift", + "ledger_value": 15377.0, + "name": "ons.age.30_40@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6498.540061407271, + "kind": "calibration_drift", + "ledger_value": 6901.0, + "name": "ons.age.30_40@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5436.185247300459, + "kind": "calibration_drift", + "ledger_value": 5658.0, + "name": "ons.age.30_40@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12167.024302826238, + "kind": "calibration_drift", + "ledger_value": 12685.0, + "name": "ons.age.30_40@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11666.463708805188, + "kind": "calibration_drift", + "ledger_value": 12047.0, + "name": "ons.age.30_40@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10580.781799054676, + "kind": "calibration_drift", + "ledger_value": 11064.0, + "name": "ons.age.30_40@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8358.875938992303, + "kind": "calibration_drift", + "ledger_value": 9007.0, + "name": "ons.age.30_40@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16761.490182316542, + "kind": "calibration_drift", + "ledger_value": 17835.0, + "name": "ons.age.30_40@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27554.159766801487, + "kind": "calibration_drift", + "ledger_value": 29361.0, + "name": "ons.age.30_40@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20837.90014605302, + "kind": "calibration_drift", + "ledger_value": 22482.0, + "name": "ons.age.30_40@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10440.81922519248, + "kind": "calibration_drift", + "ledger_value": 11115.0, + "name": "ons.age.30_40@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10059.809996345388, + "kind": "calibration_drift", + "ledger_value": 10304.0, + "name": "ons.age.30_40@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24826.833501125628, + "kind": "calibration_drift", + "ledger_value": 26347.0, + "name": "ons.age.30_40@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27178.010349546832, + "kind": "calibration_drift", + "ledger_value": 28793.0, + "name": "ons.age.30_40@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17210.536773457756, + "kind": "calibration_drift", + "ledger_value": 17756.0, + "name": "ons.age.30_40@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15430.873768307185, + "kind": "calibration_drift", + "ledger_value": 16576.0, + "name": "ons.age.30_40@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7185.717420577917, + "kind": "calibration_drift", + "ledger_value": 7659.0, + "name": "ons.age.30_40@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10049.118410842026, + "kind": "calibration_drift", + "ledger_value": 10640.0, + "name": "ons.age.30_40@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15346.313046598776, + "kind": "calibration_drift", + "ledger_value": 16809.0, + "name": "ons.age.30_40@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10682.837842495861, + "kind": "calibration_drift", + "ledger_value": 11234.0, + "name": "ons.age.30_40@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15972.25677970471, + "kind": "calibration_drift", + "ledger_value": 16600.0, + "name": "ons.age.30_40@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8998.427144557063, + "kind": "calibration_drift", + "ledger_value": 9306.0, + "name": "ons.age.30_40@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9652.557784899134, + "kind": "calibration_drift", + "ledger_value": 10246.0, + "name": "ons.age.30_40@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18947.433436594878, + "kind": "calibration_drift", + "ledger_value": 20456.0, + "name": "ons.age.30_40@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13976.81813984992, + "kind": "calibration_drift", + "ledger_value": 14883.0, + "name": "ons.age.30_40@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12750.201693918723, + "kind": "calibration_drift", + "ledger_value": 13872.0, + "name": "ons.age.30_40@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27349.07571760063, + "kind": "calibration_drift", + "ledger_value": 29115.0, + "name": "ons.age.30_40@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13896.145267415459, + "kind": "calibration_drift", + "ledger_value": 14679.0, + "name": "ons.age.30_40@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19345.937987174744, + "kind": "calibration_drift", + "ledger_value": 20284.0, + "name": "ons.age.30_40@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12649.117612796026, + "kind": "calibration_drift", + "ledger_value": 13191.0, + "name": "ons.age.30_40@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9970.38946304454, + "kind": "calibration_drift", + "ledger_value": 10349.0, + "name": "ons.age.30_40@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11997.902859409416, + "kind": "calibration_drift", + "ledger_value": 12731.0, + "name": "ons.age.30_40@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14739.80855986259, + "kind": "calibration_drift", + "ledger_value": 15461.0, + "name": "ons.age.30_40@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16526.27530124257, + "kind": "calibration_drift", + "ledger_value": 17233.0, + "name": "ons.age.30_40@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17027.80785758211, + "kind": "calibration_drift", + "ledger_value": 18292.0, + "name": "ons.age.30_40@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17095.845219876235, + "kind": "calibration_drift", + "ledger_value": 17902.0, + "name": "ons.age.30_40@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14767.995467098726, + "kind": "calibration_drift", + "ledger_value": 15925.0, + "name": "ons.age.30_40@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13873.790134090248, + "kind": "calibration_drift", + "ledger_value": 14728.0, + "name": "ons.age.30_40@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21963.43251086152, + "kind": "calibration_drift", + "ledger_value": 23657.0, + "name": "ons.age.30_40@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13726.051861680151, + "kind": "calibration_drift", + "ledger_value": 14102.0, + "name": "ons.age.30_40@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17947.284210871265, + "kind": "calibration_drift", + "ledger_value": 18995.0, + "name": "ons.age.30_40@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11206.72553216061, + "kind": "calibration_drift", + "ledger_value": 11641.0, + "name": "ons.age.30_40@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17224.14424591658, + "kind": "calibration_drift", + "ledger_value": 18421.0, + "name": "ons.age.30_40@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18189.302828174645, + "kind": "calibration_drift", + "ledger_value": 19343.0, + "name": "ons.age.30_40@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17368.966631371215, + "kind": "calibration_drift", + "ledger_value": 18795.0, + "name": "ons.age.30_40@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19615.171549395774, + "kind": "calibration_drift", + "ledger_value": 21103.0, + "name": "ons.age.30_40@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13877.677983364198, + "kind": "calibration_drift", + "ledger_value": 14694.0, + "name": "ons.age.30_40@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14664.967461339054, + "kind": "calibration_drift", + "ledger_value": 16125.0, + "name": "ons.age.30_40@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25457.637045823998, + "kind": "calibration_drift", + "ledger_value": 27664.0, + "name": "ons.age.30_40@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13623.995818238966, + "kind": "calibration_drift", + "ledger_value": 14362.0, + "name": "ons.age.30_40@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12394.463485352308, + "kind": "calibration_drift", + "ledger_value": 13102.0, + "name": "ons.age.30_40@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20650.311418584937, + "kind": "calibration_drift", + "ledger_value": 22140.0, + "name": "ons.age.30_40@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16924.779851822437, + "kind": "calibration_drift", + "ledger_value": 17942.0, + "name": "ons.age.30_40@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17008.36861121236, + "kind": "calibration_drift", + "ledger_value": 18119.0, + "name": "ons.age.30_40@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13703.696728354938, + "kind": "calibration_drift", + "ledger_value": 14730.0, + "name": "ons.age.30_40@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13277.977232857424, + "kind": "calibration_drift", + "ledger_value": 14155.0, + "name": "ons.age.30_40@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15360.892481376088, + "kind": "calibration_drift", + "ledger_value": 16013.0, + "name": "ons.age.30_40@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8656.29640844947, + "kind": "calibration_drift", + "ledger_value": 8908.0, + "name": "ons.age.30_40@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11262.127384314397, + "kind": "calibration_drift", + "ledger_value": 12073.0, + "name": "ons.age.30_40@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16366.873481010625, + "kind": "calibration_drift", + "ledger_value": 16788.0, + "name": "ons.age.30_40@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12484.855980971643, + "kind": "calibration_drift", + "ledger_value": 13229.0, + "name": "ons.age.30_40@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22003.282965919505, + "kind": "calibration_drift", + "ledger_value": 24160.0, + "name": "ons.age.30_40@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6802.764267093852, + "kind": "calibration_drift", + "ledger_value": 7262.0, + "name": "ons.age.30_40@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9088.819640176398, + "kind": "calibration_drift", + "ledger_value": 9826.0, + "name": "ons.age.30_40@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14265.4909484407, + "kind": "calibration_drift", + "ledger_value": 15085.0, + "name": "ons.age.30_40@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13289.640780679274, + "kind": "calibration_drift", + "ledger_value": 14015.0, + "name": "ons.age.30_40@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12132.033659360688, + "kind": "calibration_drift", + "ledger_value": 12717.0, + "name": "ons.age.30_40@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14063.322786195306, + "kind": "calibration_drift", + "ledger_value": 15484.0, + "name": "ons.age.30_40@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23201.712504614563, + "kind": "calibration_drift", + "ledger_value": 24455.0, + "name": "ons.age.30_40@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12079.547694162366, + "kind": "calibration_drift", + "ledger_value": 12820.0, + "name": "ons.age.30_40@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14404.48155998441, + "kind": "calibration_drift", + "ledger_value": 15372.0, + "name": "ons.age.30_40@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5811.362702236625, + "kind": "calibration_drift", + "ledger_value": 6050.0, + "name": "ons.age.30_40@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14451.13575127181, + "kind": "calibration_drift", + "ledger_value": 15485.0, + "name": "ons.age.30_40@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7390.801469778776, + "kind": "calibration_drift", + "ledger_value": 7817.0, + "name": "ons.age.30_40@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9059.660770621773, + "kind": "calibration_drift", + "ledger_value": 9711.0, + "name": "ons.age.30_40@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13249.790325621287, + "kind": "calibration_drift", + "ledger_value": 13757.0, + "name": "ons.age.30_40@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14833.116942437387, + "kind": "calibration_drift", + "ledger_value": 16120.0, + "name": "ons.age.30_40@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14347.13578319365, + "kind": "calibration_drift", + "ledger_value": 14809.0, + "name": "ons.age.30_40@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11605.230082740476, + "kind": "calibration_drift", + "ledger_value": 12384.0, + "name": "ons.age.30_40@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16605.00424904006, + "kind": "calibration_drift", + "ledger_value": 17327.0, + "name": "ons.age.30_40@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10574.950025143751, + "kind": "calibration_drift", + "ledger_value": 11170.0, + "name": "ons.age.30_40@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16686.649083793007, + "kind": "calibration_drift", + "ledger_value": 17679.0, + "name": "ons.age.30_40@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15159.69628144918, + "kind": "calibration_drift", + "ledger_value": 16189.0, + "name": "ons.age.30_40@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11353.491842252219, + "kind": "calibration_drift", + "ledger_value": 11848.0, + "name": "ons.age.30_40@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17748.03193558133, + "kind": "calibration_drift", + "ledger_value": 18515.0, + "name": "ons.age.30_40@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9031.473863385636, + "kind": "calibration_drift", + "ledger_value": 9297.0, + "name": "ons.age.30_40@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21667.955966041325, + "kind": "calibration_drift", + "ledger_value": 23513.0, + "name": "ons.age.30_40@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17090.01344596531, + "kind": "calibration_drift", + "ledger_value": 17963.0, + "name": "ons.age.30_40@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17062.79850104766, + "kind": "calibration_drift", + "ledger_value": 17881.0, + "name": "ons.age.30_40@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14986.686988758409, + "kind": "calibration_drift", + "ledger_value": 16075.0, + "name": "ons.age.30_40@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14281.0423455365, + "kind": "calibration_drift", + "ledger_value": 15302.0, + "name": "ons.age.30_40@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15244.25700315759, + "kind": "calibration_drift", + "ledger_value": 16435.0, + "name": "ons.age.30_40@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15502.798979875259, + "kind": "calibration_drift", + "ledger_value": 16504.0, + "name": "ons.age.30_40@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15330.761649502976, + "kind": "calibration_drift", + "ledger_value": 16377.0, + "name": "ons.age.30_40@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14315.061026683563, + "kind": "calibration_drift", + "ledger_value": 15133.0, + "name": "ons.age.30_40@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24731.581193913855, + "kind": "calibration_drift", + "ledger_value": 26428.0, + "name": "ons.age.30_40@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23882.086127555798, + "kind": "calibration_drift", + "ledger_value": 25053.0, + "name": "ons.age.30_40@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19251.657642281458, + "kind": "calibration_drift", + "ledger_value": 20385.0, + "name": "ons.age.30_40@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19705.56404501511, + "kind": "calibration_drift", + "ledger_value": 21132.0, + "name": "ons.age.30_40@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14936.14494819706, + "kind": "calibration_drift", + "ledger_value": 15692.0, + "name": "ons.age.30_40@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14076.93025865413, + "kind": "calibration_drift", + "ledger_value": 14892.0, + "name": "ons.age.30_40@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17204.70499954683, + "kind": "calibration_drift", + "ledger_value": 18388.0, + "name": "ons.age.30_40@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13060.25767351623, + "kind": "calibration_drift", + "ledger_value": 13953.0, + "name": "ons.age.30_40@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15227.733643743302, + "kind": "calibration_drift", + "ledger_value": 15832.0, + "name": "ons.age.30_40@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12767.697015651498, + "kind": "calibration_drift", + "ledger_value": 13559.0, + "name": "ons.age.30_40@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17575.99460520905, + "kind": "calibration_drift", + "ledger_value": 18539.0, + "name": "ons.age.30_40@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10010.239918102527, + "kind": "calibration_drift", + "ledger_value": 10348.0, + "name": "ons.age.30_40@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11334.05259588247, + "kind": "calibration_drift", + "ledger_value": 11890.0, + "name": "ons.age.30_40@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9748.782054429395, + "kind": "calibration_drift", + "ledger_value": 10597.0, + "name": "ons.age.30_40@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20434.535783880718, + "kind": "calibration_drift", + "ledger_value": 21168.0, + "name": "ons.age.30_40@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11902.650552197643, + "kind": "calibration_drift", + "ledger_value": 12868.0, + "name": "ons.age.30_40@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15831.322243524026, + "kind": "calibration_drift", + "ledger_value": 16360.0, + "name": "ons.age.30_40@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9674.912918224347, + "kind": "calibration_drift", + "ledger_value": 9975.0, + "name": "ons.age.30_40@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18582.947567162075, + "kind": "calibration_drift", + "ledger_value": 19496.0, + "name": "ons.age.30_40@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8813.754304044442, + "kind": "calibration_drift", + "ledger_value": 9132.0, + "name": "ons.age.30_40@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21662.124192130403, + "kind": "calibration_drift", + "ledger_value": 22812.0, + "name": "ons.age.30_40@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11371.959126303482, + "kind": "calibration_drift", + "ledger_value": 12095.0, + "name": "ons.age.30_40@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14492.93013096677, + "kind": "calibration_drift", + "ledger_value": 15424.0, + "name": "ons.age.30_40@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11214.50123070851, + "kind": "calibration_drift", + "ledger_value": 11805.0, + "name": "ons.age.30_40@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10326.127671610957, + "kind": "calibration_drift", + "ledger_value": 10759.0, + "name": "ons.age.30_40@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14065.26671083228, + "kind": "calibration_drift", + "ledger_value": 14899.0, + "name": "ons.age.30_40@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14634.836629465943, + "kind": "calibration_drift", + "ledger_value": 15249.0, + "name": "ons.age.30_40@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8212.109628900693, + "kind": "calibration_drift", + "ledger_value": 8670.0, + "name": "ons.age.30_40@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19138.91001333691, + "kind": "calibration_drift", + "ledger_value": 20982.0, + "name": "ons.age.30_40@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17055.02280249976, + "kind": "calibration_drift", + "ledger_value": 18496.0, + "name": "ons.age.30_40@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15841.041866708902, + "kind": "calibration_drift", + "ledger_value": 17495.0, + "name": "ons.age.30_40@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20528.816128774004, + "kind": "calibration_drift", + "ledger_value": 22113.0, + "name": "ons.age.30_40@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7317.904295892215, + "kind": "calibration_drift", + "ledger_value": 7615.0, + "name": "ons.age.30_40@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18614.05036135367, + "kind": "calibration_drift", + "ledger_value": 19719.0, + "name": "ons.age.30_40@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13330.463198055748, + "kind": "calibration_drift", + "ledger_value": 14022.0, + "name": "ons.age.30_40@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19184.592242305822, + "kind": "calibration_drift", + "ledger_value": 20801.0, + "name": "ons.age.30_40@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17263.02273865608, + "kind": "calibration_drift", + "ledger_value": 18061.0, + "name": "ons.age.30_40@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19482.98467408148, + "kind": "calibration_drift", + "ledger_value": 20792.0, + "name": "ons.age.30_40@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14073.04240938018, + "kind": "calibration_drift", + "ledger_value": 14933.0, + "name": "ons.age.30_40@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11569.26747695644, + "kind": "calibration_drift", + "ledger_value": 12042.0, + "name": "ons.age.30_40@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7708.633147924181, + "kind": "calibration_drift", + "ledger_value": 8281.0, + "name": "ons.age.30_40@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12176.743926011113, + "kind": "calibration_drift", + "ledger_value": 12876.0, + "name": "ons.age.30_40@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14609.565609185267, + "kind": "calibration_drift", + "ledger_value": 15503.0, + "name": "ons.age.30_40@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15422.126107440798, + "kind": "calibration_drift", + "ledger_value": 16338.0, + "name": "ons.age.30_40@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11797.678621800997, + "kind": "calibration_drift", + "ledger_value": 12183.0, + "name": "ons.age.30_40@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17336.89187486113, + "kind": "calibration_drift", + "ledger_value": 18133.0, + "name": "ons.age.30_40@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16590.424814262748, + "kind": "calibration_drift", + "ledger_value": 17752.0, + "name": "ons.age.30_40@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19696.816384148722, + "kind": "calibration_drift", + "ledger_value": 21210.0, + "name": "ons.age.30_40@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14183.846113687752, + "kind": "calibration_drift", + "ledger_value": 14993.0, + "name": "ons.age.30_40@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24481.786878062572, + "kind": "calibration_drift", + "ledger_value": 25709.0, + "name": "ons.age.30_40@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25304.06699950298, + "kind": "calibration_drift", + "ledger_value": 26626.0, + "name": "ons.age.30_40@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40048.735370958006, + "kind": "calibration_drift", + "ledger_value": 43104.0, + "name": "ons.age.30_40@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26566.64605121821, + "kind": "calibration_drift", + "ledger_value": 28049.0, + "name": "ons.age.30_40@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 89175.59879658904, + "kind": "calibration_drift", + "ledger_value": 94548.0, + "name": "ons.age.30_40@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32474.233022985096, + "kind": "calibration_drift", + "ledger_value": 34814.0, + "name": "ons.age.30_40@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31370.08382918332, + "kind": "calibration_drift", + "ledger_value": 33638.0, + "name": "ons.age.30_40@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47695.162930498984, + "kind": "calibration_drift", + "ledger_value": 51340.0, + "name": "ons.age.30_40@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40663.98751856058, + "kind": "calibration_drift", + "ledger_value": 42920.0, + "name": "ons.age.30_40@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33083.653396676746, + "kind": "calibration_drift", + "ledger_value": 35328.0, + "name": "ons.age.30_40@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30629.448542495866, + "kind": "calibration_drift", + "ledger_value": 31445.0, + "name": "ons.age.30_40@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46560.8829048241, + "kind": "calibration_drift", + "ledger_value": 49463.0, + "name": "ons.age.30_40@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23331.955455291885, + "kind": "calibration_drift", + "ledger_value": 24899.0, + "name": "ons.age.30_40@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 71014.48287565053, + "kind": "calibration_drift", + "ledger_value": 75307.0, + "name": "ons.age.30_40@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24358.347663614662, + "kind": "calibration_drift", + "ledger_value": 26073.0, + "name": "ons.age.30_40@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34397.746451271814, + "kind": "calibration_drift", + "ledger_value": 35879.0, + "name": "ons.age.30_40@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39373.22155960921, + "kind": "calibration_drift", + "ledger_value": 41569.0, + "name": "ons.age.30_40@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33485.073834212075, + "kind": "calibration_drift", + "ledger_value": 35381.0, + "name": "ons.age.30_40@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42913.1083235406, + "kind": "calibration_drift", + "ledger_value": 46194.0, + "name": "ons.age.30_40@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35850.830117410595, + "kind": "calibration_drift", + "ledger_value": 38595.0, + "name": "ons.age.30_40@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 77955.2657919696, + "kind": "calibration_drift", + "ledger_value": 82478.0, + "name": "ons.age.30_40@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42074.30484268591, + "kind": "calibration_drift", + "ledger_value": 44151.0, + "name": "ons.age.30_40@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28240.365163653645, + "kind": "calibration_drift", + "ledger_value": 29476.0, + "name": "ons.age.30_40@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19447.02206829744, + "kind": "calibration_drift", + "ledger_value": 20253.0, + "name": "ons.age.30_40@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37320.43714296366, + "kind": "calibration_drift", + "ledger_value": 40586.0, + "name": "ons.age.30_40@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 162333.25858450448, + "kind": "calibration_drift", + "ledger_value": 172001.0, + "name": "ons.age.30_40@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51790.04017828673, + "kind": "calibration_drift", + "ledger_value": 56379.0, + "name": "ons.age.30_40@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41990.716083295985, + "kind": "calibration_drift", + "ledger_value": 44974.0, + "name": "ons.age.30_40@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48639.91030406881, + "kind": "calibration_drift", + "ledger_value": 51384.0, + "name": "ons.age.30_40@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26049.562097782873, + "kind": "calibration_drift", + "ledger_value": 27328.0, + "name": "ons.age.30_40@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38728.81054245201, + "kind": "calibration_drift", + "ledger_value": 41265.0, + "name": "ons.age.30_40@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37689.7828239889, + "kind": "calibration_drift", + "ledger_value": 40965.0, + "name": "ons.age.30_40@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 76505.0980127863, + "kind": "calibration_drift", + "ledger_value": 78688.0, + "name": "ons.age.30_40@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25889.188315232437, + "kind": "calibration_drift", + "ledger_value": 27136.0, + "name": "ons.age.30_40@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57449.7767588393, + "kind": "calibration_drift", + "ledger_value": 60279.0, + "name": "ons.age.30_40@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 115919.14198977198, + "kind": "calibration_drift", + "ledger_value": 122777.0, + "name": "ons.age.30_40@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50917.218016284976, + "kind": "calibration_drift", + "ledger_value": 54229.0, + "name": "ons.age.30_40@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26322.683509277853, + "kind": "calibration_drift", + "ledger_value": 27881.0, + "name": "ons.age.30_40@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3238.5784452002736, + "kind": "calibration_drift", + "ledger_value": 4062.0, + "name": "ons.age.30_40@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33996.326013736485, + "kind": "calibration_drift", + "ledger_value": 38638.0, + "name": "ons.age.30_40@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 56530.30040555015, + "kind": "calibration_drift", + "ledger_value": 60872.0, + "name": "ons.age.30_40@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34654.344503352506, + "kind": "calibration_drift", + "ledger_value": 37166.0, + "name": "ons.age.30_40@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52911.68469382128, + "kind": "calibration_drift", + "ledger_value": 57136.0, + "name": "ons.age.30_40@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45187.50014880129, + "kind": "calibration_drift", + "ledger_value": 46938.0, + "name": "ons.age.30_40@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35845.970305818155, + "kind": "calibration_drift", + "ledger_value": 36731.0, + "name": "ons.age.30_40@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61448.42973709678, + "kind": "calibration_drift", + "ledger_value": 66303.0, + "name": "ons.age.30_40@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58517.96334685705, + "kind": "calibration_drift", + "ledger_value": 62934.0, + "name": "ons.age.30_40@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42647.76261059352, + "kind": "calibration_drift", + "ledger_value": 44892.0, + "name": "ons.age.30_40@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52356.694209964924, + "kind": "calibration_drift", + "ledger_value": 56334.0, + "name": "ons.age.30_40@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53578.45084430368, + "kind": "calibration_drift", + "ledger_value": 57214.0, + "name": "ons.age.30_40@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32540.326460642245, + "kind": "calibration_drift", + "ledger_value": 34649.0, + "name": "ons.age.30_40@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46064.210160077, + "kind": "calibration_drift", + "ledger_value": 49176.0, + "name": "ons.age.30_40@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38658.82925552091, + "kind": "calibration_drift", + "ledger_value": 41617.0, + "name": "ons.age.30_40@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38600.511516411665, + "kind": "calibration_drift", + "ledger_value": 41828.0, + "name": "ons.age.30_40@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48896.508356149505, + "kind": "calibration_drift", + "ledger_value": 51912.0, + "name": "ons.age.30_40@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47699.05077977294, + "kind": "calibration_drift", + "ledger_value": 49185.0, + "name": "ons.age.30_40@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44118.34159846507, + "kind": "calibration_drift", + "ledger_value": 47487.0, + "name": "ons.age.30_40@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21857.488618146384, + "kind": "calibration_drift", + "ledger_value": 22823.0, + "name": "ons.age.30_40@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24276.702828861715, + "kind": "calibration_drift", + "ledger_value": 25124.0, + "name": "ons.age.30_40@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58250.67370927299, + "kind": "calibration_drift", + "ledger_value": 61407.0, + "name": "ons.age.30_40@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 56118.188382511464, + "kind": "calibration_drift", + "ledger_value": 59253.0, + "name": "ons.age.30_40@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35367.764845122314, + "kind": "calibration_drift", + "ledger_value": 37353.0, + "name": "ons.age.30_40@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66000.12927457364, + "kind": "calibration_drift", + "ledger_value": 70898.0, + "name": "ons.age.30_40@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46118.6400499123, + "kind": "calibration_drift", + "ledger_value": 49452.0, + "name": "ons.age.30_40@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23781.002046433103, + "kind": "calibration_drift", + "ledger_value": 24385.0, + "name": "ons.age.30_40@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61107.27096330768, + "kind": "calibration_drift", + "ledger_value": 63719.0, + "name": "ons.age.30_40@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28916.85093732093, + "kind": "calibration_drift", + "ledger_value": 30195.0, + "name": "ons.age.30_40@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 70061.95980353281, + "kind": "calibration_drift", + "ledger_value": 73039.0, + "name": "ons.age.30_40@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52041.778418774986, + "kind": "calibration_drift", + "ledger_value": 55862.0, + "name": "ons.age.30_40@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 65520.951851559315, + "kind": "calibration_drift", + "ledger_value": 69920.0, + "name": "ons.age.30_40@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37023.016673506485, + "kind": "calibration_drift", + "ledger_value": 39516.0, + "name": "ons.age.30_40@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16428.451831301416, + "kind": "calibration_drift", + "ledger_value": 20692.0, + "name": "ons.age.30_40@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10917.595224314486, + "kind": "calibration_drift", + "ledger_value": 11435.0, + "name": "ons.age.30_40@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12292.570077810968, + "kind": "calibration_drift", + "ledger_value": 11690.0, + "name": "ons.age.30_40@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10900.976979303965, + "kind": "calibration_drift", + "ledger_value": 12210.0, + "name": "ons.age.30_40@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8419.769443403966, + "kind": "calibration_drift", + "ledger_value": 9246.0, + "name": "ons.age.30_40@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12138.804464778914, + "kind": "calibration_drift", + "ledger_value": 13264.0, + "name": "ons.age.30_40@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12481.692609752643, + "kind": "calibration_drift", + "ledger_value": 16601.0, + "name": "ons.age.30_40@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13383.723058955682, + "kind": "calibration_drift", + "ledger_value": 15815.0, + "name": "ons.age.30_40@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15481.239793063638, + "kind": "calibration_drift", + "ledger_value": 17636.0, + "name": "ons.age.30_40@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12816.148351471773, + "kind": "calibration_drift", + "ledger_value": 15378.0, + "name": "ons.age.30_40@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21915.13554895851, + "kind": "calibration_drift", + "ledger_value": 23562.0, + "name": "ons.age.30_40@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14520.184181096438, + "kind": "calibration_drift", + "ledger_value": 15649.0, + "name": "ons.age.30_40@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13472.712035056524, + "kind": "calibration_drift", + "ledger_value": 15905.0, + "name": "ons.age.30_40@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10508.184786998945, + "kind": "calibration_drift", + "ledger_value": 12498.0, + "name": "ons.age.30_40@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14556.30050942197, + "kind": "calibration_drift", + "ledger_value": 16483.0, + "name": "ons.age.30_40@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16188.636255232697, + "kind": "calibration_drift", + "ledger_value": 18748.0, + "name": "ons.age.30_40@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11600.146489859304, + "kind": "calibration_drift", + "ledger_value": 14706.0, + "name": "ons.age.30_40@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11451.52908091953, + "kind": "calibration_drift", + "ledger_value": 12221.0, + "name": "ons.age.30_40@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26334.868762180566, + "kind": "calibration_drift", + "ledger_value": 24575.0, + "name": "ons.age.30_40@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9877.37198633554, + "kind": "calibration_drift", + "ledger_value": 11687.0, + "name": "ons.age.30_40@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16985.85854182169, + "kind": "calibration_drift", + "ledger_value": 17346.0, + "name": "ons.age.30_40@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14547.848381247479, + "kind": "calibration_drift", + "ledger_value": 17276.0, + "name": "ons.age.30_40@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25519.835072169095, + "kind": "calibration_drift", + "ledger_value": 23933.0, + "name": "ons.age.30_40@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31109.24617263305, + "kind": "calibration_drift", + "ledger_value": 26345.0, + "name": "ons.age.30_40@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8147.476786730117, + "kind": "calibration_drift", + "ledger_value": 9437.0, + "name": "ons.age.30_40@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8253.74479265792, + "kind": "calibration_drift", + "ledger_value": 8694.0, + "name": "ons.age.30_40@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14881.781412589424, + "kind": "calibration_drift", + "ledger_value": 14823.0, + "name": "ons.age.30_40@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12638.052049750728, + "kind": "calibration_drift", + "ledger_value": 15744.0, + "name": "ons.age.30_40@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13454.348134635402, + "kind": "calibration_drift", + "ledger_value": 15023.0, + "name": "ons.age.30_40@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15916.414827436245, + "kind": "calibration_drift", + "ledger_value": 15776.0, + "name": "ons.age.30_40@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17186.51995265962, + "kind": "calibration_drift", + "ledger_value": 19227.0, + "name": "ons.age.30_40@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16574.6529375542, + "kind": "calibration_drift", + "ledger_value": 17303.0, + "name": "ons.age.30_40@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15819.829565518528, + "kind": "calibration_drift", + "ledger_value": 17584.0, + "name": "ons.age.30_40@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24586.87375691482, + "kind": "calibration_drift", + "ledger_value": 27766.0, + "name": "ons.age.30_40@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13147.566455527261, + "kind": "calibration_drift", + "ledger_value": 15454.0, + "name": "ons.age.30_40@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18011.613351816926, + "kind": "calibration_drift", + "ledger_value": 17563.0, + "name": "ons.age.30_40@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12893.14457627719, + "kind": "calibration_drift", + "ledger_value": 14360.0, + "name": "ons.age.30_40@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15124.24999038386, + "kind": "calibration_drift", + "ledger_value": 16962.0, + "name": "ons.age.30_40@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10360.912657444253, + "kind": "calibration_drift", + "ledger_value": 10347.0, + "name": "ons.age.30_40@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15448.862997075987, + "kind": "calibration_drift", + "ledger_value": 16687.0, + "name": "ons.age.30_40@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17440.89640482145, + "kind": "calibration_drift", + "ledger_value": 16768.0, + "name": "ons.age.30_40@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10121.793331199462, + "kind": "calibration_drift", + "ledger_value": 11091.0, + "name": "ons.age.30_40@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12397.171328007746, + "kind": "calibration_drift", + "ledger_value": 15881.0, + "name": "ons.age.30_40@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10871.526079969613, + "kind": "calibration_drift", + "ledger_value": 11969.0, + "name": "ons.age.30_40@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11740.262458324854, + "kind": "calibration_drift", + "ledger_value": 13800.0, + "name": "ons.age.30_40@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11799.338593406761, + "kind": "calibration_drift", + "ledger_value": 12872.0, + "name": "ons.age.30_40@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12317.226227678208, + "kind": "calibration_drift", + "ledger_value": 14529.0, + "name": "ons.age.30_40@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15025.694428134528, + "kind": "calibration_drift", + "ledger_value": 16465.0, + "name": "ons.age.30_40@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16650.43607978615, + "kind": "calibration_drift", + "ledger_value": 19909.0, + "name": "ons.age.30_40@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12141.10241794654, + "kind": "calibration_drift", + "ledger_value": 13613.0, + "name": "ons.age.30_40@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13423.79423371992, + "kind": "calibration_drift", + "ledger_value": 15340.0, + "name": "ons.age.30_40@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13491.78603259382, + "kind": "calibration_drift", + "ledger_value": 13557.0, + "name": "ons.age.30_40@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14115.152675997319, + "kind": "calibration_drift", + "ledger_value": 15361.0, + "name": "ons.age.30_40@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13736.917474573915, + "kind": "calibration_drift", + "ledger_value": 15722.0, + "name": "ons.age.30_40@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13858.896379197122, + "kind": "calibration_drift", + "ledger_value": 16131.0, + "name": "ons.age.30_40@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17172.17993589683, + "kind": "calibration_drift", + "ledger_value": 18436.0, + "name": "ons.age.30_40@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15093.844026367578, + "kind": "calibration_drift", + "ledger_value": 16112.0, + "name": "ons.age.30_40@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18051.260440803446, + "kind": "calibration_drift", + "ledger_value": 19583.0, + "name": "ons.age.30_40@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12136.603476192748, + "kind": "calibration_drift", + "ledger_value": 13852.0, + "name": "ons.age.30_40@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21728.301107724514, + "kind": "calibration_drift", + "ledger_value": 20970.0, + "name": "ons.age.30_40@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19987.744588916496, + "kind": "calibration_drift", + "ledger_value": 23075.0, + "name": "ons.age.30_40@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20513.226317347056, + "kind": "calibration_drift", + "ledger_value": 21517.0, + "name": "ons.age.30_40@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11402.976190600963, + "kind": "calibration_drift", + "ledger_value": 13669.0, + "name": "ons.age.30_40@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10293.123985396935, + "kind": "calibration_drift", + "ledger_value": 13542.0, + "name": "ons.age.30_40@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8473.786136533114, + "kind": "calibration_drift", + "ledger_value": 9827.0, + "name": "ons.age.30_40@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10308.943371151754, + "kind": "calibration_drift", + "ledger_value": 10532.0, + "name": "ons.age.30_40@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12278.052536769137, + "kind": "calibration_drift", + "ledger_value": 12715.0, + "name": "ons.age.30_40@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16009.455082917493, + "kind": "calibration_drift", + "ledger_value": 15208.0, + "name": "ons.age.30_40@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16355.745776572901, + "kind": "calibration_drift", + "ledger_value": 16000.0, + "name": "ons.age.30_40@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18605.37289045984, + "kind": "calibration_drift", + "ledger_value": 22315.0, + "name": "ons.age.30_40@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14749.999134007987, + "kind": "calibration_drift", + "ledger_value": 17263.0, + "name": "ons.age.30_40@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15185.111230716153, + "kind": "calibration_drift", + "ledger_value": 15802.0, + "name": "ons.age.30_40@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17330.15681932621, + "kind": "calibration_drift", + "ledger_value": 20429.0, + "name": "ons.age.30_40@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9822.47215474751, + "kind": "calibration_drift", + "ledger_value": 10646.0, + "name": "ons.age.30_40@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13333.576833441248, + "kind": "calibration_drift", + "ledger_value": 13244.0, + "name": "ons.age.30_40@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11277.722949275387, + "kind": "calibration_drift", + "ledger_value": 12134.0, + "name": "ons.age.30_40@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13924.82692394212, + "kind": "calibration_drift", + "ledger_value": 15670.0, + "name": "ons.age.30_40@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12517.000216362529, + "kind": "calibration_drift", + "ledger_value": 13290.0, + "name": "ons.age.30_40@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12618.937430596226, + "kind": "calibration_drift", + "ledger_value": 15083.0, + "name": "ons.age.30_40@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13378.032419566323, + "kind": "calibration_drift", + "ledger_value": 16157.0, + "name": "ons.age.30_40@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14238.433425333516, + "kind": "calibration_drift", + "ledger_value": 17285.0, + "name": "ons.age.30_40@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12720.452902607045, + "kind": "calibration_drift", + "ledger_value": 13834.0, + "name": "ons.age.30_40@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15059.167916056716, + "kind": "calibration_drift", + "ledger_value": 16349.0, + "name": "ons.age.30_40@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12706.329859963089, + "kind": "calibration_drift", + "ledger_value": 14442.0, + "name": "ons.age.30_40@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11014.967291370189, + "kind": "calibration_drift", + "ledger_value": 11694.0, + "name": "ons.age.30_40@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10788.712597728452, + "kind": "calibration_drift", + "ledger_value": 12374.0, + "name": "ons.age.30_40@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12009.014491877766, + "kind": "calibration_drift", + "ledger_value": 20616.0, + "name": "ons.age.30_40@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13464.230319502192, + "kind": "calibration_drift", + "ledger_value": 14886.0, + "name": "ons.age.30_40@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11766.013341246198, + "kind": "calibration_drift", + "ledger_value": 12749.0, + "name": "ons.age.30_40@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11541.247879056444, + "kind": "calibration_drift", + "ledger_value": 14204.0, + "name": "ons.age.30_40@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15129.9998045329, + "kind": "calibration_drift", + "ledger_value": 15051.0, + "name": "ons.age.30_40@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9897.03773146965, + "kind": "calibration_drift", + "ledger_value": 10659.0, + "name": "ons.age.30_40@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9216.777644877544, + "kind": "calibration_drift", + "ledger_value": 10094.0, + "name": "ons.age.30_40@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9441.486995894038, + "kind": "calibration_drift", + "ledger_value": 10867.0, + "name": "ons.age.30_40@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14985.53449123077, + "kind": "calibration_drift", + "ledger_value": 16369.0, + "name": "ons.age.30_40@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10509.4373194122, + "kind": "calibration_drift", + "ledger_value": 11989.0, + "name": "ons.age.30_40@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15394.757541807317, + "kind": "calibration_drift", + "ledger_value": 17111.0, + "name": "ons.age.30_40@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20418.723927273473, + "kind": "calibration_drift", + "ledger_value": 20595.0, + "name": "ons.age.30_40@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13046.673490270516, + "kind": "calibration_drift", + "ledger_value": 13958.0, + "name": "ons.age.30_40@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9563.745760024252, + "kind": "calibration_drift", + "ledger_value": 10599.0, + "name": "ons.age.30_40@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11257.20106292124, + "kind": "calibration_drift", + "ledger_value": 13353.0, + "name": "ons.age.30_40@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9944.927047589166, + "kind": "calibration_drift", + "ledger_value": 10662.0, + "name": "ons.age.30_40@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11343.801430919588, + "kind": "calibration_drift", + "ledger_value": 12579.0, + "name": "ons.age.30_40@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9723.073800466354, + "kind": "calibration_drift", + "ledger_value": 12948.0, + "name": "ons.age.30_40@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15273.557771519914, + "kind": "calibration_drift", + "ledger_value": 15331.0, + "name": "ons.age.30_40@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10661.336583959452, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.30_40@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16166.978293189313, + "kind": "calibration_drift", + "ledger_value": 14598.0, + "name": "ons.age.30_40@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13150.05179543388, + "kind": "calibration_drift", + "ledger_value": 14025.0, + "name": "ons.age.30_40@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7417.615300820038, + "kind": "calibration_drift", + "ledger_value": 7975.0, + "name": "ons.age.30_40@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29933.562047283493, + "kind": "calibration_drift", + "ledger_value": 24605.0, + "name": "ons.age.30_40@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12083.004359953107, + "kind": "calibration_drift", + "ledger_value": 11402.0, + "name": "ons.age.30_40@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8240.7102335885, + "kind": "calibration_drift", + "ledger_value": 10576.0, + "name": "ons.age.30_40@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24340.620186158547, + "kind": "calibration_drift", + "ledger_value": 20542.0, + "name": "ons.age.30_40@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17893.105251910078, + "kind": "calibration_drift", + "ledger_value": 19448.0, + "name": "ons.age.30_40@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11084.339834636652, + "kind": "calibration_drift", + "ledger_value": 12135.0, + "name": "ons.age.30_40@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8677.64318363545, + "kind": "calibration_drift", + "ledger_value": 12293.0, + "name": "ons.age.30_40@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15076.249397822317, + "kind": "calibration_drift", + "ledger_value": 17384.0, + "name": "ons.age.30_40@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20532.724400662064, + "kind": "calibration_drift", + "ledger_value": 19662.0, + "name": "ons.age.30_40@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18022.65930695745, + "kind": "calibration_drift", + "ledger_value": 17158.0, + "name": "ons.age.30_40@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18869.77557917617, + "kind": "calibration_drift", + "ledger_value": 18746.0, + "name": "ons.age.30_40@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12131.695095878977, + "kind": "calibration_drift", + "ledger_value": 13813.0, + "name": "ons.age.30_40@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17735.661722502777, + "kind": "calibration_drift", + "ledger_value": 20759.0, + "name": "ons.age.30_40@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13070.658992861367, + "kind": "calibration_drift", + "ledger_value": 17887.0, + "name": "ons.age.30_40@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16504.392772892515, + "kind": "calibration_drift", + "ledger_value": 16284.0, + "name": "ons.age.30_40@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13788.902500954004, + "kind": "calibration_drift", + "ledger_value": 15815.0, + "name": "ons.age.30_40@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19158.3412947624, + "kind": "calibration_drift", + "ledger_value": 24188.0, + "name": "ons.age.30_40@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17360.799183518793, + "kind": "calibration_drift", + "ledger_value": 19756.0, + "name": "ons.age.30_40@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12153.864441117825, + "kind": "calibration_drift", + "ledger_value": 13757.0, + "name": "ons.age.30_40@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17154.04287205449, + "kind": "calibration_drift", + "ledger_value": 20236.0, + "name": "ons.age.30_40@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11326.22176916773, + "kind": "calibration_drift", + "ledger_value": 13903.0, + "name": "ons.age.30_40@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13317.279666293445, + "kind": "calibration_drift", + "ledger_value": 16339.0, + "name": "ons.age.30_40@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16817.466701446778, + "kind": "calibration_drift", + "ledger_value": 19638.0, + "name": "ons.age.30_40@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8458.903684473247, + "kind": "calibration_drift", + "ledger_value": 9110.0, + "name": "ons.age.30_40@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13387.993504112686, + "kind": "calibration_drift", + "ledger_value": 15358.0, + "name": "ons.age.30_40@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13987.502856904646, + "kind": "calibration_drift", + "ledger_value": 18203.0, + "name": "ons.age.30_40@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17022.37903176343, + "kind": "calibration_drift", + "ledger_value": 18382.0, + "name": "ons.age.30_40@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11126.265151870908, + "kind": "calibration_drift", + "ledger_value": 12195.0, + "name": "ons.age.30_40@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12300.104997210394, + "kind": "calibration_drift", + "ledger_value": 13336.0, + "name": "ons.age.30_40@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9594.279252483015, + "kind": "calibration_drift", + "ledger_value": 11654.0, + "name": "ons.age.30_40@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11856.738110297694, + "kind": "calibration_drift", + "ledger_value": 13035.0, + "name": "ons.age.30_40@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11261.943013360353, + "kind": "calibration_drift", + "ledger_value": 13227.0, + "name": "ons.age.30_40@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12714.821437977367, + "kind": "calibration_drift", + "ledger_value": 15287.0, + "name": "ons.age.30_40@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21291.3250948574, + "kind": "calibration_drift", + "ledger_value": 18477.0, + "name": "ons.age.30_40@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16500.9409119111, + "kind": "calibration_drift", + "ledger_value": 19845.0, + "name": "ons.age.30_40@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21801.7871933761, + "kind": "calibration_drift", + "ledger_value": 25331.0, + "name": "ons.age.30_40@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16946.98052546941, + "kind": "calibration_drift", + "ledger_value": 19828.0, + "name": "ons.age.30_40@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16893.348468278193, + "kind": "calibration_drift", + "ledger_value": 19688.0, + "name": "ons.age.30_40@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13638.75730730973, + "kind": "calibration_drift", + "ledger_value": 15456.0, + "name": "ons.age.30_40@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11253.037212028306, + "kind": "calibration_drift", + "ledger_value": 12163.0, + "name": "ons.age.30_40@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10882.44701099667, + "kind": "calibration_drift", + "ledger_value": 11547.0, + "name": "ons.age.30_40@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25689.06502239788, + "kind": "calibration_drift", + "ledger_value": 19930.0, + "name": "ons.age.30_40@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8853.392219889134, + "kind": "calibration_drift", + "ledger_value": 10014.0, + "name": "ons.age.30_40@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12130.519998423522, + "kind": "calibration_drift", + "ledger_value": 12682.0, + "name": "ons.age.30_40@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11232.493707958922, + "kind": "calibration_drift", + "ledger_value": 13783.0, + "name": "ons.age.30_40@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12348.470500789972, + "kind": "calibration_drift", + "ledger_value": 14340.0, + "name": "ons.age.30_40@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11208.685729647115, + "kind": "calibration_drift", + "ledger_value": 12008.0, + "name": "ons.age.30_40@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10947.803939131827, + "kind": "calibration_drift", + "ledger_value": 12703.0, + "name": "ons.age.30_40@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11725.11371984642, + "kind": "calibration_drift", + "ledger_value": 13248.0, + "name": "ons.age.30_40@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19370.492670680072, + "kind": "calibration_drift", + "ledger_value": 16173.0, + "name": "ons.age.30_40@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10314.141086785385, + "kind": "calibration_drift", + "ledger_value": 14879.0, + "name": "ons.age.30_40@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16362.09281746317, + "kind": "calibration_drift", + "ledger_value": 16753.0, + "name": "ons.age.30_40@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13176.693263716055, + "kind": "calibration_drift", + "ledger_value": 15053.0, + "name": "ons.age.30_40@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18345.4477585594, + "kind": "calibration_drift", + "ledger_value": 16923.0, + "name": "ons.age.30_40@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13279.80231849524, + "kind": "calibration_drift", + "ledger_value": 14122.0, + "name": "ons.age.30_40@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11783.71850746136, + "kind": "calibration_drift", + "ledger_value": 13161.0, + "name": "ons.age.30_40@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12550.966528419638, + "kind": "calibration_drift", + "ledger_value": 13545.0, + "name": "ons.age.30_40@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22038.041524816723, + "kind": "calibration_drift", + "ledger_value": 22469.0, + "name": "ons.age.30_40@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10760.190363562027, + "kind": "calibration_drift", + "ledger_value": 12438.0, + "name": "ons.age.30_40@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14016.896405230535, + "kind": "calibration_drift", + "ledger_value": 13942.0, + "name": "ons.age.30_40@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10640.585125892869, + "kind": "calibration_drift", + "ledger_value": 14371.0, + "name": "ons.age.30_40@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10949.204408444288, + "kind": "calibration_drift", + "ledger_value": 12666.0, + "name": "ons.age.30_40@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9805.622590221874, + "kind": "calibration_drift", + "ledger_value": 12025.0, + "name": "ons.age.30_40@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11639.754129006038, + "kind": "calibration_drift", + "ledger_value": 13620.0, + "name": "ons.age.30_40@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19956.174854626483, + "kind": "calibration_drift", + "ledger_value": 21819.0, + "name": "ons.age.30_40@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15245.228322356637, + "kind": "calibration_drift", + "ledger_value": 18766.0, + "name": "ons.age.30_40@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21583.99359378153, + "kind": "calibration_drift", + "ledger_value": 18629.0, + "name": "ons.age.30_40@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10350.059966670364, + "kind": "calibration_drift", + "ledger_value": 11103.0, + "name": "ons.age.30_40@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8982.728519632725, + "kind": "calibration_drift", + "ledger_value": 10710.0, + "name": "ons.age.30_40@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9478.336856884136, + "kind": "calibration_drift", + "ledger_value": 11049.0, + "name": "ons.age.30_40@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9438.35444425942, + "kind": "calibration_drift", + "ledger_value": 10695.0, + "name": "ons.age.30_40@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9778.007702370563, + "kind": "calibration_drift", + "ledger_value": 11204.0, + "name": "ons.age.30_40@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14675.734899378878, + "kind": "calibration_drift", + "ledger_value": 14981.0, + "name": "ons.age.30_40@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13049.158830177133, + "kind": "calibration_drift", + "ledger_value": 14382.0, + "name": "ons.age.30_40@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13678.245700349833, + "kind": "calibration_drift", + "ledger_value": 15181.0, + "name": "ons.age.30_40@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8942.124772031357, + "kind": "calibration_drift", + "ledger_value": 9933.0, + "name": "ons.age.30_40@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16044.989526106157, + "kind": "calibration_drift", + "ledger_value": 18529.0, + "name": "ons.age.30_40@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10327.872654177752, + "kind": "calibration_drift", + "ledger_value": 12449.0, + "name": "ons.age.30_40@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10261.704877767928, + "kind": "calibration_drift", + "ledger_value": 13210.0, + "name": "ons.age.30_40@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17421.384573834996, + "kind": "calibration_drift", + "ledger_value": 18120.0, + "name": "ons.age.30_40@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11638.688983331775, + "kind": "calibration_drift", + "ledger_value": 11662.0, + "name": "ons.age.30_40@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11091.164656919904, + "kind": "calibration_drift", + "ledger_value": 12157.0, + "name": "ons.age.30_40@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14100.358986076973, + "kind": "calibration_drift", + "ledger_value": 15933.0, + "name": "ons.age.30_40@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13990.284070609669, + "kind": "calibration_drift", + "ledger_value": 15023.0, + "name": "ons.age.30_40@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11006.505300735751, + "kind": "calibration_drift", + "ledger_value": 11832.0, + "name": "ons.age.30_40@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24502.82806490514, + "kind": "calibration_drift", + "ledger_value": 28027.0, + "name": "ons.age.30_40@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11873.381353226494, + "kind": "calibration_drift", + "ledger_value": 13368.0, + "name": "ons.age.30_40@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28878.425988679897, + "kind": "calibration_drift", + "ledger_value": 21660.0, + "name": "ons.age.30_40@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30694.211106056115, + "kind": "calibration_drift", + "ledger_value": 27229.0, + "name": "ons.age.30_40@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11834.113627179515, + "kind": "calibration_drift", + "ledger_value": 13248.0, + "name": "ons.age.30_40@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14551.487628967883, + "kind": "calibration_drift", + "ledger_value": 15661.0, + "name": "ons.age.30_40@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12898.588654167877, + "kind": "calibration_drift", + "ledger_value": 14626.0, + "name": "ons.age.30_40@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20119.319069343186, + "kind": "calibration_drift", + "ledger_value": 20890.0, + "name": "ons.age.30_40@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26063.855635158823, + "kind": "calibration_drift", + "ledger_value": 20338.0, + "name": "ons.age.30_40@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11068.71769808077, + "kind": "calibration_drift", + "ledger_value": 13777.0, + "name": "ons.age.30_40@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14981.242661135859, + "kind": "calibration_drift", + "ledger_value": 18339.0, + "name": "ons.age.30_40@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11404.820470611032, + "kind": "calibration_drift", + "ledger_value": 9904.0, + "name": "ons.age.30_40@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11409.703782976052, + "kind": "calibration_drift", + "ledger_value": 12925.0, + "name": "ons.age.30_40@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16641.273756847364, + "kind": "calibration_drift", + "ledger_value": 17536.0, + "name": "ons.age.30_40@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18861.8201603481, + "kind": "calibration_drift", + "ledger_value": 21439.0, + "name": "ons.age.30_40@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11671.23510115653, + "kind": "calibration_drift", + "ledger_value": 12848.0, + "name": "ons.age.30_40@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10084.096177486994, + "kind": "calibration_drift", + "ledger_value": 11693.0, + "name": "ons.age.30_40@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12014.202145809832, + "kind": "calibration_drift", + "ledger_value": 13150.0, + "name": "ons.age.30_40@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10802.352379835007, + "kind": "calibration_drift", + "ledger_value": 11801.0, + "name": "ons.age.30_40@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22325.6505817881, + "kind": "calibration_drift", + "ledger_value": 23369.0, + "name": "ons.age.30_40@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11104.893201165984, + "kind": "calibration_drift", + "ledger_value": 12700.0, + "name": "ons.age.30_40@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15208.238699291624, + "kind": "calibration_drift", + "ledger_value": 17430.0, + "name": "ons.age.30_40@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21821.284380103847, + "kind": "calibration_drift", + "ledger_value": 23546.0, + "name": "ons.age.30_40@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9309.373193073916, + "kind": "calibration_drift", + "ledger_value": 10986.0, + "name": "ons.age.30_40@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12674.434664494827, + "kind": "calibration_drift", + "ledger_value": 12269.0, + "name": "ons.age.30_40@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10589.9840297985, + "kind": "calibration_drift", + "ledger_value": 11526.0, + "name": "ons.age.30_40@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13749.926059243871, + "kind": "calibration_drift", + "ledger_value": 16240.0, + "name": "ons.age.30_40@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12795.456910503186, + "kind": "calibration_drift", + "ledger_value": 13414.0, + "name": "ons.age.30_40@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9009.883094254432, + "kind": "calibration_drift", + "ledger_value": 9646.0, + "name": "ons.age.30_40@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13433.429857088038, + "kind": "calibration_drift", + "ledger_value": 15260.0, + "name": "ons.age.30_40@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10590.309490976746, + "kind": "calibration_drift", + "ledger_value": 11232.0, + "name": "ons.age.30_40@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11603.904087099072, + "kind": "calibration_drift", + "ledger_value": 13382.0, + "name": "ons.age.30_40@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11896.128775325597, + "kind": "calibration_drift", + "ledger_value": 15119.0, + "name": "ons.age.30_40@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24716.705371313525, + "kind": "calibration_drift", + "ledger_value": 17526.0, + "name": "ons.age.30_40@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9172.084430577104, + "kind": "calibration_drift", + "ledger_value": 8814.0, + "name": "ons.age.30_40@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14302.908011976253, + "kind": "calibration_drift", + "ledger_value": 15256.0, + "name": "ons.age.30_40@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17751.701071000658, + "kind": "calibration_drift", + "ledger_value": 17069.0, + "name": "ons.age.30_40@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11869.095772611154, + "kind": "calibration_drift", + "ledger_value": 14338.0, + "name": "ons.age.30_40@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11907.224042765854, + "kind": "calibration_drift", + "ledger_value": 14971.0, + "name": "ons.age.30_40@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15893.354204422636, + "kind": "calibration_drift", + "ledger_value": 16184.0, + "name": "ons.age.30_40@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15302.00110600676, + "kind": "calibration_drift", + "ledger_value": 17180.0, + "name": "ons.age.30_40@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14343.577110827371, + "kind": "calibration_drift", + "ledger_value": 16281.0, + "name": "ons.age.30_40@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11887.222973993548, + "kind": "calibration_drift", + "ledger_value": 13763.0, + "name": "ons.age.30_40@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17726.227532407516, + "kind": "calibration_drift", + "ledger_value": 18412.0, + "name": "ons.age.30_40@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21784.07899711024, + "kind": "calibration_drift", + "ledger_value": 21302.0, + "name": "ons.age.30_40@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16777.030615664502, + "kind": "calibration_drift", + "ledger_value": 17652.0, + "name": "ons.age.30_40@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6630.038699300724, + "kind": "calibration_drift", + "ledger_value": 6638.0, + "name": "ons.age.30_40@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6630.038699300724, + "kind": "calibration_drift", + "ledger_value": 8156.0, + "name": "ons.age.30_40@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24395.780924641535, + "kind": "calibration_drift", + "ledger_value": 23136.0, + "name": "ons.age.30_40@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28461.04746491221, + "kind": "calibration_drift", + "ledger_value": 25837.0, + "name": "ons.age.30_40@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12524.042012764614, + "kind": "calibration_drift", + "ledger_value": 13421.0, + "name": "ons.age.30_40@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11249.121815429387, + "kind": "calibration_drift", + "ledger_value": 12656.0, + "name": "ons.age.30_40@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8671.094510230712, + "kind": "calibration_drift", + "ledger_value": 11890.0, + "name": "ons.age.30_40@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23881.098589852827, + "kind": "calibration_drift", + "ledger_value": 21850.0, + "name": "ons.age.30_40@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13623.410423045092, + "kind": "calibration_drift", + "ledger_value": 16343.0, + "name": "ons.age.30_40@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19432.41905668663, + "kind": "calibration_drift", + "ledger_value": 18544.0, + "name": "ons.age.30_40@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13976.358277164652, + "kind": "calibration_drift", + "ledger_value": 15577.0, + "name": "ons.age.30_40@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15475.737503085626, + "kind": "calibration_drift", + "ledger_value": 19327.0, + "name": "ons.age.30_40@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14064.75351325253, + "kind": "calibration_drift", + "ledger_value": 16656.0, + "name": "ons.age.30_40@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10110.096453702443, + "kind": "calibration_drift", + "ledger_value": 10049.0, + "name": "ons.age.30_40@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12075.911557697562, + "kind": "calibration_drift", + "ledger_value": 15273.0, + "name": "ons.age.30_40@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10246.839460866153, + "kind": "calibration_drift", + "ledger_value": 11640.0, + "name": "ons.age.30_40@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13969.600300443264, + "kind": "calibration_drift", + "ledger_value": 15011.0, + "name": "ons.age.30_40@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13927.394678860574, + "kind": "calibration_drift", + "ledger_value": 17340.0, + "name": "ons.age.30_40@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13113.126745392701, + "kind": "calibration_drift", + "ledger_value": 14327.0, + "name": "ons.age.30_40@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10491.684891507788, + "kind": "calibration_drift", + "ledger_value": 12185.0, + "name": "ons.age.30_40@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18705.51630876062, + "kind": "calibration_drift", + "ledger_value": 22382.0, + "name": "ons.age.30_40@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12447.936298357836, + "kind": "calibration_drift", + "ledger_value": 14444.0, + "name": "ons.age.30_40@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13675.217227800484, + "kind": "calibration_drift", + "ledger_value": 17184.0, + "name": "ons.age.30_40@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15657.641411691826, + "kind": "calibration_drift", + "ledger_value": 17789.0, + "name": "ons.age.30_40@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15471.763629072682, + "kind": "calibration_drift", + "ledger_value": 17397.0, + "name": "ons.age.30_40@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18056.655206394396, + "kind": "calibration_drift", + "ledger_value": 21619.0, + "name": "ons.age.30_40@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14227.377607733044, + "kind": "calibration_drift", + "ledger_value": 17378.0, + "name": "ons.age.30_40@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9708.856416917655, + "kind": "calibration_drift", + "ledger_value": 10107.0, + "name": "ons.age.30_40@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21592.276964308043, + "kind": "calibration_drift", + "ledger_value": 20077.0, + "name": "ons.age.30_40@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25074.959228884516, + "kind": "calibration_drift", + "ledger_value": 25389.0, + "name": "ons.age.30_40@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19984.776885059746, + "kind": "calibration_drift", + "ledger_value": 20154.0, + "name": "ons.age.30_40@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24001.706612543418, + "kind": "calibration_drift", + "ledger_value": 22716.0, + "name": "ons.age.30_40@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10116.664852027074, + "kind": "calibration_drift", + "ledger_value": 12324.0, + "name": "ons.age.30_40@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14473.159972069636, + "kind": "calibration_drift", + "ledger_value": 18145.0, + "name": "ons.age.30_40@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13098.382367772092, + "kind": "calibration_drift", + "ledger_value": 13029.0, + "name": "ons.age.30_40@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19556.07457950081, + "kind": "calibration_drift", + "ledger_value": 20717.0, + "name": "ons.age.30_40@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14410.868675045042, + "kind": "calibration_drift", + "ledger_value": 15066.0, + "name": "ons.age.30_40@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16767.089256038034, + "kind": "calibration_drift", + "ledger_value": 15620.0, + "name": "ons.age.30_40@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13613.745212297134, + "kind": "calibration_drift", + "ledger_value": 15071.0, + "name": "ons.age.30_40@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12287.28379927943, + "kind": "calibration_drift", + "ledger_value": 12867.0, + "name": "ons.age.30_40@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8687.535230962187, + "kind": "calibration_drift", + "ledger_value": 9445.0, + "name": "ons.age.30_40@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10049.126726310731, + "kind": "calibration_drift", + "ledger_value": 10928.0, + "name": "ons.age.30_40@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15424.532308386997, + "kind": "calibration_drift", + "ledger_value": 16477.0, + "name": "ons.age.30_40@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21165.134919836866, + "kind": "calibration_drift", + "ledger_value": 22336.0, + "name": "ons.age.30_40@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9841.748781007353, + "kind": "calibration_drift", + "ledger_value": 12082.0, + "name": "ons.age.30_40@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12646.531075543255, + "kind": "calibration_drift", + "ledger_value": 15094.0, + "name": "ons.age.30_40@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13881.629349374718, + "kind": "calibration_drift", + "ledger_value": 17881.0, + "name": "ons.age.30_40@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12631.256814847316, + "kind": "calibration_drift", + "ledger_value": 13960.0, + "name": "ons.age.30_40@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10061.237827125518, + "kind": "calibration_drift", + "ledger_value": 11691.0, + "name": "ons.age.30_40@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21075.49791038295, + "kind": "calibration_drift", + "ledger_value": 24283.0, + "name": "ons.age.30_40@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19053.444170767212, + "kind": "calibration_drift", + "ledger_value": 17791.0, + "name": "ons.age.30_40@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16009.869306235263, + "kind": "calibration_drift", + "ledger_value": 14970.0, + "name": "ons.age.30_40@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13661.430206140374, + "kind": "calibration_drift", + "ledger_value": 15205.0, + "name": "ons.age.30_40@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10642.30389157619, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.30_40@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10422.06578674265, + "kind": "calibration_drift", + "ledger_value": 12081.0, + "name": "ons.age.30_40@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11308.089463451879, + "kind": "calibration_drift", + "ledger_value": 12110.0, + "name": "ons.age.30_40@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12162.632168010616, + "kind": "calibration_drift", + "ledger_value": 15317.0, + "name": "ons.age.30_40@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11879.12872617258, + "kind": "calibration_drift", + "ledger_value": 12650.0, + "name": "ons.age.30_40@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9597.860008980566, + "kind": "calibration_drift", + "ledger_value": 14033.0, + "name": "ons.age.30_40@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9165.627839347908, + "kind": "calibration_drift", + "ledger_value": 10076.0, + "name": "ons.age.30_40@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9226.914560149224, + "kind": "calibration_drift", + "ledger_value": 10465.0, + "name": "ons.age.30_40@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12296.978597407231, + "kind": "calibration_drift", + "ledger_value": 14004.0, + "name": "ons.age.30_40@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10081.130408838408, + "kind": "calibration_drift", + "ledger_value": 11310.0, + "name": "ons.age.30_40@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11708.82093601415, + "kind": "calibration_drift", + "ledger_value": 13799.0, + "name": "ons.age.30_40@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15188.64199137714, + "kind": "calibration_drift", + "ledger_value": 19852.0, + "name": "ons.age.30_40@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10063.042657295802, + "kind": "calibration_drift", + "ledger_value": 12174.0, + "name": "ons.age.30_40@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17538.885921642315, + "kind": "calibration_drift", + "ledger_value": 22492.0, + "name": "ons.age.30_40@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14228.294816508109, + "kind": "calibration_drift", + "ledger_value": 15421.0, + "name": "ons.age.30_40@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20096.241510792297, + "kind": "calibration_drift", + "ledger_value": 20779.0, + "name": "ons.age.30_40@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10082.599915370496, + "kind": "calibration_drift", + "ledger_value": 10155.0, + "name": "ons.age.30_40@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9545.874982600477, + "kind": "calibration_drift", + "ledger_value": 9875.0, + "name": "ons.age.30_40@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6818.9048072837795, + "kind": "calibration_drift", + "ledger_value": 7425.0, + "name": "ons.age.30_40@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11551.64291184047, + "kind": "calibration_drift", + "ledger_value": 13019.0, + "name": "ons.age.30_40@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11085.602229509856, + "kind": "calibration_drift", + "ledger_value": 13584.0, + "name": "ons.age.30_40@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18713.625692039925, + "kind": "calibration_drift", + "ledger_value": 20344.0, + "name": "ons.age.30_40@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15535.800581507874, + "kind": "calibration_drift", + "ledger_value": 17796.0, + "name": "ons.age.30_40@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14094.118783077902, + "kind": "calibration_drift", + "ledger_value": 15007.0, + "name": "ons.age.30_40@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12089.69927670332, + "kind": "calibration_drift", + "ledger_value": 12207.0, + "name": "ons.age.30_40@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9901.909786683418, + "kind": "calibration_drift", + "ledger_value": 10873.0, + "name": "ons.age.30_40@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10567.241197160956, + "kind": "calibration_drift", + "ledger_value": 12539.0, + "name": "ons.age.30_40@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13425.618788810094, + "kind": "calibration_drift", + "ledger_value": 15105.0, + "name": "ons.age.30_40@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12866.782220839137, + "kind": "calibration_drift", + "ledger_value": 14934.0, + "name": "ons.age.30_40@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9976.529158641632, + "kind": "calibration_drift", + "ledger_value": 10664.0, + "name": "ons.age.30_40@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9677.430335832121, + "kind": "calibration_drift", + "ledger_value": 11359.0, + "name": "ons.age.30_40@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10067.599113791268, + "kind": "calibration_drift", + "ledger_value": 11165.0, + "name": "ons.age.30_40@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9343.89180288805, + "kind": "calibration_drift", + "ledger_value": 10168.0, + "name": "ons.age.30_40@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11166.85495255922, + "kind": "calibration_drift", + "ledger_value": 11948.0, + "name": "ons.age.30_40@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12437.15374063246, + "kind": "calibration_drift", + "ledger_value": 13480.0, + "name": "ons.age.30_40@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9904.868524667487, + "kind": "calibration_drift", + "ledger_value": 11716.0, + "name": "ons.age.30_40@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11476.204955706666, + "kind": "calibration_drift", + "ledger_value": 12724.0, + "name": "ons.age.30_40@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11917.796599828926, + "kind": "calibration_drift", + "ledger_value": 13757.0, + "name": "ons.age.30_40@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11838.701135776597, + "kind": "calibration_drift", + "ledger_value": 12582.0, + "name": "ons.age.30_40@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9217.267679629855, + "kind": "calibration_drift", + "ledger_value": 9609.0, + "name": "ons.age.30_40@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7539.940288128655, + "kind": "calibration_drift", + "ledger_value": 7552.0, + "name": "ons.age.30_40@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9358.014845532005, + "kind": "calibration_drift", + "ledger_value": 9261.0, + "name": "ons.age.30_40@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11237.484112692051, + "kind": "calibration_drift", + "ledger_value": 11399.0, + "name": "ons.age.30_40@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9579.742670058118, + "kind": "calibration_drift", + "ledger_value": 10058.0, + "name": "ons.age.30_40@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11254.053045402836, + "kind": "calibration_drift", + "ledger_value": 12853.0, + "name": "ons.age.30_40@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14890.973225259931, + "kind": "calibration_drift", + "ledger_value": 18325.0, + "name": "ons.age.30_40@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12013.130457711643, + "kind": "calibration_drift", + "ledger_value": 14003.0, + "name": "ons.age.30_40@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12654.867543960185, + "kind": "calibration_drift", + "ledger_value": 17068.0, + "name": "ons.age.30_40@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12061.147455157055, + "kind": "calibration_drift", + "ledger_value": 14728.0, + "name": "ons.age.30_40@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11316.255580287909, + "kind": "calibration_drift", + "ledger_value": 12125.0, + "name": "ons.age.30_40@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16439.33998708279, + "kind": "calibration_drift", + "ledger_value": 22216.0, + "name": "ons.age.30_40@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14809.708117667402, + "kind": "calibration_drift", + "ledger_value": 17165.0, + "name": "ons.age.30_40@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13182.059960897896, + "kind": "calibration_drift", + "ledger_value": 15362.0, + "name": "ons.age.30_40@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13632.523336036023, + "kind": "calibration_drift", + "ledger_value": 16061.0, + "name": "ons.age.30_40@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17569.374670549663, + "kind": "calibration_drift", + "ledger_value": 19626.0, + "name": "ons.age.30_40@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14024.943345004058, + "kind": "calibration_drift", + "ledger_value": 16086.0, + "name": "ons.age.30_40@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14120.550828695727, + "kind": "calibration_drift", + "ledger_value": 13850.0, + "name": "ons.age.30_40@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12735.39452942659, + "kind": "calibration_drift", + "ledger_value": 16032.0, + "name": "ons.age.30_40@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13525.417021012734, + "kind": "calibration_drift", + "ledger_value": 14174.0, + "name": "ons.age.30_40@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14091.482772124768, + "kind": "calibration_drift", + "ledger_value": 14848.0, + "name": "ons.age.30_40@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15091.536210740005, + "kind": "calibration_drift", + "ledger_value": 16724.0, + "name": "ons.age.30_40@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11730.607110036843, + "kind": "calibration_drift", + "ledger_value": 12619.0, + "name": "ons.age.30_40@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12389.567371388688, + "kind": "calibration_drift", + "ledger_value": 11323.0, + "name": "ons.age.30_40@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11798.835607949468, + "kind": "calibration_drift", + "ledger_value": 19374.0, + "name": "ons.age.30_40@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12814.45200836091, + "kind": "calibration_drift", + "ledger_value": 13487.0, + "name": "ons.age.30_40@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23200.608578436913, + "kind": "calibration_drift", + "ledger_value": 21635.0, + "name": "ons.age.30_40@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13468.14571610111, + "kind": "calibration_drift", + "ledger_value": 14722.0, + "name": "ons.age.30_40@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9272.684842071463, + "kind": "calibration_drift", + "ledger_value": 10303.0, + "name": "ons.age.30_40@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9844.411645193015, + "kind": "calibration_drift", + "ledger_value": 10624.0, + "name": "ons.age.30_40@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18759.256853011255, + "kind": "calibration_drift", + "ledger_value": 20398.0, + "name": "ons.age.30_40@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12808.524669932822, + "kind": "calibration_drift", + "ledger_value": 13628.0, + "name": "ons.age.30_40@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14937.533898669226, + "kind": "calibration_drift", + "ledger_value": 17590.0, + "name": "ons.age.30_40@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13505.997837377296, + "kind": "calibration_drift", + "ledger_value": 16397.0, + "name": "ons.age.30_40@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12257.183571521504, + "kind": "calibration_drift", + "ledger_value": 13057.0, + "name": "ons.age.30_40@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34339.60616609926, + "kind": "calibration_drift", + "ledger_value": 33891.0, + "name": "ons.age.30_40@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13444.5053996084, + "kind": "calibration_drift", + "ledger_value": 16006.0, + "name": "ons.age.30_40@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15951.542718109322, + "kind": "calibration_drift", + "ledger_value": 17776.0, + "name": "ons.age.30_40@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15706.263339230023, + "kind": "calibration_drift", + "ledger_value": 19048.0, + "name": "ons.age.30_40@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23266.401048742653, + "kind": "calibration_drift", + "ledger_value": 22409.0, + "name": "ons.age.30_40@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27047.49066810347, + "kind": "calibration_drift", + "ledger_value": 20705.0, + "name": "ons.age.30_40@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11747.335892717263, + "kind": "calibration_drift", + "ledger_value": 13381.0, + "name": "ons.age.30_40@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10855.01791595143, + "kind": "calibration_drift", + "ledger_value": 12286.0, + "name": "ons.age.30_40@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15963.160695926765, + "kind": "calibration_drift", + "ledger_value": 22397.0, + "name": "ons.age.30_40@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11737.954642697281, + "kind": "calibration_drift", + "ledger_value": 12117.0, + "name": "ons.age.30_40@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11062.800222112632, + "kind": "calibration_drift", + "ledger_value": 11618.0, + "name": "ons.age.30_40@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12924.753760406991, + "kind": "calibration_drift", + "ledger_value": 13991.0, + "name": "ons.age.30_40@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13696.747675210208, + "kind": "calibration_drift", + "ledger_value": 15561.0, + "name": "ons.age.30_40@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10274.444486257515, + "kind": "calibration_drift", + "ledger_value": 13651.0, + "name": "ons.age.30_40@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11123.610001886587, + "kind": "calibration_drift", + "ledger_value": 9926.0, + "name": "ons.age.30_40@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16721.485241243587, + "kind": "calibration_drift", + "ledger_value": 14396.0, + "name": "ons.age.30_40@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14154.898389583308, + "kind": "calibration_drift", + "ledger_value": 15377.0, + "name": "ons.age.30_40@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13752.687548029002, + "kind": "calibration_drift", + "ledger_value": 16860.0, + "name": "ons.age.30_40@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16479.831860517286, + "kind": "calibration_drift", + "ledger_value": 18134.0, + "name": "ons.age.30_40@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10207.41920845841, + "kind": "calibration_drift", + "ledger_value": 11560.0, + "name": "ons.age.30_40@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12272.539421658821, + "kind": "calibration_drift", + "ledger_value": 14089.0, + "name": "ons.age.30_40@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10642.081253866498, + "kind": "calibration_drift", + "ledger_value": 11921.0, + "name": "ons.age.30_40@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14512.436388799144, + "kind": "calibration_drift", + "ledger_value": 17198.0, + "name": "ons.age.30_40@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14361.812799269183, + "kind": "calibration_drift", + "ledger_value": 17745.0, + "name": "ons.age.30_40@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12295.743863582808, + "kind": "calibration_drift", + "ledger_value": 12804.0, + "name": "ons.age.30_40@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10835.293693403291, + "kind": "calibration_drift", + "ledger_value": 11909.0, + "name": "ons.age.30_40@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12781.304280479391, + "kind": "calibration_drift", + "ledger_value": 14272.0, + "name": "ons.age.30_40@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11908.94997325656, + "kind": "calibration_drift", + "ledger_value": 12939.0, + "name": "ons.age.30_40@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9975.286488688324, + "kind": "calibration_drift", + "ledger_value": 10526.0, + "name": "ons.age.30_40@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20733.536737023423, + "kind": "calibration_drift", + "ledger_value": 26750.0, + "name": "ons.age.30_40@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10572.57678799223, + "kind": "calibration_drift", + "ledger_value": 11048.0, + "name": "ons.age.30_40@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9860.487454906455, + "kind": "calibration_drift", + "ledger_value": 11479.0, + "name": "ons.age.30_40@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14471.87785227654, + "kind": "calibration_drift", + "ledger_value": 14477.0, + "name": "ons.age.30_40@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8448.28181511044, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "ons.age.30_40@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11492.752112887072, + "kind": "calibration_drift", + "ledger_value": 14545.0, + "name": "ons.age.30_40@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11408.933116408887, + "kind": "calibration_drift", + "ledger_value": 11914.0, + "name": "ons.age.30_40@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16054.07285171725, + "kind": "calibration_drift", + "ledger_value": 17835.0, + "name": "ons.age.30_40@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15212.805018247038, + "kind": "calibration_drift", + "ledger_value": 15729.0, + "name": "ons.age.30_40@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10169.946352473646, + "kind": "calibration_drift", + "ledger_value": 10086.0, + "name": "ons.age.30_40@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15618.502581160983, + "kind": "calibration_drift", + "ledger_value": 17776.0, + "name": "ons.age.30_40@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13400.114565035541, + "kind": "calibration_drift", + "ledger_value": 15023.0, + "name": "ons.age.30_40@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12265.122851778759, + "kind": "calibration_drift", + "ledger_value": 14882.0, + "name": "ons.age.30_40@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11375.361302749656, + "kind": "calibration_drift", + "ledger_value": 12339.0, + "name": "ons.age.30_40@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11949.997531555542, + "kind": "calibration_drift", + "ledger_value": 13569.0, + "name": "ons.age.30_40@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13748.111366613643, + "kind": "calibration_drift", + "ledger_value": 16721.0, + "name": "ons.age.30_40@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8954.304910065772, + "kind": "calibration_drift", + "ledger_value": 9763.0, + "name": "ons.age.30_40@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10402.133755189974, + "kind": "calibration_drift", + "ledger_value": 12056.0, + "name": "ons.age.30_40@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20845.78846675638, + "kind": "calibration_drift", + "ledger_value": 23241.0, + "name": "ons.age.30_40@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16246.430270521509, + "kind": "calibration_drift", + "ledger_value": 17852.0, + "name": "ons.age.30_40@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11056.586872346088, + "kind": "calibration_drift", + "ledger_value": 11979.0, + "name": "ons.age.30_40@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13803.34114231626, + "kind": "calibration_drift", + "ledger_value": 15866.0, + "name": "ons.age.30_40@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11676.38850427135, + "kind": "calibration_drift", + "ledger_value": 13454.0, + "name": "ons.age.30_40@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9317.768978284155, + "kind": "calibration_drift", + "ledger_value": 10184.0, + "name": "ons.age.30_40@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12637.440577234021, + "kind": "calibration_drift", + "ledger_value": 14653.0, + "name": "ons.age.30_40@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7920.147084954168, + "kind": "calibration_drift", + "ledger_value": 8989.0, + "name": "ons.age.30_40@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9512.222874570363, + "kind": "calibration_drift", + "ledger_value": 11044.0, + "name": "ons.age.30_40@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7949.142717198042, + "kind": "calibration_drift", + "ledger_value": 9318.0, + "name": "ons.age.30_40@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12472.066848844472, + "kind": "calibration_drift", + "ledger_value": 13870.0, + "name": "ons.age.30_40@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12327.95658410043, + "kind": "calibration_drift", + "ledger_value": 14527.0, + "name": "ons.age.30_40@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10310.61012688278, + "kind": "calibration_drift", + "ledger_value": 12796.0, + "name": "ons.age.30_40@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11674.356627430885, + "kind": "calibration_drift", + "ledger_value": 12636.0, + "name": "ons.age.30_40@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10739.824383771687, + "kind": "calibration_drift", + "ledger_value": 12349.0, + "name": "ons.age.30_40@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11548.25022561874, + "kind": "calibration_drift", + "ledger_value": 11669.0, + "name": "ons.age.30_40@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9057.042155332585, + "kind": "calibration_drift", + "ledger_value": 8949.0, + "name": "ons.age.30_40@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8904.617836853311, + "kind": "calibration_drift", + "ledger_value": 10603.0, + "name": "ons.age.30_40@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10043.090900823232, + "kind": "calibration_drift", + "ledger_value": 11451.0, + "name": "ons.age.30_40@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12598.671247182772, + "kind": "calibration_drift", + "ledger_value": 12352.0, + "name": "ons.age.30_40@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11835.1195980941, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.30_40@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11108.84804760469, + "kind": "calibration_drift", + "ledger_value": 12553.0, + "name": "ons.age.30_40@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15397.272469093776, + "kind": "calibration_drift", + "ledger_value": 17922.0, + "name": "ons.age.30_40@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16442.693223464736, + "kind": "calibration_drift", + "ledger_value": 18211.0, + "name": "ons.age.30_40@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12810.260462883478, + "kind": "calibration_drift", + "ledger_value": 14560.0, + "name": "ons.age.30_40@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12806.098504785887, + "kind": "calibration_drift", + "ledger_value": 13861.0, + "name": "ons.age.30_40@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21523.941374027305, + "kind": "calibration_drift", + "ledger_value": 19847.0, + "name": "ons.age.30_40@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10384.124903326943, + "kind": "calibration_drift", + "ledger_value": 11917.0, + "name": "ons.age.30_40@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13040.144541785672, + "kind": "calibration_drift", + "ledger_value": 15521.0, + "name": "ons.age.30_40@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12797.705551371078, + "kind": "calibration_drift", + "ledger_value": 12663.0, + "name": "ons.age.30_40@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13870.5636693143, + "kind": "calibration_drift", + "ledger_value": 13717.0, + "name": "ons.age.30_40@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10807.401959327817, + "kind": "calibration_drift", + "ledger_value": 12701.0, + "name": "ons.age.30_40@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12763.009417277899, + "kind": "calibration_drift", + "ledger_value": 14357.0, + "name": "ons.age.30_40@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11921.642959208215, + "kind": "calibration_drift", + "ledger_value": 13614.0, + "name": "ons.age.30_40@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8337.496802526959, + "kind": "calibration_drift", + "ledger_value": 9117.0, + "name": "ons.age.30_40@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12938.671390863856, + "kind": "calibration_drift", + "ledger_value": 16044.0, + "name": "ons.age.30_40@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11293.562059950102, + "kind": "calibration_drift", + "ledger_value": 13319.0, + "name": "ons.age.30_40@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8751.749707676425, + "kind": "calibration_drift", + "ledger_value": 9179.0, + "name": "ons.age.30_40@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12437.548239030337, + "kind": "calibration_drift", + "ledger_value": 14481.0, + "name": "ons.age.30_40@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14488.93990798467, + "kind": "calibration_drift", + "ledger_value": 16229.0, + "name": "ons.age.30_40@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15787.145373254514, + "kind": "calibration_drift", + "ledger_value": 18524.0, + "name": "ons.age.30_40@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13177.715995584922, + "kind": "calibration_drift", + "ledger_value": 15900.0, + "name": "ons.age.30_40@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11869.77628234749, + "kind": "calibration_drift", + "ledger_value": 11729.0, + "name": "ons.age.30_40@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15741.235622201715, + "kind": "calibration_drift", + "ledger_value": 18695.0, + "name": "ons.age.30_40@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13478.8267602236, + "kind": "calibration_drift", + "ledger_value": 14664.0, + "name": "ons.age.30_40@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11053.924008160426, + "kind": "calibration_drift", + "ledger_value": 12141.0, + "name": "ons.age.30_40@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10376.747783286664, + "kind": "calibration_drift", + "ledger_value": 12011.0, + "name": "ons.age.30_40@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11405.550292647104, + "kind": "calibration_drift", + "ledger_value": 12385.0, + "name": "ons.age.30_40@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29485.75705339469, + "kind": "calibration_drift", + "ledger_value": 29933.0, + "name": "ons.age.30_40@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9685.50769052863, + "kind": "calibration_drift", + "ledger_value": 11354.0, + "name": "ons.age.30_40@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23930.50951418678, + "kind": "calibration_drift", + "ledger_value": 22034.0, + "name": "ons.age.30_40@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14062.88163827877, + "kind": "calibration_drift", + "ledger_value": 15395.0, + "name": "ons.age.30_40@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10206.768286101913, + "kind": "calibration_drift", + "ledger_value": 11714.0, + "name": "ons.age.30_40@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8453.231598226363, + "kind": "calibration_drift", + "ledger_value": 9406.0, + "name": "ons.age.30_40@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13440.560415629643, + "kind": "calibration_drift", + "ledger_value": 15941.0, + "name": "ons.age.30_40@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11307.803452113418, + "kind": "calibration_drift", + "ledger_value": 12924.0, + "name": "ons.age.30_40@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8951.941904510819, + "kind": "calibration_drift", + "ledger_value": 10730.0, + "name": "ons.age.30_40@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15158.600938378897, + "kind": "calibration_drift", + "ledger_value": 15118.0, + "name": "ons.age.30_40@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9734.247967586189, + "kind": "calibration_drift", + "ledger_value": 10993.0, + "name": "ons.age.30_40@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12980.25968498812, + "kind": "calibration_drift", + "ledger_value": 16243.0, + "name": "ons.age.30_40@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15691.962772307023, + "kind": "calibration_drift", + "ledger_value": 18967.0, + "name": "ons.age.30_40@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12099.512424350482, + "kind": "calibration_drift", + "ledger_value": 14484.0, + "name": "ons.age.30_40@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10131.2021179888, + "kind": "calibration_drift", + "ledger_value": 11549.0, + "name": "ons.age.30_40@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12305.036227183844, + "kind": "calibration_drift", + "ledger_value": 15132.0, + "name": "ons.age.30_40@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14003.095406080689, + "kind": "calibration_drift", + "ledger_value": 16906.0, + "name": "ons.age.30_40@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12117.146502735532, + "kind": "calibration_drift", + "ledger_value": 13470.0, + "name": "ons.age.30_40@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12118.41876006868, + "kind": "calibration_drift", + "ledger_value": 14301.0, + "name": "ons.age.30_40@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9625.326178747724, + "kind": "calibration_drift", + "ledger_value": 10710.0, + "name": "ons.age.30_40@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11083.642688225456, + "kind": "calibration_drift", + "ledger_value": 13130.0, + "name": "ons.age.30_40@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19975.229127243885, + "kind": "calibration_drift", + "ledger_value": 20675.0, + "name": "ons.age.30_40@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16024.120560858528, + "kind": "calibration_drift", + "ledger_value": 16494.0, + "name": "ons.age.30_40@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9446.066887937892, + "kind": "calibration_drift", + "ledger_value": 9344.0, + "name": "ons.age.30_40@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11067.465165667514, + "kind": "calibration_drift", + "ledger_value": 11881.0, + "name": "ons.age.30_40@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24141.329458011624, + "kind": "calibration_drift", + "ledger_value": 22526.0, + "name": "ons.age.30_40@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10691.695579230836, + "kind": "calibration_drift", + "ledger_value": 12011.0, + "name": "ons.age.30_40@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8773.101933461454, + "kind": "calibration_drift", + "ledger_value": 9542.0, + "name": "ons.age.30_40@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26121.26085312171, + "kind": "calibration_drift", + "ledger_value": 26230.0, + "name": "ons.age.30_40@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9765.097742300079, + "kind": "calibration_drift", + "ledger_value": 11744.0, + "name": "ons.age.30_40@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13337.004586187237, + "kind": "calibration_drift", + "ledger_value": 13922.0, + "name": "ons.age.30_40@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13898.43498112423, + "kind": "calibration_drift", + "ledger_value": 12999.0, + "name": "ons.age.30_40@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11739.621398428306, + "kind": "calibration_drift", + "ledger_value": 11865.0, + "name": "ons.age.30_40@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17202.505437863645, + "kind": "calibration_drift", + "ledger_value": 20230.0, + "name": "ons.age.30_40@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23151.84857645946, + "kind": "calibration_drift", + "ledger_value": 19501.0, + "name": "ons.age.30_40@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13474.737354677894, + "kind": "calibration_drift", + "ledger_value": 17117.0, + "name": "ons.age.30_40@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11909.669932832683, + "kind": "calibration_drift", + "ledger_value": 12965.0, + "name": "ons.age.30_40@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16712.835863870157, + "kind": "calibration_drift", + "ledger_value": 18520.0, + "name": "ons.age.30_40@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24504.26798405739, + "kind": "calibration_drift", + "ledger_value": 26495.0, + "name": "ons.age.30_40@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12749.201973352245, + "kind": "calibration_drift", + "ledger_value": 13033.0, + "name": "ons.age.30_40@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12389.567371388688, + "kind": "calibration_drift", + "ledger_value": 14516.0, + "name": "ons.age.30_40@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13349.135411921918, + "kind": "calibration_drift", + "ledger_value": 17393.0, + "name": "ons.age.30_40@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11764.948195571933, + "kind": "calibration_drift", + "ledger_value": 12596.0, + "name": "ons.age.30_40@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16151.356156633434, + "kind": "calibration_drift", + "ledger_value": 19647.0, + "name": "ons.age.30_40@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9699.546853438977, + "kind": "calibration_drift", + "ledger_value": 9026.0, + "name": "ons.age.30_40@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11343.387207601818, + "kind": "calibration_drift", + "ledger_value": 10888.0, + "name": "ons.age.30_40@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13778.762098954061, + "kind": "calibration_drift", + "ledger_value": 17055.0, + "name": "ons.age.30_40@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8916.2456771307, + "kind": "calibration_drift", + "ledger_value": 9548.0, + "name": "ons.age.30_40@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16451.56943741694, + "kind": "calibration_drift", + "ledger_value": 17010.0, + "name": "ons.age.30_40@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15180.10110106313, + "kind": "calibration_drift", + "ledger_value": 16435.0, + "name": "ons.age.30_40@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7917.247521729782, + "kind": "calibration_drift", + "ledger_value": 8682.0, + "name": "ons.age.30_40@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29897.18929499934, + "kind": "calibration_drift", + "ledger_value": 29615.0, + "name": "ons.age.30_40@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9760.876609442807, + "kind": "calibration_drift", + "ledger_value": 11977.0, + "name": "ons.age.30_40@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15619.049605919623, + "kind": "calibration_drift", + "ledger_value": 17936.0, + "name": "ons.age.30_40@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8467.908110404764, + "kind": "calibration_drift", + "ledger_value": 10144.0, + "name": "ons.age.30_40@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8175.170574261001, + "kind": "calibration_drift", + "ledger_value": 9682.0, + "name": "ons.age.30_40@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11361.603171123734, + "kind": "calibration_drift", + "ledger_value": 13855.0, + "name": "ons.age.30_40@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9621.210868833025, + "kind": "calibration_drift", + "ledger_value": 9743.0, + "name": "ons.age.30_40@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10059.087810857098, + "kind": "calibration_drift", + "ledger_value": 11847.0, + "name": "ons.age.30_40@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12130.224124625116, + "kind": "calibration_drift", + "ledger_value": 13057.0, + "name": "ons.age.30_40@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14048.087948358427, + "kind": "calibration_drift", + "ledger_value": 15674.0, + "name": "ons.age.30_40@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18586.200268323075, + "kind": "calibration_drift", + "ledger_value": 17821.0, + "name": "ons.age.30_40@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10312.691105931575, + "kind": "calibration_drift", + "ledger_value": 11923.0, + "name": "ons.age.30_40@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13735.586042481085, + "kind": "calibration_drift", + "ledger_value": 13235.0, + "name": "ons.age.30_40@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8898.207237887827, + "kind": "calibration_drift", + "ledger_value": 9081.0, + "name": "ons.age.30_40@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11967.414635821759, + "kind": "calibration_drift", + "ledger_value": 14609.0, + "name": "ons.age.30_40@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11828.551199769467, + "kind": "calibration_drift", + "ledger_value": 14500.0, + "name": "ons.age.30_40@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12552.919295489124, + "kind": "calibration_drift", + "ledger_value": 15100.0, + "name": "ons.age.30_40@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12364.469203998375, + "kind": "calibration_drift", + "ledger_value": 12715.0, + "name": "ons.age.30_40@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14634.125180862922, + "kind": "calibration_drift", + "ledger_value": 16149.0, + "name": "ons.age.30_40@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16722.944885315726, + "kind": "calibration_drift", + "ledger_value": 19326.0, + "name": "ons.age.30_40@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15567.133616759162, + "kind": "calibration_drift", + "ledger_value": 16542.0, + "name": "ons.age.30_40@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12907.001332502577, + "kind": "calibration_drift", + "ledger_value": 15481.0, + "name": "ons.age.30_40@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15828.360593372592, + "kind": "calibration_drift", + "ledger_value": 17722.0, + "name": "ons.age.30_40@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10298.568063287621, + "kind": "calibration_drift", + "ledger_value": 12667.0, + "name": "ons.age.30_40@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14020.187049168659, + "kind": "calibration_drift", + "ledger_value": 17568.0, + "name": "ons.age.30_40@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11055.817600470229, + "kind": "calibration_drift", + "ledger_value": 12308.0, + "name": "ons.age.30_40@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17593.642299267478, + "kind": "calibration_drift", + "ledger_value": 17468.0, + "name": "ons.age.30_40@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11923.43792691855, + "kind": "calibration_drift", + "ledger_value": 13401.0, + "name": "ons.age.30_40@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17046.620958312902, + "kind": "calibration_drift", + "ledger_value": 15842.0, + "name": "ons.age.30_40@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9159.907612578709, + "kind": "calibration_drift", + "ledger_value": 10459.0, + "name": "ons.age.30_40@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14261.029134196302, + "kind": "calibration_drift", + "ledger_value": 17402.0, + "name": "ons.age.30_40@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13450.5513933435, + "kind": "calibration_drift", + "ledger_value": 15966.0, + "name": "ons.age.30_40@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14398.154414332805, + "kind": "calibration_drift", + "ledger_value": 18161.0, + "name": "ons.age.30_40@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14662.901242319123, + "kind": "calibration_drift", + "ledger_value": 14739.0, + "name": "ons.age.30_40@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14403.585118496627, + "kind": "calibration_drift", + "ledger_value": 11646.0, + "name": "ons.age.30_40@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14128.059165579089, + "kind": "calibration_drift", + "ledger_value": 12217.0, + "name": "ons.age.30_40@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14121.18850197789, + "kind": "calibration_drift", + "ledger_value": 13928.0, + "name": "ons.age.30_40@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13019.976093768964, + "kind": "calibration_drift", + "ledger_value": 13473.0, + "name": "ons.age.30_40@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13575.402733513789, + "kind": "calibration_drift", + "ledger_value": 15637.0, + "name": "ons.age.30_40@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13310.65590552747, + "kind": "calibration_drift", + "ledger_value": 13924.0, + "name": "ons.age.30_40@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12752.651052694771, + "kind": "calibration_drift", + "ledger_value": 14307.0, + "name": "ons.age.30_40@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12749.935700612861, + "kind": "calibration_drift", + "ledger_value": 12931.0, + "name": "ons.age.30_40@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14398.154414332806, + "kind": "calibration_drift", + "ledger_value": 11472.0, + "name": "ons.age.30_40@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13981.293014161862, + "kind": "calibration_drift", + "ledger_value": 14374.0, + "name": "ons.age.30_40@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12204.149932148759, + "kind": "calibration_drift", + "ledger_value": 12675.0, + "name": "ons.age.30_40@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14123.903854059801, + "kind": "calibration_drift", + "ledger_value": 11696.0, + "name": "ons.age.30_40@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12615.525772558269, + "kind": "calibration_drift", + "ledger_value": 17703.0, + "name": "ons.age.30_40@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14668.38680208056, + "kind": "calibration_drift", + "ledger_value": 11816.0, + "name": "ons.age.30_40@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 19829.0, + "name": "ons.age.30_40@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 29875.0, + "name": "ons.age.30_40@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 53801.0, + "name": "ons.age.30_40@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 16922.0, + "name": "ons.age.30_40@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 19599.0, + "name": "ons.age.30_40@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 13629.0, + "name": "ons.age.30_40@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 21262.0, + "name": "ons.age.30_40@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 17098.0, + "name": "ons.age.30_40@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 20335.0, + "name": "ons.age.30_40@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24813.368896475673, + "kind": "calibration_drift", + "ledger_value": 22275.0, + "name": "ons.age.30_40@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6917.49543936606, + "kind": "calibration_drift", + "ledger_value": 6465.0, + "name": "ons.age.30_40@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19491.44418722839, + "kind": "calibration_drift", + "ledger_value": 15049.0, + "name": "ons.age.30_40@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16075.18098895828, + "kind": "calibration_drift", + "ledger_value": 14923.0, + "name": "ons.age.30_40@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15001.044032480568, + "kind": "calibration_drift", + "ledger_value": 14234.0, + "name": "ons.age.30_40@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12934.666382500365, + "kind": "calibration_drift", + "ledger_value": 10434.0, + "name": "ons.age.30_40@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3492.281099791974, + "kind": "calibration_drift", + "ledger_value": 2562.0, + "name": "ons.age.30_40@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21162.635628594027, + "kind": "calibration_drift", + "ledger_value": 20753.0, + "name": "ons.age.30_40@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31442.68741840631, + "kind": "calibration_drift", + "ledger_value": 27372.0, + "name": "ons.age.30_40@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10477.644894119563, + "kind": "calibration_drift", + "ledger_value": 9320.0, + "name": "ons.age.30_40@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12895.922636557763, + "kind": "calibration_drift", + "ledger_value": 14488.0, + "name": "ons.age.30_40@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12463.863069735755, + "kind": "calibration_drift", + "ledger_value": 11225.0, + "name": "ons.age.30_40@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17823.859922209125, + "kind": "calibration_drift", + "ledger_value": 14825.0, + "name": "ons.age.30_40@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2933.569563474834, + "kind": "calibration_drift", + "ledger_value": 2562.0, + "name": "ons.age.30_40@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15607.183257796412, + "kind": "calibration_drift", + "ledger_value": 11751.0, + "name": "ons.age.30_40@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3070.909462885169, + "kind": "calibration_drift", + "ledger_value": 2766.0, + "name": "ons.age.30_40@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14898.840702666455, + "kind": "calibration_drift", + "ledger_value": 11773.0, + "name": "ons.age.30_40@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43694.395079325324, + "kind": "calibration_drift", + "ledger_value": 43232.0, + "name": "ons.age.30_40@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12371.813273341084, + "kind": "calibration_drift", + "ledger_value": 10445.0, + "name": "ons.age.30_40@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29929.00934416595, + "kind": "calibration_drift", + "ledger_value": 35837.0, + "name": "ons.age.30_40@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35233.161762832395, + "kind": "calibration_drift", + "ledger_value": 31257.0, + "name": "ons.age.30_40@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11485.516685123031, + "kind": "calibration_drift", + "ledger_value": 9086.0, + "name": "ons.age.30_40@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 68742.49402946678, + "kind": "calibration_drift", + "ledger_value": 85900.0, + "name": "ons.age.30_40@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24565.40531534619, + "kind": "calibration_drift", + "ledger_value": 26886.0, + "name": "ons.age.30_40@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11810.028957173325, + "kind": "calibration_drift", + "ledger_value": 11488.0, + "name": "ons.age.30_40@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24218.581989597915, + "kind": "calibration_drift", + "ledger_value": 25355.0, + "name": "ons.age.30_40@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15275.991029549115, + "kind": "calibration_drift", + "ledger_value": 12637.0, + "name": "ons.age.30_40@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19865.788932508305, + "kind": "calibration_drift", + "ledger_value": 21136.0, + "name": "ons.age.30_40@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14553.887764653338, + "kind": "calibration_drift", + "ledger_value": 11736.0, + "name": "ons.age.30_40@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49669.61589754245, + "kind": "calibration_drift", + "ledger_value": 44561.0, + "name": "ons.age.30_40@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20167.188556116984, + "kind": "calibration_drift", + "ledger_value": 17977.0, + "name": "ons.age.30_40@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 82932.45778050751, + "kind": "calibration_drift", + "ledger_value": 109695.0, + "name": "ons.age.30_40@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45553.6940871985, + "kind": "calibration_drift", + "ledger_value": 44609.0, + "name": "ons.age.30_40@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11852.65285435425, + "kind": "calibration_drift", + "ledger_value": 10552.0, + "name": "ons.age.30_40@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12675.37103653958, + "kind": "calibration_drift", + "ledger_value": 2582.0, + "name": "ons.age.30_40@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11504.933048486444, + "kind": "calibration_drift", + "ledger_value": 14551.0, + "name": "ons.age.30_40@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12702.92619096684, + "kind": "calibration_drift", + "ledger_value": 9829.0, + "name": "ons.age.30_40@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3428.648500877632, + "kind": "calibration_drift", + "ledger_value": 5500.0, + "name": "ons.age.30_40@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12562.5261184089, + "kind": "calibration_drift", + "ledger_value": 17538.0, + "name": "ons.age.30_40@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12664.87383485301, + "kind": "calibration_drift", + "ledger_value": 18704.0, + "name": "ons.age.30_40@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12011.423029863698, + "kind": "calibration_drift", + "ledger_value": 11672.0, + "name": "ons.age.30_40@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5898.115197644454, + "kind": "calibration_drift", + "ledger_value": 12430.0, + "name": "ons.age.30_40@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12792.152405302731, + "kind": "calibration_drift", + "ledger_value": 12072.0, + "name": "ons.age.30_40@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15394.749862459543, + "kind": "calibration_drift", + "ledger_value": 10632.0, + "name": "ons.age.30_40@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17644.273940888394, + "kind": "calibration_drift", + "ledger_value": 12004.0, + "name": "ons.age.30_40@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13091.154698143142, + "kind": "calibration_drift", + "ledger_value": 9691.0, + "name": "ons.age.30_40@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13700.593360761057, + "kind": "calibration_drift", + "ledger_value": 12696.0, + "name": "ons.age.30_40@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10662.07860916584, + "kind": "calibration_drift", + "ledger_value": 10184.0, + "name": "ons.age.30_40@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14109.708674993219, + "kind": "calibration_drift", + "ledger_value": 12727.0, + "name": "ons.age.30_40@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14461.779570960112, + "kind": "calibration_drift", + "ledger_value": 11869.0, + "name": "ons.age.30_40@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13073.137030943306, + "kind": "calibration_drift", + "ledger_value": 11197.0, + "name": "ons.age.30_40@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10178.669349996942, + "kind": "calibration_drift", + "ledger_value": 10245.0, + "name": "ons.age.30_40@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18816.455195099814, + "kind": "calibration_drift", + "ledger_value": 8530.0, + "name": "ons.age.30_40@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12629.222713624975, + "kind": "calibration_drift", + "ledger_value": 15776.0, + "name": "ons.age.30_40@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11973.604236487392, + "kind": "calibration_drift", + "ledger_value": 12768.0, + "name": "ons.age.30_40@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12474.398134037338, + "kind": "calibration_drift", + "ledger_value": 13477.0, + "name": "ons.age.30_40@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12894.342663721536, + "kind": "calibration_drift", + "ledger_value": 20847.0, + "name": "ons.age.30_40@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11790.273233331776, + "kind": "calibration_drift", + "ledger_value": 22875.0, + "name": "ons.age.30_40@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14719.732556605168, + "kind": "calibration_drift", + "ledger_value": 13220.0, + "name": "ons.age.30_40@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11408.46901358766, + "kind": "calibration_drift", + "ledger_value": 17019.0, + "name": "ons.age.30_40@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11574.553114372231, + "kind": "calibration_drift", + "ledger_value": 13365.0, + "name": "ons.age.30_40@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15675.098627902906, + "kind": "calibration_drift", + "ledger_value": 12904.0, + "name": "ons.age.30_40@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14047.893278561396, + "kind": "calibration_drift", + "ledger_value": 18366.0, + "name": "ons.age.30_40@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13850.663980372758, + "kind": "calibration_drift", + "ledger_value": 18384.0, + "name": "ons.age.30_40@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14042.631556216007, + "kind": "calibration_drift", + "ledger_value": 18597.0, + "name": "ons.age.30_40@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13322.247968972673, + "kind": "calibration_drift", + "ledger_value": 18055.0, + "name": "ons.age.30_40@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11011.882109568427, + "kind": "calibration_drift", + "ledger_value": 16367.0, + "name": "ons.age.30_40@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13461.410963004075, + "kind": "calibration_drift", + "ledger_value": 17254.0, + "name": "ons.age.30_40@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17040.36509498964, + "kind": "calibration_drift", + "ledger_value": 11438.0, + "name": "ons.age.30_40@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16604.16621539936, + "kind": "calibration_drift", + "ledger_value": 11103.0, + "name": "ons.age.30_40@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12032.418212732024, + "kind": "calibration_drift", + "ledger_value": 12864.0, + "name": "ons.age.30_40@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13544.567138182574, + "kind": "calibration_drift", + "ledger_value": 10358.0, + "name": "ons.age.30_40@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15573.018590101807, + "kind": "calibration_drift", + "ledger_value": 13262.0, + "name": "ons.age.30_40@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12582.066659348458, + "kind": "calibration_drift", + "ledger_value": 14743.0, + "name": "ons.age.30_40@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11116.704541310148, + "kind": "calibration_drift", + "ledger_value": 12568.0, + "name": "ons.age.30_40@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11811.181034791012, + "kind": "calibration_drift", + "ledger_value": 10102.0, + "name": "ons.age.30_40@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13871.233558875676, + "kind": "calibration_drift", + "ledger_value": 11965.0, + "name": "ons.age.30_40@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14882.985488659599, + "kind": "calibration_drift", + "ledger_value": 12832.0, + "name": "ons.age.30_40@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12332.532429456034, + "kind": "calibration_drift", + "ledger_value": 8775.0, + "name": "ons.age.30_40@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10977.427669332668, + "kind": "calibration_drift", + "ledger_value": 14528.0, + "name": "ons.age.30_40@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13679.559592881586, + "kind": "calibration_drift", + "ledger_value": 13487.0, + "name": "ons.age.30_40@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13745.49580367751, + "kind": "calibration_drift", + "ledger_value": 12504.0, + "name": "ons.age.30_40@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13102.82233781777, + "kind": "calibration_drift", + "ledger_value": 12524.0, + "name": "ons.age.30_40@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13690.253617099781, + "kind": "calibration_drift", + "ledger_value": 11362.0, + "name": "ons.age.30_40@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11848.15490736424, + "kind": "calibration_drift", + "ledger_value": 11983.0, + "name": "ons.age.30_40@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12814.631746983774, + "kind": "calibration_drift", + "ledger_value": 9946.0, + "name": "ons.age.30_40@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13148.983782234483, + "kind": "calibration_drift", + "ledger_value": 9852.0, + "name": "ons.age.30_40@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10476.789877895679, + "kind": "calibration_drift", + "ledger_value": 9591.0, + "name": "ons.age.30_40@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14505.311466354337, + "kind": "calibration_drift", + "ledger_value": 12234.0, + "name": "ons.age.30_40@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12503.836263779254, + "kind": "calibration_drift", + "ledger_value": 10980.0, + "name": "ons.age.30_40@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7125.455756831694, + "kind": "calibration_drift", + "ledger_value": 7276.0, + "name": "ons.age.30_40@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13053.453937286817, + "kind": "calibration_drift", + "ledger_value": 14047.0, + "name": "ons.age.30_40@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11636.332876932076, + "kind": "calibration_drift", + "ledger_value": 12173.0, + "name": "ons.age.30_40@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10450.538848377353, + "kind": "calibration_drift", + "ledger_value": 11086.0, + "name": "ons.age.30_40@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18863.844677204954, + "kind": "calibration_drift", + "ledger_value": 19725.0, + "name": "ons.age.30_40@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17235.80779373843, + "kind": "calibration_drift", + "ledger_value": 18037.0, + "name": "ons.age.30_40@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6718.203545385441, + "kind": "calibration_drift", + "ledger_value": 7072.0, + "name": "ons.age.30_40@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13306.16414009356, + "kind": "calibration_drift", + "ledger_value": 13900.0, + "name": "ons.age.30_40@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21116.853331458926, + "kind": "calibration_drift", + "ledger_value": 21931.0, + "name": "ons.age.30_40@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30645.97190191015, + "kind": "calibration_drift", + "ledger_value": 33099.0, + "name": "ons.age.30_40@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17698.46185733847, + "kind": "calibration_drift", + "ledger_value": 18185.0, + "name": "ons.age.30_40@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18896.89139603353, + "kind": "calibration_drift", + "ledger_value": 19806.0, + "name": "ons.age.30_40@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16080.14459705682, + "kind": "calibration_drift", + "ledger_value": 16786.0, + "name": "ons.age.30_40@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54065.40396586591, + "kind": "calibration_drift", + "ledger_value": 55993.0, + "name": "ons.age.30_40@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32015.466808659006, + "kind": "calibration_drift", + "ledger_value": 33564.0, + "name": "ons.age.30_40@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22856.66588155151, + "kind": "calibration_drift", + "ledger_value": 23732.0, + "name": "ons.age.30_40@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8925.529970670501, + "kind": "calibration_drift", + "ledger_value": 9384.0, + "name": "ons.age.30_40@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12320.594349147259, + "kind": "calibration_drift", + "ledger_value": 12901.0, + "name": "ons.age.30_40@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9975.249274636977, + "kind": "calibration_drift", + "ledger_value": 10531.0, + "name": "ons.age.30_40@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24968.7399996248, + "kind": "calibration_drift", + "ledger_value": 26761.0, + "name": "ons.age.30_40@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13153.566056091027, + "kind": "calibration_drift", + "ledger_value": 13982.0, + "name": "ons.age.30_40@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8007.025579699836, + "kind": "calibration_drift", + "ledger_value": 8278.0, + "name": "ons.age.30_40@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12086.385490161163, + "kind": "calibration_drift", + "ledger_value": 12231.0, + "name": "ons.age.30_40@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13294.349446916913, + "kind": "calibration_drift", + "ledger_value": 14039.0, + "name": "ons.age.30_40@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10207.44879583825, + "kind": "calibration_drift", + "ledger_value": 10502.0, + "name": "ons.age.30_40@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12511.102465314287, + "kind": "calibration_drift", + "ledger_value": 13209.0, + "name": "ons.age.30_40@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9020.708852888221, + "kind": "calibration_drift", + "ledger_value": 9992.0, + "name": "ons.age.30_40@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12375.32597922537, + "kind": "calibration_drift", + "ledger_value": 13420.0, + "name": "ons.age.30_40@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9405.906951034132, + "kind": "calibration_drift", + "ledger_value": 10359.0, + "name": "ons.age.30_40@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12936.006827206398, + "kind": "calibration_drift", + "ledger_value": 13027.0, + "name": "ons.age.30_40@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14608.640584360144, + "kind": "calibration_drift", + "ledger_value": 16731.0, + "name": "ons.age.30_40@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11623.89529341143, + "kind": "calibration_drift", + "ledger_value": 12634.0, + "name": "ons.age.30_40@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16133.514966589497, + "kind": "calibration_drift", + "ledger_value": 16507.0, + "name": "ons.age.30_40@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14502.086567093882, + "kind": "calibration_drift", + "ledger_value": 16073.0, + "name": "ons.age.30_40@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7919.328500778576, + "kind": "calibration_drift", + "ledger_value": 9363.0, + "name": "ons.age.30_40@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10027.18431529878, + "kind": "calibration_drift", + "ledger_value": 10205.0, + "name": "ons.age.30_40@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9806.983609694546, + "kind": "calibration_drift", + "ledger_value": 11878.0, + "name": "ons.age.30_40@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10381.103475250935, + "kind": "calibration_drift", + "ledger_value": 10923.0, + "name": "ons.age.30_40@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11136.887021233715, + "kind": "calibration_drift", + "ledger_value": 11597.0, + "name": "ons.age.30_40@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10884.289697073818, + "kind": "calibration_drift", + "ledger_value": 11644.0, + "name": "ons.age.30_40@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13477.436153371087, + "kind": "calibration_drift", + "ledger_value": 14040.0, + "name": "ons.age.30_40@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10718.59050750602, + "kind": "calibration_drift", + "ledger_value": 11683.0, + "name": "ons.age.30_40@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9725.608452672706, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.30_40@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10106.873186965935, + "kind": "calibration_drift", + "ledger_value": 11240.0, + "name": "ons.age.30_40@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12663.605683473135, + "kind": "calibration_drift", + "ledger_value": 13247.0, + "name": "ons.age.30_40@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14909.59354963967, + "kind": "calibration_drift", + "ledger_value": 19304.0, + "name": "ons.age.30_40@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13185.339677123871, + "kind": "calibration_drift", + "ledger_value": 14458.0, + "name": "ons.age.30_40@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13277.95803848517, + "kind": "calibration_drift", + "ledger_value": 15168.0, + "name": "ons.age.30_40@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13138.029456758613, + "kind": "calibration_drift", + "ledger_value": 13748.0, + "name": "ons.age.30_40@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13950.489044723947, + "kind": "calibration_drift", + "ledger_value": 15977.0, + "name": "ons.age.30_40@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11878.465109560706, + "kind": "calibration_drift", + "ledger_value": 12970.0, + "name": "ons.age.30_40@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11578.646327175073, + "kind": "calibration_drift", + "ledger_value": 12680.0, + "name": "ons.age.30_40@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12617.025480440183, + "kind": "calibration_drift", + "ledger_value": 13603.0, + "name": "ons.age.30_40@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7194.664531260511, + "kind": "calibration_drift", + "ledger_value": 7288.0, + "name": "ons.age.30_40@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10202.688457163047, + "kind": "calibration_drift", + "ledger_value": 11029.0, + "name": "ons.age.40_50@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16231.770718740867, + "kind": "calibration_drift", + "ledger_value": 17424.0, + "name": "ons.age.40_50@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14439.47220344996, + "kind": "calibration_drift", + "ledger_value": 14986.0, + "name": "ons.age.40_50@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24043.43187242472, + "kind": "calibration_drift", + "ledger_value": 25532.0, + "name": "ons.age.40_50@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13129.26699812884, + "kind": "calibration_drift", + "ledger_value": 13775.0, + "name": "ons.age.40_50@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15801.191411650914, + "kind": "calibration_drift", + "ledger_value": 16710.0, + "name": "ons.age.40_50@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26934.047807606476, + "kind": "calibration_drift", + "ledger_value": 28388.0, + "name": "ons.age.40_50@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19775.545331946207, + "kind": "calibration_drift", + "ledger_value": 21090.0, + "name": "ons.age.40_50@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15388.107426293736, + "kind": "calibration_drift", + "ledger_value": 16180.0, + "name": "ons.age.40_50@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31544.06508419258, + "kind": "calibration_drift", + "ledger_value": 33314.0, + "name": "ons.age.40_50@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37582.86696895528, + "kind": "calibration_drift", + "ledger_value": 39372.0, + "name": "ons.age.40_50@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17109.452692335057, + "kind": "calibration_drift", + "ledger_value": 17982.0, + "name": "ons.age.40_50@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18739.433500438558, + "kind": "calibration_drift", + "ledger_value": 19729.0, + "name": "ons.age.40_50@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23090.908800306992, + "kind": "calibration_drift", + "ledger_value": 23847.0, + "name": "ons.age.40_50@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32297.335881020375, + "kind": "calibration_drift", + "ledger_value": 34569.0, + "name": "ons.age.40_50@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47428.84525523342, + "kind": "calibration_drift", + "ledger_value": 49925.0, + "name": "ons.age.40_50@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4577.942520076017, + "kind": "calibration_drift", + "ledger_value": 4733.0, + "name": "ons.age.40_50@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35086.86773507943, + "kind": "calibration_drift", + "ledger_value": 36985.0, + "name": "ons.age.40_50@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20150.722786882376, + "kind": "calibration_drift", + "ledger_value": 21276.0, + "name": "ons.age.40_50@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22689.488362771663, + "kind": "calibration_drift", + "ledger_value": 24248.0, + "name": "ons.age.40_50@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30666.383110598388, + "kind": "calibration_drift", + "ledger_value": 32674.0, + "name": "ons.age.40_50@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21450.236406700133, + "kind": "calibration_drift", + "ledger_value": 22335.0, + "name": "ons.age.40_50@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57438.11321101746, + "kind": "calibration_drift", + "ledger_value": 60805.0, + "name": "ons.age.40_50@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27105.113175660274, + "kind": "calibration_drift", + "ledger_value": 28578.0, + "name": "ons.age.40_50@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35859.57777827698, + "kind": "calibration_drift", + "ledger_value": 38209.0, + "name": "ons.age.40_50@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30886.046594576557, + "kind": "calibration_drift", + "ledger_value": 32490.0, + "name": "ons.age.40_50@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14744.668371455027, + "kind": "calibration_drift", + "ledger_value": 15371.0, + "name": "ons.age.40_50@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31915.354689854797, + "kind": "calibration_drift", + "ledger_value": 33833.0, + "name": "ons.age.40_50@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29371.729302373067, + "kind": "calibration_drift", + "ledger_value": 31551.0, + "name": "ons.age.40_50@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30431.168229524417, + "kind": "calibration_drift", + "ledger_value": 32507.0, + "name": "ons.age.40_50@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23854.871182638148, + "kind": "calibration_drift", + "ledger_value": 25013.0, + "name": "ons.age.40_50@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24020.10477678102, + "kind": "calibration_drift", + "ledger_value": 25817.0, + "name": "ons.age.40_50@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36511.764493982075, + "kind": "calibration_drift", + "ledger_value": 38869.0, + "name": "ons.age.40_50@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18029.9010079427, + "kind": "calibration_drift", + "ledger_value": 19085.0, + "name": "ons.age.40_50@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20786.386143173186, + "kind": "calibration_drift", + "ledger_value": 21686.0, + "name": "ons.age.40_50@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24316.5532839197, + "kind": "calibration_drift", + "ledger_value": 25794.0, + "name": "ons.age.40_50@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25297.263263273566, + "kind": "calibration_drift", + "ledger_value": 27014.0, + "name": "ons.age.40_50@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22002.31100360102, + "kind": "calibration_drift", + "ledger_value": 23117.0, + "name": "ons.age.40_50@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27585.262560993087, + "kind": "calibration_drift", + "ledger_value": 29272.0, + "name": "ons.age.40_50@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43792.73422177177, + "kind": "calibration_drift", + "ledger_value": 46635.0, + "name": "ons.age.40_50@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36643.951369296374, + "kind": "calibration_drift", + "ledger_value": 37914.0, + "name": "ons.age.40_50@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24619.805527287794, + "kind": "calibration_drift", + "ledger_value": 26394.0, + "name": "ons.age.40_50@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31063.915698859768, + "kind": "calibration_drift", + "ledger_value": 32758.0, + "name": "ons.age.40_50@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14114.836789075141, + "kind": "calibration_drift", + "ledger_value": 14661.0, + "name": "ons.age.40_50@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58189.440083208276, + "kind": "calibration_drift", + "ledger_value": 60881.0, + "name": "ons.age.40_50@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49209.48022270248, + "kind": "calibration_drift", + "ledger_value": 51762.0, + "name": "ons.age.40_50@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42541.818717878385, + "kind": "calibration_drift", + "ledger_value": 44755.0, + "name": "ons.age.40_50@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34201.41006293734, + "kind": "calibration_drift", + "ledger_value": 35407.0, + "name": "ons.age.40_50@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 63225.176855291895, + "kind": "calibration_drift", + "ledger_value": 65692.0, + "name": "ons.age.40_50@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 262.4298259916188, + "kind": "calibration_drift", + "ledger_value": 288.0, + "name": "ons.age.40_50@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 59488.95370302603, + "kind": "calibration_drift", + "ledger_value": 62150.0, + "name": "ons.age.40_50@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25284.627753133227, + "kind": "calibration_drift", + "ledger_value": 27019.0, + "name": "ons.age.40_50@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39219.65151328818, + "kind": "calibration_drift", + "ledger_value": 42085.0, + "name": "ons.age.40_50@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35483.42836102233, + "kind": "calibration_drift", + "ledger_value": 36895.0, + "name": "ons.age.40_50@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49967.61083112271, + "kind": "calibration_drift", + "ledger_value": 52493.0, + "name": "ons.age.40_50@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38126.19390498978, + "kind": "calibration_drift", + "ledger_value": 39853.0, + "name": "ons.age.40_50@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 76312.64947372577, + "kind": "calibration_drift", + "ledger_value": 80863.0, + "name": "ons.age.40_50@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46423.836217917364, + "kind": "calibration_drift", + "ledger_value": 49460.0, + "name": "ons.age.40_50@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 56052.09494485431, + "kind": "calibration_drift", + "ledger_value": 59372.0, + "name": "ons.age.40_50@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30029.74779198909, + "kind": "calibration_drift", + "ledger_value": 31326.0, + "name": "ons.age.40_50@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24190.198182516328, + "kind": "calibration_drift", + "ledger_value": 24991.0, + "name": "ons.age.40_50@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 67311.30644221324, + "kind": "calibration_drift", + "ledger_value": 69931.0, + "name": "ons.age.40_50@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 62662.41067288764, + "kind": "calibration_drift", + "ledger_value": 65389.0, + "name": "ons.age.40_50@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16972.406005428325, + "kind": "calibration_drift", + "ledger_value": 17798.0, + "name": "ons.age.40_50@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11981.37949999513, + "kind": "calibration_drift", + "ledger_value": 12587.0, + "name": "ons.age.40_50@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11485.678717566516, + "kind": "calibration_drift", + "ledger_value": 12151.0, + "name": "ons.age.40_50@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23359.170400209536, + "kind": "calibration_drift", + "ledger_value": 24585.0, + "name": "ons.age.40_50@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23739.20766673814, + "kind": "calibration_drift", + "ledger_value": 25232.0, + "name": "ons.age.40_50@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14694.126330893678, + "kind": "calibration_drift", + "ledger_value": 15241.0, + "name": "ons.age.40_50@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9172.40839956632, + "kind": "calibration_drift", + "ledger_value": 9636.0, + "name": "ons.age.40_50@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12172.856076737162, + "kind": "calibration_drift", + "ledger_value": 12619.0, + "name": "ons.age.40_50@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7381.081846593901, + "kind": "calibration_drift", + "ledger_value": 7674.0, + "name": "ons.age.40_50@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13301.304328501123, + "kind": "calibration_drift", + "ledger_value": 13648.0, + "name": "ons.age.40_50@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10399.996807816004, + "kind": "calibration_drift", + "ledger_value": 10777.0, + "name": "ons.age.40_50@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11489.566566840465, + "kind": "calibration_drift", + "ledger_value": 12022.0, + "name": "ons.age.40_50@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13958.350855798659, + "kind": "calibration_drift", + "ledger_value": 14773.0, + "name": "ons.age.40_50@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16123.882901388757, + "kind": "calibration_drift", + "ledger_value": 16863.0, + "name": "ons.age.40_50@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14950.724382974371, + "kind": "calibration_drift", + "ledger_value": 15578.0, + "name": "ons.age.40_50@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9406.651318321803, + "kind": "calibration_drift", + "ledger_value": 9988.0, + "name": "ons.age.40_50@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10894.725627926131, + "kind": "calibration_drift", + "ledger_value": 11172.0, + "name": "ons.age.40_50@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9595.212008108374, + "kind": "calibration_drift", + "ledger_value": 10221.0, + "name": "ons.age.40_50@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14623.173081644092, + "kind": "calibration_drift", + "ledger_value": 15368.0, + "name": "ons.age.40_50@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6853.306307655201, + "kind": "calibration_drift", + "ledger_value": 6991.0, + "name": "ons.age.40_50@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6024.222449985383, + "kind": "calibration_drift", + "ledger_value": 6131.0, + "name": "ons.age.40_50@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11878.351494235458, + "kind": "calibration_drift", + "ledger_value": 12418.0, + "name": "ons.age.40_50@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10860.706946779068, + "kind": "calibration_drift", + "ledger_value": 11434.0, + "name": "ons.age.40_50@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11586.762798689213, + "kind": "calibration_drift", + "ledger_value": 12225.0, + "name": "ons.age.40_50@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8781.679547534355, + "kind": "calibration_drift", + "ledger_value": 9216.0, + "name": "ons.age.40_50@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17591.546002304847, + "kind": "calibration_drift", + "ledger_value": 18211.0, + "name": "ons.age.40_50@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23531.20773058182, + "kind": "calibration_drift", + "ledger_value": 24780.0, + "name": "ons.age.40_50@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19161.26514666212, + "kind": "calibration_drift", + "ledger_value": 20171.0, + "name": "ons.age.40_50@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9791.548396442844, + "kind": "calibration_drift", + "ledger_value": 10387.0, + "name": "ons.age.40_50@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9714.763373282332, + "kind": "calibration_drift", + "ledger_value": 10091.0, + "name": "ons.age.40_50@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24163.955199917167, + "kind": "calibration_drift", + "ledger_value": 25409.0, + "name": "ons.age.40_50@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24890.011051827314, + "kind": "calibration_drift", + "ledger_value": 26143.0, + "name": "ons.age.40_50@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17311.620854580455, + "kind": "calibration_drift", + "ledger_value": 18417.0, + "name": "ons.age.40_50@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12495.547566475005, + "kind": "calibration_drift", + "ledger_value": 13684.0, + "name": "ons.age.40_50@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7434.539774110712, + "kind": "calibration_drift", + "ledger_value": 7576.0, + "name": "ons.age.40_50@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10312.520199152132, + "kind": "calibration_drift", + "ledger_value": 10783.0, + "name": "ons.age.40_50@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14689.26651930124, + "kind": "calibration_drift", + "ledger_value": 15424.0, + "name": "ons.age.40_50@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11944.444931892605, + "kind": "calibration_drift", + "ledger_value": 12377.0, + "name": "ons.age.40_50@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14951.69634529286, + "kind": "calibration_drift", + "ledger_value": 15706.0, + "name": "ons.age.40_50@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10398.052883179029, + "kind": "calibration_drift", + "ledger_value": 10695.0, + "name": "ons.age.40_50@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9178.240173477247, + "kind": "calibration_drift", + "ledger_value": 9586.0, + "name": "ons.age.40_50@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16496.14446936946, + "kind": "calibration_drift", + "ledger_value": 17699.0, + "name": "ons.age.40_50@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14957.528119203784, + "kind": "calibration_drift", + "ledger_value": 15412.0, + "name": "ons.age.40_50@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11782.127224705197, + "kind": "calibration_drift", + "ledger_value": 12603.0, + "name": "ons.age.40_50@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25055.244645970182, + "kind": "calibration_drift", + "ledger_value": 26192.0, + "name": "ons.age.40_50@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15300.630817629864, + "kind": "calibration_drift", + "ledger_value": 16014.0, + "name": "ons.age.40_50@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17945.34028623429, + "kind": "calibration_drift", + "ledger_value": 18816.0, + "name": "ons.age.40_50@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12896.968004010332, + "kind": "calibration_drift", + "ledger_value": 13416.0, + "name": "ons.age.40_50@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9207.39904303187, + "kind": "calibration_drift", + "ledger_value": 9502.0, + "name": "ons.age.40_50@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13480.14539510282, + "kind": "calibration_drift", + "ledger_value": 13972.0, + "name": "ons.age.40_50@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13128.295035810352, + "kind": "calibration_drift", + "ledger_value": 13864.0, + "name": "ons.age.40_50@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18152.368260072122, + "kind": "calibration_drift", + "ledger_value": 18517.0, + "name": "ons.age.40_50@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13459.734186414582, + "kind": "calibration_drift", + "ledger_value": 14267.0, + "name": "ons.age.40_50@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16679.845347563594, + "kind": "calibration_drift", + "ledger_value": 17319.0, + "name": "ons.age.40_50@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15816.742808746714, + "kind": "calibration_drift", + "ledger_value": 16853.0, + "name": "ons.age.40_50@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12968.893215578406, + "kind": "calibration_drift", + "ledger_value": 13908.0, + "name": "ons.age.40_50@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21324.853267615246, + "kind": "calibration_drift", + "ledger_value": 22631.0, + "name": "ons.age.40_50@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15100.406580021443, + "kind": "calibration_drift", + "ledger_value": 16068.0, + "name": "ons.age.40_50@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18286.499060023394, + "kind": "calibration_drift", + "ledger_value": 18769.0, + "name": "ons.age.40_50@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13739.659334138976, + "kind": "calibration_drift", + "ledger_value": 14325.0, + "name": "ons.age.40_50@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15647.621365329893, + "kind": "calibration_drift", + "ledger_value": 16668.0, + "name": "ons.age.40_50@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16599.172475129133, + "kind": "calibration_drift", + "ledger_value": 17652.0, + "name": "ons.age.40_50@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17005.4527242569, + "kind": "calibration_drift", + "ledger_value": 18162.0, + "name": "ons.age.40_50@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17289.26572125524, + "kind": "calibration_drift", + "ledger_value": 18725.0, + "name": "ons.age.40_50@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12724.93067363805, + "kind": "calibration_drift", + "ledger_value": 13359.0, + "name": "ons.age.40_50@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13549.15471971543, + "kind": "calibration_drift", + "ledger_value": 14516.0, + "name": "ons.age.40_50@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23432.067574096098, + "kind": "calibration_drift", + "ledger_value": 25181.0, + "name": "ons.age.40_50@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15426.013956714749, + "kind": "calibration_drift", + "ledger_value": 16033.0, + "name": "ons.age.40_50@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12428.482166499369, + "kind": "calibration_drift", + "ledger_value": 12891.0, + "name": "ons.age.40_50@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18761.78863376377, + "kind": "calibration_drift", + "ledger_value": 19788.0, + "name": "ons.age.40_50@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16081.116559375308, + "kind": "calibration_drift", + "ledger_value": 16786.0, + "name": "ons.age.40_50@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17550.72358492837, + "kind": "calibration_drift", + "ledger_value": 18319.0, + "name": "ons.age.40_50@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15660.25687547023, + "kind": "calibration_drift", + "ledger_value": 16699.0, + "name": "ons.age.40_50@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11149.37975536985, + "kind": "calibration_drift", + "ledger_value": 11935.0, + "name": "ons.age.40_50@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14882.687020680249, + "kind": "calibration_drift", + "ledger_value": 15599.0, + "name": "ons.age.40_50@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8893.455214160414, + "kind": "calibration_drift", + "ledger_value": 9361.0, + "name": "ons.age.40_50@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9477.604567571389, + "kind": "calibration_drift", + "ledger_value": 9980.0, + "name": "ons.age.40_50@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15115.957977117243, + "kind": "calibration_drift", + "ledger_value": 16081.0, + "name": "ons.age.40_50@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11570.239439274927, + "kind": "calibration_drift", + "ledger_value": 12333.0, + "name": "ons.age.40_50@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18242.760755691455, + "kind": "calibration_drift", + "ledger_value": 19662.0, + "name": "ons.age.40_50@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7059.3623191745455, + "kind": "calibration_drift", + "ledger_value": 7403.0, + "name": "ons.age.40_50@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8740.857130157881, + "kind": "calibration_drift", + "ledger_value": 9048.0, + "name": "ons.age.40_50@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13283.80900676835, + "kind": "calibration_drift", + "ledger_value": 13976.0, + "name": "ons.age.40_50@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12553.865305584253, + "kind": "calibration_drift", + "ledger_value": 13134.0, + "name": "ons.age.40_50@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11581.902987096777, + "kind": "calibration_drift", + "ledger_value": 12057.0, + "name": "ons.age.40_50@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12678.276482350651, + "kind": "calibration_drift", + "ledger_value": 13768.0, + "name": "ons.age.40_50@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21174.199108249686, + "kind": "calibration_drift", + "ledger_value": 22230.0, + "name": "ons.age.40_50@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12364.332653479196, + "kind": "calibration_drift", + "ledger_value": 12978.0, + "name": "ons.age.40_50@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13630.799554468378, + "kind": "calibration_drift", + "ledger_value": 14255.0, + "name": "ons.age.40_50@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5916.334632633273, + "kind": "calibration_drift", + "ledger_value": 6187.0, + "name": "ons.age.40_50@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13172.033340142289, + "kind": "calibration_drift", + "ledger_value": 13702.0, + "name": "ons.age.40_50@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7173.0819104375805, + "kind": "calibration_drift", + "ledger_value": 7652.0, + "name": "ons.age.40_50@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8534.801118638536, + "kind": "calibration_drift", + "ledger_value": 8969.0, + "name": "ons.age.40_50@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13009.71563295488, + "kind": "calibration_drift", + "ledger_value": 13229.0, + "name": "ons.age.40_50@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11009.417181507653, + "kind": "calibration_drift", + "ledger_value": 11803.0, + "name": "ons.age.40_50@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13374.201502387685, + "kind": "calibration_drift", + "ledger_value": 13972.0, + "name": "ons.age.40_50@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10985.118123545466, + "kind": "calibration_drift", + "ledger_value": 11566.0, + "name": "ons.age.40_50@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16988.92936484261, + "kind": "calibration_drift", + "ledger_value": 17701.0, + "name": "ons.age.40_50@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10644.931312074848, + "kind": "calibration_drift", + "ledger_value": 10946.0, + "name": "ons.age.40_50@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15710.79891603158, + "kind": "calibration_drift", + "ledger_value": 16145.0, + "name": "ons.age.40_50@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15542.649434933246, + "kind": "calibration_drift", + "ledger_value": 16270.0, + "name": "ons.age.40_50@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10597.305158468962, + "kind": "calibration_drift", + "ledger_value": 11053.0, + "name": "ons.age.40_50@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16126.798788344218, + "kind": "calibration_drift", + "ledger_value": 16774.0, + "name": "ons.age.40_50@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9446.501773379789, + "kind": "calibration_drift", + "ledger_value": 9666.0, + "name": "ons.age.40_50@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16978.237779339248, + "kind": "calibration_drift", + "ledger_value": 17838.0, + "name": "ons.age.40_50@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17296.069457484653, + "kind": "calibration_drift", + "ledger_value": 18155.0, + "name": "ons.age.40_50@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14864.219736628986, + "kind": "calibration_drift", + "ledger_value": 15402.0, + "name": "ons.age.40_50@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13713.416351539814, + "kind": "calibration_drift", + "ledger_value": 14426.0, + "name": "ons.age.40_50@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12676.332557713677, + "kind": "calibration_drift", + "ledger_value": 13494.0, + "name": "ons.age.40_50@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14166.350791954977, + "kind": "calibration_drift", + "ledger_value": 14967.0, + "name": "ons.age.40_50@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13100.108128574215, + "kind": "calibration_drift", + "ledger_value": 14012.0, + "name": "ons.age.40_50@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14073.04240938018, + "kind": "calibration_drift", + "ledger_value": 14853.0, + "name": "ons.age.40_50@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15648.593327648381, + "kind": "calibration_drift", + "ledger_value": 16588.0, + "name": "ons.age.40_50@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21620.32981243544, + "kind": "calibration_drift", + "ledger_value": 23259.0, + "name": "ons.age.40_50@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18583.91952948056, + "kind": "calibration_drift", + "ledger_value": 19333.0, + "name": "ons.age.40_50@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19365.377233544492, + "kind": "calibration_drift", + "ledger_value": 20609.0, + "name": "ons.age.40_50@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18556.70458456291, + "kind": "calibration_drift", + "ledger_value": 19761.0, + "name": "ons.age.40_50@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14167.322754273466, + "kind": "calibration_drift", + "ledger_value": 14791.0, + "name": "ons.age.40_50@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11513.865624802653, + "kind": "calibration_drift", + "ledger_value": 12014.0, + "name": "ons.age.40_50@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15038.200991638245, + "kind": "calibration_drift", + "ledger_value": 15954.0, + "name": "ons.age.40_50@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12684.108256261576, + "kind": "calibration_drift", + "ledger_value": 13080.0, + "name": "ons.age.40_50@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14091.509693431442, + "kind": "calibration_drift", + "ledger_value": 14505.0, + "name": "ons.age.40_50@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12340.033595517009, + "kind": "calibration_drift", + "ledger_value": 12757.0, + "name": "ons.age.40_50@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16261.901550613979, + "kind": "calibration_drift", + "ledger_value": 16779.0, + "name": "ons.age.40_50@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10154.090341238672, + "kind": "calibration_drift", + "ledger_value": 10477.0, + "name": "ons.age.40_50@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9356.109277760454, + "kind": "calibration_drift", + "ledger_value": 9887.0, + "name": "ons.age.40_50@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10495.249115027776, + "kind": "calibration_drift", + "ledger_value": 10841.0, + "name": "ons.age.40_50@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17758.723521084692, + "kind": "calibration_drift", + "ledger_value": 18646.0, + "name": "ons.age.40_50@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11671.323520397624, + "kind": "calibration_drift", + "ledger_value": 12343.0, + "name": "ons.age.40_50@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21993.56334273463, + "kind": "calibration_drift", + "ledger_value": 22712.0, + "name": "ons.age.40_50@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12152.444868048926, + "kind": "calibration_drift", + "ledger_value": 12866.0, + "name": "ons.age.40_50@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18414.79808606374, + "kind": "calibration_drift", + "ledger_value": 19350.0, + "name": "ons.age.40_50@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11055.099410476563, + "kind": "calibration_drift", + "ledger_value": 11413.0, + "name": "ons.age.40_50@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21846.797032643022, + "kind": "calibration_drift", + "ledger_value": 23037.0, + "name": "ons.age.40_50@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11352.519879933732, + "kind": "calibration_drift", + "ledger_value": 11962.0, + "name": "ons.age.40_50@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14319.920838275999, + "kind": "calibration_drift", + "ledger_value": 15458.0, + "name": "ons.age.40_50@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12341.005557835497, + "kind": "calibration_drift", + "ledger_value": 13152.0, + "name": "ons.age.40_50@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11303.921764009358, + "kind": "calibration_drift", + "ledger_value": 11786.0, + "name": "ons.age.40_50@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17427.28437048046, + "kind": "calibration_drift", + "ledger_value": 18287.0, + "name": "ons.age.40_50@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15514.46252769711, + "kind": "calibration_drift", + "ledger_value": 16078.0, + "name": "ons.age.40_50@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7303.324861114903, + "kind": "calibration_drift", + "ledger_value": 7642.0, + "name": "ons.age.40_50@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16311.47162885684, + "kind": "calibration_drift", + "ledger_value": 17501.0, + "name": "ons.age.40_50@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15558.200832029044, + "kind": "calibration_drift", + "ledger_value": 16927.0, + "name": "ons.age.40_50@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16348.406196959364, + "kind": "calibration_drift", + "ledger_value": 17407.0, + "name": "ons.age.40_50@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18762.76059608226, + "kind": "calibration_drift", + "ledger_value": 19957.0, + "name": "ons.age.40_50@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8208.221779626743, + "kind": "calibration_drift", + "ledger_value": 8449.0, + "name": "ons.age.40_50@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17398.12550092584, + "kind": "calibration_drift", + "ledger_value": 18423.0, + "name": "ons.age.40_50@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13501.528566109544, + "kind": "calibration_drift", + "ledger_value": 14039.0, + "name": "ons.age.40_50@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17094.873257557745, + "kind": "calibration_drift", + "ledger_value": 18470.0, + "name": "ons.age.40_50@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18068.779500682198, + "kind": "calibration_drift", + "ledger_value": 18876.0, + "name": "ons.age.40_50@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21300.55420965306, + "kind": "calibration_drift", + "ledger_value": 22201.0, + "name": "ons.age.40_50@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14091.509693431442, + "kind": "calibration_drift", + "ledger_value": 14832.0, + "name": "ons.age.40_50@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12134.949546316151, + "kind": "calibration_drift", + "ledger_value": 12460.0, + "name": "ons.age.40_50@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8567.84783746711, + "kind": "calibration_drift", + "ledger_value": 8922.0, + "name": "ons.age.40_50@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11143.547981458925, + "kind": "calibration_drift", + "ledger_value": 11726.0, + "name": "ons.age.40_50@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12628.70640410779, + "kind": "calibration_drift", + "ledger_value": 13278.0, + "name": "ons.age.40_50@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15147.060771308843, + "kind": "calibration_drift", + "ledger_value": 15781.0, + "name": "ons.age.40_50@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11231.024590122797, + "kind": "calibration_drift", + "ledger_value": 11645.0, + "name": "ons.age.40_50@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22290.9838121918, + "kind": "calibration_drift", + "ledger_value": 23198.0, + "name": "ons.age.40_50@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15565.004568258457, + "kind": "calibration_drift", + "ledger_value": 16728.0, + "name": "ons.age.40_50@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20218.760149176498, + "kind": "calibration_drift", + "ledger_value": 21179.0, + "name": "ons.age.40_50@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11336.968482837932, + "kind": "calibration_drift", + "ledger_value": 12092.0, + "name": "ons.age.40_50@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25582.048222590394, + "kind": "calibration_drift", + "ledger_value": 26341.0, + "name": "ons.age.40_50@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21069.22717785304, + "kind": "calibration_drift", + "ledger_value": 22062.0, + "name": "ons.age.40_50@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36236.69915785012, + "kind": "calibration_drift", + "ledger_value": 38522.0, + "name": "ons.age.40_50@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23940.40386666505, + "kind": "calibration_drift", + "ledger_value": 25266.0, + "name": "ons.age.40_50@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66873.92339889388, + "kind": "calibration_drift", + "ledger_value": 70698.0, + "name": "ons.age.40_50@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29411.579757431056, + "kind": "calibration_drift", + "ledger_value": 31256.0, + "name": "ons.age.40_50@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27949.74843042589, + "kind": "calibration_drift", + "ledger_value": 29878.0, + "name": "ons.age.40_50@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31800.663136273273, + "kind": "calibration_drift", + "ledger_value": 34469.0, + "name": "ons.age.40_50@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38009.55842677128, + "kind": "calibration_drift", + "ledger_value": 40244.0, + "name": "ons.age.40_50@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28273.41188248222, + "kind": "calibration_drift", + "ledger_value": 29849.0, + "name": "ons.age.40_50@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33323.72808934315, + "kind": "calibration_drift", + "ledger_value": 35264.0, + "name": "ons.age.40_50@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40008.88491590002, + "kind": "calibration_drift", + "ledger_value": 42463.0, + "name": "ons.age.40_50@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17411.732973384664, + "kind": "calibration_drift", + "ledger_value": 18696.0, + "name": "ons.age.40_50@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53872.95542680539, + "kind": "calibration_drift", + "ledger_value": 56868.0, + "name": "ons.age.40_50@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21668.92792835981, + "kind": "calibration_drift", + "ledger_value": 22780.0, + "name": "ons.age.40_50@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31563.50433056233, + "kind": "calibration_drift", + "ledger_value": 33134.0, + "name": "ons.age.40_50@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36910.269044561945, + "kind": "calibration_drift", + "ledger_value": 38769.0, + "name": "ons.age.40_50@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27906.010126093952, + "kind": "calibration_drift", + "ledger_value": 29569.0, + "name": "ons.age.40_50@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36468.998151968626, + "kind": "calibration_drift", + "ledger_value": 38621.0, + "name": "ons.age.40_50@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30880.214820665635, + "kind": "calibration_drift", + "ledger_value": 32744.0, + "name": "ons.age.40_50@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 63188.24228718937, + "kind": "calibration_drift", + "ledger_value": 66662.0, + "name": "ons.age.40_50@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33788.32607758017, + "kind": "calibration_drift", + "ledger_value": 35478.0, + "name": "ons.age.40_50@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26764.926364189654, + "kind": "calibration_drift", + "ledger_value": 28157.0, + "name": "ons.age.40_50@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16790.649051871165, + "kind": "calibration_drift", + "ledger_value": 17619.0, + "name": "ons.age.40_50@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31870.644423204372, + "kind": "calibration_drift", + "ledger_value": 33808.0, + "name": "ons.age.40_50@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 140707.09699815811, + "kind": "calibration_drift", + "ledger_value": 148358.0, + "name": "ons.age.40_50@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42034.45438762792, + "kind": "calibration_drift", + "ledger_value": 45036.0, + "name": "ons.age.40_50@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37677.14731384856, + "kind": "calibration_drift", + "ledger_value": 39612.0, + "name": "ons.age.40_50@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44431.31346501804, + "kind": "calibration_drift", + "ledger_value": 46476.0, + "name": "ons.age.40_50@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25776.440686287893, + "kind": "calibration_drift", + "ledger_value": 27216.0, + "name": "ons.age.40_50@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34157.67175860541, + "kind": "calibration_drift", + "ledger_value": 36469.0, + "name": "ons.age.40_50@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34069.22318762304, + "kind": "calibration_drift", + "ledger_value": 36169.0, + "name": "ons.age.40_50@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 69719.82906742522, + "kind": "calibration_drift", + "ledger_value": 72637.0, + "name": "ons.age.40_50@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25248.66514734919, + "kind": "calibration_drift", + "ledger_value": 26029.0, + "name": "ons.age.40_50@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53788.39470509698, + "kind": "calibration_drift", + "ledger_value": 56055.0, + "name": "ons.age.40_50@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 98910.77337855962, + "kind": "calibration_drift", + "ledger_value": 104211.0, + "name": "ons.age.40_50@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42187.05247163046, + "kind": "calibration_drift", + "ledger_value": 44673.0, + "name": "ons.age.40_50@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23117.151782906156, + "kind": "calibration_drift", + "ledger_value": 24525.0, + "name": "ons.age.40_50@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 1650.392016791736, + "kind": "calibration_drift", + "ledger_value": 1870.0, + "name": "ons.age.40_50@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31776.364078311086, + "kind": "calibration_drift", + "ledger_value": 34694.0, + "name": "ons.age.40_50@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 56887.01057643506, + "kind": "calibration_drift", + "ledger_value": 60552.0, + "name": "ons.age.40_50@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33523.95232695157, + "kind": "calibration_drift", + "ledger_value": 35902.0, + "name": "ons.age.40_50@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46315.948400565256, + "kind": "calibration_drift", + "ledger_value": 48414.0, + "name": "ons.age.40_50@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48020.77030719229, + "kind": "calibration_drift", + "ledger_value": 50711.0, + "name": "ons.age.40_50@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26605.52454395771, + "kind": "calibration_drift", + "ledger_value": 27129.0, + "name": "ons.age.40_50@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54418.226287476864, + "kind": "calibration_drift", + "ledger_value": 58342.0, + "name": "ons.age.40_50@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54634.97388449957, + "kind": "calibration_drift", + "ledger_value": 57536.0, + "name": "ons.age.40_50@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44975.61236337102, + "kind": "calibration_drift", + "ledger_value": 47128.0, + "name": "ons.age.40_50@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42036.39831226489, + "kind": "calibration_drift", + "ledger_value": 44854.0, + "name": "ons.age.40_50@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32852.326364876724, + "kind": "calibration_drift", + "ledger_value": 34062.0, + "name": "ons.age.40_50@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22936.366791667482, + "kind": "calibration_drift", + "ledger_value": 24197.0, + "name": "ons.age.40_50@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37895.83883550824, + "kind": "calibration_drift", + "ledger_value": 39937.0, + "name": "ons.age.40_50@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36567.16634613586, + "kind": "calibration_drift", + "ledger_value": 38603.0, + "name": "ons.age.40_50@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34327.765164340715, + "kind": "calibration_drift", + "ledger_value": 37606.0, + "name": "ons.age.40_50@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45025.182441613884, + "kind": "calibration_drift", + "ledger_value": 47247.0, + "name": "ons.age.40_50@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44668.472270728984, + "kind": "calibration_drift", + "ledger_value": 46534.0, + "name": "ons.age.40_50@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25941.67428043076, + "kind": "calibration_drift", + "ledger_value": 26929.0, + "name": "ons.age.40_50@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18543.097112104086, + "kind": "calibration_drift", + "ledger_value": 18641.0, + "name": "ons.age.40_50@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25363.356700930715, + "kind": "calibration_drift", + "ledger_value": 26557.0, + "name": "ons.age.40_50@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39070.9412785596, + "kind": "calibration_drift", + "ledger_value": 40185.0, + "name": "ons.age.40_50@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42569.033662796035, + "kind": "calibration_drift", + "ledger_value": 44758.0, + "name": "ons.age.40_50@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32490.756382399384, + "kind": "calibration_drift", + "ledger_value": 34424.0, + "name": "ons.age.40_50@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48690.45234463016, + "kind": "calibration_drift", + "ledger_value": 51894.0, + "name": "ons.age.40_50@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45361.481403810554, + "kind": "calibration_drift", + "ledger_value": 47792.0, + "name": "ons.age.40_50@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30643.056014954687, + "kind": "calibration_drift", + "ledger_value": 31491.0, + "name": "ons.age.40_50@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40108.997034704225, + "kind": "calibration_drift", + "ledger_value": 41408.0, + "name": "ons.age.40_50@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33071.01788653641, + "kind": "calibration_drift", + "ledger_value": 34823.0, + "name": "ons.age.40_50@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41668.02459355814, + "kind": "calibration_drift", + "ledger_value": 43655.0, + "name": "ons.age.40_50@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41421.14616466232, + "kind": "calibration_drift", + "ledger_value": 44917.0, + "name": "ons.age.40_50@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42807.16443082546, + "kind": "calibration_drift", + "ledger_value": 44392.0, + "name": "ons.age.40_50@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26192.44055860053, + "kind": "calibration_drift", + "ledger_value": 26767.0, + "name": "ons.age.40_50@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15636.713271684514, + "kind": "calibration_drift", + "ledger_value": 16376.0, + "name": "ons.age.40_50@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11071.153725687653, + "kind": "calibration_drift", + "ledger_value": 10923.0, + "name": "ons.age.40_50@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15035.320189042699, + "kind": "calibration_drift", + "ledger_value": 15425.0, + "name": "ons.age.40_50@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11335.91146296207, + "kind": "calibration_drift", + "ledger_value": 10770.0, + "name": "ons.age.40_50@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11193.339741969747, + "kind": "calibration_drift", + "ledger_value": 10476.0, + "name": "ons.age.40_50@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11692.843750900178, + "kind": "calibration_drift", + "ledger_value": 11570.0, + "name": "ons.age.40_50@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13307.00298302878, + "kind": "calibration_drift", + "ledger_value": 14796.0, + "name": "ons.age.40_50@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11758.09378590884, + "kind": "calibration_drift", + "ledger_value": 13197.0, + "name": "ons.age.40_50@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15085.618344179395, + "kind": "calibration_drift", + "ledger_value": 16729.0, + "name": "ons.age.40_50@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12700.501146134473, + "kind": "calibration_drift", + "ledger_value": 13714.0, + "name": "ons.age.40_50@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18167.79526753597, + "kind": "calibration_drift", + "ledger_value": 21060.0, + "name": "ons.age.40_50@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12568.541432045007, + "kind": "calibration_drift", + "ledger_value": 12610.0, + "name": "ons.age.40_50@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12388.610712773838, + "kind": "calibration_drift", + "ledger_value": 12493.0, + "name": "ons.age.40_50@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10927.970532178619, + "kind": "calibration_drift", + "ledger_value": 10538.0, + "name": "ons.age.40_50@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13753.003146747304, + "kind": "calibration_drift", + "ledger_value": 14494.0, + "name": "ons.age.40_50@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15087.818063340024, + "kind": "calibration_drift", + "ledger_value": 16105.0, + "name": "ons.age.40_50@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12528.953517818167, + "kind": "calibration_drift", + "ledger_value": 12842.0, + "name": "ons.age.40_50@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10840.766661328165, + "kind": "calibration_drift", + "ledger_value": 11415.0, + "name": "ons.age.40_50@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14700.785547643993, + "kind": "calibration_drift", + "ledger_value": 14341.0, + "name": "ons.age.40_50@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12559.487693813757, + "kind": "calibration_drift", + "ledger_value": 13409.0, + "name": "ons.age.40_50@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16761.087799729135, + "kind": "calibration_drift", + "ledger_value": 17448.0, + "name": "ons.age.40_50@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14101.12825795283, + "kind": "calibration_drift", + "ledger_value": 15923.0, + "name": "ons.age.40_50@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14104.37300727536, + "kind": "calibration_drift", + "ledger_value": 13822.0, + "name": "ons.age.40_50@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17623.229679108164, + "kind": "calibration_drift", + "ledger_value": 16738.0, + "name": "ons.age.40_50@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10517.425911969185, + "kind": "calibration_drift", + "ledger_value": 9827.0, + "name": "ons.age.40_50@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9562.818688789244, + "kind": "calibration_drift", + "ledger_value": 8919.0, + "name": "ons.age.40_50@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13439.554444715059, + "kind": "calibration_drift", + "ledger_value": 14523.0, + "name": "ons.age.40_50@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12719.03270837469, + "kind": "calibration_drift", + "ledger_value": 14598.0, + "name": "ons.age.40_50@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12803.73151439863, + "kind": "calibration_drift", + "ledger_value": 13358.0, + "name": "ons.age.40_50@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13186.364775233505, + "kind": "calibration_drift", + "ledger_value": 13710.0, + "name": "ons.age.40_50@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13985.954450692981, + "kind": "calibration_drift", + "ledger_value": 15733.0, + "name": "ons.age.40_50@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14374.693171959829, + "kind": "calibration_drift", + "ledger_value": 16020.0, + "name": "ons.age.40_50@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13962.600145538734, + "kind": "calibration_drift", + "ledger_value": 15097.0, + "name": "ons.age.40_50@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17388.480418827923, + "kind": "calibration_drift", + "ledger_value": 19224.0, + "name": "ons.age.40_50@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12085.971266843393, + "kind": "calibration_drift", + "ledger_value": 13566.0, + "name": "ons.age.40_50@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14656.960361989059, + "kind": "calibration_drift", + "ledger_value": 16380.0, + "name": "ons.age.40_50@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11002.077056219596, + "kind": "calibration_drift", + "ledger_value": 12483.0, + "name": "ons.age.40_50@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12639.916054680692, + "kind": "calibration_drift", + "ledger_value": 14736.0, + "name": "ons.age.40_50@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10627.116888844215, + "kind": "calibration_drift", + "ledger_value": 10365.0, + "name": "ons.age.40_50@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13681.559486891989, + "kind": "calibration_drift", + "ledger_value": 15683.0, + "name": "ons.age.40_50@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12517.75065990576, + "kind": "calibration_drift", + "ledger_value": 15144.0, + "name": "ons.age.40_50@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10454.927503285708, + "kind": "calibration_drift", + "ledger_value": 10012.0, + "name": "ons.age.40_50@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12094.354357798256, + "kind": "calibration_drift", + "ledger_value": 12988.0, + "name": "ons.age.40_50@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11116.572047296837, + "kind": "calibration_drift", + "ledger_value": 11511.0, + "name": "ons.age.40_50@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12265.882261194667, + "kind": "calibration_drift", + "ledger_value": 11882.0, + "name": "ons.age.40_50@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11834.932211355108, + "kind": "calibration_drift", + "ledger_value": 11978.0, + "name": "ons.age.40_50@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12152.523146565047, + "kind": "calibration_drift", + "ledger_value": 11908.0, + "name": "ons.age.40_50@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13540.32906045244, + "kind": "calibration_drift", + "ledger_value": 14667.0, + "name": "ons.age.40_50@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14601.440988598912, + "kind": "calibration_drift", + "ledger_value": 16082.0, + "name": "ons.age.40_50@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11739.759472867563, + "kind": "calibration_drift", + "ledger_value": 12914.0, + "name": "ons.age.40_50@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11373.388810760276, + "kind": "calibration_drift", + "ledger_value": 12534.0, + "name": "ons.age.40_50@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12861.466354927761, + "kind": "calibration_drift", + "ledger_value": 12892.0, + "name": "ons.age.40_50@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14846.947204056989, + "kind": "calibration_drift", + "ledger_value": 16251.0, + "name": "ons.age.40_50@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12045.466143841491, + "kind": "calibration_drift", + "ledger_value": 13520.0, + "name": "ons.age.40_50@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14524.563113312857, + "kind": "calibration_drift", + "ledger_value": 15271.0, + "name": "ons.age.40_50@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14798.404176198366, + "kind": "calibration_drift", + "ledger_value": 16236.0, + "name": "ons.age.40_50@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13353.987742215792, + "kind": "calibration_drift", + "ledger_value": 14555.0, + "name": "ons.age.40_50@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15707.939957420995, + "kind": "calibration_drift", + "ledger_value": 16819.0, + "name": "ons.age.40_50@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13135.002462739863, + "kind": "calibration_drift", + "ledger_value": 13282.0, + "name": "ons.age.40_50@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17745.889093467707, + "kind": "calibration_drift", + "ledger_value": 18430.0, + "name": "ons.age.40_50@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16631.894655085984, + "kind": "calibration_drift", + "ledger_value": 18663.0, + "name": "ons.age.40_50@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18875.752229903992, + "kind": "calibration_drift", + "ledger_value": 21112.0, + "name": "ons.age.40_50@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12345.827361524205, + "kind": "calibration_drift", + "ledger_value": 12758.0, + "name": "ons.age.40_50@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10436.87920158289, + "kind": "calibration_drift", + "ledger_value": 11806.0, + "name": "ons.age.40_50@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10142.672158907038, + "kind": "calibration_drift", + "ledger_value": 9542.0, + "name": "ons.age.40_50@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10536.440734746802, + "kind": "calibration_drift", + "ledger_value": 10328.0, + "name": "ons.age.40_50@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11230.540940889437, + "kind": "calibration_drift", + "ledger_value": 11658.0, + "name": "ons.age.40_50@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13587.35326947924, + "kind": "calibration_drift", + "ledger_value": 13406.0, + "name": "ons.age.40_50@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9056.716694154338, + "kind": "calibration_drift", + "ledger_value": 9152.0, + "name": "ons.age.40_50@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12152.720395763985, + "kind": "calibration_drift", + "ledger_value": 15492.0, + "name": "ons.age.40_50@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11850.944958138338, + "kind": "calibration_drift", + "ledger_value": 13374.0, + "name": "ons.age.40_50@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12149.465783981508, + "kind": "calibration_drift", + "ledger_value": 14744.0, + "name": "ons.age.40_50@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11367.708033830864, + "kind": "calibration_drift", + "ledger_value": 13468.0, + "name": "ons.age.40_50@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11316.873926640335, + "kind": "calibration_drift", + "ledger_value": 10838.0, + "name": "ons.age.40_50@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14196.804181139283, + "kind": "calibration_drift", + "ledger_value": 14749.0, + "name": "ons.age.40_50@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12906.015086507889, + "kind": "calibration_drift", + "ledger_value": 12454.0, + "name": "ons.age.40_50@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13929.87650343493, + "kind": "calibration_drift", + "ledger_value": 14927.0, + "name": "ons.age.40_50@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12005.611943196085, + "kind": "calibration_drift", + "ledger_value": 11480.0, + "name": "ons.age.40_50@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14334.090889080233, + "kind": "calibration_drift", + "ledger_value": 15148.0, + "name": "ons.age.40_50@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12137.650556965127, + "kind": "calibration_drift", + "ledger_value": 13928.0, + "name": "ons.age.40_50@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13517.48760321543, + "kind": "calibration_drift", + "ledger_value": 14475.0, + "name": "ons.age.40_50@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12639.60045596239, + "kind": "calibration_drift", + "ledger_value": 13172.0, + "name": "ons.age.40_50@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12716.335773872848, + "kind": "calibration_drift", + "ledger_value": 13957.0, + "name": "ons.age.40_50@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12232.132923256391, + "kind": "calibration_drift", + "ledger_value": 12201.0, + "name": "ons.age.40_50@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13319.557894541178, + "kind": "calibration_drift", + "ledger_value": 12380.0, + "name": "ons.age.40_50@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11464.764502168266, + "kind": "calibration_drift", + "ledger_value": 12139.0, + "name": "ons.age.40_50@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11406.408326662484, + "kind": "calibration_drift", + "ledger_value": 14627.0, + "name": "ons.age.40_50@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12510.530442637366, + "kind": "calibration_drift", + "ledger_value": 12003.0, + "name": "ons.age.40_50@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11024.898788536711, + "kind": "calibration_drift", + "ledger_value": 12260.0, + "name": "ons.age.40_50@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11892.035854447635, + "kind": "calibration_drift", + "ledger_value": 12451.0, + "name": "ons.age.40_50@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15769.08720909175, + "kind": "calibration_drift", + "ledger_value": 17005.0, + "name": "ons.age.40_50@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10429.709193201494, + "kind": "calibration_drift", + "ledger_value": 10349.0, + "name": "ons.age.40_50@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10912.672462109678, + "kind": "calibration_drift", + "ledger_value": 10910.0, + "name": "ons.age.40_50@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11384.703688818558, + "kind": "calibration_drift", + "ledger_value": 11145.0, + "name": "ons.age.40_50@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13744.048033115521, + "kind": "calibration_drift", + "ledger_value": 14528.0, + "name": "ons.age.40_50@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12454.31442094006, + "kind": "calibration_drift", + "ledger_value": 13731.0, + "name": "ons.age.40_50@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14839.15586069894, + "kind": "calibration_drift", + "ledger_value": 15823.0, + "name": "ons.age.40_50@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18764.671243901295, + "kind": "calibration_drift", + "ledger_value": 14892.0, + "name": "ons.age.40_50@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12184.497241712883, + "kind": "calibration_drift", + "ledger_value": 13149.0, + "name": "ons.age.40_50@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13948.122054336689, + "kind": "calibration_drift", + "ledger_value": 14498.0, + "name": "ons.age.40_50@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11089.87795456966, + "kind": "calibration_drift", + "ledger_value": 11356.0, + "name": "ons.age.40_50@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11074.702716956423, + "kind": "calibration_drift", + "ledger_value": 11717.0, + "name": "ons.age.40_50@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11546.968105825643, + "kind": "calibration_drift", + "ledger_value": 11493.0, + "name": "ons.age.40_50@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11180.469231739047, + "kind": "calibration_drift", + "ledger_value": 11803.0, + "name": "ons.age.40_50@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14851.760084511074, + "kind": "calibration_drift", + "ledger_value": 15910.0, + "name": "ons.age.40_50@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12518.603891409142, + "kind": "calibration_drift", + "ledger_value": 11928.0, + "name": "ons.age.40_50@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16090.011655763738, + "kind": "calibration_drift", + "ledger_value": 16842.0, + "name": "ons.age.40_50@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13413.261126496634, + "kind": "calibration_drift", + "ledger_value": 13376.0, + "name": "ons.age.40_50@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9098.306687750397, + "kind": "calibration_drift", + "ledger_value": 8857.0, + "name": "ons.age.40_50@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22765.457120659972, + "kind": "calibration_drift", + "ledger_value": 15917.0, + "name": "ons.age.40_50@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11042.646335021554, + "kind": "calibration_drift", + "ledger_value": 11179.0, + "name": "ons.age.40_50@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9069.313106117008, + "kind": "calibration_drift", + "ledger_value": 9612.0, + "name": "ons.age.40_50@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13624.189557380896, + "kind": "calibration_drift", + "ledger_value": 11859.0, + "name": "ons.age.40_50@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14797.693102601008, + "kind": "calibration_drift", + "ledger_value": 16700.0, + "name": "ons.age.40_50@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12001.4302601786, + "kind": "calibration_drift", + "ledger_value": 11817.0, + "name": "ons.age.40_50@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10325.64051584185, + "kind": "calibration_drift", + "ledger_value": 11293.0, + "name": "ons.age.40_50@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14404.320001640304, + "kind": "calibration_drift", + "ledger_value": 15903.0, + "name": "ons.age.40_50@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14317.18516800948, + "kind": "calibration_drift", + "ledger_value": 16271.0, + "name": "ons.age.40_50@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13137.782895259941, + "kind": "calibration_drift", + "ledger_value": 13900.0, + "name": "ons.age.40_50@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12898.273055449576, + "kind": "calibration_drift", + "ledger_value": 14301.0, + "name": "ons.age.40_50@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12016.097984026355, + "kind": "calibration_drift", + "ledger_value": 12792.0, + "name": "ons.age.40_50@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16001.84126383849, + "kind": "calibration_drift", + "ledger_value": 18246.0, + "name": "ons.age.40_50@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13621.85215437348, + "kind": "calibration_drift", + "ledger_value": 14816.0, + "name": "ons.age.40_50@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14230.661806895363, + "kind": "calibration_drift", + "ledger_value": 14783.0, + "name": "ons.age.40_50@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13230.588643360232, + "kind": "calibration_drift", + "ledger_value": 15368.0, + "name": "ons.age.40_50@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17482.66003748506, + "kind": "calibration_drift", + "ledger_value": 18730.0, + "name": "ons.age.40_50@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15050.081601821399, + "kind": "calibration_drift", + "ledger_value": 17373.0, + "name": "ons.age.40_50@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11921.564059528639, + "kind": "calibration_drift", + "ledger_value": 12393.0, + "name": "ons.age.40_50@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14703.33992477024, + "kind": "calibration_drift", + "ledger_value": 17747.0, + "name": "ons.age.40_50@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12947.71836671633, + "kind": "calibration_drift", + "ledger_value": 13348.0, + "name": "ons.age.40_50@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11797.474588476796, + "kind": "calibration_drift", + "ledger_value": 13542.0, + "name": "ons.age.40_50@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14298.59443100958, + "kind": "calibration_drift", + "ledger_value": 16341.0, + "name": "ons.age.40_50@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10612.825487035509, + "kind": "calibration_drift", + "ledger_value": 10193.0, + "name": "ons.age.40_50@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13442.000334781887, + "kind": "calibration_drift", + "ledger_value": 14074.0, + "name": "ons.age.40_50@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13706.047974940131, + "kind": "calibration_drift", + "ledger_value": 15623.0, + "name": "ons.age.40_50@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14358.558187486706, + "kind": "calibration_drift", + "ledger_value": 15422.0, + "name": "ons.age.40_50@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10868.322374419793, + "kind": "calibration_drift", + "ledger_value": 11086.0, + "name": "ons.age.40_50@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11254.082632782676, + "kind": "calibration_drift", + "ledger_value": 11070.0, + "name": "ons.age.40_50@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12361.390909209116, + "kind": "calibration_drift", + "ledger_value": 12821.0, + "name": "ons.age.40_50@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11872.084097975065, + "kind": "calibration_drift", + "ledger_value": 11843.0, + "name": "ons.age.40_50@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12086.444664920844, + "kind": "calibration_drift", + "ledger_value": 12343.0, + "name": "ons.age.40_50@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12075.714308498622, + "kind": "calibration_drift", + "ledger_value": 12535.0, + "name": "ons.age.40_50@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15398.801150385543, + "kind": "calibration_drift", + "ledger_value": 14132.0, + "name": "ons.age.40_50@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14175.846254510514, + "kind": "calibration_drift", + "ledger_value": 16482.0, + "name": "ons.age.40_50@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18932.1822370959, + "kind": "calibration_drift", + "ledger_value": 19896.0, + "name": "ons.age.40_50@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16230.78840904573, + "kind": "calibration_drift", + "ledger_value": 19589.0, + "name": "ons.age.40_50@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17075.2220921589, + "kind": "calibration_drift", + "ledger_value": 19108.0, + "name": "ons.age.40_50@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14435.841917942696, + "kind": "calibration_drift", + "ledger_value": 16932.0, + "name": "ons.age.40_50@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10951.374149632602, + "kind": "calibration_drift", + "ledger_value": 11273.0, + "name": "ons.age.40_50@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12640.962272401524, + "kind": "calibration_drift", + "ledger_value": 12740.0, + "name": "ons.age.40_50@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17527.090419545828, + "kind": "calibration_drift", + "ledger_value": 18575.0, + "name": "ons.age.40_50@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11171.898754045193, + "kind": "calibration_drift", + "ledger_value": 11123.0, + "name": "ons.age.40_50@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13619.544338745907, + "kind": "calibration_drift", + "ledger_value": 13533.0, + "name": "ons.age.40_50@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12016.91432229523, + "kind": "calibration_drift", + "ledger_value": 12797.0, + "name": "ons.age.40_50@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11876.551792331007, + "kind": "calibration_drift", + "ledger_value": 12222.0, + "name": "ons.age.40_50@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13811.388909632926, + "kind": "calibration_drift", + "ledger_value": 13226.0, + "name": "ons.age.40_50@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12062.212600831323, + "kind": "calibration_drift", + "ledger_value": 12317.0, + "name": "ons.age.40_50@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11976.448649133115, + "kind": "calibration_drift", + "ledger_value": 13028.0, + "name": "ons.age.40_50@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17141.813421720337, + "kind": "calibration_drift", + "ledger_value": 16664.0, + "name": "ons.age.40_50@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10913.672854259039, + "kind": "calibration_drift", + "ledger_value": 11880.0, + "name": "ons.age.40_50@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15903.652206540117, + "kind": "calibration_drift", + "ledger_value": 16838.0, + "name": "ons.age.40_50@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14716.819812521653, + "kind": "calibration_drift", + "ledger_value": 14993.0, + "name": "ons.age.40_50@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17017.990237087062, + "kind": "calibration_drift", + "ledger_value": 17710.0, + "name": "ons.age.40_50@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13434.642939661506, + "kind": "calibration_drift", + "ledger_value": 14520.0, + "name": "ons.age.40_50@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15566.35272475723, + "kind": "calibration_drift", + "ledger_value": 16568.0, + "name": "ons.age.40_50@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12038.118611181055, + "kind": "calibration_drift", + "ledger_value": 11542.0, + "name": "ons.age.40_50@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20251.318830997287, + "kind": "calibration_drift", + "ledger_value": 20203.0, + "name": "ons.age.40_50@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15766.78925592412, + "kind": "calibration_drift", + "ledger_value": 17048.0, + "name": "ons.age.40_50@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10726.26106014175, + "kind": "calibration_drift", + "ledger_value": 11188.0, + "name": "ons.age.40_50@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10713.694556120925, + "kind": "calibration_drift", + "ledger_value": 13081.0, + "name": "ons.age.40_50@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12046.245278177297, + "kind": "calibration_drift", + "ledger_value": 11507.0, + "name": "ons.age.40_50@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13673.097496257553, + "kind": "calibration_drift", + "ledger_value": 14044.0, + "name": "ons.age.40_50@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12251.857843150181, + "kind": "calibration_drift", + "ledger_value": 12937.0, + "name": "ons.age.40_50@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17700.511915252042, + "kind": "calibration_drift", + "ledger_value": 20886.0, + "name": "ons.age.40_50@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13820.448529437199, + "kind": "calibration_drift", + "ledger_value": 15348.0, + "name": "ons.age.40_50@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20034.601136124198, + "kind": "calibration_drift", + "ledger_value": 19077.0, + "name": "ons.age.40_50@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11013.606271897515, + "kind": "calibration_drift", + "ledger_value": 10659.0, + "name": "ons.age.40_50@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10182.00364917526, + "kind": "calibration_drift", + "ledger_value": 10063.0, + "name": "ons.age.40_50@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10449.374938335606, + "kind": "calibration_drift", + "ledger_value": 10968.0, + "name": "ons.age.40_50@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10572.5077507726, + "kind": "calibration_drift", + "ledger_value": 11035.0, + "name": "ons.age.40_50@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10771.01934458372, + "kind": "calibration_drift", + "ledger_value": 10968.0, + "name": "ons.age.40_50@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12236.985253550263, + "kind": "calibration_drift", + "ledger_value": 12482.0, + "name": "ons.age.40_50@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13203.427428666479, + "kind": "calibration_drift", + "ledger_value": 13018.0, + "name": "ons.age.40_50@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12493.764260727643, + "kind": "calibration_drift", + "ledger_value": 13756.0, + "name": "ons.age.40_50@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10247.00712268525, + "kind": "calibration_drift", + "ledger_value": 9745.0, + "name": "ons.age.40_50@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14314.472991524082, + "kind": "calibration_drift", + "ledger_value": 15719.0, + "name": "ons.age.40_50@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13026.871135418924, + "kind": "calibration_drift", + "ledger_value": 13504.0, + "name": "ons.age.40_50@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12439.949299733773, + "kind": "calibration_drift", + "ledger_value": 13047.0, + "name": "ons.age.40_50@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13350.36821941528, + "kind": "calibration_drift", + "ledger_value": 15736.0, + "name": "ons.age.40_50@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11589.376683597295, + "kind": "calibration_drift", + "ledger_value": 10860.0, + "name": "ons.age.40_50@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12196.213844129796, + "kind": "calibration_drift", + "ledger_value": 12027.0, + "name": "ons.age.40_50@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13751.227903956862, + "kind": "calibration_drift", + "ledger_value": 14434.0, + "name": "ons.age.40_50@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12556.706480108733, + "kind": "calibration_drift", + "ledger_value": 12111.0, + "name": "ons.age.40_50@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10530.148485300682, + "kind": "calibration_drift", + "ledger_value": 10896.0, + "name": "ons.age.40_50@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17289.12898594712, + "kind": "calibration_drift", + "ledger_value": 18277.0, + "name": "ons.age.40_50@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12713.726411978905, + "kind": "calibration_drift", + "ledger_value": 13736.0, + "name": "ons.age.40_50@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17020.500379615725, + "kind": "calibration_drift", + "ledger_value": 14451.0, + "name": "ons.age.40_50@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17364.89728566509, + "kind": "calibration_drift", + "ledger_value": 14855.0, + "name": "ons.age.40_50@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11082.16023098839, + "kind": "calibration_drift", + "ledger_value": 11685.0, + "name": "ons.age.40_50@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13890.969098944428, + "kind": "calibration_drift", + "ledger_value": 13700.0, + "name": "ons.age.40_50@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12983.672096129747, + "kind": "calibration_drift", + "ledger_value": 13659.0, + "name": "ons.age.40_50@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16868.508019916997, + "kind": "calibration_drift", + "ledger_value": 15952.0, + "name": "ons.age.40_50@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19963.715253170325, + "kind": "calibration_drift", + "ledger_value": 16269.0, + "name": "ons.age.40_50@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12487.807334919718, + "kind": "calibration_drift", + "ledger_value": 13740.0, + "name": "ons.age.40_50@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13319.174039788195, + "kind": "calibration_drift", + "ledger_value": 15822.0, + "name": "ons.age.40_50@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14283.840190929024, + "kind": "calibration_drift", + "ledger_value": 14205.0, + "name": "ons.age.40_50@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13281.168418629097, + "kind": "calibration_drift", + "ledger_value": 13228.0, + "name": "ons.age.40_50@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14857.986714421706, + "kind": "calibration_drift", + "ledger_value": 16164.0, + "name": "ons.age.40_50@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16324.245079502516, + "kind": "calibration_drift", + "ledger_value": 18469.0, + "name": "ons.age.40_50@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10542.969683231646, + "kind": "calibration_drift", + "ledger_value": 11013.0, + "name": "ons.age.40_50@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11357.755737615145, + "kind": "calibration_drift", + "ledger_value": 11571.0, + "name": "ons.age.40_50@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12240.121515813375, + "kind": "calibration_drift", + "ledger_value": 12593.0, + "name": "ons.age.40_50@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10565.653341109508, + "kind": "calibration_drift", + "ledger_value": 10744.0, + "name": "ons.age.40_50@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18790.944936820633, + "kind": "calibration_drift", + "ledger_value": 19895.0, + "name": "ons.age.40_50@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11670.169955482266, + "kind": "calibration_drift", + "ledger_value": 11707.0, + "name": "ons.age.40_50@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14215.70045515592, + "kind": "calibration_drift", + "ledger_value": 14996.0, + "name": "ons.age.40_50@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17945.9293685706, + "kind": "calibration_drift", + "ledger_value": 20308.0, + "name": "ons.age.40_50@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12123.054116243722, + "kind": "calibration_drift", + "ledger_value": 12349.0, + "name": "ons.age.40_50@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11613.105762229525, + "kind": "calibration_drift", + "ledger_value": 11344.0, + "name": "ons.age.40_50@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10567.823082297826, + "kind": "calibration_drift", + "ledger_value": 11184.0, + "name": "ons.age.40_50@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15876.745821872064, + "kind": "calibration_drift", + "ledger_value": 15661.0, + "name": "ons.age.40_50@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13805.007898047284, + "kind": "calibration_drift", + "ledger_value": 15452.0, + "name": "ons.age.40_50@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10677.472935506228, + "kind": "calibration_drift", + "ledger_value": 11015.0, + "name": "ons.age.40_50@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11867.96158971726, + "kind": "calibration_drift", + "ledger_value": 13052.0, + "name": "ons.age.40_50@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11157.400937923258, + "kind": "calibration_drift", + "ledger_value": 10743.0, + "name": "ons.age.40_50@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12356.035007569244, + "kind": "calibration_drift", + "ledger_value": 12348.0, + "name": "ons.age.40_50@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14359.958656799168, + "kind": "calibration_drift", + "ledger_value": 15022.0, + "name": "ons.age.40_50@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16653.434267610002, + "kind": "calibration_drift", + "ledger_value": 11934.0, + "name": "ons.age.40_50@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10069.836036884964, + "kind": "calibration_drift", + "ledger_value": 9532.0, + "name": "ons.age.40_50@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13483.327628308454, + "kind": "calibration_drift", + "ledger_value": 15106.0, + "name": "ons.age.40_50@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16303.817832915536, + "kind": "calibration_drift", + "ledger_value": 15558.0, + "name": "ons.age.40_50@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13719.342570948547, + "kind": "calibration_drift", + "ledger_value": 14327.0, + "name": "ons.age.40_50@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11535.56710212703, + "kind": "calibration_drift", + "ledger_value": 12276.0, + "name": "ons.age.40_50@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15221.720682039031, + "kind": "calibration_drift", + "ledger_value": 15457.0, + "name": "ons.age.40_50@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14060.396298372152, + "kind": "calibration_drift", + "ledger_value": 15017.0, + "name": "ons.age.40_50@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13998.410737605911, + "kind": "calibration_drift", + "ledger_value": 14799.0, + "name": "ons.age.40_50@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11009.46403871982, + "kind": "calibration_drift", + "ledger_value": 11521.0, + "name": "ons.age.40_50@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16307.673556650734, + "kind": "calibration_drift", + "ledger_value": 18087.0, + "name": "ons.age.40_50@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18004.771394754778, + "kind": "calibration_drift", + "ledger_value": 19591.0, + "name": "ons.age.40_50@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14218.708505439725, + "kind": "calibration_drift", + "ledger_value": 15499.0, + "name": "ons.age.40_50@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7545.768105370003, + "kind": "calibration_drift", + "ledger_value": 6940.0, + "name": "ons.age.40_50@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7545.768105370003, + "kind": "calibration_drift", + "ledger_value": 7731.0, + "name": "ons.age.40_50@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14731.556422678308, + "kind": "calibration_drift", + "ledger_value": 13971.0, + "name": "ons.age.40_50@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15535.40608311, + "kind": "calibration_drift", + "ledger_value": 13886.0, + "name": "ons.age.40_50@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11019.227874067246, + "kind": "calibration_drift", + "ledger_value": 11537.0, + "name": "ons.age.40_50@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11992.751295425334, + "kind": "calibration_drift", + "ledger_value": 12496.0, + "name": "ons.age.40_50@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10621.820050507078, + "kind": "calibration_drift", + "ledger_value": 11883.0, + "name": "ons.age.40_50@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22287.551899013244, + "kind": "calibration_drift", + "ledger_value": 17179.0, + "name": "ons.age.40_50@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14316.465208433356, + "kind": "calibration_drift", + "ledger_value": 15036.0, + "name": "ons.age.40_50@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17962.06435304372, + "kind": "calibration_drift", + "ledger_value": 17837.0, + "name": "ons.age.40_50@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11298.335490564397, + "kind": "calibration_drift", + "ledger_value": 12174.0, + "name": "ons.age.40_50@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12808.647701630141, + "kind": "calibration_drift", + "ledger_value": 14878.0, + "name": "ons.age.40_50@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12422.133911478992, + "kind": "calibration_drift", + "ledger_value": 13002.0, + "name": "ons.age.40_50@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10342.209448552634, + "kind": "calibration_drift", + "ledger_value": 10160.0, + "name": "ons.age.40_50@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9844.875180810517, + "kind": "calibration_drift", + "ledger_value": 11451.0, + "name": "ons.age.40_50@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10198.96708028392, + "kind": "calibration_drift", + "ledger_value": 10631.0, + "name": "ons.age.40_50@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10727.670545630463, + "kind": "calibration_drift", + "ledger_value": 8631.0, + "name": "ons.age.40_50@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12642.197310020092, + "kind": "calibration_drift", + "ledger_value": 15022.0, + "name": "ons.age.40_50@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12313.281243699448, + "kind": "calibration_drift", + "ledger_value": 14269.0, + "name": "ons.age.40_50@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9947.770225436483, + "kind": "calibration_drift", + "ledger_value": 12526.0, + "name": "ons.age.40_50@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13048.113409422762, + "kind": "calibration_drift", + "ledger_value": 16742.0, + "name": "ons.age.40_50@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11318.5834196978, + "kind": "calibration_drift", + "ledger_value": 12898.0, + "name": "ons.age.40_50@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11515.70709641821, + "kind": "calibration_drift", + "ledger_value": 13245.0, + "name": "ons.age.40_50@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13877.309591917978, + "kind": "calibration_drift", + "ledger_value": 17460.0, + "name": "ons.age.40_50@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12217.053221997587, + "kind": "calibration_drift", + "ledger_value": 14342.0, + "name": "ons.age.40_50@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13479.743968998659, + "kind": "calibration_drift", + "ledger_value": 17797.0, + "name": "ons.age.40_50@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13396.337145227762, + "kind": "calibration_drift", + "ledger_value": 14369.0, + "name": "ons.age.40_50@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11356.669151767677, + "kind": "calibration_drift", + "ledger_value": 10949.0, + "name": "ons.age.40_50@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18500.252217372527, + "kind": "calibration_drift", + "ledger_value": 17331.0, + "name": "ons.age.40_50@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17040.673894964926, + "kind": "calibration_drift", + "ledger_value": 16374.0, + "name": "ons.age.40_50@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15441.842718768334, + "kind": "calibration_drift", + "ledger_value": 15223.0, + "name": "ons.age.40_50@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16644.636953337373, + "kind": "calibration_drift", + "ledger_value": 18283.0, + "name": "ons.age.40_50@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11875.960044734193, + "kind": "calibration_drift", + "ledger_value": 11797.0, + "name": "ons.age.40_50@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11674.193839140598, + "kind": "calibration_drift", + "ledger_value": 13434.0, + "name": "ons.age.40_50@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10536.95358266404, + "kind": "calibration_drift", + "ledger_value": 11399.0, + "name": "ons.age.40_50@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12206.451077554673, + "kind": "calibration_drift", + "ledger_value": 12159.0, + "name": "ons.age.40_50@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11878.938507638157, + "kind": "calibration_drift", + "ledger_value": 12272.0, + "name": "ons.age.40_50@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11427.908489346715, + "kind": "calibration_drift", + "ledger_value": 12144.0, + "name": "ons.age.40_50@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11053.27308580393, + "kind": "calibration_drift", + "ledger_value": 11931.0, + "name": "ons.age.40_50@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11336.384861039523, + "kind": "calibration_drift", + "ledger_value": 11669.0, + "name": "ons.age.40_50@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9568.499465718658, + "kind": "calibration_drift", + "ledger_value": 8967.0, + "name": "ons.age.40_50@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10522.100717984014, + "kind": "calibration_drift", + "ledger_value": 10153.0, + "name": "ons.age.40_50@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13535.989578075807, + "kind": "calibration_drift", + "ledger_value": 15945.0, + "name": "ons.age.40_50@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15409.797793226333, + "kind": "calibration_drift", + "ledger_value": 17758.0, + "name": "ons.age.40_50@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11736.327336806042, + "kind": "calibration_drift", + "ledger_value": 12133.0, + "name": "ons.age.40_50@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15222.850381996584, + "kind": "calibration_drift", + "ledger_value": 16462.0, + "name": "ons.age.40_50@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14004.998860850439, + "kind": "calibration_drift", + "ledger_value": 16202.0, + "name": "ons.age.40_50@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13206.070567932247, + "kind": "calibration_drift", + "ledger_value": 12873.0, + "name": "ons.age.40_50@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12063.662382443514, + "kind": "calibration_drift", + "ledger_value": 11704.0, + "name": "ons.age.40_50@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12349.16356274806, + "kind": "calibration_drift", + "ledger_value": 14618.0, + "name": "ons.age.40_50@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11367.806658430332, + "kind": "calibration_drift", + "ledger_value": 11913.0, + "name": "ons.age.40_50@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10189.71609285373, + "kind": "calibration_drift", + "ledger_value": 11385.0, + "name": "ons.age.40_50@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12327.236624524307, + "kind": "calibration_drift", + "ledger_value": 13121.0, + "name": "ons.age.40_50@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11436.50445319944, + "kind": "calibration_drift", + "ledger_value": 10903.0, + "name": "ons.age.40_50@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11281.529858814889, + "kind": "calibration_drift", + "ledger_value": 11451.0, + "name": "ons.age.40_50@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12034.272251801765, + "kind": "calibration_drift", + "ledger_value": 11959.0, + "name": "ons.age.40_50@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12612.389928968907, + "kind": "calibration_drift", + "ledger_value": 14017.0, + "name": "ons.age.40_50@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13332.456918022415, + "kind": "calibration_drift", + "ledger_value": 13677.0, + "name": "ons.age.40_50@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11309.055984526674, + "kind": "calibration_drift", + "ledger_value": 12132.0, + "name": "ons.age.40_50@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10712.258808220113, + "kind": "calibration_drift", + "ledger_value": 10558.0, + "name": "ons.age.40_50@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10902.29047965144, + "kind": "calibration_drift", + "ledger_value": 11115.0, + "name": "ons.age.40_50@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12500.342521512224, + "kind": "calibration_drift", + "ledger_value": 13292.0, + "name": "ons.age.40_50@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10802.687703473202, + "kind": "calibration_drift", + "ledger_value": 10651.0, + "name": "ons.age.40_50@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13572.00728180187, + "kind": "calibration_drift", + "ledger_value": 14548.0, + "name": "ons.age.40_50@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12100.62688232448, + "kind": "calibration_drift", + "ledger_value": 13948.0, + "name": "ons.age.40_50@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9939.89998239886, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.40_50@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17530.640905126707, + "kind": "calibration_drift", + "ledger_value": 21883.0, + "name": "ons.age.40_50@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13771.682645886725, + "kind": "calibration_drift", + "ledger_value": 14904.0, + "name": "ons.age.40_50@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17166.203285169013, + "kind": "calibration_drift", + "ledger_value": 18959.0, + "name": "ons.age.40_50@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10673.844526726954, + "kind": "calibration_drift", + "ledger_value": 10798.0, + "name": "ons.age.40_50@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10757.971310073975, + "kind": "calibration_drift", + "ledger_value": 10040.0, + "name": "ons.age.40_50@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8969.907321701761, + "kind": "calibration_drift", + "ledger_value": 8433.0, + "name": "ons.age.40_50@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12858.53720432353, + "kind": "calibration_drift", + "ledger_value": 13061.0, + "name": "ons.age.40_50@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13093.224301219865, + "kind": "calibration_drift", + "ledger_value": 13027.0, + "name": "ons.age.40_50@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14186.928827695394, + "kind": "calibration_drift", + "ledger_value": 15672.0, + "name": "ons.age.40_50@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11730.29151131854, + "kind": "calibration_drift", + "ledger_value": 13409.0, + "name": "ons.age.40_50@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11380.047533594323, + "kind": "calibration_drift", + "ledger_value": 13380.0, + "name": "ons.age.40_50@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11404.504871892732, + "kind": "calibration_drift", + "ledger_value": 11253.0, + "name": "ons.age.40_50@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.706730288419, + "kind": "calibration_drift", + "ledger_value": 10523.0, + "name": "ons.age.40_50@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10739.281948474607, + "kind": "calibration_drift", + "ledger_value": 11203.0, + "name": "ons.age.40_50@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11761.575234270094, + "kind": "calibration_drift", + "ledger_value": 12365.0, + "name": "ons.age.40_50@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13775.548730185907, + "kind": "calibration_drift", + "ledger_value": 13817.0, + "name": "ons.age.40_50@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11489.11491577715, + "kind": "calibration_drift", + "ledger_value": 11317.0, + "name": "ons.age.40_50@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11418.598327156846, + "kind": "calibration_drift", + "ledger_value": 11630.0, + "name": "ons.age.40_50@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11142.607248002912, + "kind": "calibration_drift", + "ledger_value": 11173.0, + "name": "ons.age.40_50@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10594.264337415452, + "kind": "calibration_drift", + "ledger_value": 10087.0, + "name": "ons.age.40_50@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11244.439637474801, + "kind": "calibration_drift", + "ledger_value": 10935.0, + "name": "ons.age.40_50@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11872.133410274799, + "kind": "calibration_drift", + "ledger_value": 11972.0, + "name": "ons.age.40_50@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10918.729407208379, + "kind": "calibration_drift", + "ledger_value": 10849.0, + "name": "ons.age.40_50@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14284.67850002451, + "kind": "calibration_drift", + "ledger_value": 14262.0, + "name": "ons.age.40_50@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13881.412375255886, + "kind": "calibration_drift", + "ledger_value": 13526.0, + "name": "ons.age.40_50@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11413.080329640617, + "kind": "calibration_drift", + "ledger_value": 11266.0, + "name": "ons.age.40_50@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10079.374890967862, + "kind": "calibration_drift", + "ledger_value": 9509.0, + "name": "ons.age.40_50@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8321.336016264684, + "kind": "calibration_drift", + "ledger_value": 7983.0, + "name": "ons.age.40_50@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9934.515079267854, + "kind": "calibration_drift", + "ledger_value": 9660.0, + "name": "ons.age.40_50@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12120.332077298379, + "kind": "calibration_drift", + "ledger_value": 11150.0, + "name": "ons.age.40_50@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12338.608040843077, + "kind": "calibration_drift", + "ledger_value": 12628.0, + "name": "ons.age.40_50@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11425.659848478825, + "kind": "calibration_drift", + "ledger_value": 11364.0, + "name": "ons.age.40_50@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14140.134287042805, + "kind": "calibration_drift", + "ledger_value": 17017.0, + "name": "ons.age.40_50@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14101.50146906092, + "kind": "calibration_drift", + "ledger_value": 14433.0, + "name": "ons.age.40_50@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13921.355338040814, + "kind": "calibration_drift", + "ledger_value": 14960.0, + "name": "ons.age.40_50@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12967.162338178641, + "kind": "calibration_drift", + "ledger_value": 12983.0, + "name": "ons.age.40_50@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11067.238329088736, + "kind": "calibration_drift", + "ledger_value": 11254.0, + "name": "ons.age.40_50@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15565.092087550154, + "kind": "calibration_drift", + "ledger_value": 18202.0, + "name": "ons.age.40_50@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14171.09372059353, + "kind": "calibration_drift", + "ledger_value": 16198.0, + "name": "ons.age.40_50@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11791.950813940075, + "kind": "calibration_drift", + "ledger_value": 13241.0, + "name": "ons.age.40_50@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10458.902074644308, + "kind": "calibration_drift", + "ledger_value": 12364.0, + "name": "ons.age.40_50@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13735.687057979934, + "kind": "calibration_drift", + "ledger_value": 14183.0, + "name": "ons.age.40_50@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12401.28885522517, + "kind": "calibration_drift", + "ledger_value": 13710.0, + "name": "ons.age.40_50@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10404.325811439181, + "kind": "calibration_drift", + "ledger_value": 10722.0, + "name": "ons.age.40_50@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11755.066010705144, + "kind": "calibration_drift", + "ledger_value": 12950.0, + "name": "ons.age.40_50@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12703.597958557799, + "kind": "calibration_drift", + "ledger_value": 14082.0, + "name": "ons.age.40_50@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12740.325759400039, + "kind": "calibration_drift", + "ledger_value": 13811.0, + "name": "ons.age.40_50@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13330.100864224409, + "kind": "calibration_drift", + "ledger_value": 14962.0, + "name": "ons.age.40_50@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13481.685080433661, + "kind": "calibration_drift", + "ledger_value": 14054.0, + "name": "ons.age.40_50@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12030.455479802316, + "kind": "calibration_drift", + "ledger_value": 11328.0, + "name": "ons.age.40_50@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10462.008749527578, + "kind": "calibration_drift", + "ledger_value": 15474.0, + "name": "ons.age.40_50@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12472.885433020063, + "kind": "calibration_drift", + "ledger_value": 12155.0, + "name": "ons.age.40_50@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14941.311220828888, + "kind": "calibration_drift", + "ledger_value": 13741.0, + "name": "ons.age.40_50@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12641.799784530549, + "kind": "calibration_drift", + "ledger_value": 13882.0, + "name": "ons.age.40_50@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11100.19867023126, + "kind": "calibration_drift", + "ledger_value": 10561.0, + "name": "ons.age.40_50@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11035.155746881483, + "kind": "calibration_drift", + "ledger_value": 10739.0, + "name": "ons.age.40_50@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15852.563070082275, + "kind": "calibration_drift", + "ledger_value": 17744.0, + "name": "ons.age.40_50@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10944.125241571634, + "kind": "calibration_drift", + "ledger_value": 12200.0, + "name": "ons.age.40_50@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11931.850605253252, + "kind": "calibration_drift", + "ledger_value": 13502.0, + "name": "ons.age.40_50@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11596.329717859857, + "kind": "calibration_drift", + "ledger_value": 12244.0, + "name": "ons.age.40_50@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12071.246614142678, + "kind": "calibration_drift", + "ledger_value": 12440.0, + "name": "ons.age.40_50@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20399.93623993706, + "kind": "calibration_drift", + "ledger_value": 20039.0, + "name": "ons.age.40_50@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11824.103230333416, + "kind": "calibration_drift", + "ledger_value": 13349.0, + "name": "ons.age.40_50@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12095.320878873052, + "kind": "calibration_drift", + "ledger_value": 13200.0, + "name": "ons.age.40_50@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13254.011985734107, + "kind": "calibration_drift", + "ledger_value": 14731.0, + "name": "ons.age.40_50@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15953.71245929764, + "kind": "calibration_drift", + "ledger_value": 15933.0, + "name": "ons.age.40_50@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21365.461206278214, + "kind": "calibration_drift", + "ledger_value": 16425.0, + "name": "ons.age.40_50@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11009.545867842944, + "kind": "calibration_drift", + "ledger_value": 11245.0, + "name": "ons.age.40_50@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12556.410606310325, + "kind": "calibration_drift", + "ledger_value": 11990.0, + "name": "ons.age.40_50@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14734.72227232126, + "kind": "calibration_drift", + "ledger_value": 17485.0, + "name": "ons.age.40_50@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12280.202553037561, + "kind": "calibration_drift", + "ledger_value": 13017.0, + "name": "ons.age.40_50@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9926.980159868428, + "kind": "calibration_drift", + "ledger_value": 10405.0, + "name": "ons.age.40_50@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12254.106484018073, + "kind": "calibration_drift", + "ledger_value": 13065.0, + "name": "ons.age.40_50@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15650.836314328468, + "kind": "calibration_drift", + "ledger_value": 16276.0, + "name": "ons.age.40_50@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11699.786922702795, + "kind": "calibration_drift", + "ledger_value": 12797.0, + "name": "ons.age.40_50@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10621.915062126172, + "kind": "calibration_drift", + "ledger_value": 9590.0, + "name": "ons.age.40_50@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19614.105293828346, + "kind": "calibration_drift", + "ledger_value": 17846.0, + "name": "ons.age.40_50@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12863.409259537299, + "kind": "calibration_drift", + "ledger_value": 13976.0, + "name": "ons.age.40_50@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12889.130555078802, + "kind": "calibration_drift", + "ledger_value": 14619.0, + "name": "ons.age.40_50@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13256.0427558959, + "kind": "calibration_drift", + "ledger_value": 15510.0, + "name": "ons.age.40_50@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11559.572329637776, + "kind": "calibration_drift", + "ledger_value": 11743.0, + "name": "ons.age.40_50@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12760.68187673043, + "kind": "calibration_drift", + "ledger_value": 12807.0, + "name": "ons.age.40_50@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10353.15785322299, + "kind": "calibration_drift", + "ledger_value": 10538.0, + "name": "ons.age.40_50@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12988.520422850768, + "kind": "calibration_drift", + "ledger_value": 14117.0, + "name": "ons.age.40_50@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14032.337599823233, + "kind": "calibration_drift", + "ledger_value": 15930.0, + "name": "ons.age.40_50@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13195.084861680705, + "kind": "calibration_drift", + "ledger_value": 14799.0, + "name": "ons.age.40_50@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11400.89839941801, + "kind": "calibration_drift", + "ledger_value": 11779.0, + "name": "ons.age.40_50@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14457.902746531789, + "kind": "calibration_drift", + "ledger_value": 15558.0, + "name": "ons.age.40_50@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13403.793164947614, + "kind": "calibration_drift", + "ledger_value": 13826.0, + "name": "ons.age.40_50@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11389.701319512442, + "kind": "calibration_drift", + "ledger_value": 11271.0, + "name": "ons.age.40_50@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13140.8312919708, + "kind": "calibration_drift", + "ledger_value": 14808.0, + "name": "ons.age.40_50@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11509.727457066161, + "kind": "calibration_drift", + "ledger_value": 11475.0, + "name": "ons.age.40_50@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10241.178408856635, + "kind": "calibration_drift", + "ledger_value": 10173.0, + "name": "ons.age.40_50@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12561.22348676441, + "kind": "calibration_drift", + "ledger_value": 12567.0, + "name": "ons.age.40_50@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9973.945194135546, + "kind": "calibration_drift", + "ledger_value": 10369.0, + "name": "ons.age.40_50@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12257.698762993583, + "kind": "calibration_drift", + "ledger_value": 12520.0, + "name": "ons.age.40_50@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13492.792003508403, + "kind": "calibration_drift", + "ledger_value": 13217.0, + "name": "ons.age.40_50@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13622.769363148544, + "kind": "calibration_drift", + "ledger_value": 13928.0, + "name": "ons.age.40_50@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8975.824797669899, + "kind": "calibration_drift", + "ledger_value": 8865.0, + "name": "ons.age.40_50@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11670.771077298434, + "kind": "calibration_drift", + "ledger_value": 11970.0, + "name": "ons.age.40_50@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12542.263835173626, + "kind": "calibration_drift", + "ledger_value": 13524.0, + "name": "ons.age.40_50@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12595.884662831244, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "ons.age.40_50@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12489.01055503324, + "kind": "calibration_drift", + "ledger_value": 12633.0, + "name": "ons.age.40_50@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12669.316047782388, + "kind": "calibration_drift", + "ledger_value": 12720.0, + "name": "ons.age.40_50@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11949.997531555542, + "kind": "calibration_drift", + "ledger_value": 11835.0, + "name": "ons.age.40_50@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13022.23431452211, + "kind": "calibration_drift", + "ledger_value": 14663.0, + "name": "ons.age.40_50@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11162.697078914738, + "kind": "calibration_drift", + "ledger_value": 10947.0, + "name": "ons.age.40_50@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11565.115032127931, + "kind": "calibration_drift", + "ledger_value": 11519.0, + "name": "ons.age.40_50@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19702.532109712214, + "kind": "calibration_drift", + "ledger_value": 23112.0, + "name": "ons.age.40_50@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14210.068990526242, + "kind": "calibration_drift", + "ledger_value": 15786.0, + "name": "ons.age.40_50@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11753.68526631258, + "kind": "calibration_drift", + "ledger_value": 12552.0, + "name": "ons.age.40_50@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12676.33811926458, + "kind": "calibration_drift", + "ledger_value": 13107.0, + "name": "ons.age.40_50@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14238.102060882664, + "kind": "calibration_drift", + "ledger_value": 14534.0, + "name": "ons.age.40_50@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11729.116023270613, + "kind": "calibration_drift", + "ledger_value": 11553.0, + "name": "ons.age.40_50@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12739.852361322588, + "kind": "calibration_drift", + "ledger_value": 12758.0, + "name": "ons.age.40_50@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9161.061520392495, + "kind": "calibration_drift", + "ledger_value": 9583.0, + "name": "ons.age.40_50@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10792.172527995275, + "kind": "calibration_drift", + "ledger_value": 10541.0, + "name": "ons.age.40_50@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10066.612867796577, + "kind": "calibration_drift", + "ledger_value": 9699.0, + "name": "ons.age.40_50@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13143.700371228078, + "kind": "calibration_drift", + "ledger_value": 13199.0, + "name": "ons.age.40_50@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12713.144819786394, + "kind": "calibration_drift", + "ledger_value": 13075.0, + "name": "ons.age.40_50@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11374.809004992629, + "kind": "calibration_drift", + "ledger_value": 12745.0, + "name": "ons.age.40_50@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13247.63038234169, + "kind": "calibration_drift", + "ledger_value": 13207.0, + "name": "ons.age.40_50@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11678.73057071617, + "kind": "calibration_drift", + "ledger_value": 11994.0, + "name": "ons.age.40_50@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10620.38999381478, + "kind": "calibration_drift", + "ledger_value": 10449.0, + "name": "ons.age.40_50@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10653.77442073502, + "kind": "calibration_drift", + "ledger_value": 9101.0, + "name": "ons.age.40_50@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10859.75189672594, + "kind": "calibration_drift", + "ledger_value": 10780.0, + "name": "ons.age.40_50@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10815.804775202572, + "kind": "calibration_drift", + "ledger_value": 11581.0, + "name": "ons.age.40_50@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14227.45650741262, + "kind": "calibration_drift", + "ledger_value": 14969.0, + "name": "ons.age.40_50@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11334.64906808887, + "kind": "calibration_drift", + "ledger_value": 11563.0, + "name": "ons.age.40_50@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11932.600152209217, + "kind": "calibration_drift", + "ledger_value": 11691.0, + "name": "ons.age.40_50@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11562.748041740675, + "kind": "calibration_drift", + "ledger_value": 13775.0, + "name": "ons.age.40_50@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13051.979493721947, + "kind": "calibration_drift", + "ledger_value": 15356.0, + "name": "ons.age.40_50@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13004.038075920087, + "kind": "calibration_drift", + "ledger_value": 13281.0, + "name": "ons.age.40_50@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14722.768970865623, + "kind": "calibration_drift", + "ledger_value": 14372.0, + "name": "ons.age.40_50@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19011.826084103424, + "kind": "calibration_drift", + "ledger_value": 19160.0, + "name": "ons.age.40_50@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10745.386811181737, + "kind": "calibration_drift", + "ledger_value": 11206.0, + "name": "ons.age.40_50@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14038.22548841153, + "kind": "calibration_drift", + "ledger_value": 15425.0, + "name": "ons.age.40_50@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12265.625837236048, + "kind": "calibration_drift", + "ledger_value": 11838.0, + "name": "ons.age.40_50@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15399.63945948103, + "kind": "calibration_drift", + "ledger_value": 15635.0, + "name": "ons.age.40_50@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12148.459813066927, + "kind": "calibration_drift", + "ledger_value": 12066.0, + "name": "ons.age.40_50@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11907.93413988203, + "kind": "calibration_drift", + "ledger_value": 12295.0, + "name": "ons.age.40_50@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11112.132246767005, + "kind": "calibration_drift", + "ledger_value": 11746.0, + "name": "ons.age.40_50@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9903.14259417678, + "kind": "calibration_drift", + "ledger_value": 9733.0, + "name": "ons.age.40_50@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14465.761262918115, + "kind": "calibration_drift", + "ledger_value": 16676.0, + "name": "ons.age.40_50@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11720.951761748833, + "kind": "calibration_drift", + "ledger_value": 11689.0, + "name": "ons.age.40_50@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10468.981508710032, + "kind": "calibration_drift", + "ledger_value": 9249.0, + "name": "ons.age.40_50@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11975.985113515611, + "kind": "calibration_drift", + "ledger_value": 12417.0, + "name": "ons.age.40_50@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12317.226227678208, + "kind": "calibration_drift", + "ledger_value": 13345.0, + "name": "ons.age.40_50@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13596.081546532243, + "kind": "calibration_drift", + "ledger_value": 14852.0, + "name": "ons.age.40_50@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11262.199437318972, + "kind": "calibration_drift", + "ledger_value": 12499.0, + "name": "ons.age.40_50@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11442.485205148228, + "kind": "calibration_drift", + "ledger_value": 12119.0, + "name": "ons.age.40_50@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12621.749403458509, + "kind": "calibration_drift", + "ledger_value": 14419.0, + "name": "ons.age.40_50@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11666.491257922075, + "kind": "calibration_drift", + "ledger_value": 12149.0, + "name": "ons.age.40_50@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10770.69388340547, + "kind": "calibration_drift", + "ledger_value": 11339.0, + "name": "ons.age.40_50@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11055.383652232567, + "kind": "calibration_drift", + "ledger_value": 10825.0, + "name": "ons.age.40_50@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11240.324501156756, + "kind": "calibration_drift", + "ledger_value": 11509.0, + "name": "ons.age.40_50@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16679.95442240721, + "kind": "calibration_drift", + "ledger_value": 17779.0, + "name": "ons.age.40_50@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11153.653203143436, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "ons.age.40_50@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16853.08004431502, + "kind": "calibration_drift", + "ledger_value": 17683.0, + "name": "ons.age.40_50@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13474.092779449089, + "kind": "calibration_drift", + "ledger_value": 14417.0, + "name": "ons.age.40_50@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12437.459476890812, + "kind": "calibration_drift", + "ledger_value": 12011.0, + "name": "ons.age.40_50@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9815.452142752907, + "kind": "calibration_drift", + "ledger_value": 9628.0, + "name": "ons.age.40_50@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11202.768253678978, + "kind": "calibration_drift", + "ledger_value": 12291.0, + "name": "ons.age.40_50@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13719.894868705573, + "kind": "calibration_drift", + "ledger_value": 13906.0, + "name": "ons.age.40_50@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10857.97864635165, + "kind": "calibration_drift", + "ledger_value": 10343.0, + "name": "ons.age.40_50@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16443.679469459425, + "kind": "calibration_drift", + "ledger_value": 17688.0, + "name": "ons.age.40_50@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11230.383141530287, + "kind": "calibration_drift", + "ledger_value": 12517.0, + "name": "ons.age.40_50@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14217.880058804185, + "kind": "calibration_drift", + "ledger_value": 15580.0, + "name": "ons.age.40_50@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14991.964815116145, + "kind": "calibration_drift", + "ledger_value": 16386.0, + "name": "ons.age.40_50@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12255.506953330534, + "kind": "calibration_drift", + "ledger_value": 12398.0, + "name": "ons.age.40_50@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12511.575863391736, + "kind": "calibration_drift", + "ledger_value": 13057.0, + "name": "ons.age.40_50@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12484.690797576499, + "kind": "calibration_drift", + "ledger_value": 13202.0, + "name": "ons.age.40_50@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12930.049901398474, + "kind": "calibration_drift", + "ledger_value": 13997.0, + "name": "ons.age.40_50@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11848.986216779434, + "kind": "calibration_drift", + "ledger_value": 12501.0, + "name": "ons.age.40_50@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12800.753051494668, + "kind": "calibration_drift", + "ledger_value": 13204.0, + "name": "ons.age.40_50@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10631.461532762292, + "kind": "calibration_drift", + "ledger_value": 10090.0, + "name": "ons.age.40_50@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11283.386890288324, + "kind": "calibration_drift", + "ledger_value": 12134.0, + "name": "ons.age.40_50@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17444.640254389775, + "kind": "calibration_drift", + "ledger_value": 18608.0, + "name": "ons.age.40_50@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13698.513055540701, + "kind": "calibration_drift", + "ledger_value": 14933.0, + "name": "ons.age.40_50@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9806.855397715235, + "kind": "calibration_drift", + "ledger_value": 9649.0, + "name": "ons.age.40_50@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13501.125782163532, + "kind": "calibration_drift", + "ledger_value": 13084.0, + "name": "ons.age.40_50@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14525.431009788184, + "kind": "calibration_drift", + "ledger_value": 13341.0, + "name": "ons.age.40_50@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11197.73839910606, + "kind": "calibration_drift", + "ledger_value": 11846.0, + "name": "ons.age.40_50@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10133.322546877382, + "kind": "calibration_drift", + "ledger_value": 9649.0, + "name": "ons.age.40_50@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20347.748985290345, + "kind": "calibration_drift", + "ledger_value": 19004.0, + "name": "ons.age.40_50@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10818.01396623068, + "kind": "calibration_drift", + "ledger_value": 10919.0, + "name": "ons.age.40_50@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15859.82184060319, + "kind": "calibration_drift", + "ledger_value": 15479.0, + "name": "ons.age.40_50@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18156.995873894117, + "kind": "calibration_drift", + "ledger_value": 17049.0, + "name": "ons.age.40_50@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12739.87208624248, + "kind": "calibration_drift", + "ledger_value": 12866.0, + "name": "ons.age.40_50@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15543.478945993067, + "kind": "calibration_drift", + "ledger_value": 18144.0, + "name": "ons.age.40_50@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12995.230899187509, + "kind": "calibration_drift", + "ledger_value": 12705.0, + "name": "ons.age.40_50@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13339.956488803025, + "kind": "calibration_drift", + "ledger_value": 14726.0, + "name": "ons.age.40_50@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11442.54437990791, + "kind": "calibration_drift", + "ledger_value": 11481.0, + "name": "ons.age.40_50@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14306.080038109274, + "kind": "calibration_drift", + "ledger_value": 15978.0, + "name": "ons.age.40_50@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18243.578409767913, + "kind": "calibration_drift", + "ledger_value": 20339.0, + "name": "ons.age.40_50@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11664.331379193703, + "kind": "calibration_drift", + "ledger_value": 12151.0, + "name": "ons.age.40_50@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13877.368766677659, + "kind": "calibration_drift", + "ledger_value": 14376.0, + "name": "ons.age.40_50@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12979.806011830564, + "kind": "calibration_drift", + "ledger_value": 14563.0, + "name": "ons.age.40_50@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11444.487284517449, + "kind": "calibration_drift", + "ledger_value": 11798.0, + "name": "ons.age.40_50@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15452.472657416554, + "kind": "calibration_drift", + "ledger_value": 17791.0, + "name": "ons.age.40_50@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10708.689281256165, + "kind": "calibration_drift", + "ledger_value": 9557.0, + "name": "ons.age.40_50@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11574.573131217005, + "kind": "calibration_drift", + "ledger_value": 11136.0, + "name": "ons.age.40_50@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14575.862250433003, + "kind": "calibration_drift", + "ledger_value": 15420.0, + "name": "ons.age.40_50@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10242.697227688455, + "kind": "calibration_drift", + "ledger_value": 10114.0, + "name": "ons.age.40_50@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14063.867884273459, + "kind": "calibration_drift", + "ledger_value": 15905.0, + "name": "ons.age.40_50@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13310.080070532213, + "kind": "calibration_drift", + "ledger_value": 15008.0, + "name": "ons.age.40_50@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9712.303994204345, + "kind": "calibration_drift", + "ledger_value": 9153.0, + "name": "ons.age.40_50@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17690.76780482451, + "kind": "calibration_drift", + "ledger_value": 20043.0, + "name": "ons.age.40_50@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10738.246390180184, + "kind": "calibration_drift", + "ledger_value": 11205.0, + "name": "ons.age.40_50@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12410.998496853292, + "kind": "calibration_drift", + "ledger_value": 14717.0, + "name": "ons.age.40_50@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10997.629086783545, + "kind": "calibration_drift", + "ledger_value": 10707.0, + "name": "ons.age.40_50@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10148.175411557406, + "kind": "calibration_drift", + "ledger_value": 10106.0, + "name": "ons.age.40_50@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11540.163008462283, + "kind": "calibration_drift", + "ledger_value": 12458.0, + "name": "ons.age.40_50@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10660.770905451185, + "kind": "calibration_drift", + "ledger_value": 11155.0, + "name": "ons.age.40_50@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10714.08336331029, + "kind": "calibration_drift", + "ledger_value": 10455.0, + "name": "ons.age.40_50@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11068.313337222948, + "kind": "calibration_drift", + "ledger_value": 11532.0, + "name": "ons.age.40_50@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13096.360563482978, + "kind": "calibration_drift", + "ledger_value": 13204.0, + "name": "ons.age.40_50@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17235.832252394095, + "kind": "calibration_drift", + "ledger_value": 17407.0, + "name": "ons.age.40_50@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13346.097774258275, + "kind": "calibration_drift", + "ledger_value": 13443.0, + "name": "ons.age.40_50@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15791.474993171203, + "kind": "calibration_drift", + "ledger_value": 15785.0, + "name": "ons.age.40_50@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.716592748366, + "kind": "calibration_drift", + "ledger_value": 10059.0, + "name": "ons.age.40_50@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12544.792628492882, + "kind": "calibration_drift", + "ledger_value": 13199.0, + "name": "ons.age.40_50@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12040.998449485549, + "kind": "calibration_drift", + "ledger_value": 13022.0, + "name": "ons.age.40_50@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15041.306702230466, + "kind": "calibration_drift", + "ledger_value": 15920.0, + "name": "ons.age.40_50@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14424.718557434711, + "kind": "calibration_drift", + "ledger_value": 15701.0, + "name": "ons.age.40_50@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12358.352685656762, + "kind": "calibration_drift", + "ledger_value": 13276.0, + "name": "ons.age.40_50@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14728.222911216257, + "kind": "calibration_drift", + "ledger_value": 16492.0, + "name": "ons.age.40_50@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14338.379594435359, + "kind": "calibration_drift", + "ledger_value": 15579.0, + "name": "ons.age.40_50@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12264.955189959659, + "kind": "calibration_drift", + "ledger_value": 13255.0, + "name": "ons.age.40_50@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12188.905761309146, + "kind": "calibration_drift", + "ledger_value": 14138.0, + "name": "ons.age.40_50@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11700.930968056633, + "kind": "calibration_drift", + "ledger_value": 12223.0, + "name": "ons.age.40_50@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14334.572684895857, + "kind": "calibration_drift", + "ledger_value": 16453.0, + "name": "ons.age.40_50@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11902.016663913893, + "kind": "calibration_drift", + "ledger_value": 11666.0, + "name": "ons.age.40_50@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13747.282919978103, + "kind": "calibration_drift", + "ledger_value": 16137.0, + "name": "ons.age.40_50@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11692.971962879488, + "kind": "calibration_drift", + "ledger_value": 12038.0, + "name": "ons.age.40_50@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12700.501146134473, + "kind": "calibration_drift", + "ledger_value": 12466.0, + "name": "ons.age.40_50@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10549.261932677766, + "kind": "calibration_drift", + "ledger_value": 11515.0, + "name": "ons.age.40_50@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13720.838636688866, + "kind": "calibration_drift", + "ledger_value": 13983.0, + "name": "ons.age.40_50@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12941.060810262305, + "kind": "calibration_drift", + "ledger_value": 13564.0, + "name": "ons.age.40_50@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13852.76977742626, + "kind": "calibration_drift", + "ledger_value": 14210.0, + "name": "ons.age.40_50@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14107.4883164737, + "kind": "calibration_drift", + "ledger_value": 12731.0, + "name": "ons.age.40_50@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13857.994773099028, + "kind": "calibration_drift", + "ledger_value": 11885.0, + "name": "ons.age.40_50@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13592.905409307152, + "kind": "calibration_drift", + "ledger_value": 12457.0, + "name": "ons.age.40_50@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13586.29499811509, + "kind": "calibration_drift", + "ledger_value": 14927.0, + "name": "ons.age.40_50@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12526.7951811262, + "kind": "calibration_drift", + "ledger_value": 12764.0, + "name": "ons.age.40_50@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13061.182933001903, + "kind": "calibration_drift", + "ledger_value": 15054.0, + "name": "ons.age.40_50@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12806.464393954459, + "kind": "calibration_drift", + "ledger_value": 14203.0, + "name": "ons.age.40_50@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12269.596088577544, + "kind": "calibration_drift", + "ledger_value": 14642.0, + "name": "ons.age.40_50@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12266.98359074116, + "kind": "calibration_drift", + "ledger_value": 13018.0, + "name": "ons.age.40_50@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13852.76977742626, + "kind": "calibration_drift", + "ledger_value": 12686.0, + "name": "ons.age.40_50@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13451.698581807244, + "kind": "calibration_drift", + "ledger_value": 14732.0, + "name": "ons.age.40_50@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11741.87152562797, + "kind": "calibration_drift", + "ledger_value": 13648.0, + "name": "ons.age.40_50@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13588.907495951473, + "kind": "calibration_drift", + "ledger_value": 12046.0, + "name": "ons.age.40_50@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12137.66494784015, + "kind": "calibration_drift", + "ledger_value": 16759.0, + "name": "ons.age.40_50@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14112.766089880537, + "kind": "calibration_drift", + "ledger_value": 12831.0, + "name": "ons.age.40_50@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 19802.0, + "name": "ons.age.40_50@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 29280.0, + "name": "ons.age.40_50@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 42915.0, + "name": "ons.age.40_50@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 17080.0, + "name": "ons.age.40_50@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 19514.0, + "name": "ons.age.40_50@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 15060.0, + "name": "ons.age.40_50@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 20413.0, + "name": "ons.age.40_50@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 17170.0, + "name": "ons.age.40_50@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 20637.0, + "name": "ons.age.40_50@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23873.468559487956, + "kind": "calibration_drift", + "ledger_value": 23540.0, + "name": "ons.age.40_50@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6267.283464712717, + "kind": "calibration_drift", + "ledger_value": 6235.0, + "name": "ons.age.40_50@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17659.34028128282, + "kind": "calibration_drift", + "ledger_value": 14897.0, + "name": "ons.age.40_50@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14564.189725522288, + "kind": "calibration_drift", + "ledger_value": 14314.0, + "name": "ons.age.40_50@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13591.016581401422, + "kind": "calibration_drift", + "ledger_value": 14360.0, + "name": "ons.age.40_50@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11718.868693327111, + "kind": "calibration_drift", + "ledger_value": 13480.0, + "name": "ons.age.40_50@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3164.023132751177, + "kind": "calibration_drift", + "ledger_value": 3043.0, + "name": "ons.age.40_50@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19173.447602154458, + "kind": "calibration_drift", + "ledger_value": 20540.0, + "name": "ons.age.40_50@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28487.222965421664, + "kind": "calibration_drift", + "ledger_value": 28762.0, + "name": "ons.age.40_50@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9492.795646868548, + "kind": "calibration_drift", + "ledger_value": 9151.0, + "name": "ons.age.40_50@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11683.766676934694, + "kind": "calibration_drift", + "ledger_value": 12980.0, + "name": "ons.age.40_50@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11292.318673441298, + "kind": "calibration_drift", + "ledger_value": 10796.0, + "name": "ons.age.40_50@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16148.501079178759, + "kind": "calibration_drift", + "ledger_value": 15098.0, + "name": "ons.age.40_50@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2657.8278480853237, + "kind": "calibration_drift", + "ledger_value": 2434.0, + "name": "ons.age.40_50@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14140.181575789027, + "kind": "calibration_drift", + "ledger_value": 12913.0, + "name": "ons.age.40_50@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2782.258444124657, + "kind": "calibration_drift", + "ledger_value": 2761.0, + "name": "ons.age.40_50@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13498.419882986933, + "kind": "calibration_drift", + "ledger_value": 12550.0, + "name": "ons.age.40_50@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39587.327838755504, + "kind": "calibration_drift", + "ledger_value": 41957.0, + "name": "ons.age.40_50@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11208.921124150344, + "kind": "calibration_drift", + "ledger_value": 11286.0, + "name": "ons.age.40_50@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27115.82349740059, + "kind": "calibration_drift", + "ledger_value": 30625.0, + "name": "ons.age.40_50@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31921.41058295863, + "kind": "calibration_drift", + "ledger_value": 34684.0, + "name": "ons.age.40_50@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10405.932238814792, + "kind": "calibration_drift", + "ledger_value": 9587.0, + "name": "ons.age.40_50@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 62281.023519326285, + "kind": "calibration_drift", + "ledger_value": 68022.0, + "name": "ons.age.40_50@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22256.37297289556, + "kind": "calibration_drift", + "ledger_value": 23110.0, + "name": "ons.age.40_50@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10699.941886460265, + "kind": "calibration_drift", + "ledger_value": 10591.0, + "name": "ons.age.40_50@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21942.149405465487, + "kind": "calibration_drift", + "ledger_value": 24781.0, + "name": "ons.age.40_50@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13840.119856351763, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.40_50@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17998.4983844951, + "kind": "calibration_drift", + "ledger_value": 16976.0, + "name": "ons.age.40_50@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13185.89089565857, + "kind": "calibration_drift", + "ledger_value": 14053.0, + "name": "ons.age.40_50@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45000.90605651742, + "kind": "calibration_drift", + "ledger_value": 44592.0, + "name": "ons.age.40_50@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18271.567863740947, + "kind": "calibration_drift", + "ledger_value": 18103.0, + "name": "ons.age.40_50@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 75137.19754376779, + "kind": "calibration_drift", + "ledger_value": 76180.0, + "name": "ons.age.40_50@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41271.86150128413, + "kind": "calibration_drift", + "ledger_value": 44305.0, + "name": "ons.age.40_50@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11158.88070346332, + "kind": "calibration_drift", + "ledger_value": 13546.0, + "name": "ons.age.40_50@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11933.442665277946, + "kind": "calibration_drift", + "ledger_value": 3060.0, + "name": "ons.age.40_50@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10831.51400508872, + "kind": "calibration_drift", + "ledger_value": 12993.0, + "name": "ons.age.40_50@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11959.384931941593, + "kind": "calibration_drift", + "ledger_value": 10309.0, + "name": "ons.age.40_50@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3227.959180576737, + "kind": "calibration_drift", + "ledger_value": 5314.0, + "name": "ons.age.40_50@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11827.202906560151, + "kind": "calibration_drift", + "ledger_value": 15225.0, + "name": "ons.age.40_50@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11923.55989702513, + "kind": "calibration_drift", + "ledger_value": 15521.0, + "name": "ons.age.40_50@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11308.357573287194, + "kind": "calibration_drift", + "ledger_value": 11423.0, + "name": "ons.age.40_50@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5552.880412052212, + "kind": "calibration_drift", + "ledger_value": 12001.0, + "name": "ons.age.40_50@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12043.388462090548, + "kind": "calibration_drift", + "ledger_value": 11935.0, + "name": "ons.age.40_50@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14493.64790193239, + "kind": "calibration_drift", + "ledger_value": 11216.0, + "name": "ons.age.40_50@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16611.50043159069, + "kind": "calibration_drift", + "ledger_value": 11944.0, + "name": "ons.age.40_50@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12324.889233003822, + "kind": "calibration_drift", + "ledger_value": 10168.0, + "name": "ons.age.40_50@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12898.655580149747, + "kind": "calibration_drift", + "ledger_value": 12842.0, + "name": "ons.age.40_50@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10037.994423073127, + "kind": "calibration_drift", + "ledger_value": 10915.0, + "name": "ons.age.40_50@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13283.824119343019, + "kind": "calibration_drift", + "ledger_value": 12444.0, + "name": "ons.age.40_50@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13615.287225158416, + "kind": "calibration_drift", + "ledger_value": 11747.0, + "name": "ons.age.40_50@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12307.926195166789, + "kind": "calibration_drift", + "ledger_value": 11316.0, + "name": "ons.age.40_50@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9582.880591570532, + "kind": "calibration_drift", + "ledger_value": 9911.0, + "name": "ons.age.40_50@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17715.070319219347, + "kind": "calibration_drift", + "ledger_value": 9451.0, + "name": "ons.age.40_50@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11889.995545346492, + "kind": "calibration_drift", + "ledger_value": 11747.0, + "name": "ons.age.40_50@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11272.752429964357, + "kind": "calibration_drift", + "ledger_value": 12935.0, + "name": "ons.age.40_50@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11744.233323604916, + "kind": "calibration_drift", + "ledger_value": 12375.0, + "name": "ons.age.40_50@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12139.597211031734, + "kind": "calibration_drift", + "ledger_value": 14335.0, + "name": "ons.age.40_50@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11100.15235312095, + "kind": "calibration_drift", + "ledger_value": 14924.0, + "name": "ons.age.40_50@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13858.141430819045, + "kind": "calibration_drift", + "ledger_value": 12442.0, + "name": "ons.age.40_50@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10740.696306229447, + "kind": "calibration_drift", + "ledger_value": 13458.0, + "name": "ons.age.40_50@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10897.058994833473, + "kind": "calibration_drift", + "ledger_value": 14239.0, + "name": "ons.age.40_50@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14757.586993660405, + "kind": "calibration_drift", + "ledger_value": 12448.0, + "name": "ons.age.40_50@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13225.626967794235, + "kind": "calibration_drift", + "ledger_value": 12294.0, + "name": "ons.age.40_50@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13039.9421057841, + "kind": "calibration_drift", + "ledger_value": 11648.0, + "name": "ons.age.40_50@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13220.673230207512, + "kind": "calibration_drift", + "ledger_value": 13319.0, + "name": "ons.age.40_50@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12542.45590539755, + "kind": "calibration_drift", + "ledger_value": 11912.0, + "name": "ons.age.40_50@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10367.322850945911, + "kind": "calibration_drift", + "ledger_value": 12259.0, + "name": "ons.age.40_50@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12673.473262255573, + "kind": "calibration_drift", + "ledger_value": 12263.0, + "name": "ons.age.40_50@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16042.9402240187, + "kind": "calibration_drift", + "ledger_value": 11013.0, + "name": "ons.age.40_50@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15632.273403675255, + "kind": "calibration_drift", + "ledger_value": 12371.0, + "name": "ons.age.40_50@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11328.123843661762, + "kind": "calibration_drift", + "ledger_value": 12537.0, + "name": "ons.age.40_50@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12751.762051269781, + "kind": "calibration_drift", + "ledger_value": 10612.0, + "name": "ons.age.40_50@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14661.482013785875, + "kind": "calibration_drift", + "ledger_value": 13507.0, + "name": "ons.age.40_50@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11845.599679662771, + "kind": "calibration_drift", + "ledger_value": 13840.0, + "name": "ons.age.40_50@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10466.00970402649, + "kind": "calibration_drift", + "ledger_value": 12715.0, + "name": "ons.age.40_50@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11119.836356788499, + "kind": "calibration_drift", + "ledger_value": 12505.0, + "name": "ons.age.40_50@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13059.307683723071, + "kind": "calibration_drift", + "ledger_value": 11694.0, + "name": "ons.age.40_50@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14011.838667688406, + "kind": "calibration_drift", + "ledger_value": 12944.0, + "name": "ons.age.40_50@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11610.671454140904, + "kind": "calibration_drift", + "ledger_value": 9210.0, + "name": "ons.age.40_50@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10334.885134848102, + "kind": "calibration_drift", + "ledger_value": 12353.0, + "name": "ons.age.40_50@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12878.852983263165, + "kind": "calibration_drift", + "ledger_value": 11111.0, + "name": "ons.age.40_50@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12940.929745263316, + "kind": "calibration_drift", + "ledger_value": 12185.0, + "name": "ons.age.40_50@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12335.87392991683, + "kind": "calibration_drift", + "ledger_value": 12184.0, + "name": "ons.age.40_50@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12888.921053420721, + "kind": "calibration_drift", + "ledger_value": 12351.0, + "name": "ons.age.40_50@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11154.646035116179, + "kind": "calibration_drift", + "ledger_value": 10999.0, + "name": "ons.age.40_50@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12064.552018907196, + "kind": "calibration_drift", + "ledger_value": 9926.0, + "name": "ons.age.40_50@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12379.333403308596, + "kind": "calibration_drift", + "ledger_value": 10380.0, + "name": "ons.age.40_50@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9863.551209950569, + "kind": "calibration_drift", + "ledger_value": 10019.0, + "name": "ons.age.40_50@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13656.271065102852, + "kind": "calibration_drift", + "ledger_value": 11617.0, + "name": "ons.age.40_50@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11771.948349258644, + "kind": "calibration_drift", + "ledger_value": 13416.0, + "name": "ons.age.40_50@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6890.240875757725, + "kind": "calibration_drift", + "ledger_value": 7089.0, + "name": "ons.age.40_50@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12050.38882460774, + "kind": "calibration_drift", + "ledger_value": 12349.0, + "name": "ons.age.40_50@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11527.473097261478, + "kind": "calibration_drift", + "ledger_value": 11906.0, + "name": "ons.age.40_50@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10036.482900701689, + "kind": "calibration_drift", + "ledger_value": 10398.0, + "name": "ons.age.40_50@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18038.648668809088, + "kind": "calibration_drift", + "ledger_value": 18577.0, + "name": "ons.age.40_50@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16005.303498533285, + "kind": "calibration_drift", + "ledger_value": 16974.0, + "name": "ons.age.40_50@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6541.306403420721, + "kind": "calibration_drift", + "ledger_value": 6803.0, + "name": "ons.age.40_50@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12499.435415748954, + "kind": "calibration_drift", + "ledger_value": 12938.0, + "name": "ons.age.40_50@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20566.722659195013, + "kind": "calibration_drift", + "ledger_value": 21466.0, + "name": "ons.age.40_50@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27702.87000153007, + "kind": "calibration_drift", + "ledger_value": 29173.0, + "name": "ons.age.40_50@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16197.752037593806, + "kind": "calibration_drift", + "ledger_value": 16871.0, + "name": "ons.age.40_50@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16967.546193835886, + "kind": "calibration_drift", + "ledger_value": 17591.0, + "name": "ons.age.40_50@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16259.957625977004, + "kind": "calibration_drift", + "ledger_value": 16830.0, + "name": "ons.age.40_50@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43632.36043922133, + "kind": "calibration_drift", + "ledger_value": 45712.0, + "name": "ons.age.40_50@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27569.711163897286, + "kind": "calibration_drift", + "ledger_value": 28935.0, + "name": "ons.age.40_50@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20564.77873455804, + "kind": "calibration_drift", + "ledger_value": 21268.0, + "name": "ons.age.40_50@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7326.651956758602, + "kind": "calibration_drift", + "ledger_value": 7645.0, + "name": "ons.age.40_50@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10301.82861364877, + "kind": "calibration_drift", + "ledger_value": 10797.0, + "name": "ons.age.40_50@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10319.323935381544, + "kind": "calibration_drift", + "ledger_value": 10814.0, + "name": "ons.age.40_50@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19538.386526235263, + "kind": "calibration_drift", + "ledger_value": 21084.0, + "name": "ons.age.40_50@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13453.902412503658, + "kind": "calibration_drift", + "ledger_value": 13854.0, + "name": "ons.age.40_50@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6643.3624468619055, + "kind": "calibration_drift", + "ledger_value": 7024.0, + "name": "ons.age.40_50@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11462.52572376032, + "kind": "calibration_drift", + "ledger_value": 10970.0, + "name": "ons.age.40_50@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12733.668598935883, + "kind": "calibration_drift", + "ledger_value": 12708.0, + "name": "ons.age.40_50@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10344.201665461907, + "kind": "calibration_drift", + "ledger_value": 9677.0, + "name": "ons.age.40_50@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11365.853891360848, + "kind": "calibration_drift", + "ledger_value": 10694.0, + "name": "ons.age.40_50@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9930.106559671593, + "kind": "calibration_drift", + "ledger_value": 9855.0, + "name": "ons.age.40_50@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11932.521252529641, + "kind": "calibration_drift", + "ledger_value": 11785.0, + "name": "ons.age.40_50@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10069.315181822027, + "kind": "calibration_drift", + "ledger_value": 10373.0, + "name": "ons.age.40_50@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12143.074909935922, + "kind": "calibration_drift", + "ledger_value": 12108.0, + "name": "ons.age.40_50@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11219.721822327692, + "kind": "calibration_drift", + "ledger_value": 13854.0, + "name": "ons.age.40_50@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10962.439829693021, + "kind": "calibration_drift", + "ledger_value": 12737.0, + "name": "ons.age.40_50@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12449.077454708258, + "kind": "calibration_drift", + "ledger_value": 12172.0, + "name": "ons.age.40_50@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12342.779861400615, + "kind": "calibration_drift", + "ledger_value": 13822.0, + "name": "ons.age.40_50@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9184.75114918494, + "kind": "calibration_drift", + "ledger_value": 8958.0, + "name": "ons.age.40_50@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10867.519218646888, + "kind": "calibration_drift", + "ledger_value": 10252.0, + "name": "ons.age.40_50@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10650.519808952546, + "kind": "calibration_drift", + "ledger_value": 10685.0, + "name": "ons.age.40_50@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10251.652146024, + "kind": "calibration_drift", + "ledger_value": 10015.0, + "name": "ons.age.40_50@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11490.791533968124, + "kind": "calibration_drift", + "ledger_value": 11686.0, + "name": "ons.age.40_50@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10782.193511703552, + "kind": "calibration_drift", + "ledger_value": 11028.0, + "name": "ons.age.40_50@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11485.939203674252, + "kind": "calibration_drift", + "ledger_value": 11813.0, + "name": "ons.age.40_50@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10982.697322423943, + "kind": "calibration_drift", + "ledger_value": 10765.0, + "name": "ons.age.40_50@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10695.374276791028, + "kind": "calibration_drift", + "ledger_value": 10709.0, + "name": "ons.age.40_50@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10861.517374704552, + "kind": "calibration_drift", + "ledger_value": 10679.0, + "name": "ons.age.40_50@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12031.1458519986, + "kind": "calibration_drift", + "ledger_value": 12169.0, + "name": "ons.age.40_50@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12916.341082072287, + "kind": "calibration_drift", + "ledger_value": 14124.0, + "name": "ons.age.40_50@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12565.848980479504, + "kind": "calibration_drift", + "ledger_value": 12914.0, + "name": "ons.age.40_50@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12559.300307074765, + "kind": "calibration_drift", + "ledger_value": 12713.0, + "name": "ons.age.40_50@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11744.2468921434, + "kind": "calibration_drift", + "ledger_value": 11770.0, + "name": "ons.age.40_50@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11944.938089602783, + "kind": "calibration_drift", + "ledger_value": 12622.0, + "name": "ons.age.40_50@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10653.340472497357, + "kind": "calibration_drift", + "ledger_value": 10784.0, + "name": "ons.age.40_50@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11918.90119534298, + "kind": "calibration_drift", + "ledger_value": 11711.0, + "name": "ons.age.40_50@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12150.11123804338, + "kind": "calibration_drift", + "ledger_value": 12691.0, + "name": "ons.age.40_50@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7676.9388226637175, + "kind": "calibration_drift", + "ledger_value": 7108.0, + "name": "ons.age.40_50@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13001.93993440698, + "kind": "calibration_drift", + "ledger_value": 13115.0, + "name": "ons.age.50_60@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16862.57426343924, + "kind": "calibration_drift", + "ledger_value": 16982.0, + "name": "ons.age.50_60@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19505.33980740669, + "kind": "calibration_drift", + "ledger_value": 19686.0, + "name": "ons.age.50_60@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26477.225517917363, + "kind": "calibration_drift", + "ledger_value": 26926.0, + "name": "ons.age.50_60@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15112.070127843293, + "kind": "calibration_drift", + "ledger_value": 15378.0, + "name": "ons.age.50_60@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17260.106851700617, + "kind": "calibration_drift", + "ledger_value": 17594.0, + "name": "ons.age.50_60@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30398.121510695844, + "kind": "calibration_drift", + "ledger_value": 30783.0, + "name": "ons.age.50_60@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19224.442697363807, + "kind": "calibration_drift", + "ledger_value": 19846.0, + "name": "ons.age.50_60@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20482.161937486602, + "kind": "calibration_drift", + "ledger_value": 20395.0, + "name": "ons.age.50_60@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32549.07412150863, + "kind": "calibration_drift", + "ledger_value": 33154.0, + "name": "ons.age.50_60@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51186.45157850601, + "kind": "calibration_drift", + "ledger_value": 52081.0, + "name": "ons.age.50_60@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21604.77841533964, + "kind": "calibration_drift", + "ledger_value": 21879.0, + "name": "ons.age.50_60@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24218.385089752464, + "kind": "calibration_drift", + "ledger_value": 24345.0, + "name": "ons.age.50_60@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24954.160564847487, + "kind": "calibration_drift", + "ledger_value": 25080.0, + "name": "ons.age.50_60@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32375.092866499373, + "kind": "calibration_drift", + "ledger_value": 33200.0, + "name": "ons.age.50_60@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40390.866107065594, + "kind": "calibration_drift", + "ledger_value": 41229.0, + "name": "ons.age.50_60@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5755.960850082839, + "kind": "calibration_drift", + "ledger_value": 5825.0, + "name": "ons.age.50_60@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32987.42912714648, + "kind": "calibration_drift", + "ledger_value": 33683.0, + "name": "ons.age.50_60@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27108.029062615737, + "kind": "calibration_drift", + "ledger_value": 27450.0, + "name": "ons.age.50_60@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26020.40322822825, + "kind": "calibration_drift", + "ledger_value": 26597.0, + "name": "ons.age.50_60@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32139.877985425403, + "kind": "calibration_drift", + "ledger_value": 32731.0, + "name": "ons.age.50_60@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24663.54383161973, + "kind": "calibration_drift", + "ledger_value": 25035.0, + "name": "ons.age.50_60@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48765.2934431537, + "kind": "calibration_drift", + "ledger_value": 49822.0, + "name": "ons.age.50_60@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30207.6168962723, + "kind": "calibration_drift", + "ledger_value": 30999.0, + "name": "ons.age.50_60@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38157.296699181374, + "kind": "calibration_drift", + "ledger_value": 38759.0, + "name": "ons.age.50_60@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33289.70940819609, + "kind": "calibration_drift", + "ledger_value": 33715.0, + "name": "ons.age.50_60@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20007.844326064715, + "kind": "calibration_drift", + "ledger_value": 20154.0, + "name": "ons.age.50_60@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32001.85933620018, + "kind": "calibration_drift", + "ledger_value": 32869.0, + "name": "ons.age.50_60@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25396.40341975929, + "kind": "calibration_drift", + "ledger_value": 26423.0, + "name": "ons.age.50_60@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25177.711898099606, + "kind": "calibration_drift", + "ledger_value": 25903.0, + "name": "ons.age.50_60@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24218.385089752464, + "kind": "calibration_drift", + "ledger_value": 24751.0, + "name": "ons.age.50_60@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21910.946545663195, + "kind": "calibration_drift", + "ledger_value": 22456.0, + "name": "ons.age.50_60@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35784.73667975344, + "kind": "calibration_drift", + "ledger_value": 36761.0, + "name": "ons.age.50_60@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17052.106915544296, + "kind": "calibration_drift", + "ledger_value": 17539.0, + "name": "ons.age.50_60@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23583.693695780144, + "kind": "calibration_drift", + "ledger_value": 24253.0, + "name": "ons.age.50_60@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19725.975253703346, + "kind": "calibration_drift", + "ledger_value": 20313.0, + "name": "ons.age.50_60@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17760.66744572167, + "kind": "calibration_drift", + "ledger_value": 18790.0, + "name": "ons.age.50_60@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21814.722276132936, + "kind": "calibration_drift", + "ledger_value": 22840.0, + "name": "ons.age.50_60@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24331.132718697012, + "kind": "calibration_drift", + "ledger_value": 25444.0, + "name": "ons.age.50_60@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36467.05422733165, + "kind": "calibration_drift", + "ledger_value": 37909.0, + "name": "ons.age.50_60@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39192.43656837054, + "kind": "calibration_drift", + "ledger_value": 40485.0, + "name": "ons.age.50_60@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24795.730706934028, + "kind": "calibration_drift", + "ledger_value": 25217.0, + "name": "ons.age.50_60@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26821.300178661928, + "kind": "calibration_drift", + "ledger_value": 27675.0, + "name": "ons.age.50_60@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20141.0031636975, + "kind": "calibration_drift", + "ledger_value": 20293.0, + "name": "ons.age.50_60@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 74195.71554406005, + "kind": "calibration_drift", + "ledger_value": 74866.0, + "name": "ons.age.50_60@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58711.38384823605, + "kind": "calibration_drift", + "ledger_value": 60168.0, + "name": "ons.age.50_60@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50806.4143119774, + "kind": "calibration_drift", + "ledger_value": 51680.0, + "name": "ons.age.50_60@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48125.74223758894, + "kind": "calibration_drift", + "ledger_value": 48726.0, + "name": "ons.age.50_60@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 81974.32997891532, + "kind": "calibration_drift", + "ledger_value": 83422.0, + "name": "ons.age.50_60@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 301.3083187311179, + "kind": "calibration_drift", + "ledger_value": 321.0, + "name": "ons.age.50_60@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 73071.15514157004, + "kind": "calibration_drift", + "ledger_value": 74350.0, + "name": "ons.age.50_60@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24567.31956208947, + "kind": "calibration_drift", + "ledger_value": 25481.0, + "name": "ons.age.50_60@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40583.31464612612, + "kind": "calibration_drift", + "ledger_value": 41514.0, + "name": "ons.age.50_60@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46853.44356268883, + "kind": "calibration_drift", + "ledger_value": 47402.0, + "name": "ons.age.50_60@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 51267.124450940464, + "kind": "calibration_drift", + "ledger_value": 52545.0, + "name": "ons.age.50_60@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 54022.63762385246, + "kind": "calibration_drift", + "ledger_value": 54362.0, + "name": "ons.age.50_60@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 77584.94814862587, + "kind": "calibration_drift", + "ledger_value": 79884.0, + "name": "ons.age.50_60@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50307.79764259332, + "kind": "calibration_drift", + "ledger_value": 51831.0, + "name": "ons.age.50_60@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57576.131860242676, + "kind": "calibration_drift", + "ledger_value": 59272.0, + "name": "ons.age.50_60@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40335.46425491181, + "kind": "calibration_drift", + "ledger_value": 40671.0, + "name": "ons.age.50_60@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33884.550347110424, + "kind": "calibration_drift", + "ledger_value": 34157.0, + "name": "ons.age.50_60@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 92204.23338099603, + "kind": "calibration_drift", + "ledger_value": 93537.0, + "name": "ons.age.50_60@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 81380.46100231948, + "kind": "calibration_drift", + "ledger_value": 82834.0, + "name": "ons.age.50_60@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14489.04228169282, + "kind": "calibration_drift", + "ledger_value": 15037.0, + "name": "ons.age.50_60@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12616.070893967451, + "kind": "calibration_drift", + "ledger_value": 13140.0, + "name": "ons.age.50_60@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14295.621780313813, + "kind": "calibration_drift", + "ledger_value": 14593.0, + "name": "ons.age.50_60@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25806.571518161003, + "kind": "calibration_drift", + "ledger_value": 26484.0, + "name": "ons.age.50_60@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22876.10512792126, + "kind": "calibration_drift", + "ledger_value": 23634.0, + "name": "ons.age.50_60@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19202.087564038597, + "kind": "calibration_drift", + "ledger_value": 19699.0, + "name": "ons.age.50_60@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12211.73456947666, + "kind": "calibration_drift", + "ledger_value": 12347.0, + "name": "ons.age.50_60@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15043.060803230683, + "kind": "calibration_drift", + "ledger_value": 15215.0, + "name": "ons.age.50_60@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11778.239375431247, + "kind": "calibration_drift", + "ledger_value": 11894.0, + "name": "ons.age.50_60@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16332.854799863564, + "kind": "calibration_drift", + "ledger_value": 16522.0, + "name": "ons.age.50_60@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14178.014339776828, + "kind": "calibration_drift", + "ledger_value": 14189.0, + "name": "ons.age.50_60@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14993.490724987822, + "kind": "calibration_drift", + "ledger_value": 15245.0, + "name": "ons.age.50_60@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16397.976275202225, + "kind": "calibration_drift", + "ledger_value": 16923.0, + "name": "ons.age.50_60@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21191.69442998246, + "kind": "calibration_drift", + "ledger_value": 21593.0, + "name": "ons.age.50_60@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14580.406739630644, + "kind": "calibration_drift", + "ledger_value": 15100.0, + "name": "ons.age.50_60@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12170.912152100187, + "kind": "calibration_drift", + "ledger_value": 12445.0, + "name": "ons.age.50_60@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14289.790006402887, + "kind": "calibration_drift", + "ledger_value": 14469.0, + "name": "ons.age.50_60@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13157.453905364977, + "kind": "calibration_drift", + "ledger_value": 13344.0, + "name": "ons.age.50_60@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19713.33974356301, + "kind": "calibration_drift", + "ledger_value": 19959.0, + "name": "ons.age.50_60@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10280.445442642045, + "kind": "calibration_drift", + "ledger_value": 10462.0, + "name": "ons.age.50_60@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9007.17480542345, + "kind": "calibration_drift", + "ledger_value": 8868.0, + "name": "ons.age.50_60@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13479.173432784331, + "kind": "calibration_drift", + "ledger_value": 13762.0, + "name": "ons.age.50_60@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13114.687563351528, + "kind": "calibration_drift", + "ledger_value": 13267.0, + "name": "ons.age.50_60@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14386.014275933148, + "kind": "calibration_drift", + "ledger_value": 14729.0, + "name": "ons.age.50_60@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13282.837044449861, + "kind": "calibration_drift", + "ledger_value": 13402.0, + "name": "ons.age.50_60@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24227.132750618854, + "kind": "calibration_drift", + "ledger_value": 24467.0, + "name": "ons.age.50_60@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24192.142107153304, + "kind": "calibration_drift", + "ledger_value": 24515.0, + "name": "ons.age.50_60@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22475.65665270442, + "kind": "calibration_drift", + "ledger_value": 23253.0, + "name": "ons.age.50_60@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10442.763149829454, + "kind": "calibration_drift", + "ledger_value": 10597.0, + "name": "ons.age.50_60@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12115.510299946402, + "kind": "calibration_drift", + "ledger_value": 12306.0, + "name": "ons.age.50_60@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24204.77761729364, + "kind": "calibration_drift", + "ledger_value": 25044.0, + "name": "ons.age.50_60@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24558.571901223084, + "kind": "calibration_drift", + "ledger_value": 25321.0, + "name": "ons.age.50_60@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18789.975540999905, + "kind": "calibration_drift", + "ledger_value": 19149.0, + "name": "ons.age.50_60@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11194.090022020273, + "kind": "calibration_drift", + "ledger_value": 11343.0, + "name": "ons.age.50_60@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10203.660419481534, + "kind": "calibration_drift", + "ledger_value": 10499.0, + "name": "ons.age.50_60@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12431.398053454832, + "kind": "calibration_drift", + "ledger_value": 12767.0, + "name": "ons.age.50_60@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20789.302030128645, + "kind": "calibration_drift", + "ledger_value": 21150.0, + "name": "ons.age.50_60@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13536.519209575094, + "kind": "calibration_drift", + "ledger_value": 13965.0, + "name": "ons.age.50_60@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15318.12613936264, + "kind": "calibration_drift", + "ledger_value": 15382.0, + "name": "ons.age.50_60@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13696.892992125526, + "kind": "calibration_drift", + "ledger_value": 13778.0, + "name": "ons.age.50_60@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13102.052053211191, + "kind": "calibration_drift", + "ledger_value": 13327.0, + "name": "ons.age.50_60@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17211.508735776242, + "kind": "calibration_drift", + "ledger_value": 17542.0, + "name": "ons.age.50_60@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18245.67664264692, + "kind": "calibration_drift", + "ledger_value": 18691.0, + "name": "ons.age.50_60@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13219.659493748175, + "kind": "calibration_drift", + "ledger_value": 13548.0, + "name": "ons.age.50_60@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25895.020089143363, + "kind": "calibration_drift", + "ledger_value": 26531.0, + "name": "ons.age.50_60@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18808.44282505117, + "kind": "calibration_drift", + "ledger_value": 19117.0, + "name": "ons.age.50_60@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18353.56445999903, + "kind": "calibration_drift", + "ledger_value": 18848.0, + "name": "ons.age.50_60@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16161.789431809768, + "kind": "calibration_drift", + "ledger_value": 16289.0, + "name": "ons.age.50_60@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11217.417117663972, + "kind": "calibration_drift", + "ledger_value": 11344.0, + "name": "ons.age.50_60@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14503.621716470132, + "kind": "calibration_drift", + "ledger_value": 14910.0, + "name": "ons.age.50_60@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17158.05080825943, + "kind": "calibration_drift", + "ledger_value": 17267.0, + "name": "ons.age.50_60@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25081.487628569346, + "kind": "calibration_drift", + "ledger_value": 25203.0, + "name": "ons.age.50_60@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12991.248348903619, + "kind": "calibration_drift", + "ledger_value": 13373.0, + "name": "ons.age.50_60@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18739.433500438558, + "kind": "calibration_drift", + "ledger_value": 19023.0, + "name": "ons.age.50_60@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17567.24694434266, + "kind": "calibration_drift", + "ledger_value": 18153.0, + "name": "ons.age.50_60@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13232.295003888512, + "kind": "calibration_drift", + "ledger_value": 13605.0, + "name": "ons.age.50_60@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20703.769346101748, + "kind": "calibration_drift", + "ledger_value": 21379.0, + "name": "ons.age.50_60@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14293.677855676837, + "kind": "calibration_drift", + "ledger_value": 14792.0, + "name": "ons.age.50_60@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18131.957051383884, + "kind": "calibration_drift", + "ledger_value": 18653.0, + "name": "ons.age.50_60@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13234.238928525487, + "kind": "calibration_drift", + "ledger_value": 13493.0, + "name": "ons.age.50_60@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12468.332621557356, + "kind": "calibration_drift", + "ledger_value": 12858.0, + "name": "ons.age.50_60@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18937.713813410002, + "kind": "calibration_drift", + "ledger_value": 19408.0, + "name": "ons.age.50_60@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19621.975285625187, + "kind": "calibration_drift", + "ledger_value": 20269.0, + "name": "ons.age.50_60@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14437.528278812984, + "kind": "calibration_drift", + "ledger_value": 15116.0, + "name": "ons.age.50_60@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16319.247327404739, + "kind": "calibration_drift", + "ledger_value": 16336.0, + "name": "ons.age.50_60@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13726.051861680151, + "kind": "calibration_drift", + "ledger_value": 14072.0, + "name": "ons.age.50_60@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24492.478463565934, + "kind": "calibration_drift", + "ledger_value": 25278.0, + "name": "ons.age.50_60@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16818.835959107302, + "kind": "calibration_drift", + "ledger_value": 17394.0, + "name": "ons.age.50_60@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15465.864411772734, + "kind": "calibration_drift", + "ledger_value": 15828.0, + "name": "ons.age.50_60@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20835.956221416047, + "kind": "calibration_drift", + "ledger_value": 21255.0, + "name": "ons.age.50_60@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18636.405494678886, + "kind": "calibration_drift", + "ledger_value": 19083.0, + "name": "ons.age.50_60@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18852.181129383105, + "kind": "calibration_drift", + "ledger_value": 19291.0, + "name": "ons.age.50_60@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16895.620982267814, + "kind": "calibration_drift", + "ledger_value": 17556.0, + "name": "ons.age.50_60@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12105.790676761526, + "kind": "calibration_drift", + "ledger_value": 12297.0, + "name": "ons.age.50_60@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17184.293790858595, + "kind": "calibration_drift", + "ledger_value": 17620.0, + "name": "ons.age.50_60@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12244.781288305236, + "kind": "calibration_drift", + "ledger_value": 12491.0, + "name": "ons.age.50_60@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10982.202236590003, + "kind": "calibration_drift", + "ledger_value": 11371.0, + "name": "ons.age.50_60@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18339.956987540205, + "kind": "calibration_drift", + "ledger_value": 18518.0, + "name": "ons.age.50_60@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11957.080442032942, + "kind": "calibration_drift", + "ledger_value": 12399.0, + "name": "ons.age.50_60@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18209.714036862882, + "kind": "calibration_drift", + "ledger_value": 18767.0, + "name": "ons.age.50_60@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9916.931535527729, + "kind": "calibration_drift", + "ledger_value": 10113.0, + "name": "ons.age.50_60@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10242.538912221033, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.50_60@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16249.266040473642, + "kind": "calibration_drift", + "ledger_value": 16558.0, + "name": "ons.age.50_60@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16999.620950345972, + "kind": "calibration_drift", + "ledger_value": 17329.0, + "name": "ons.age.50_60@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16605.00424904006, + "kind": "calibration_drift", + "ledger_value": 16932.0, + "name": "ons.age.50_60@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14036.107841277657, + "kind": "calibration_drift", + "ledger_value": 14518.0, + "name": "ons.age.50_60@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23160.89008723809, + "kind": "calibration_drift", + "ledger_value": 23861.0, + "name": "ons.age.50_60@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14944.892609063447, + "kind": "calibration_drift", + "ledger_value": 15359.0, + "name": "ons.age.50_60@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16131.658599936656, + "kind": "calibration_drift", + "ledger_value": 16556.0, + "name": "ons.age.50_60@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8160.595626020858, + "kind": "calibration_drift", + "ledger_value": 8269.0, + "name": "ons.age.50_60@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15808.967110198815, + "kind": "calibration_drift", + "ledger_value": 16240.0, + "name": "ons.age.50_60@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7247.9230089611165, + "kind": "calibration_drift", + "ledger_value": 7444.0, + "name": "ons.age.50_60@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9615.62321679661, + "kind": "calibration_drift", + "ledger_value": 9880.0, + "name": "ons.age.50_60@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21451.20836901862, + "kind": "calibration_drift", + "ledger_value": 21526.0, + "name": "ons.age.50_60@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11108.557337993376, + "kind": "calibration_drift", + "ledger_value": 11255.0, + "name": "ons.age.50_60@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17613.901135630058, + "kind": "calibration_drift", + "ledger_value": 17876.0, + "name": "ons.age.50_60@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13863.098548586886, + "kind": "calibration_drift", + "ledger_value": 14240.0, + "name": "ons.age.50_60@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21125.600992325315, + "kind": "calibration_drift", + "ledger_value": 21550.0, + "name": "ons.age.50_60@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14232.444229612127, + "kind": "calibration_drift", + "ledger_value": 14524.0, + "name": "ons.age.50_60@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20206.12463903616, + "kind": "calibration_drift", + "ledger_value": 20725.0, + "name": "ons.age.50_60@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19514.087468273076, + "kind": "calibration_drift", + "ledger_value": 20099.0, + "name": "ons.age.50_60@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14005.005047086057, + "kind": "calibration_drift", + "ledger_value": 14136.0, + "name": "ons.age.50_60@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21596.030754473253, + "kind": "calibration_drift", + "ledger_value": 21863.0, + "name": "ons.age.50_60@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14568.743191808793, + "kind": "calibration_drift", + "ledger_value": 14527.0, + "name": "ons.age.50_60@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15277.303721986164, + "kind": "calibration_drift", + "ledger_value": 15828.0, + "name": "ons.age.50_60@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20363.582534631132, + "kind": "calibration_drift", + "ledger_value": 20802.0, + "name": "ons.age.50_60@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17989.078590566227, + "kind": "calibration_drift", + "ledger_value": 18258.0, + "name": "ons.age.50_60@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17811.209486283016, + "kind": "calibration_drift", + "ledger_value": 18023.0, + "name": "ons.age.50_60@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14827.285168526463, + "kind": "calibration_drift", + "ledger_value": 14981.0, + "name": "ons.age.50_60@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16610.83602295098, + "kind": "calibration_drift", + "ledger_value": 16796.0, + "name": "ons.age.50_60@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15194.68692491473, + "kind": "calibration_drift", + "ledger_value": 15375.0, + "name": "ons.age.50_60@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18006.573912298998, + "kind": "calibration_drift", + "ledger_value": 18340.0, + "name": "ons.age.50_60@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16860.630338802264, + "kind": "calibration_drift", + "ledger_value": 17383.0, + "name": "ons.age.50_60@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22191.843655706078, + "kind": "calibration_drift", + "ledger_value": 22832.0, + "name": "ons.age.50_60@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16626.387420046784, + "kind": "calibration_drift", + "ledger_value": 17035.0, + "name": "ons.age.50_60@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21881.78767610857, + "kind": "calibration_drift", + "ledger_value": 22713.0, + "name": "ons.age.50_60@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18874.536262708316, + "kind": "calibration_drift", + "ledger_value": 19409.0, + "name": "ons.age.50_60@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16242.462304244229, + "kind": "calibration_drift", + "ledger_value": 16519.0, + "name": "ons.age.50_60@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14796.182374334863, + "kind": "calibration_drift", + "ledger_value": 15046.0, + "name": "ons.age.50_60@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17344.667573409028, + "kind": "calibration_drift", + "ledger_value": 17820.0, + "name": "ons.age.50_60@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15804.107298606377, + "kind": "calibration_drift", + "ledger_value": 16008.0, + "name": "ons.age.50_60@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16825.639695336715, + "kind": "calibration_drift", + "ledger_value": 17082.0, + "name": "ons.age.50_60@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16204.555773823218, + "kind": "calibration_drift", + "ledger_value": 16529.0, + "name": "ons.age.50_60@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20191.545204258848, + "kind": "calibration_drift", + "ledger_value": 20357.0, + "name": "ons.age.50_60@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14711.621652626452, + "kind": "calibration_drift", + "ledger_value": 14836.0, + "name": "ons.age.50_60@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10901.529364155542, + "kind": "calibration_drift", + "ledger_value": 11147.0, + "name": "ons.age.50_60@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13781.453713833936, + "kind": "calibration_drift", + "ledger_value": 14132.0, + "name": "ons.age.50_60@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17272.742361840956, + "kind": "calibration_drift", + "ledger_value": 17666.0, + "name": "ons.age.50_60@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15526.126075518958, + "kind": "calibration_drift", + "ledger_value": 16039.0, + "name": "ons.age.50_60@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20025.33964779749, + "kind": "calibration_drift", + "ledger_value": 21082.0, + "name": "ons.age.50_60@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11066.762958298414, + "kind": "calibration_drift", + "ledger_value": 11414.0, + "name": "ons.age.50_60@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18842.46150619823, + "kind": "calibration_drift", + "ledger_value": 19483.0, + "name": "ons.age.50_60@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13311.023951685998, + "kind": "calibration_drift", + "ledger_value": 13425.0, + "name": "ons.age.50_60@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20566.722659195013, + "kind": "calibration_drift", + "ledger_value": 21183.0, + "name": "ons.age.50_60@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11501.230114662316, + "kind": "calibration_drift", + "ledger_value": 11848.0, + "name": "ons.age.50_60@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13840.743415261673, + "kind": "calibration_drift", + "ledger_value": 14128.0, + "name": "ons.age.50_60@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13219.659493748175, + "kind": "calibration_drift", + "ledger_value": 13529.0, + "name": "ons.age.50_60@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12635.510140337201, + "kind": "calibration_drift", + "ledger_value": 12796.0, + "name": "ons.age.50_60@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18563.508320792324, + "kind": "calibration_drift", + "ledger_value": 19492.0, + "name": "ons.age.50_60@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13557.902380581818, + "kind": "calibration_drift", + "ledger_value": 13997.0, + "name": "ons.age.50_60@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9721.567109511745, + "kind": "calibration_drift", + "ledger_value": 9969.0, + "name": "ons.age.50_60@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18301.078494800706, + "kind": "calibration_drift", + "ledger_value": 18703.0, + "name": "ons.age.50_60@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15530.985887111396, + "kind": "calibration_drift", + "ledger_value": 16049.0, + "name": "ons.age.50_60@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20755.283348981586, + "kind": "calibration_drift", + "ledger_value": 21290.0, + "name": "ons.age.50_60@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19007.6951003411, + "kind": "calibration_drift", + "ledger_value": 19566.0, + "name": "ons.age.50_60@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9002.314993831013, + "kind": "calibration_drift", + "ledger_value": 9240.0, + "name": "ons.age.50_60@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22679.76873958679, + "kind": "calibration_drift", + "ledger_value": 23193.0, + "name": "ons.age.50_60@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16986.985440205637, + "kind": "calibration_drift", + "ledger_value": 17296.0, + "name": "ons.age.50_60@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14548.331983120557, + "kind": "calibration_drift", + "ledger_value": 15120.0, + "name": "ons.age.50_60@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21186.834618390025, + "kind": "calibration_drift", + "ledger_value": 21623.0, + "name": "ons.age.50_60@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21677.6755892262, + "kind": "calibration_drift", + "ledger_value": 22646.0, + "name": "ons.age.50_60@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15900.331568136637, + "kind": "calibration_drift", + "ledger_value": 16196.0, + "name": "ons.age.50_60@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14174.126490502878, + "kind": "calibration_drift", + "ledger_value": 14524.0, + "name": "ons.age.50_60@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12051.360786926229, + "kind": "calibration_drift", + "ledger_value": 12262.0, + "name": "ons.age.50_60@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11062.875109024464, + "kind": "calibration_drift", + "ledger_value": 11314.0, + "name": "ons.age.50_60@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13897.117229733947, + "kind": "calibration_drift", + "ledger_value": 14036.0, + "name": "ons.age.50_60@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19798.872427589908, + "kind": "calibration_drift", + "ledger_value": 20313.0, + "name": "ons.age.50_60@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14870.051510539912, + "kind": "calibration_drift", + "ledger_value": 15025.0, + "name": "ons.age.50_60@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21143.09631405809, + "kind": "calibration_drift", + "ledger_value": 22043.0, + "name": "ons.age.50_60@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14624.14504396258, + "kind": "calibration_drift", + "ledger_value": 14993.0, + "name": "ons.age.50_60@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21891.507299293444, + "kind": "calibration_drift", + "ledger_value": 22522.0, + "name": "ons.age.50_60@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11589.678685644676, + "kind": "calibration_drift", + "ledger_value": 11515.0, + "name": "ons.age.50_60@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35074.2322249391, + "kind": "calibration_drift", + "ledger_value": 35559.0, + "name": "ons.age.50_60@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24063.84308111296, + "kind": "calibration_drift", + "ledger_value": 24393.0, + "name": "ons.age.50_60@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 38228.24994843096, + "kind": "calibration_drift", + "ledger_value": 39026.0, + "name": "ons.age.50_60@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25605.375318234095, + "kind": "calibration_drift", + "ledger_value": 25867.0, + "name": "ons.age.50_60@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55715.79598265765, + "kind": "calibration_drift", + "ledger_value": 57139.0, + "name": "ons.age.50_60@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30112.364589060526, + "kind": "calibration_drift", + "ledger_value": 30622.0, + "name": "ons.age.50_60@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28428.925853440218, + "kind": "calibration_drift", + "ledger_value": 29161.0, + "name": "ons.age.50_60@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29017.935018443626, + "kind": "calibration_drift", + "ledger_value": 29474.0, + "name": "ons.age.50_60@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39191.464606052046, + "kind": "calibration_drift", + "ledger_value": 39865.0, + "name": "ons.age.50_60@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31268.027785742135, + "kind": "calibration_drift", + "ledger_value": 31848.0, + "name": "ons.age.50_60@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31156.252119116078, + "kind": "calibration_drift", + "ledger_value": 31618.0, + "name": "ons.age.50_60@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46860.24729891824, + "kind": "calibration_drift", + "ledger_value": 47832.0, + "name": "ons.age.50_60@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20646.423569310988, + "kind": "calibration_drift", + "ledger_value": 20771.0, + "name": "ons.age.50_60@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55348.39422626938, + "kind": "calibration_drift", + "ledger_value": 55657.0, + "name": "ons.age.50_60@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25876.552805092102, + "kind": "calibration_drift", + "ledger_value": 26144.0, + "name": "ons.age.50_60@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39044.69829596044, + "kind": "calibration_drift", + "ledger_value": 39071.0, + "name": "ons.age.50_60@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44359.388253449964, + "kind": "calibration_drift", + "ledger_value": 44677.0, + "name": "ons.age.50_60@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35293.89570891727, + "kind": "calibration_drift", + "ledger_value": 35650.0, + "name": "ons.age.50_60@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41953.78151519346, + "kind": "calibration_drift", + "ledger_value": 42657.0, + "name": "ons.age.50_60@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36791.68964170647, + "kind": "calibration_drift", + "ledger_value": 37385.0, + "name": "ons.age.50_60@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 67342.40923640484, + "kind": "calibration_drift", + "ledger_value": 68628.0, + "name": "ons.age.50_60@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32325.522788256512, + "kind": "calibration_drift", + "ledger_value": 32875.0, + "name": "ons.age.50_60@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28410.458569388953, + "kind": "calibration_drift", + "ledger_value": 28807.0, + "name": "ons.age.50_60@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20234.311546272296, + "kind": "calibration_drift", + "ledger_value": 20139.0, + "name": "ons.age.50_60@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37471.091302329216, + "kind": "calibration_drift", + "ledger_value": 37924.0, + "name": "ons.age.50_60@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 127639.06362609398, + "kind": "calibration_drift", + "ledger_value": 131011.0, + "name": "ons.age.50_60@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39590.9411189504, + "kind": "calibration_drift", + "ledger_value": 40456.0, + "name": "ons.age.50_60@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43887.986528983536, + "kind": "calibration_drift", + "ledger_value": 44557.0, + "name": "ons.age.50_60@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42931.57560759186, + "kind": "calibration_drift", + "ledger_value": 43691.0, + "name": "ons.age.50_60@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29310.495676308357, + "kind": "calibration_drift", + "ledger_value": 30007.0, + "name": "ons.age.50_60@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35677.82082471982, + "kind": "calibration_drift", + "ledger_value": 36508.0, + "name": "ons.age.50_60@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33705.70928050873, + "kind": "calibration_drift", + "ledger_value": 34546.0, + "name": "ons.age.50_60@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 64949.43800828868, + "kind": "calibration_drift", + "ledger_value": 66773.0, + "name": "ons.age.50_60@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29767.317965997474, + "kind": "calibration_drift", + "ledger_value": 30282.0, + "name": "ons.age.50_60@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 58154.449439742726, + "kind": "calibration_drift", + "ledger_value": 59382.0, + "name": "ons.age.50_60@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 95844.23226373162, + "kind": "calibration_drift", + "ledger_value": 97616.0, + "name": "ons.age.50_60@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49726.564176137814, + "kind": "calibration_drift", + "ledger_value": 50718.0, + "name": "ons.age.50_60@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26360.590039698865, + "kind": "calibration_drift", + "ledger_value": 26629.0, + "name": "ons.age.50_60@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 1313.1210922765815, + "kind": "calibration_drift", + "ledger_value": 1403.0, + "name": "ons.age.50_60@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24943.468979344125, + "kind": "calibration_drift", + "ledger_value": 26658.0, + "name": "ons.age.50_60@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48488.28418238477, + "kind": "calibration_drift", + "ledger_value": 51017.0, + "name": "ons.age.50_60@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32361.48539404055, + "kind": "calibration_drift", + "ledger_value": 32940.0, + "name": "ons.age.50_60@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41166.4920372186, + "kind": "calibration_drift", + "ledger_value": 42827.0, + "name": "ons.age.50_60@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44804.54699531723, + "kind": "calibration_drift", + "ledger_value": 46119.0, + "name": "ons.age.50_60@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24551.76816499367, + "kind": "calibration_drift", + "ledger_value": 25463.0, + "name": "ons.age.50_60@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50222.264958566426, + "kind": "calibration_drift", + "ledger_value": 51588.0, + "name": "ons.age.50_60@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46193.481148435836, + "kind": "calibration_drift", + "ledger_value": 48168.0, + "name": "ons.age.50_60@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42565.14581352208, + "kind": "calibration_drift", + "ledger_value": 43999.0, + "name": "ons.age.50_60@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34291.80255855668, + "kind": "calibration_drift", + "ledger_value": 35515.0, + "name": "ons.age.50_60@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27005.97301917455, + "kind": "calibration_drift", + "ledger_value": 28039.0, + "name": "ons.age.50_60@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21927.469905077483, + "kind": "calibration_drift", + "ledger_value": 23195.0, + "name": "ons.age.50_60@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33757.223283388565, + "kind": "calibration_drift", + "ledger_value": 35231.0, + "name": "ons.age.50_60@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30267.878560018522, + "kind": "calibration_drift", + "ledger_value": 31474.0, + "name": "ons.age.50_60@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32715.27967796999, + "kind": "calibration_drift", + "ledger_value": 33512.0, + "name": "ons.age.50_60@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37219.35306184096, + "kind": "calibration_drift", + "ledger_value": 38795.0, + "name": "ons.age.50_60@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35622.41897256603, + "kind": "calibration_drift", + "ledger_value": 37660.0, + "name": "ons.age.50_60@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23492.32923784232, + "kind": "calibration_drift", + "ledger_value": 24045.0, + "name": "ons.age.50_60@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20598.7974157051, + "kind": "calibration_drift", + "ledger_value": 21139.0, + "name": "ons.age.50_60@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21775.843783393437, + "kind": "calibration_drift", + "ledger_value": 22614.0, + "name": "ons.age.50_60@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37072.586751749346, + "kind": "calibration_drift", + "ledger_value": 38009.0, + "name": "ons.age.50_60@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36817.93262430563, + "kind": "calibration_drift", + "ledger_value": 37872.0, + "name": "ons.age.50_60@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26893.225390230004, + "kind": "calibration_drift", + "ledger_value": 28187.0, + "name": "ons.age.50_60@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36206.56832597701, + "kind": "calibration_drift", + "ledger_value": 38466.0, + "name": "ons.age.50_60@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35783.764717434955, + "kind": "calibration_drift", + "ledger_value": 37244.0, + "name": "ons.age.50_60@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28889.63599240328, + "kind": "calibration_drift", + "ledger_value": 30019.0, + "name": "ons.age.50_60@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35854.71796668454, + "kind": "calibration_drift", + "ledger_value": 36813.0, + "name": "ons.age.50_60@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27584.290598674597, + "kind": "calibration_drift", + "ledger_value": 28621.0, + "name": "ons.age.50_60@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26072.88919342657, + "kind": "calibration_drift", + "ledger_value": 28023.0, + "name": "ons.age.50_60@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32360.51343172206, + "kind": "calibration_drift", + "ledger_value": 33805.0, + "name": "ons.age.50_60@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34615.46601061301, + "kind": "calibration_drift", + "ledger_value": 36238.0, + "name": "ons.age.50_60@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26806.720743884616, + "kind": "calibration_drift", + "ledger_value": 27887.0, + "name": "ons.age.50_60@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15597.83545457385, + "kind": "calibration_drift", + "ledger_value": 15772.0, + "name": "ons.age.50_60@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13494.557383838897, + "kind": "calibration_drift", + "ledger_value": 13235.0, + "name": "ons.age.50_60@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14225.612227402551, + "kind": "calibration_drift", + "ledger_value": 13960.0, + "name": "ons.age.50_60@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13777.85654581348, + "kind": "calibration_drift", + "ledger_value": 13847.0, + "name": "ons.age.50_60@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14566.932241244722, + "kind": "calibration_drift", + "ledger_value": 14628.0, + "name": "ons.age.50_60@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14317.836090365974, + "kind": "calibration_drift", + "ledger_value": 13759.0, + "name": "ons.age.50_60@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15457.27567541069, + "kind": "calibration_drift", + "ledger_value": 15341.0, + "name": "ons.age.50_60@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13998.391012686017, + "kind": "calibration_drift", + "ledger_value": 13410.0, + "name": "ons.age.50_60@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14991.875955328504, + "kind": "calibration_drift", + "ledger_value": 15271.0, + "name": "ons.age.50_60@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13514.617627370882, + "kind": "calibration_drift", + "ledger_value": 14408.0, + "name": "ons.age.50_60@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13865.159041263403, + "kind": "calibration_drift", + "ledger_value": 15911.0, + "name": "ons.age.50_60@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15171.55034828917, + "kind": "calibration_drift", + "ledger_value": 14938.0, + "name": "ons.age.50_60@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15055.508644553996, + "kind": "calibration_drift", + "ledger_value": 15047.0, + "name": "ons.age.50_60@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14858.880780592734, + "kind": "calibration_drift", + "ledger_value": 14153.0, + "name": "ons.age.50_60@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14276.305271529596, + "kind": "calibration_drift", + "ledger_value": 13959.0, + "name": "ons.age.50_60@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14636.64997060933, + "kind": "calibration_drift", + "ledger_value": 15339.0, + "name": "ons.age.50_60@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15700.720636739867, + "kind": "calibration_drift", + "ledger_value": 15779.0, + "name": "ons.age.50_60@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11796.32068066301, + "kind": "calibration_drift", + "ledger_value": 12479.0, + "name": "ons.age.50_60@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10565.179943032055, + "kind": "calibration_drift", + "ledger_value": 11574.0, + "name": "ons.age.50_60@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14256.225303077716, + "kind": "calibration_drift", + "ledger_value": 14187.0, + "name": "ons.age.50_60@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14901.022673462589, + "kind": "calibration_drift", + "ledger_value": 15088.0, + "name": "ons.age.50_60@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13962.856569497351, + "kind": "calibration_drift", + "ledger_value": 14505.0, + "name": "ons.age.50_60@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11984.50627890973, + "kind": "calibration_drift", + "ledger_value": 11656.0, + "name": "ons.age.50_60@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11264.240966527981, + "kind": "calibration_drift", + "ledger_value": 11280.0, + "name": "ons.age.50_60@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14275.614899333314, + "kind": "calibration_drift", + "ledger_value": 14028.0, + "name": "ons.age.50_60@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13594.60217754021, + "kind": "calibration_drift", + "ledger_value": 12868.0, + "name": "ons.age.50_60@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13484.014414155665, + "kind": "calibration_drift", + "ledger_value": 13253.0, + "name": "ons.age.50_60@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13719.766656726264, + "kind": "calibration_drift", + "ledger_value": 14462.0, + "name": "ons.age.50_60@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14962.071699017104, + "kind": "calibration_drift", + "ledger_value": 14750.0, + "name": "ons.age.50_60@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11679.677366871072, + "kind": "calibration_drift", + "ledger_value": 12366.0, + "name": "ons.age.50_60@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14957.209506263285, + "kind": "calibration_drift", + "ledger_value": 15333.0, + "name": "ons.age.50_60@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12248.524331688131, + "kind": "calibration_drift", + "ledger_value": 13278.0, + "name": "ons.age.50_60@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12632.183886082325, + "kind": "calibration_drift", + "ledger_value": 13901.0, + "name": "ons.age.50_60@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13059.110052263552, + "kind": "calibration_drift", + "ledger_value": 13509.0, + "name": "ons.age.50_60@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12998.357298990673, + "kind": "calibration_drift", + "ledger_value": 13525.0, + "name": "ons.age.50_60@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13192.223674166806, + "kind": "calibration_drift", + "ledger_value": 13866.0, + "name": "ons.age.50_60@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11288.956291154902, + "kind": "calibration_drift", + "ledger_value": 11608.0, + "name": "ons.age.50_60@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12233.523530108903, + "kind": "calibration_drift", + "ledger_value": 12872.0, + "name": "ons.age.50_60@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14043.032192375547, + "kind": "calibration_drift", + "ledger_value": 14033.0, + "name": "ons.age.50_60@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12525.117020898824, + "kind": "calibration_drift", + "ledger_value": 13443.0, + "name": "ons.age.50_60@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11550.203590413068, + "kind": "calibration_drift", + "ledger_value": 13458.0, + "name": "ons.age.50_60@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13648.678045429037, + "kind": "calibration_drift", + "ledger_value": 14103.0, + "name": "ons.age.50_60@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16024.288222677626, + "kind": "calibration_drift", + "ledger_value": 15672.0, + "name": "ons.age.50_60@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13707.813853374664, + "kind": "calibration_drift", + "ledger_value": 13317.0, + "name": "ons.age.50_60@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14873.250384735358, + "kind": "calibration_drift", + "ledger_value": 14575.0, + "name": "ons.age.50_60@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14454.796071648516, + "kind": "calibration_drift", + "ledger_value": 14560.0, + "name": "ons.age.50_60@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15261.170521826614, + "kind": "calibration_drift", + "ledger_value": 15347.0, + "name": "ons.age.50_60@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14544.09078400771, + "kind": "calibration_drift", + "ledger_value": 14818.0, + "name": "ons.age.50_60@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15019.579702967454, + "kind": "calibration_drift", + "ledger_value": 14624.0, + "name": "ons.age.50_60@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13601.99902250038, + "kind": "calibration_drift", + "ledger_value": 13965.0, + "name": "ons.age.50_60@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14478.091202043084, + "kind": "calibration_drift", + "ledger_value": 13957.0, + "name": "ons.age.50_60@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16167.21499222804, + "kind": "calibration_drift", + "ledger_value": 16697.0, + "name": "ons.age.50_60@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14086.55154215132, + "kind": "calibration_drift", + "ledger_value": 14228.0, + "name": "ons.age.50_60@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12472.32327280309, + "kind": "calibration_drift", + "ledger_value": 12320.0, + "name": "ons.age.50_60@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13977.305073319554, + "kind": "calibration_drift", + "ledger_value": 14034.0, + "name": "ons.age.50_60@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12527.079650428257, + "kind": "calibration_drift", + "ledger_value": 13429.0, + "name": "ons.age.50_60@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13685.366396431491, + "kind": "calibration_drift", + "ledger_value": 13525.0, + "name": "ons.age.50_60@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11536.119399884057, + "kind": "calibration_drift", + "ledger_value": 12660.0, + "name": "ons.age.50_60@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15449.419298405865, + "kind": "calibration_drift", + "ledger_value": 15821.0, + "name": "ons.age.50_60@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16062.39676791243, + "kind": "calibration_drift", + "ledger_value": 17338.0, + "name": "ons.age.50_60@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14853.35780302247, + "kind": "calibration_drift", + "ledger_value": 15327.0, + "name": "ons.age.50_60@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14853.61422698109, + "kind": "calibration_drift", + "ledger_value": 16513.0, + "name": "ons.age.50_60@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14535.293469735081, + "kind": "calibration_drift", + "ledger_value": 13541.0, + "name": "ons.age.50_60@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14637.379792645399, + "kind": "calibration_drift", + "ledger_value": 14029.0, + "name": "ons.age.50_60@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14071.028030194906, + "kind": "calibration_drift", + "ledger_value": 13590.0, + "name": "ons.age.50_60@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13689.794640947646, + "kind": "calibration_drift", + "ledger_value": 13761.0, + "name": "ons.age.50_60@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12915.049099819245, + "kind": "calibration_drift", + "ledger_value": 13769.0, + "name": "ons.age.50_60@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13249.070893300714, + "kind": "calibration_drift", + "ledger_value": 14256.0, + "name": "ons.age.50_60@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7505.854729964915, + "kind": "calibration_drift", + "ledger_value": 7663.0, + "name": "ons.age.50_60@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11061.774526278154, + "kind": "calibration_drift", + "ledger_value": 12231.0, + "name": "ons.age.50_60@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11913.801513488384, + "kind": "calibration_drift", + "ledger_value": 11296.0, + "name": "ons.age.50_60@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11212.975899724015, + "kind": "calibration_drift", + "ledger_value": 12370.0, + "name": "ons.age.50_60@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10804.44322134375, + "kind": "calibration_drift", + "ledger_value": 11155.0, + "name": "ons.age.50_60@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14206.544804838551, + "kind": "calibration_drift", + "ledger_value": 14311.0, + "name": "ons.age.50_60@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13761.629113230958, + "kind": "calibration_drift", + "ledger_value": 13789.0, + "name": "ons.age.50_60@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14698.024058858862, + "kind": "calibration_drift", + "ledger_value": 14484.0, + "name": "ons.age.50_60@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15045.172786529649, + "kind": "calibration_drift", + "ledger_value": 14912.0, + "name": "ons.age.50_60@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13464.506468380707, + "kind": "calibration_drift", + "ledger_value": 12522.0, + "name": "ons.age.50_60@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13975.591837084225, + "kind": "calibration_drift", + "ledger_value": 14540.0, + "name": "ons.age.50_60@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13707.478031632432, + "kind": "calibration_drift", + "ledger_value": 13866.0, + "name": "ons.age.50_60@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15281.881687715095, + "kind": "calibration_drift", + "ledger_value": 15675.0, + "name": "ons.age.50_60@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13982.84777580971, + "kind": "calibration_drift", + "ledger_value": 14292.0, + "name": "ons.age.50_60@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13715.572122624608, + "kind": "calibration_drift", + "ledger_value": 12985.0, + "name": "ons.age.50_60@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14800.376668187748, + "kind": "calibration_drift", + "ledger_value": 14685.0, + "name": "ons.age.50_60@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16429.65505141494, + "kind": "calibration_drift", + "ledger_value": 15778.0, + "name": "ons.age.50_60@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13743.880371296425, + "kind": "calibration_drift", + "ledger_value": 14250.0, + "name": "ons.age.50_60@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11043.193651738204, + "kind": "calibration_drift", + "ledger_value": 12116.0, + "name": "ons.age.50_60@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15155.642200394828, + "kind": "calibration_drift", + "ledger_value": 15028.0, + "name": "ons.age.50_60@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12994.333415332341, + "kind": "calibration_drift", + "ledger_value": 13018.0, + "name": "ons.age.50_60@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14844.580213669733, + "kind": "calibration_drift", + "ledger_value": 14731.0, + "name": "ons.age.50_60@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14246.323393291032, + "kind": "calibration_drift", + "ledger_value": 14530.0, + "name": "ons.age.50_60@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13029.374735523661, + "kind": "calibration_drift", + "ledger_value": 12612.0, + "name": "ons.age.50_60@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14602.089221193602, + "kind": "calibration_drift", + "ledger_value": 14467.0, + "name": "ons.age.50_60@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14022.904303356205, + "kind": "calibration_drift", + "ledger_value": 14053.0, + "name": "ons.age.50_60@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14217.209411527796, + "kind": "calibration_drift", + "ledger_value": 13947.0, + "name": "ons.age.50_60@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13214.710082845728, + "kind": "calibration_drift", + "ledger_value": 13182.0, + "name": "ons.age.50_60@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13851.627746216262, + "kind": "calibration_drift", + "ledger_value": 14374.0, + "name": "ons.age.50_60@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15804.148254202964, + "kind": "calibration_drift", + "ledger_value": 15510.0, + "name": "ons.age.50_60@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12989.195073700008, + "kind": "calibration_drift", + "ledger_value": 13162.0, + "name": "ons.age.50_60@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14430.475245419471, + "kind": "calibration_drift", + "ledger_value": 14522.0, + "name": "ons.age.50_60@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12349.732497179946, + "kind": "calibration_drift", + "ledger_value": 12246.0, + "name": "ons.age.50_60@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13242.415127527864, + "kind": "calibration_drift", + "ledger_value": 14933.0, + "name": "ons.age.50_60@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14050.060440347805, + "kind": "calibration_drift", + "ledger_value": 13529.0, + "name": "ons.age.50_60@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14460.802309756175, + "kind": "calibration_drift", + "ledger_value": 13807.0, + "name": "ons.age.50_60@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14520.065831577072, + "kind": "calibration_drift", + "ledger_value": 14795.0, + "name": "ons.age.50_60@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14822.899011374198, + "kind": "calibration_drift", + "ledger_value": 14615.0, + "name": "ons.age.50_60@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15387.390284226987, + "kind": "calibration_drift", + "ledger_value": 15620.0, + "name": "ons.age.50_60@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14592.969135504527, + "kind": "calibration_drift", + "ledger_value": 14934.0, + "name": "ons.age.50_60@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12121.643784471316, + "kind": "calibration_drift", + "ledger_value": 11692.0, + "name": "ons.age.50_60@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19504.34597707934, + "kind": "calibration_drift", + "ledger_value": 16458.0, + "name": "ons.age.50_60@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12934.28468230638, + "kind": "calibration_drift", + "ledger_value": 12288.0, + "name": "ons.age.50_60@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13593.379720747385, + "kind": "calibration_drift", + "ledger_value": 13634.0, + "name": "ons.age.50_60@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11485.732092015367, + "kind": "calibration_drift", + "ledger_value": 11333.0, + "name": "ons.age.50_60@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13539.696691238421, + "kind": "calibration_drift", + "ledger_value": 14172.0, + "name": "ons.age.50_60@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13675.484211564702, + "kind": "calibration_drift", + "ledger_value": 14191.0, + "name": "ons.age.50_60@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13240.806151865214, + "kind": "calibration_drift", + "ledger_value": 13665.0, + "name": "ons.age.50_60@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16341.99750740693, + "kind": "calibration_drift", + "ledger_value": 16297.0, + "name": "ons.age.50_60@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13119.566931738023, + "kind": "calibration_drift", + "ledger_value": 14361.0, + "name": "ons.age.50_60@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12903.05634852382, + "kind": "calibration_drift", + "ledger_value": 13312.0, + "name": "ons.age.50_60@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12412.36937878591, + "kind": "calibration_drift", + "ledger_value": 12324.0, + "name": "ons.age.50_60@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13495.403016543254, + "kind": "calibration_drift", + "ledger_value": 13762.0, + "name": "ons.age.50_60@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14174.327435678693, + "kind": "calibration_drift", + "ledger_value": 15031.0, + "name": "ons.age.50_60@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15504.290021977542, + "kind": "calibration_drift", + "ledger_value": 15865.0, + "name": "ons.age.50_60@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14520.381430295374, + "kind": "calibration_drift", + "ledger_value": 14838.0, + "name": "ons.age.50_60@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13673.689243854367, + "kind": "calibration_drift", + "ledger_value": 12959.0, + "name": "ons.age.50_60@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16584.0321369637, + "kind": "calibration_drift", + "ledger_value": 15665.0, + "name": "ons.age.50_60@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13889.458947122863, + "kind": "calibration_drift", + "ledger_value": 14861.0, + "name": "ons.age.50_60@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13708.996850464253, + "kind": "calibration_drift", + "ledger_value": 13669.0, + "name": "ons.age.50_60@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13535.92054085618, + "kind": "calibration_drift", + "ledger_value": 13915.0, + "name": "ons.age.50_60@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15614.303717992752, + "kind": "calibration_drift", + "ledger_value": 16234.0, + "name": "ons.age.50_60@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12840.922850858376, + "kind": "calibration_drift", + "ledger_value": 13074.0, + "name": "ons.age.50_60@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13978.064482735466, + "kind": "calibration_drift", + "ledger_value": 14438.0, + "name": "ons.age.50_60@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14845.941233142405, + "kind": "calibration_drift", + "ledger_value": 14781.0, + "name": "ons.age.50_60@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13824.249557403678, + "kind": "calibration_drift", + "ledger_value": 12697.0, + "name": "ons.age.50_60@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14144.394869739865, + "kind": "calibration_drift", + "ledger_value": 15107.0, + "name": "ons.age.50_60@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15302.020830926656, + "kind": "calibration_drift", + "ledger_value": 14857.0, + "name": "ons.age.50_60@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13471.686339222046, + "kind": "calibration_drift", + "ledger_value": 13606.0, + "name": "ons.age.50_60@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13931.553121625904, + "kind": "calibration_drift", + "ledger_value": 13562.0, + "name": "ons.age.50_60@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14300.491929244115, + "kind": "calibration_drift", + "ledger_value": 13896.0, + "name": "ons.age.50_60@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15197.44916810972, + "kind": "calibration_drift", + "ledger_value": 14184.0, + "name": "ons.age.50_60@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15170.830388713046, + "kind": "calibration_drift", + "ledger_value": 15388.0, + "name": "ons.age.50_60@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14067.635343973174, + "kind": "calibration_drift", + "ledger_value": 13562.0, + "name": "ons.age.50_60@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13538.514367822212, + "kind": "calibration_drift", + "ledger_value": 13920.0, + "name": "ons.age.50_60@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14511.446041583486, + "kind": "calibration_drift", + "ledger_value": 14108.0, + "name": "ons.age.50_60@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15399.373173062464, + "kind": "calibration_drift", + "ledger_value": 16484.0, + "name": "ons.age.50_60@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14888.290636154376, + "kind": "calibration_drift", + "ledger_value": 17114.0, + "name": "ons.age.50_60@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14801.530576001534, + "kind": "calibration_drift", + "ledger_value": 16272.0, + "name": "ons.age.50_60@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12899.092635833244, + "kind": "calibration_drift", + "ledger_value": 13589.0, + "name": "ons.age.50_60@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13774.7695958501, + "kind": "calibration_drift", + "ledger_value": 13479.0, + "name": "ons.age.50_60@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14405.627524739324, + "kind": "calibration_drift", + "ledger_value": 14668.0, + "name": "ons.age.50_60@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13388.40772743046, + "kind": "calibration_drift", + "ledger_value": 14416.0, + "name": "ons.age.50_60@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13648.786532488457, + "kind": "calibration_drift", + "ledger_value": 13898.0, + "name": "ons.age.50_60@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14310.034884547978, + "kind": "calibration_drift", + "ledger_value": 14437.0, + "name": "ons.age.50_60@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14839.19531053873, + "kind": "calibration_drift", + "ledger_value": 14085.0, + "name": "ons.age.50_60@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13961.692799223618, + "kind": "calibration_drift", + "ledger_value": 13500.0, + "name": "ons.age.50_60@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14524.444763793495, + "kind": "calibration_drift", + "ledger_value": 14827.0, + "name": "ons.age.50_60@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14097.498872692375, + "kind": "calibration_drift", + "ledger_value": 13681.0, + "name": "ons.age.50_60@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12552.465622331567, + "kind": "calibration_drift", + "ledger_value": 12755.0, + "name": "ons.age.50_60@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16248.974785187806, + "kind": "calibration_drift", + "ledger_value": 16615.0, + "name": "ons.age.50_60@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13822.452198793962, + "kind": "calibration_drift", + "ledger_value": 13081.0, + "name": "ons.age.50_60@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14208.500959015493, + "kind": "calibration_drift", + "ledger_value": 14427.0, + "name": "ons.age.50_60@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14971.56493860628, + "kind": "calibration_drift", + "ledger_value": 15555.0, + "name": "ons.age.50_60@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16844.440529401538, + "kind": "calibration_drift", + "ledger_value": 16554.0, + "name": "ons.age.50_60@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14373.549126605989, + "kind": "calibration_drift", + "ledger_value": 14317.0, + "name": "ons.age.50_60@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15705.975472577315, + "kind": "calibration_drift", + "ledger_value": 15316.0, + "name": "ons.age.50_60@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14521.486025809427, + "kind": "calibration_drift", + "ledger_value": 13857.0, + "name": "ons.age.50_60@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17414.165253153868, + "kind": "calibration_drift", + "ledger_value": 17554.0, + "name": "ons.age.50_60@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15118.93412447248, + "kind": "calibration_drift", + "ledger_value": 15442.0, + "name": "ons.age.50_60@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11072.741972331576, + "kind": "calibration_drift", + "ledger_value": 11055.0, + "name": "ons.age.50_60@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12735.495550843509, + "kind": "calibration_drift", + "ledger_value": 13977.0, + "name": "ons.age.50_60@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15007.863100550541, + "kind": "calibration_drift", + "ledger_value": 13628.0, + "name": "ons.age.50_60@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14528.78424617013, + "kind": "calibration_drift", + "ledger_value": 15264.0, + "name": "ons.age.50_60@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14361.08297723311, + "kind": "calibration_drift", + "ledger_value": 14468.0, + "name": "ons.age.50_60@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14793.374321625452, + "kind": "calibration_drift", + "ledger_value": 16963.0, + "name": "ons.age.50_60@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13908.710725388808, + "kind": "calibration_drift", + "ledger_value": 13819.0, + "name": "ons.age.50_60@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15545.209368297214, + "kind": "calibration_drift", + "ledger_value": 16289.0, + "name": "ons.age.50_60@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14153.0245221934, + "kind": "calibration_drift", + "ledger_value": 12849.0, + "name": "ons.age.50_60@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14299.58067700427, + "kind": "calibration_drift", + "ledger_value": 13896.0, + "name": "ons.age.50_60@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13516.175896042492, + "kind": "calibration_drift", + "ledger_value": 13678.0, + "name": "ons.age.50_60@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14739.505565395504, + "kind": "calibration_drift", + "ledger_value": 14735.0, + "name": "ons.age.50_60@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14677.05646901176, + "kind": "calibration_drift", + "ledger_value": 14502.0, + "name": "ons.age.50_60@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13497.407634763551, + "kind": "calibration_drift", + "ledger_value": 12903.0, + "name": "ons.age.50_60@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14629.775836026343, + "kind": "calibration_drift", + "ledger_value": 14449.0, + "name": "ons.age.50_60@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13347.853292128822, + "kind": "calibration_drift", + "ledger_value": 13037.0, + "name": "ons.age.50_60@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13861.726905201884, + "kind": "calibration_drift", + "ledger_value": 13680.0, + "name": "ons.age.50_60@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15435.982624385342, + "kind": "calibration_drift", + "ledger_value": 15166.0, + "name": "ons.age.50_60@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13313.226097607152, + "kind": "calibration_drift", + "ledger_value": 14390.0, + "name": "ons.age.50_60@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16050.357394079076, + "kind": "calibration_drift", + "ledger_value": 16085.0, + "name": "ons.age.50_60@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12416.048076346102, + "kind": "calibration_drift", + "ledger_value": 13809.0, + "name": "ons.age.50_60@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13958.339562841675, + "kind": "calibration_drift", + "ledger_value": 13122.0, + "name": "ons.age.50_60@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14611.214686406285, + "kind": "calibration_drift", + "ledger_value": 14859.0, + "name": "ons.age.50_60@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14605.316935358042, + "kind": "calibration_drift", + "ledger_value": 13997.0, + "name": "ons.age.50_60@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15287.029891807373, + "kind": "calibration_drift", + "ledger_value": 14478.0, + "name": "ons.age.50_60@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13842.948781462992, + "kind": "calibration_drift", + "ledger_value": 14008.0, + "name": "ons.age.50_60@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11582.630760993618, + "kind": "calibration_drift", + "ledger_value": 12895.0, + "name": "ons.age.50_60@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13173.483047305337, + "kind": "calibration_drift", + "ledger_value": 13316.0, + "name": "ons.age.50_60@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12129.945632191764, + "kind": "calibration_drift", + "ledger_value": 12209.0, + "name": "ons.age.50_60@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12278.625340631002, + "kind": "calibration_drift", + "ledger_value": 12521.0, + "name": "ons.age.50_60@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12682.33449491229, + "kind": "calibration_drift", + "ledger_value": 12627.0, + "name": "ons.age.50_60@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14462.528240246882, + "kind": "calibration_drift", + "ledger_value": 14440.0, + "name": "ons.age.50_60@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14725.668534090011, + "kind": "calibration_drift", + "ledger_value": 15296.0, + "name": "ons.age.50_60@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13756.297208369566, + "kind": "calibration_drift", + "ledger_value": 15577.0, + "name": "ons.age.50_60@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15661.624052335836, + "kind": "calibration_drift", + "ledger_value": 15111.0, + "name": "ons.age.50_60@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14090.180927411779, + "kind": "calibration_drift", + "ledger_value": 14199.0, + "name": "ons.age.50_60@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13819.86476630016, + "kind": "calibration_drift", + "ledger_value": 14088.0, + "name": "ons.age.50_60@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13594.37534096143, + "kind": "calibration_drift", + "ledger_value": 14536.0, + "name": "ons.age.50_60@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15747.602587253494, + "kind": "calibration_drift", + "ledger_value": 15480.0, + "name": "ons.age.50_60@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13853.741827977155, + "kind": "calibration_drift", + "ledger_value": 13882.0, + "name": "ons.age.50_60@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14048.02120241737, + "kind": "calibration_drift", + "ledger_value": 14399.0, + "name": "ons.age.50_60@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13409.986789794266, + "kind": "calibration_drift", + "ledger_value": 13098.0, + "name": "ons.age.50_60@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13878.977031185832, + "kind": "calibration_drift", + "ledger_value": 14270.0, + "name": "ons.age.50_60@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15800.06519578495, + "kind": "calibration_drift", + "ledger_value": 15285.0, + "name": "ons.age.50_60@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13830.127583532028, + "kind": "calibration_drift", + "ledger_value": 13254.0, + "name": "ons.age.50_60@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15279.909195725715, + "kind": "calibration_drift", + "ledger_value": 16029.0, + "name": "ons.age.50_60@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13266.468272647036, + "kind": "calibration_drift", + "ledger_value": 12834.0, + "name": "ons.age.50_60@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13743.663397177592, + "kind": "calibration_drift", + "ledger_value": 13361.0, + "name": "ons.age.50_60@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15114.417117816804, + "kind": "calibration_drift", + "ledger_value": 15733.0, + "name": "ons.age.50_60@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14359.66278300076, + "kind": "calibration_drift", + "ledger_value": 14703.0, + "name": "ons.age.50_60@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14633.060035188659, + "kind": "calibration_drift", + "ledger_value": 13684.0, + "name": "ons.age.50_60@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13557.84478931813, + "kind": "calibration_drift", + "ledger_value": 14191.0, + "name": "ons.age.50_60@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15654.445974669032, + "kind": "calibration_drift", + "ledger_value": 15587.0, + "name": "ons.age.50_60@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14189.416999397445, + "kind": "calibration_drift", + "ledger_value": 14475.0, + "name": "ons.age.50_60@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14539.047453994472, + "kind": "calibration_drift", + "ledger_value": 13977.0, + "name": "ons.age.50_60@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13533.642312608446, + "kind": "calibration_drift", + "ledger_value": 13079.0, + "name": "ons.age.50_60@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14887.383289839261, + "kind": "calibration_drift", + "ledger_value": 14178.0, + "name": "ons.age.50_60@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14444.71663758279, + "kind": "calibration_drift", + "ledger_value": 14577.0, + "name": "ons.age.50_60@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14081.501962658509, + "kind": "calibration_drift", + "ledger_value": 14236.0, + "name": "ons.age.50_60@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15145.661390928568, + "kind": "calibration_drift", + "ledger_value": 11935.0, + "name": "ons.age.50_60@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13051.900496394253, + "kind": "calibration_drift", + "ledger_value": 13316.0, + "name": "ons.age.50_60@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13987.757587309536, + "kind": "calibration_drift", + "ledger_value": 13920.0, + "name": "ons.age.50_60@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13502.95472056924, + "kind": "calibration_drift", + "ledger_value": 14081.0, + "name": "ons.age.50_60@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15252.60004413276, + "kind": "calibration_drift", + "ledger_value": 15350.0, + "name": "ons.age.50_60@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14363.88391585803, + "kind": "calibration_drift", + "ledger_value": 14506.0, + "name": "ons.age.50_60@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14332.126794829026, + "kind": "calibration_drift", + "ledger_value": 15581.0, + "name": "ons.age.50_60@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15018.672356652338, + "kind": "calibration_drift", + "ledger_value": 14295.0, + "name": "ons.age.50_60@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14892.541356391488, + "kind": "calibration_drift", + "ledger_value": 15550.0, + "name": "ons.age.50_60@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12647.618635899218, + "kind": "calibration_drift", + "ledger_value": 12946.0, + "name": "ons.age.50_60@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13945.36494886709, + "kind": "calibration_drift", + "ledger_value": 14491.0, + "name": "ons.age.50_60@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13624.74733428234, + "kind": "calibration_drift", + "ledger_value": 14038.0, + "name": "ons.age.50_60@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14091.482772124768, + "kind": "calibration_drift", + "ledger_value": 14362.0, + "name": "ons.age.50_60@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10609.541287873193, + "kind": "calibration_drift", + "ledger_value": 10058.0, + "name": "ons.age.50_60@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10609.541287873193, + "kind": "calibration_drift", + "ledger_value": 10172.0, + "name": "ons.age.50_60@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12557.870250382466, + "kind": "calibration_drift", + "ledger_value": 12204.0, + "name": "ons.age.50_60@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12808.56411977261, + "kind": "calibration_drift", + "ledger_value": 12570.0, + "name": "ons.age.50_60@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13477.74188962944, + "kind": "calibration_drift", + "ledger_value": 12694.0, + "name": "ons.age.50_60@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13645.699582525076, + "kind": "calibration_drift", + "ledger_value": 13357.0, + "name": "ons.age.50_60@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13152.15249940257, + "kind": "calibration_drift", + "ledger_value": 14037.0, + "name": "ons.age.50_60@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18552.31285594554, + "kind": "calibration_drift", + "ledger_value": 18000.0, + "name": "ons.age.50_60@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14891.762222055684, + "kind": "calibration_drift", + "ledger_value": 15794.0, + "name": "ons.age.50_60@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14507.244633646107, + "kind": "calibration_drift", + "ledger_value": 14919.0, + "name": "ons.age.50_60@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12915.295661317916, + "kind": "calibration_drift", + "ledger_value": 12954.0, + "name": "ons.age.50_60@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13776.560578728135, + "kind": "calibration_drift", + "ledger_value": 14238.0, + "name": "ons.age.50_60@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14067.449252304681, + "kind": "calibration_drift", + "ledger_value": 14017.0, + "name": "ons.age.50_60@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13222.274589624998, + "kind": "calibration_drift", + "ledger_value": 13077.0, + "name": "ons.age.50_60@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12536.498299677543, + "kind": "calibration_drift", + "ledger_value": 12471.0, + "name": "ons.age.50_60@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12866.091848642855, + "kind": "calibration_drift", + "ledger_value": 12465.0, + "name": "ons.age.50_60@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10428.313107204567, + "kind": "calibration_drift", + "ledger_value": 6745.0, + "name": "ons.age.50_60@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13395.497762002975, + "kind": "calibration_drift", + "ledger_value": 14017.0, + "name": "ons.age.50_60@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11432.56357044165, + "kind": "calibration_drift", + "ledger_value": 12004.0, + "name": "ons.age.50_60@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10418.209564903413, + "kind": "calibration_drift", + "ledger_value": 12512.0, + "name": "ons.age.50_60@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11188.960809753324, + "kind": "calibration_drift", + "ledger_value": 13887.0, + "name": "ons.age.50_60@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12598.273660539866, + "kind": "calibration_drift", + "ledger_value": 13745.0, + "name": "ons.age.50_60@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11916.680846784428, + "kind": "calibration_drift", + "ledger_value": 12750.0, + "name": "ons.age.50_60@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13058.666241565943, + "kind": "calibration_drift", + "ledger_value": 14465.0, + "name": "ons.age.50_60@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11047.976944812448, + "kind": "calibration_drift", + "ledger_value": 12088.0, + "name": "ons.age.50_60@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12497.876906525498, + "kind": "calibration_drift", + "ledger_value": 14385.0, + "name": "ons.age.50_60@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15734.16423841979, + "kind": "calibration_drift", + "ledger_value": 15549.0, + "name": "ons.age.50_60@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14339.666496027217, + "kind": "calibration_drift", + "ledger_value": 13747.0, + "name": "ons.age.50_60@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15392.777379015757, + "kind": "calibration_drift", + "ledger_value": 15347.0, + "name": "ons.age.50_60@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12959.686593538898, + "kind": "calibration_drift", + "ledger_value": 13789.0, + "name": "ons.age.50_60@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12449.637821750695, + "kind": "calibration_drift", + "ledger_value": 12199.0, + "name": "ons.age.50_60@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13351.837725947367, + "kind": "calibration_drift", + "ledger_value": 13312.0, + "name": "ons.age.50_60@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14125.064448243947, + "kind": "calibration_drift", + "ledger_value": 14755.0, + "name": "ons.age.50_60@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13052.965739716636, + "kind": "calibration_drift", + "ledger_value": 13117.0, + "name": "ons.age.50_60@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12920.512902629827, + "kind": "calibration_drift", + "ledger_value": 11695.0, + "name": "ons.age.50_60@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11712.85468213243, + "kind": "calibration_drift", + "ledger_value": 10797.0, + "name": "ons.age.50_60@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13674.458515730224, + "kind": "calibration_drift", + "ledger_value": 12735.0, + "name": "ons.age.50_60@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11147.656827495724, + "kind": "calibration_drift", + "ledger_value": 11001.0, + "name": "ons.age.50_60@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12795.89085874085, + "kind": "calibration_drift", + "ledger_value": 12492.0, + "name": "ons.age.50_60@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11971.527281619616, + "kind": "calibration_drift", + "ledger_value": 12195.0, + "name": "ons.age.50_60@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14600.957728061514, + "kind": "calibration_drift", + "ledger_value": 14441.0, + "name": "ons.age.50_60@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13341.994990920366, + "kind": "calibration_drift", + "ledger_value": 13180.0, + "name": "ons.age.50_60@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13187.430518632615, + "kind": "calibration_drift", + "ledger_value": 13838.0, + "name": "ons.age.50_60@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12967.990784814181, + "kind": "calibration_drift", + "ledger_value": 13873.0, + "name": "ons.age.50_60@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14875.548337902987, + "kind": "calibration_drift", + "ledger_value": 14195.0, + "name": "ons.age.50_60@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15092.687129929565, + "kind": "calibration_drift", + "ledger_value": 15010.0, + "name": "ons.age.50_60@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15022.863902129771, + "kind": "calibration_drift", + "ledger_value": 15165.0, + "name": "ons.age.50_60@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15207.923100573324, + "kind": "calibration_drift", + "ledger_value": 15273.0, + "name": "ons.age.50_60@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15206.137995322935, + "kind": "calibration_drift", + "ledger_value": 15109.0, + "name": "ons.age.50_60@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11462.799282497837, + "kind": "calibration_drift", + "ledger_value": 11968.0, + "name": "ons.age.50_60@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9452.595836422737, + "kind": "calibration_drift", + "ledger_value": 9099.0, + "name": "ons.age.50_60@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9095.772035544045, + "kind": "calibration_drift", + "ledger_value": 9690.0, + "name": "ons.age.50_60@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14984.380583416982, + "kind": "calibration_drift", + "ledger_value": 14546.0, + "name": "ons.age.50_60@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13564.66394801052, + "kind": "calibration_drift", + "ledger_value": 14185.0, + "name": "ons.age.50_60@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14088.326784941763, + "kind": "calibration_drift", + "ledger_value": 14071.0, + "name": "ons.age.50_60@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14090.802262388432, + "kind": "calibration_drift", + "ledger_value": 13729.0, + "name": "ons.age.50_60@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14093.47498903404, + "kind": "calibration_drift", + "ledger_value": 14384.0, + "name": "ons.age.50_60@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13880.620644312823, + "kind": "calibration_drift", + "ledger_value": 14671.0, + "name": "ons.age.50_60@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13765.597508099489, + "kind": "calibration_drift", + "ledger_value": 14556.0, + "name": "ons.age.50_60@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13829.634460534682, + "kind": "calibration_drift", + "ledger_value": 13198.0, + "name": "ons.age.50_60@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13707.072873808147, + "kind": "calibration_drift", + "ledger_value": 13386.0, + "name": "ons.age.50_60@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14783.659798577759, + "kind": "calibration_drift", + "ledger_value": 14162.0, + "name": "ons.age.50_60@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13693.936874125344, + "kind": "calibration_drift", + "ledger_value": 14327.0, + "name": "ons.age.50_60@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14248.789008277756, + "kind": "calibration_drift", + "ledger_value": 14487.0, + "name": "ons.age.50_60@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13229.257211267399, + "kind": "calibration_drift", + "ledger_value": 12466.0, + "name": "ons.age.50_60@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12778.227192975959, + "kind": "calibration_drift", + "ledger_value": 12818.0, + "name": "ons.age.50_60@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14814.558885591383, + "kind": "calibration_drift", + "ledger_value": 17046.0, + "name": "ons.age.50_60@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11436.567729180093, + "kind": "calibration_drift", + "ledger_value": 12860.0, + "name": "ons.age.50_60@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15087.196728363371, + "kind": "calibration_drift", + "ledger_value": 15890.0, + "name": "ons.age.50_60@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14287.745725067994, + "kind": "calibration_drift", + "ledger_value": 13885.0, + "name": "ons.age.50_60@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14124.028889949524, + "kind": "calibration_drift", + "ledger_value": 13277.0, + "name": "ons.age.50_60@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12218.60162820925, + "kind": "calibration_drift", + "ledger_value": 11853.0, + "name": "ons.age.50_60@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15721.224690969462, + "kind": "calibration_drift", + "ledger_value": 15874.0, + "name": "ons.age.50_60@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14329.85842904124, + "kind": "calibration_drift", + "ledger_value": 14357.0, + "name": "ons.age.50_60@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14183.03833136664, + "kind": "calibration_drift", + "ledger_value": 13973.0, + "name": "ons.age.50_60@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13114.389140265903, + "kind": "calibration_drift", + "ledger_value": 13406.0, + "name": "ons.age.50_60@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12470.729362568307, + "kind": "calibration_drift", + "ledger_value": 12031.0, + "name": "ons.age.50_60@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12967.704773475722, + "kind": "calibration_drift", + "ledger_value": 12437.0, + "name": "ons.age.50_60@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13979.050728730155, + "kind": "calibration_drift", + "ledger_value": 13512.0, + "name": "ons.age.50_60@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14174.1400489397, + "kind": "calibration_drift", + "ledger_value": 13851.0, + "name": "ons.age.50_60@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14586.726198358141, + "kind": "calibration_drift", + "ledger_value": 14864.0, + "name": "ons.age.50_60@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14433.591782762689, + "kind": "calibration_drift", + "ledger_value": 15182.0, + "name": "ons.age.50_60@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14846.454081059645, + "kind": "calibration_drift", + "ledger_value": 14490.0, + "name": "ons.age.50_60@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13915.921122610076, + "kind": "calibration_drift", + "ledger_value": 13677.0, + "name": "ons.age.50_60@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14636.876807188108, + "kind": "calibration_drift", + "ledger_value": 14440.0, + "name": "ons.age.50_60@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14000.955252272212, + "kind": "calibration_drift", + "ledger_value": 13622.0, + "name": "ons.age.50_60@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14487.156695529626, + "kind": "calibration_drift", + "ledger_value": 14287.0, + "name": "ons.age.50_60@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14475.08315175928, + "kind": "calibration_drift", + "ledger_value": 14486.0, + "name": "ons.age.50_60@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13826.182599553269, + "kind": "calibration_drift", + "ledger_value": 13783.0, + "name": "ons.age.50_60@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14571.83388383833, + "kind": "calibration_drift", + "ledger_value": 15530.0, + "name": "ons.age.50_60@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15015.595269148907, + "kind": "calibration_drift", + "ledger_value": 14794.0, + "name": "ons.age.50_60@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13210.89155318015, + "kind": "calibration_drift", + "ledger_value": 12875.0, + "name": "ons.age.50_60@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13937.500184973882, + "kind": "calibration_drift", + "ledger_value": 13462.0, + "name": "ons.age.50_60@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12845.744497943526, + "kind": "calibration_drift", + "ledger_value": 12106.0, + "name": "ons.age.50_60@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14672.953685673852, + "kind": "calibration_drift", + "ledger_value": 13561.0, + "name": "ons.age.50_60@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15940.260063930073, + "kind": "calibration_drift", + "ledger_value": 15371.0, + "name": "ons.age.50_60@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13530.466600505546, + "kind": "calibration_drift", + "ledger_value": 13471.0, + "name": "ons.age.50_60@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13700.929358227693, + "kind": "calibration_drift", + "ledger_value": 13852.0, + "name": "ons.age.50_60@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14893.01475446894, + "kind": "calibration_drift", + "ledger_value": 15359.0, + "name": "ons.age.50_60@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15545.023836872471, + "kind": "calibration_drift", + "ledger_value": 15488.0, + "name": "ons.age.50_60@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15812.846943876126, + "kind": "calibration_drift", + "ledger_value": 15367.0, + "name": "ons.age.50_60@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14862.579203072819, + "kind": "calibration_drift", + "ledger_value": 15254.0, + "name": "ons.age.50_60@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14230.267308497487, + "kind": "calibration_drift", + "ledger_value": 14272.0, + "name": "ons.age.50_60@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14967.308665248906, + "kind": "calibration_drift", + "ledger_value": 15852.0, + "name": "ons.age.50_60@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13901.771617326065, + "kind": "calibration_drift", + "ledger_value": 14320.0, + "name": "ons.age.50_60@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12801.950792463775, + "kind": "calibration_drift", + "ledger_value": 13329.0, + "name": "ons.age.50_60@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10842.837777917015, + "kind": "calibration_drift", + "ledger_value": 11403.0, + "name": "ons.age.50_60@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12353.50812578588, + "kind": "calibration_drift", + "ledger_value": 12009.0, + "name": "ons.age.50_60@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13674.430821145726, + "kind": "calibration_drift", + "ledger_value": 13912.0, + "name": "ons.age.50_60@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10331.85406485001, + "kind": "calibration_drift", + "ledger_value": 10063.0, + "name": "ons.age.50_60@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13562.85491897115, + "kind": "calibration_drift", + "ledger_value": 13896.0, + "name": "ons.age.50_60@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13787.837355279738, + "kind": "calibration_drift", + "ledger_value": 13370.0, + "name": "ons.age.50_60@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14268.020805174203, + "kind": "calibration_drift", + "ledger_value": 13975.0, + "name": "ons.age.50_60@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12775.830615208863, + "kind": "calibration_drift", + "ledger_value": 13421.0, + "name": "ons.age.50_60@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13870.143169885656, + "kind": "calibration_drift", + "ledger_value": 13412.0, + "name": "ons.age.50_60@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12968.858681289508, + "kind": "calibration_drift", + "ledger_value": 14164.0, + "name": "ons.age.50_60@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10385.643722158764, + "kind": "calibration_drift", + "ledger_value": 13032.0, + "name": "ons.age.50_60@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13194.699151613477, + "kind": "calibration_drift", + "ledger_value": 12051.0, + "name": "ons.age.50_60@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13463.816096184424, + "kind": "calibration_drift", + "ledger_value": 13187.0, + "name": "ons.age.50_60@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14237.121718160579, + "kind": "calibration_drift", + "ledger_value": 15124.0, + "name": "ons.age.50_60@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13729.53049207369, + "kind": "calibration_drift", + "ledger_value": 13434.0, + "name": "ons.age.50_60@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15227.973481645362, + "kind": "calibration_drift", + "ledger_value": 15487.0, + "name": "ons.age.50_60@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14796.116085490687, + "kind": "calibration_drift", + "ledger_value": 15121.0, + "name": "ons.age.50_60@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13015.5870165179, + "kind": "calibration_drift", + "ledger_value": 12885.0, + "name": "ons.age.50_60@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12762.910792678429, + "kind": "calibration_drift", + "ledger_value": 12967.0, + "name": "ons.age.50_60@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14223.590423113437, + "kind": "calibration_drift", + "ledger_value": 14344.0, + "name": "ons.age.50_60@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13570.468738050155, + "kind": "calibration_drift", + "ledger_value": 13653.0, + "name": "ons.age.50_60@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12504.691866348803, + "kind": "calibration_drift", + "ledger_value": 12120.0, + "name": "ons.age.50_60@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13637.809614567559, + "kind": "calibration_drift", + "ledger_value": 13352.0, + "name": "ons.age.50_60@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11606.142865507018, + "kind": "calibration_drift", + "ledger_value": 11716.0, + "name": "ons.age.50_60@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13609.977752597419, + "kind": "calibration_drift", + "ledger_value": 13853.0, + "name": "ons.age.50_60@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11656.914809313637, + "kind": "calibration_drift", + "ledger_value": 12732.0, + "name": "ons.age.50_60@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16839.22328808963, + "kind": "calibration_drift", + "ledger_value": 17176.0, + "name": "ons.age.50_60@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13306.113213374956, + "kind": "calibration_drift", + "ledger_value": 13318.0, + "name": "ons.age.50_60@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14282.419996696672, + "kind": "calibration_drift", + "ledger_value": 14164.0, + "name": "ons.age.50_60@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13190.675267955141, + "kind": "calibration_drift", + "ledger_value": 13362.0, + "name": "ons.age.50_60@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12369.29015373787, + "kind": "calibration_drift", + "ledger_value": 13703.0, + "name": "ons.age.50_60@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13554.353478496927, + "kind": "calibration_drift", + "ledger_value": 13294.0, + "name": "ons.age.50_60@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12699.495175219889, + "kind": "calibration_drift", + "ledger_value": 13118.0, + "name": "ons.age.50_60@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15259.533353475428, + "kind": "calibration_drift", + "ledger_value": 15367.0, + "name": "ons.age.50_60@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15097.641073447134, + "kind": "calibration_drift", + "ledger_value": 15610.0, + "name": "ons.age.50_60@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14993.68381259045, + "kind": "calibration_drift", + "ledger_value": 13717.0, + "name": "ons.age.50_60@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16016.477154399685, + "kind": "calibration_drift", + "ledger_value": 16455.0, + "name": "ons.age.50_60@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12677.008766540968, + "kind": "calibration_drift", + "ledger_value": 13227.0, + "name": "ons.age.50_60@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13664.162107545666, + "kind": "calibration_drift", + "ledger_value": 13961.0, + "name": "ons.age.50_60@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13558.212589339582, + "kind": "calibration_drift", + "ledger_value": 13428.0, + "name": "ons.age.50_60@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12948.739262997842, + "kind": "calibration_drift", + "ledger_value": 13217.0, + "name": "ons.age.50_60@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15272.226339427085, + "kind": "calibration_drift", + "ledger_value": 15256.0, + "name": "ons.age.50_60@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12953.726250046831, + "kind": "calibration_drift", + "ledger_value": 13234.0, + "name": "ons.age.50_60@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14876.638774439889, + "kind": "calibration_drift", + "ledger_value": 14753.0, + "name": "ons.age.50_60@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14430.090609481542, + "kind": "calibration_drift", + "ledger_value": 15073.0, + "name": "ons.age.50_60@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12819.41981100686, + "kind": "calibration_drift", + "ledger_value": 12676.0, + "name": "ons.age.50_60@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13047.503331597363, + "kind": "calibration_drift", + "ledger_value": 13428.0, + "name": "ons.age.50_60@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14383.510211152354, + "kind": "calibration_drift", + "ledger_value": 15148.0, + "name": "ons.age.50_60@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14433.87779410115, + "kind": "calibration_drift", + "ledger_value": 14443.0, + "name": "ons.age.50_60@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14336.604351644917, + "kind": "calibration_drift", + "ledger_value": 13982.0, + "name": "ons.age.50_60@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12442.583074643631, + "kind": "calibration_drift", + "ledger_value": 11351.0, + "name": "ons.age.50_60@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13479.418507820412, + "kind": "calibration_drift", + "ledger_value": 13283.0, + "name": "ons.age.50_60@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14422.861426340467, + "kind": "calibration_drift", + "ledger_value": 14098.0, + "name": "ons.age.50_60@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14924.476001699537, + "kind": "calibration_drift", + "ledger_value": 14155.0, + "name": "ons.age.50_60@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13164.648236155286, + "kind": "calibration_drift", + "ledger_value": 12690.0, + "name": "ons.age.50_60@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15160.178736674163, + "kind": "calibration_drift", + "ledger_value": 15014.0, + "name": "ons.age.50_60@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13942.520177086852, + "kind": "calibration_drift", + "ledger_value": 14353.0, + "name": "ons.age.50_60@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14009.12136910824, + "kind": "calibration_drift", + "ledger_value": 13550.0, + "name": "ons.age.50_60@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7532.197360483075, + "kind": "calibration_drift", + "ledger_value": 6555.0, + "name": "ons.age.50_60@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12579.484563716975, + "kind": "calibration_drift", + "ledger_value": 12123.0, + "name": "ons.age.50_60@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13365.281332984288, + "kind": "calibration_drift", + "ledger_value": 13885.0, + "name": "ons.age.50_60@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14582.320803501665, + "kind": "calibration_drift", + "ledger_value": 14427.0, + "name": "ons.age.50_60@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14911.92109018714, + "kind": "calibration_drift", + "ledger_value": 15002.0, + "name": "ons.age.50_60@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13793.636481728514, + "kind": "calibration_drift", + "ledger_value": 13655.0, + "name": "ons.age.50_60@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14641.551613202935, + "kind": "calibration_drift", + "ledger_value": 14384.0, + "name": "ons.age.50_60@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15420.350625369514, + "kind": "calibration_drift", + "ledger_value": 15180.0, + "name": "ons.age.50_60@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15526.293170119068, + "kind": "calibration_drift", + "ledger_value": 15444.0, + "name": "ons.age.50_60@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14825.24979217382, + "kind": "calibration_drift", + "ledger_value": 14509.0, + "name": "ons.age.50_60@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14176.201303068603, + "kind": "calibration_drift", + "ledger_value": 15939.0, + "name": "ons.age.50_60@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13510.781130451542, + "kind": "calibration_drift", + "ledger_value": 14103.0, + "name": "ons.age.50_60@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13208.851781637271, + "kind": "calibration_drift", + "ledger_value": 12968.0, + "name": "ons.age.50_60@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13207.490762164602, + "kind": "calibration_drift", + "ledger_value": 12840.0, + "name": "ons.age.50_60@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14057.190942667767, + "kind": "calibration_drift", + "ledger_value": 15008.0, + "name": "ons.age.50_60@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14508.240058563917, + "kind": "calibration_drift", + "ledger_value": 14306.0, + "name": "ons.age.50_60@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14258.671193144546, + "kind": "calibration_drift", + "ledger_value": 14774.0, + "name": "ons.age.50_60@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13508.039366586303, + "kind": "calibration_drift", + "ledger_value": 13196.0, + "name": "ons.age.50_60@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14919.575156072391, + "kind": "calibration_drift", + "ledger_value": 14171.0, + "name": "ons.age.50_60@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14278.869511115789, + "kind": "calibration_drift", + "ledger_value": 14036.0, + "name": "ons.age.50_60@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15704.981219436926, + "kind": "calibration_drift", + "ledger_value": 16167.0, + "name": "ons.age.50_60@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14835.782899397102, + "kind": "calibration_drift", + "ledger_value": 15390.0, + "name": "ons.age.50_60@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13133.581487322564, + "kind": "calibration_drift", + "ledger_value": 13335.0, + "name": "ons.age.50_60@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14604.40671582102, + "kind": "calibration_drift", + "ledger_value": 15483.0, + "name": "ons.age.50_60@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14230.257446037538, + "kind": "calibration_drift", + "ledger_value": 14033.0, + "name": "ons.age.50_60@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13406.732178011789, + "kind": "calibration_drift", + "ledger_value": 12089.0, + "name": "ons.age.50_60@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15202.252186103859, + "kind": "calibration_drift", + "ledger_value": 14813.0, + "name": "ons.age.50_60@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14182.059604277058, + "kind": "calibration_drift", + "ledger_value": 14077.0, + "name": "ons.age.50_60@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14036.746119419495, + "kind": "calibration_drift", + "ledger_value": 13933.0, + "name": "ons.age.50_60@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13563.279004748867, + "kind": "calibration_drift", + "ledger_value": 14249.0, + "name": "ons.age.50_60@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14781.519644769283, + "kind": "calibration_drift", + "ledger_value": 14852.0, + "name": "ons.age.50_60@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14053.334777050175, + "kind": "calibration_drift", + "ledger_value": 14082.0, + "name": "ons.age.50_60@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12460.231896908197, + "kind": "calibration_drift", + "ledger_value": 12342.0, + "name": "ons.age.50_60@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11437.4948004151, + "kind": "calibration_drift", + "ledger_value": 12183.0, + "name": "ons.age.50_60@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13637.720852428038, + "kind": "calibration_drift", + "ledger_value": 13362.0, + "name": "ons.age.50_60@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14483.50569255393, + "kind": "calibration_drift", + "ledger_value": 14303.0, + "name": "ons.age.50_60@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16771.471077257873, + "kind": "calibration_drift", + "ledger_value": 16640.0, + "name": "ons.age.50_60@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14135.597555467233, + "kind": "calibration_drift", + "ledger_value": 14203.0, + "name": "ons.age.50_60@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14150.657531806142, + "kind": "calibration_drift", + "ledger_value": 14052.0, + "name": "ons.age.50_60@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12571.598794628544, + "kind": "calibration_drift", + "ledger_value": 13388.0, + "name": "ons.age.50_60@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13460.600934241735, + "kind": "calibration_drift", + "ledger_value": 14465.0, + "name": "ons.age.50_60@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14585.59201546425, + "kind": "calibration_drift", + "ledger_value": 14818.0, + "name": "ons.age.50_60@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13846.893765441751, + "kind": "calibration_drift", + "ledger_value": 13949.0, + "name": "ons.age.50_60@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13348.93816272298, + "kind": "calibration_drift", + "ledger_value": 13892.0, + "name": "ons.age.50_60@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13815.974953508234, + "kind": "calibration_drift", + "ledger_value": 13169.0, + "name": "ons.age.50_60@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14749.175141704793, + "kind": "calibration_drift", + "ledger_value": 15171.0, + "name": "ons.age.50_60@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13950.656706543043, + "kind": "calibration_drift", + "ledger_value": 13904.0, + "name": "ons.age.50_60@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13981.595243396454, + "kind": "calibration_drift", + "ledger_value": 13202.0, + "name": "ons.age.50_60@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13593.428544806527, + "kind": "calibration_drift", + "ledger_value": 13704.0, + "name": "ons.age.50_60@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13716.709294142725, + "kind": "calibration_drift", + "ledger_value": 13041.0, + "name": "ons.age.50_60@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14250.613563367931, + "kind": "calibration_drift", + "ledger_value": 13845.0, + "name": "ons.age.50_60@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13786.62427270627, + "kind": "calibration_drift", + "ledger_value": 12921.0, + "name": "ons.age.50_60@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13089.368079380629, + "kind": "calibration_drift", + "ledger_value": 13605.0, + "name": "ons.age.50_60@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13673.610344174791, + "kind": "calibration_drift", + "ledger_value": 13774.0, + "name": "ons.age.50_60@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13036.85048016341, + "kind": "calibration_drift", + "ledger_value": 13467.0, + "name": "ons.age.50_60@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13327.438000038748, + "kind": "calibration_drift", + "ledger_value": 12632.0, + "name": "ons.age.50_60@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14244.627050180166, + "kind": "calibration_drift", + "ledger_value": 14165.0, + "name": "ons.age.50_60@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12988.100340645902, + "kind": "calibration_drift", + "ledger_value": 12917.0, + "name": "ons.age.50_60@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12382.111351668837, + "kind": "calibration_drift", + "ledger_value": 11885.0, + "name": "ons.age.50_60@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14224.290657769667, + "kind": "calibration_drift", + "ledger_value": 14914.0, + "name": "ons.age.50_60@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14567.316877182651, + "kind": "calibration_drift", + "ledger_value": 15121.0, + "name": "ons.age.50_60@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14094.441510108836, + "kind": "calibration_drift", + "ledger_value": 13373.0, + "name": "ons.age.50_60@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14663.51531150467, + "kind": "calibration_drift", + "ledger_value": 14981.0, + "name": "ons.age.50_60@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13887.896210310084, + "kind": "calibration_drift", + "ledger_value": 13250.0, + "name": "ons.age.50_60@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13944.53211891602, + "kind": "calibration_drift", + "ledger_value": 13049.0, + "name": "ons.age.50_60@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14342.926188470876, + "kind": "calibration_drift", + "ledger_value": 14358.0, + "name": "ons.age.50_60@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14347.235485742825, + "kind": "calibration_drift", + "ledger_value": 13694.0, + "name": "ons.age.50_60@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13544.11624507205, + "kind": "calibration_drift", + "ledger_value": 13919.0, + "name": "ons.age.50_60@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13091.42933350953, + "kind": "calibration_drift", + "ledger_value": 13032.0, + "name": "ons.age.50_60@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14223.955334131473, + "kind": "calibration_drift", + "ledger_value": 15273.0, + "name": "ons.age.50_60@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15432.816774742389, + "kind": "calibration_drift", + "ledger_value": 15294.0, + "name": "ons.age.50_60@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13876.431832982704, + "kind": "calibration_drift", + "ledger_value": 14409.0, + "name": "ons.age.50_60@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14452.172657302643, + "kind": "calibration_drift", + "ledger_value": 14646.0, + "name": "ons.age.50_60@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14949.516787504705, + "kind": "calibration_drift", + "ledger_value": 14827.0, + "name": "ons.age.50_60@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13629.022162754874, + "kind": "calibration_drift", + "ledger_value": 14488.0, + "name": "ons.age.50_60@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13717.606777997895, + "kind": "calibration_drift", + "ledger_value": 13286.0, + "name": "ons.age.50_60@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14973.531877475396, + "kind": "calibration_drift", + "ledger_value": 15987.0, + "name": "ons.age.50_60@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15341.319316130894, + "kind": "calibration_drift", + "ledger_value": 14537.0, + "name": "ons.age.50_60@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13899.316226787767, + "kind": "calibration_drift", + "ledger_value": 13722.0, + "name": "ons.age.50_60@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15109.130839285268, + "kind": "calibration_drift", + "ledger_value": 15278.0, + "name": "ons.age.50_60@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13971.555259170515, + "kind": "calibration_drift", + "ledger_value": 15103.0, + "name": "ons.age.50_60@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13118.837109701954, + "kind": "calibration_drift", + "ledger_value": 13324.0, + "name": "ons.age.50_60@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14228.926013944709, + "kind": "calibration_drift", + "ledger_value": 14110.0, + "name": "ons.age.50_60@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11163.318413891395, + "kind": "calibration_drift", + "ledger_value": 11322.0, + "name": "ons.age.50_60@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15131.360824005571, + "kind": "calibration_drift", + "ledger_value": 15139.0, + "name": "ons.age.50_60@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14849.610068242651, + "kind": "calibration_drift", + "ledger_value": 14628.0, + "name": "ons.age.50_60@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15993.24714445022, + "kind": "calibration_drift", + "ledger_value": 16203.0, + "name": "ons.age.50_60@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12651.859493676382, + "kind": "calibration_drift", + "ledger_value": 12748.0, + "name": "ons.age.50_60@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15897.299188401395, + "kind": "calibration_drift", + "ledger_value": 15968.0, + "name": "ons.age.50_60@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15133.372765834738, + "kind": "calibration_drift", + "ledger_value": 16704.0, + "name": "ons.age.50_60@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13617.670471355998, + "kind": "calibration_drift", + "ledger_value": 13555.0, + "name": "ons.age.50_60@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13754.114675277753, + "kind": "calibration_drift", + "ledger_value": 14569.0, + "name": "ons.age.50_60@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11559.227143539634, + "kind": "calibration_drift", + "ledger_value": 12534.0, + "name": "ons.age.50_60@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14739.179030087958, + "kind": "calibration_drift", + "ledger_value": 14770.0, + "name": "ons.age.50_60@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14138.27028211284, + "kind": "calibration_drift", + "ledger_value": 13367.0, + "name": "ons.age.50_60@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14378.786092837789, + "kind": "calibration_drift", + "ledger_value": 14183.0, + "name": "ons.age.50_60@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13424.78047971461, + "kind": "calibration_drift", + "ledger_value": 14114.0, + "name": "ons.age.50_60@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14292.676955041443, + "kind": "calibration_drift", + "ledger_value": 13558.0, + "name": "ons.age.50_60@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14971.934158963999, + "kind": "calibration_drift", + "ledger_value": 15083.0, + "name": "ons.age.50_60@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12784.154531404043, + "kind": "calibration_drift", + "ledger_value": 13416.0, + "name": "ons.age.50_60@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13233.281094925733, + "kind": "calibration_drift", + "ledger_value": 12867.0, + "name": "ons.age.50_60@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13276.399769813563, + "kind": "calibration_drift", + "ledger_value": 13876.0, + "name": "ons.age.50_60@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12875.22507244239, + "kind": "calibration_drift", + "ledger_value": 13509.0, + "name": "ons.age.50_60@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12973.49403746455, + "kind": "calibration_drift", + "ledger_value": 14513.0, + "name": "ons.age.50_60@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15713.701427204518, + "kind": "calibration_drift", + "ledger_value": 16103.0, + "name": "ons.age.50_60@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13354.934538370695, + "kind": "calibration_drift", + "ledger_value": 13796.0, + "name": "ons.age.50_60@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13696.984374248934, + "kind": "calibration_drift", + "ledger_value": 14028.0, + "name": "ons.age.50_60@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13721.344650317766, + "kind": "calibration_drift", + "ledger_value": 14158.0, + "name": "ons.age.50_60@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14144.000371341988, + "kind": "calibration_drift", + "ledger_value": 13446.0, + "name": "ons.age.50_60@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14058.621055581712, + "kind": "calibration_drift", + "ledger_value": 15518.0, + "name": "ons.age.50_60@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13852.811241409889, + "kind": "calibration_drift", + "ledger_value": 14549.0, + "name": "ons.age.50_60@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15241.820375410804, + "kind": "calibration_drift", + "ledger_value": 15696.0, + "name": "ons.age.50_60@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15225.665666017789, + "kind": "calibration_drift", + "ledger_value": 15174.0, + "name": "ons.age.50_60@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14511.544666182956, + "kind": "calibration_drift", + "ledger_value": 13753.0, + "name": "ons.age.50_60@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13389.472873104722, + "kind": "calibration_drift", + "ledger_value": 13630.0, + "name": "ons.age.50_60@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13386.412663930583, + "kind": "calibration_drift", + "ledger_value": 13759.0, + "name": "ons.age.50_60@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14796.80645768697, + "kind": "calibration_drift", + "ledger_value": 13722.0, + "name": "ons.age.50_60@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12791.48233914459, + "kind": "calibration_drift", + "ledger_value": 12630.0, + "name": "ons.age.50_60@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15707.939957420995, + "kind": "calibration_drift", + "ledger_value": 15042.0, + "name": "ons.age.50_60@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13095.37431748829, + "kind": "calibration_drift", + "ledger_value": 14476.0, + "name": "ons.age.50_60@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14206.469192645627, + "kind": "calibration_drift", + "ledger_value": 14636.0, + "name": "ons.age.50_60@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15791.04104493354, + "kind": "calibration_drift", + "ledger_value": 15852.0, + "name": "ons.age.50_60@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12793.947954131312, + "kind": "calibration_drift", + "ledger_value": 12273.0, + "name": "ons.age.50_60@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14361.4380257912, + "kind": "calibration_drift", + "ledger_value": 15043.0, + "name": "ons.age.50_60@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13419.898562040895, + "kind": "calibration_drift", + "ledger_value": 14180.0, + "name": "ons.age.50_60@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13412.343917721575, + "kind": "calibration_drift", + "ledger_value": 13893.0, + "name": "ons.age.50_60@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13133.3073308602, + "kind": "calibration_drift", + "ledger_value": 14555.0, + "name": "ons.age.50_60@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13606.673828515208, + "kind": "calibration_drift", + "ledger_value": 13459.0, + "name": "ons.age.50_60@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14519.247247401481, + "kind": "calibration_drift", + "ledger_value": 14862.0, + "name": "ons.age.50_60@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14493.555539239816, + "kind": "calibration_drift", + "ledger_value": 14911.0, + "name": "ons.age.50_60@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13306.43096035186, + "kind": "calibration_drift", + "ledger_value": 13986.0, + "name": "ons.age.50_60@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13357.863688974921, + "kind": "calibration_drift", + "ledger_value": 13900.0, + "name": "ons.age.50_60@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13908.110054332134, + "kind": "calibration_drift", + "ledger_value": 13998.0, + "name": "ons.age.50_60@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13499.123702794312, + "kind": "calibration_drift", + "ledger_value": 14113.0, + "name": "ons.age.50_60@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14713.803994773894, + "kind": "calibration_drift", + "ledger_value": 14987.0, + "name": "ons.age.50_60@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13628.933400615353, + "kind": "calibration_drift", + "ledger_value": 13499.0, + "name": "ons.age.50_60@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14361.477475630989, + "kind": "calibration_drift", + "ledger_value": 14423.0, + "name": "ons.age.50_60@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13036.584193744842, + "kind": "calibration_drift", + "ledger_value": 11888.0, + "name": "ons.age.50_60@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12589.045486274603, + "kind": "calibration_drift", + "ledger_value": 13154.0, + "name": "ons.age.50_60@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13882.895785941095, + "kind": "calibration_drift", + "ledger_value": 13361.0, + "name": "ons.age.50_60@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13093.90798518666, + "kind": "calibration_drift", + "ledger_value": 13391.0, + "name": "ons.age.50_60@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14016.385168498222, + "kind": "calibration_drift", + "ledger_value": 12992.0, + "name": "ons.age.50_60@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14274.112194227326, + "kind": "calibration_drift", + "ledger_value": 12533.0, + "name": "ons.age.50_60@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14021.671876718305, + "kind": "calibration_drift", + "ledger_value": 14656.0, + "name": "ons.age.50_60@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13753.451536188732, + "kind": "calibration_drift", + "ledger_value": 15001.0, + "name": "ons.age.50_60@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13746.763049273926, + "kind": "calibration_drift", + "ledger_value": 14644.0, + "name": "ons.age.50_60@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12674.749454919027, + "kind": "calibration_drift", + "ledger_value": 12942.0, + "name": "ons.age.50_60@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13215.448873155467, + "kind": "calibration_drift", + "ledger_value": 15575.0, + "name": "ons.age.50_60@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12957.721847426361, + "kind": "calibration_drift", + "ledger_value": 13828.0, + "name": "ons.age.50_60@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12414.512577812711, + "kind": "calibration_drift", + "ledger_value": 14573.0, + "name": "ons.age.50_60@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12411.869223702668, + "kind": "calibration_drift", + "ledger_value": 14800.0, + "name": "ons.age.50_60@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14016.385168498222, + "kind": "calibration_drift", + "ledger_value": 13475.0, + "name": "ons.age.50_60@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13610.576911513626, + "kind": "calibration_drift", + "ledger_value": 14970.0, + "name": "ons.age.50_60@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11880.555047584206, + "kind": "calibration_drift", + "ledger_value": 14341.0, + "name": "ons.age.50_60@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13749.40640338397, + "kind": "calibration_drift", + "ledger_value": 14337.0, + "name": "ons.age.50_60@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12281.023195255584, + "kind": "calibration_drift", + "ledger_value": 16057.0, + "name": "ons.age.50_60@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14279.452303540542, + "kind": "calibration_drift", + "ledger_value": 13793.0, + "name": "ons.age.50_60@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 20207.0, + "name": "ons.age.50_60@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 29491.0, + "name": "ons.age.50_60@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 40716.0, + "name": "ons.age.50_60@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 20316.0, + "name": "ons.age.50_60@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 20877.0, + "name": "ons.age.50_60@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 15717.0, + "name": "ons.age.50_60@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 20355.0, + "name": "ons.age.50_60@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 20526.0, + "name": "ons.age.50_60@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 19395.0, + "name": "ons.age.50_60@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24155.438660584277, + "kind": "calibration_drift", + "ledger_value": 24492.0, + "name": "ons.age.50_60@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6703.545622897289, + "kind": "calibration_drift", + "ledger_value": 8001.0, + "name": "ons.age.50_60@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18888.59725467573, + "kind": "calibration_drift", + "ledger_value": 22026.0, + "name": "ons.age.50_60@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15577.994969475321, + "kind": "calibration_drift", + "ledger_value": 18509.0, + "name": "ons.age.50_60@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14537.079777538705, + "kind": "calibration_drift", + "ledger_value": 16789.0, + "name": "ons.age.50_60@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12534.612703697452, + "kind": "calibration_drift", + "ledger_value": 13446.0, + "name": "ons.age.50_60@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3384.2690444307445, + "kind": "calibration_drift", + "ledger_value": 4216.0, + "name": "ons.age.50_60@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20508.10075417015, + "kind": "calibration_drift", + "ledger_value": 24191.0, + "name": "ons.age.50_60@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30470.202902671008, + "kind": "calibration_drift", + "ledger_value": 36039.0, + "name": "ons.age.50_60@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10153.583935674276, + "kind": "calibration_drift", + "ledger_value": 11728.0, + "name": "ons.age.50_60@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12497.067255232081, + "kind": "calibration_drift", + "ledger_value": 13476.0, + "name": "ons.age.50_60@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12078.370771311304, + "kind": "calibration_drift", + "ledger_value": 14172.0, + "name": "ons.age.50_60@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17272.589365900498, + "kind": "calibration_drift", + "ledger_value": 20160.0, + "name": "ons.age.50_60@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2842.8377841472948, + "kind": "calibration_drift", + "ledger_value": 3415.0, + "name": "ons.age.50_60@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15124.471845426318, + "kind": "calibration_drift", + "ledger_value": 18167.0, + "name": "ons.age.50_60@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2975.9299256038676, + "kind": "calibration_drift", + "ledger_value": 3308.0, + "name": "ons.age.50_60@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14438.037473828315, + "kind": "calibration_drift", + "ledger_value": 16502.0, + "name": "ons.age.50_60@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42342.97997686846, + "kind": "calibration_drift", + "ledger_value": 48159.0, + "name": "ons.age.50_60@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11989.167964440117, + "kind": "calibration_drift", + "ledger_value": 13608.0, + "name": "ons.age.50_60@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29003.34107124789, + "kind": "calibration_drift", + "ledger_value": 27684.0, + "name": "ons.age.50_60@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34143.44243322147, + "kind": "calibration_drift", + "ledger_value": 40107.0, + "name": "ons.age.50_60@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11130.283464028735, + "kind": "calibration_drift", + "ledger_value": 13765.0, + "name": "ons.age.50_60@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66616.37134386109, + "kind": "calibration_drift", + "ledger_value": 61354.0, + "name": "ons.age.50_60@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23805.62686593951, + "kind": "calibration_drift", + "ledger_value": 26770.0, + "name": "ons.age.50_60@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11444.758961692172, + "kind": "calibration_drift", + "ledger_value": 12820.0, + "name": "ons.age.50_60@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23469.53036864256, + "kind": "calibration_drift", + "ledger_value": 27680.0, + "name": "ons.age.50_60@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14803.522994579198, + "kind": "calibration_drift", + "ledger_value": 16921.0, + "name": "ons.age.50_60@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19251.36396708946, + "kind": "calibration_drift", + "ledger_value": 17711.0, + "name": "ons.age.50_60@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14103.753515422803, + "kind": "calibration_drift", + "ledger_value": 15249.0, + "name": "ons.age.50_60@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48133.39439967509, + "kind": "calibration_drift", + "ledger_value": 53315.0, + "name": "ons.age.50_60@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19543.441662737347, + "kind": "calibration_drift", + "ledger_value": 22769.0, + "name": "ons.age.50_60@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 80367.45657783668, + "kind": "calibration_drift", + "ledger_value": 75537.0, + "name": "ons.age.50_60@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44144.77310201548, + "kind": "calibration_drift", + "ledger_value": 51380.0, + "name": "ons.age.50_60@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12047.952812473344, + "kind": "calibration_drift", + "ledger_value": 13430.0, + "name": "ons.age.50_60@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12884.227185707128, + "kind": "calibration_drift", + "ledger_value": 4201.0, + "name": "ons.age.50_60@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11694.503515971026, + "kind": "calibration_drift", + "ledger_value": 13457.0, + "name": "ons.age.50_60@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12912.236375241275, + "kind": "calibration_drift", + "ledger_value": 14020.0, + "name": "ons.age.50_60@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3485.1434406058725, + "kind": "calibration_drift", + "ledger_value": 6719.0, + "name": "ons.age.50_60@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12769.52288571015, + "kind": "calibration_drift", + "ledger_value": 13964.0, + "name": "ons.age.50_60@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12873.557018265548, + "kind": "calibration_drift", + "ledger_value": 13536.0, + "name": "ons.age.50_60@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12209.339095027231, + "kind": "calibration_drift", + "ledger_value": 14422.0, + "name": "ons.age.50_60@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5995.300331237426, + "kind": "calibration_drift", + "ledger_value": 14090.0, + "name": "ons.age.50_60@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13002.932798494698, + "kind": "calibration_drift", + "ledger_value": 14639.0, + "name": "ons.age.50_60@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15648.414087704085, + "kind": "calibration_drift", + "ledger_value": 14903.0, + "name": "ons.age.50_60@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17935.004295015948, + "kind": "calibration_drift", + "ledger_value": 14385.0, + "name": "ons.age.50_60@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13306.861847900649, + "kind": "calibration_drift", + "ledger_value": 14778.0, + "name": "ons.age.50_60@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13926.342426598283, + "kind": "calibration_drift", + "ledger_value": 14111.0, + "name": "ons.age.50_60@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10837.761094042431, + "kind": "calibration_drift", + "ledger_value": 14610.0, + "name": "ons.age.50_60@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14342.198864924538, + "kind": "calibration_drift", + "ledger_value": 14502.0, + "name": "ons.age.50_60@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14700.070945831392, + "kind": "calibration_drift", + "ledger_value": 13862.0, + "name": "ons.age.50_60@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13288.547297826339, + "kind": "calibration_drift", + "ledger_value": 13332.0, + "name": "ons.age.50_60@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10346.386545648396, + "kind": "calibration_drift", + "ledger_value": 14192.0, + "name": "ons.age.50_60@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19126.499955265277, + "kind": "calibration_drift", + "ledger_value": 14151.0, + "name": "ons.age.50_60@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12837.318462092087, + "kind": "calibration_drift", + "ledger_value": 11615.0, + "name": "ons.age.50_60@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12170.897149277083, + "kind": "calibration_drift", + "ledger_value": 14160.0, + "name": "ons.age.50_60@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12679.942788308002, + "kind": "calibration_drift", + "ledger_value": 14317.0, + "name": "ons.age.50_60@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13106.806878538475, + "kind": "calibration_drift", + "ledger_value": 13010.0, + "name": "ons.age.50_60@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11984.545342451755, + "kind": "calibration_drift", + "ledger_value": 12486.0, + "name": "ons.age.50_60@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14962.274305457042, + "kind": "calibration_drift", + "ledger_value": 11654.0, + "name": "ons.age.50_60@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11596.45001226663, + "kind": "calibration_drift", + "ledger_value": 12058.0, + "name": "ons.age.50_60@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11765.270733985439, + "kind": "calibration_drift", + "ledger_value": 13712.0, + "name": "ons.age.50_60@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15933.382249566344, + "kind": "calibration_drift", + "ledger_value": 14583.0, + "name": "ons.age.50_60@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14279.364916402936, + "kind": "calibration_drift", + "ledger_value": 11961.0, + "name": "ons.age.50_60@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14078.885807884963, + "kind": "calibration_drift", + "ledger_value": 11029.0, + "name": "ons.age.50_60@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14274.016494972844, + "kind": "calibration_drift", + "ledger_value": 13706.0, + "name": "ons.age.50_60@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13541.762916585158, + "kind": "calibration_drift", + "ledger_value": 11229.0, + "name": "ons.age.50_60@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11193.3284187819, + "kind": "calibration_drift", + "ledger_value": 12712.0, + "name": "ons.age.50_60@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13683.218943850556, + "kind": "calibration_drift", + "ledger_value": 12194.0, + "name": "ons.age.50_60@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17321.144649599053, + "kind": "calibration_drift", + "ledger_value": 13467.0, + "name": "ons.age.50_60@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16877.758381331958, + "kind": "calibration_drift", + "ledger_value": 13995.0, + "name": "ons.age.50_60@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12230.680222249557, + "kind": "calibration_drift", + "ledger_value": 14584.0, + "name": "ons.age.50_60@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13767.745309966838, + "kind": "calibration_drift", + "ledger_value": 13362.0, + "name": "ons.age.50_60@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15829.620206280708, + "kind": "calibration_drift", + "ledger_value": 15529.0, + "name": "ons.age.50_60@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12789.38540240265, + "kind": "calibration_drift", + "ledger_value": 15772.0, + "name": "ons.age.50_60@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11299.878043311654, + "kind": "calibration_drift", + "ledger_value": 14877.0, + "name": "ons.age.50_60@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12005.797648453525, + "kind": "calibration_drift", + "ledger_value": 13336.0, + "name": "ons.age.50_60@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14099.794317922406, + "kind": "calibration_drift", + "ledger_value": 15225.0, + "name": "ons.age.50_60@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15128.217208371572, + "kind": "calibration_drift", + "ledger_value": 14619.0, + "name": "ons.age.50_60@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12535.739517065147, + "kind": "calibration_drift", + "ledger_value": 12333.0, + "name": "ons.age.50_60@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11158.306261696778, + "kind": "calibration_drift", + "ledger_value": 12971.0, + "name": "ons.age.50_60@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13904.96207858722, + "kind": "calibration_drift", + "ledger_value": 13988.0, + "name": "ons.age.50_60@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13971.98474145132, + "kind": "calibration_drift", + "ledger_value": 14845.0, + "name": "ons.age.50_60@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13318.721739011962, + "kind": "calibration_drift", + "ledger_value": 12857.0, + "name": "ons.age.50_60@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13915.832311668328, + "kind": "calibration_drift", + "ledger_value": 15082.0, + "name": "ons.age.50_60@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12043.380751369848, + "kind": "calibration_drift", + "ledger_value": 13333.0, + "name": "ons.age.50_60@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13025.782539489956, + "kind": "calibration_drift", + "ledger_value": 13493.0, + "name": "ons.age.50_60@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13365.64380033631, + "kind": "calibration_drift", + "ledger_value": 14669.0, + "name": "ons.age.50_60@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10649.419300989253, + "kind": "calibration_drift", + "ledger_value": 12926.0, + "name": "ons.age.50_60@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14744.32013021162, + "kind": "calibration_drift", + "ledger_value": 14584.0, + "name": "ons.age.50_60@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12709.865979544282, + "kind": "calibration_drift", + "ledger_value": 15138.0, + "name": "ons.age.50_60@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9882.912854380667, + "kind": "calibration_drift", + "ledger_value": 9971.0, + "name": "ons.age.50_60@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16223.02305787448, + "kind": "calibration_drift", + "ledger_value": 16638.0, + "name": "ons.age.50_60@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16450.46224040055, + "kind": "calibration_drift", + "ledger_value": 16576.0, + "name": "ons.age.50_60@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13672.59393416334, + "kind": "calibration_drift", + "ledger_value": 13781.0, + "name": "ons.age.50_60@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22953.862113400257, + "kind": "calibration_drift", + "ledger_value": 23131.0, + "name": "ons.age.50_60@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19102.947407552874, + "kind": "calibration_drift", + "ledger_value": 19424.0, + "name": "ons.age.50_60@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9683.660579090734, + "kind": "calibration_drift", + "ledger_value": 9691.0, + "name": "ons.age.50_60@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17433.116144391388, + "kind": "calibration_drift", + "ledger_value": 17712.0, + "name": "ons.age.50_60@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26546.23484252997, + "kind": "calibration_drift", + "ledger_value": 26922.0, + "name": "ons.age.50_60@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30473.93457153787, + "kind": "calibration_drift", + "ledger_value": 30821.0, + "name": "ons.age.50_60@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19031.99415830329, + "kind": "calibration_drift", + "ledger_value": 18976.0, + "name": "ons.age.50_60@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20521.0404302261, + "kind": "calibration_drift", + "ledger_value": 20718.0, + "name": "ons.age.50_60@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17987.13466592925, + "kind": "calibration_drift", + "ledger_value": 18214.0, + "name": "ons.age.50_60@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39678.41772761427, + "kind": "calibration_drift", + "ledger_value": 40494.0, + "name": "ons.age.50_60@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32396.476037506098, + "kind": "calibration_drift", + "ledger_value": 32694.0, + "name": "ons.age.50_60@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24257.263582491963, + "kind": "calibration_drift", + "ledger_value": 24539.0, + "name": "ons.age.50_60@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9733.230657333595, + "kind": "calibration_drift", + "ledger_value": 9853.0, + "name": "ons.age.50_60@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12403.211146218695, + "kind": "calibration_drift", + "ledger_value": 12530.0, + "name": "ons.age.50_60@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14361.715217970961, + "kind": "calibration_drift", + "ledger_value": 14413.0, + "name": "ons.age.50_60@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20586.161905564764, + "kind": "calibration_drift", + "ledger_value": 20999.0, + "name": "ons.age.50_60@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19675.433213141998, + "kind": "calibration_drift", + "ledger_value": 19848.0, + "name": "ons.age.50_60@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7891.3620637998265, + "kind": "calibration_drift", + "ledger_value": 7869.0, + "name": "ons.age.50_60@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12855.026168582437, + "kind": "calibration_drift", + "ledger_value": 12390.0, + "name": "ons.age.50_60@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14782.101529906147, + "kind": "calibration_drift", + "ledger_value": 15077.0, + "name": "ons.age.50_60@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13804.228763711479, + "kind": "calibration_drift", + "ledger_value": 13088.0, + "name": "ons.age.50_60@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14292.785442100858, + "kind": "calibration_drift", + "ledger_value": 13615.0, + "name": "ons.age.50_60@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13707.359682113069, + "kind": "calibration_drift", + "ledger_value": 13367.0, + "name": "ons.age.50_60@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13406.308092234072, + "kind": "calibration_drift", + "ledger_value": 13443.0, + "name": "ons.age.50_60@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14019.812275690676, + "kind": "calibration_drift", + "ledger_value": 13606.0, + "name": "ons.age.50_60@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13868.423515505825, + "kind": "calibration_drift", + "ledger_value": 13229.0, + "name": "ons.age.50_60@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10001.431870007544, + "kind": "calibration_drift", + "ledger_value": 11847.0, + "name": "ons.age.50_60@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12276.553442857208, + "kind": "calibration_drift", + "ledger_value": 11834.0, + "name": "ons.age.50_60@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12117.65935065277, + "kind": "calibration_drift", + "ledger_value": 10261.0, + "name": "ons.age.50_60@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13256.793199439131, + "kind": "calibration_drift", + "ledger_value": 13228.0, + "name": "ons.age.50_60@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13288.648945067607, + "kind": "calibration_drift", + "ledger_value": 12986.0, + "name": "ons.age.50_60@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14229.280086021614, + "kind": "calibration_drift", + "ledger_value": 14457.0, + "name": "ons.age.50_60@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14314.916802221693, + "kind": "calibration_drift", + "ledger_value": 13637.0, + "name": "ons.age.50_60@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13619.18655604051, + "kind": "calibration_drift", + "ledger_value": 13962.0, + "name": "ons.age.50_60@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13167.804223338291, + "kind": "calibration_drift", + "ledger_value": 13714.0, + "name": "ons.age.50_60@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13751.977450912826, + "kind": "calibration_drift", + "ledger_value": 13190.0, + "name": "ons.age.50_60@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14204.32903883715, + "kind": "calibration_drift", + "ledger_value": 13514.0, + "name": "ons.age.50_60@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14978.058746591021, + "kind": "calibration_drift", + "ledger_value": 14340.0, + "name": "ons.age.50_60@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14819.421078345202, + "kind": "calibration_drift", + "ledger_value": 14314.0, + "name": "ons.age.50_60@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14821.168100829458, + "kind": "calibration_drift", + "ledger_value": 14681.0, + "name": "ons.age.50_60@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13791.289216261153, + "kind": "calibration_drift", + "ledger_value": 13022.0, + "name": "ons.age.50_60@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14627.290496119726, + "kind": "calibration_drift", + "ledger_value": 14299.0, + "name": "ons.age.50_60@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13997.799265089203, + "kind": "calibration_drift", + "ledger_value": 14158.0, + "name": "ons.age.50_60@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13990.067096490839, + "kind": "calibration_drift", + "ledger_value": 13755.0, + "name": "ons.age.50_60@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13932.49005532086, + "kind": "calibration_drift", + "ledger_value": 13890.0, + "name": "ons.age.50_60@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12880.767189043836, + "kind": "calibration_drift", + "ledger_value": 12295.0, + "name": "ons.age.50_60@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13324.498986974573, + "kind": "calibration_drift", + "ledger_value": 12507.0, + "name": "ons.age.50_60@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13276.291282754146, + "kind": "calibration_drift", + "ledger_value": 13101.0, + "name": "ons.age.50_60@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13864.411837862277, + "kind": "calibration_drift", + "ledger_value": 13957.0, + "name": "ons.age.50_60@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9883.171112784315, + "kind": "calibration_drift", + "ledger_value": 9930.0, + "name": "ons.age.50_60@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12027.061728964041, + "kind": "calibration_drift", + "ledger_value": 12791.0, + "name": "ons.age.60_70@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16112.219353566907, + "kind": "calibration_drift", + "ledger_value": 17049.0, + "name": "ons.age.60_70@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18528.517677326774, + "kind": "calibration_drift", + "ledger_value": 19458.0, + "name": "ons.age.60_70@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24133.824368044054, + "kind": "calibration_drift", + "ledger_value": 25387.0, + "name": "ons.age.60_70@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13450.014563229708, + "kind": "calibration_drift", + "ledger_value": 14169.0, + "name": "ons.age.60_70@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15559.172794347533, + "kind": "calibration_drift", + "ledger_value": 16331.0, + "name": "ons.age.60_70@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24412.77755344996, + "kind": "calibration_drift", + "ledger_value": 25860.0, + "name": "ons.age.60_70@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14791.322562742425, + "kind": "calibration_drift", + "ledger_value": 15589.0, + "name": "ons.age.60_70@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17829.676770334278, + "kind": "calibration_drift", + "ledger_value": 19035.0, + "name": "ons.age.60_70@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27443.356062493913, + "kind": "calibration_drift", + "ledger_value": 28745.0, + "name": "ons.age.60_70@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 49718.788477589915, + "kind": "calibration_drift", + "ledger_value": 53117.0, + "name": "ons.age.60_70@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19794.984578315958, + "kind": "calibration_drift", + "ledger_value": 20978.0, + "name": "ons.age.60_70@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21916.77831957412, + "kind": "calibration_drift", + "ledger_value": 23335.0, + "name": "ons.age.60_70@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21060.479516986652, + "kind": "calibration_drift", + "ledger_value": 22232.0, + "name": "ons.age.60_70@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25191.31937055843, + "kind": "calibration_drift", + "ledger_value": 26499.0, + "name": "ons.age.60_70@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31348.700658176596, + "kind": "calibration_drift", + "ledger_value": 32527.0, + "name": "ons.age.60_70@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5178.6152329012775, + "kind": "calibration_drift", + "ledger_value": 5593.0, + "name": "ons.age.60_70@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25696.73977617192, + "kind": "calibration_drift", + "ledger_value": 26728.0, + "name": "ons.age.60_70@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26860.178671401427, + "kind": "calibration_drift", + "ledger_value": 28327.0, + "name": "ons.age.60_70@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20145.862975289936, + "kind": "calibration_drift", + "ledger_value": 21491.0, + "name": "ons.age.60_70@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26898.08520182244, + "kind": "calibration_drift", + "ledger_value": 28234.0, + "name": "ons.age.60_70@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20376.218044771467, + "kind": "calibration_drift", + "ledger_value": 21868.0, + "name": "ons.age.60_70@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37306.829670504834, + "kind": "calibration_drift", + "ledger_value": 39122.0, + "name": "ons.age.60_70@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26364.477888972815, + "kind": "calibration_drift", + "ledger_value": 27819.0, + "name": "ons.age.60_70@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30427.280380250468, + "kind": "calibration_drift", + "ledger_value": 32494.0, + "name": "ons.age.60_70@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28578.608050487288, + "kind": "calibration_drift", + "ledger_value": 30150.0, + "name": "ons.age.60_70@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19171.956732165483, + "kind": "calibration_drift", + "ledger_value": 20141.0, + "name": "ons.age.60_70@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24613.00179105838, + "kind": "calibration_drift", + "ledger_value": 26175.0, + "name": "ons.age.60_70@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19123.358616241112, + "kind": "calibration_drift", + "ledger_value": 20289.0, + "name": "ons.age.60_70@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18026.985120987236, + "kind": "calibration_drift", + "ledger_value": 19048.0, + "name": "ons.age.60_70@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19474.23701321509, + "kind": "calibration_drift", + "ledger_value": 20678.0, + "name": "ons.age.60_70@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15242.313078520616, + "kind": "calibration_drift", + "ledger_value": 16195.0, + "name": "ons.age.60_70@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29123.87891115876, + "kind": "calibration_drift", + "ledger_value": 30536.0, + "name": "ons.age.60_70@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12891.136230099408, + "kind": "calibration_drift", + "ledger_value": 13816.0, + "name": "ons.age.60_70@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18863.844677204954, + "kind": "calibration_drift", + "ledger_value": 20084.0, + "name": "ons.age.60_70@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13735.771484865025, + "kind": "calibration_drift", + "ledger_value": 14440.0, + "name": "ons.age.60_70@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11803.51039571192, + "kind": "calibration_drift", + "ledger_value": 12330.0, + "name": "ons.age.60_70@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16615.69583454342, + "kind": "calibration_drift", + "ledger_value": 17666.0, + "name": "ons.age.60_70@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18178.611242671283, + "kind": "calibration_drift", + "ledger_value": 19314.0, + "name": "ons.age.60_70@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26861.150633719917, + "kind": "calibration_drift", + "ledger_value": 28509.0, + "name": "ons.age.60_70@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25301.151112547515, + "kind": "calibration_drift", + "ledger_value": 27275.0, + "name": "ons.age.60_70@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19484.928598718452, + "kind": "calibration_drift", + "ledger_value": 20622.0, + "name": "ons.age.60_70@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21627.133548664853, + "kind": "calibration_drift", + "ledger_value": 22559.0, + "name": "ons.age.60_70@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21196.5542415749, + "kind": "calibration_drift", + "ledger_value": 22132.0, + "name": "ons.age.60_70@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 67568.87645661243, + "kind": "calibration_drift", + "ledger_value": 71479.0, + "name": "ons.age.60_70@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50153.25563395381, + "kind": "calibration_drift", + "ledger_value": 53546.0, + "name": "ons.age.60_70@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43735.38844498101, + "kind": "calibration_drift", + "ledger_value": 46618.0, + "name": "ons.age.60_70@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 45701.66821528117, + "kind": "calibration_drift", + "ledger_value": 48207.0, + "name": "ons.age.60_70@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 78758.10666704027, + "kind": "calibration_drift", + "ledger_value": 83282.0, + "name": "ons.age.60_70@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 248.82235353279412, + "kind": "calibration_drift", + "ledger_value": 269.0, + "name": "ons.age.60_70@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 63785.02715074068, + "kind": "calibration_drift", + "ledger_value": 67738.0, + "name": "ons.age.60_70@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19046.5735930806, + "kind": "calibration_drift", + "ledger_value": 20254.0, + "name": "ons.age.60_70@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33463.69066320535, + "kind": "calibration_drift", + "ledger_value": 35562.0, + "name": "ons.age.60_70@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 48166.56465496541, + "kind": "calibration_drift", + "ledger_value": 51106.0, + "name": "ons.age.60_70@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44788.99559822143, + "kind": "calibration_drift", + "ledger_value": 47096.0, + "name": "ons.age.60_70@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57639.30941094436, + "kind": "calibration_drift", + "ledger_value": 61045.0, + "name": "ons.age.60_70@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 61085.88779230096, + "kind": "calibration_drift", + "ledger_value": 65272.0, + "name": "ons.age.60_70@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39236.174872702475, + "kind": "calibration_drift", + "ledger_value": 41575.0, + "name": "ons.age.60_70@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 44316.621911436516, + "kind": "calibration_drift", + "ledger_value": 47255.0, + "name": "ons.age.60_70@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37840.436983354455, + "kind": "calibration_drift", + "ledger_value": 40178.0, + "name": "ons.age.60_70@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32550.046083827117, + "kind": "calibration_drift", + "ledger_value": 34633.0, + "name": "ons.age.60_70@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 88381.50558238478, + "kind": "calibration_drift", + "ledger_value": 94075.0, + "name": "ons.age.60_70@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 76194.07007087031, + "kind": "calibration_drift", + "ledger_value": 80443.0, + "name": "ons.age.60_70@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10136.595019505898, + "kind": "calibration_drift", + "ledger_value": 10618.0, + "name": "ons.age.60_70@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10508.856587486602, + "kind": "calibration_drift", + "ledger_value": 11165.0, + "name": "ons.age.60_70@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12993.192273540593, + "kind": "calibration_drift", + "ledger_value": 13781.0, + "name": "ons.age.60_70@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21284.03085023877, + "kind": "calibration_drift", + "ledger_value": 22738.0, + "name": "ons.age.60_70@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17695.545970383006, + "kind": "calibration_drift", + "ledger_value": 18909.0, + "name": "ons.age.60_70@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16294.948269442553, + "kind": "calibration_drift", + "ledger_value": 17380.0, + "name": "ons.age.60_70@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10149.230529646235, + "kind": "calibration_drift", + "ledger_value": 10801.0, + "name": "ons.age.60_70@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13140.93054595069, + "kind": "calibration_drift", + "ledger_value": 13904.0, + "name": "ons.age.60_70@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11068.706882935388, + "kind": "calibration_drift", + "ledger_value": 11753.0, + "name": "ons.age.60_70@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13350.874406743986, + "kind": "calibration_drift", + "ledger_value": 14116.0, + "name": "ons.age.60_70@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12473.192433149792, + "kind": "calibration_drift", + "ledger_value": 13335.0, + "name": "ons.age.60_70@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13983.621876079333, + "kind": "calibration_drift", + "ledger_value": 14646.0, + "name": "ons.age.60_70@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12763.809166377549, + "kind": "calibration_drift", + "ledger_value": 13658.0, + "name": "ons.age.60_70@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21307.35794588247, + "kind": "calibration_drift", + "ledger_value": 22640.0, + "name": "ons.age.60_70@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11877.37953191697, + "kind": "calibration_drift", + "ledger_value": 12493.0, + "name": "ons.age.60_70@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11127.996584363125, + "kind": "calibration_drift", + "ledger_value": 11836.0, + "name": "ons.age.60_70@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13925.304136970084, + "kind": "calibration_drift", + "ledger_value": 14749.0, + "name": "ons.age.60_70@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13844.631264535623, + "kind": "calibration_drift", + "ledger_value": 14634.0, + "name": "ons.age.60_70@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19678.34910009746, + "kind": "calibration_drift", + "ledger_value": 20744.0, + "name": "ons.age.60_70@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10662.426633807623, + "kind": "calibration_drift", + "ledger_value": 11386.0, + "name": "ons.age.60_70@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9106.314961909173, + "kind": "calibration_drift", + "ledger_value": 9764.0, + "name": "ons.age.60_70@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12491.659717201055, + "kind": "calibration_drift", + "ledger_value": 13144.0, + "name": "ons.age.60_70@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11103.697526400938, + "kind": "calibration_drift", + "ledger_value": 11775.0, + "name": "ons.age.60_70@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13197.304360422964, + "kind": "calibration_drift", + "ledger_value": 13915.0, + "name": "ons.age.60_70@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14151.771357177666, + "kind": "calibration_drift", + "ledger_value": 14987.0, + "name": "ons.age.60_70@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22592.292130922917, + "kind": "calibration_drift", + "ledger_value": 24032.0, + "name": "ons.age.60_70@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19223.47073504532, + "kind": "calibration_drift", + "ledger_value": 20230.0, + "name": "ons.age.60_70@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18123.2093905175, + "kind": "calibration_drift", + "ledger_value": 19209.0, + "name": "ons.age.60_70@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8586.315121518372, + "kind": "calibration_drift", + "ledger_value": 8970.0, + "name": "ons.age.60_70@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10870.426569963944, + "kind": "calibration_drift", + "ledger_value": 11419.0, + "name": "ons.age.60_70@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19257.489416192384, + "kind": "calibration_drift", + "ledger_value": 20315.0, + "name": "ons.age.60_70@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18805.526938095707, + "kind": "calibration_drift", + "ledger_value": 20008.0, + "name": "ons.age.60_70@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15126.649562620605, + "kind": "calibration_drift", + "ledger_value": 16022.0, + "name": "ons.age.60_70@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9256.969121274731, + "kind": "calibration_drift", + "ledger_value": 9745.0, + "name": "ons.age.60_70@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9148.109341604135, + "kind": "calibration_drift", + "ledger_value": 9782.0, + "name": "ons.age.60_70@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10470.950057065591, + "kind": "calibration_drift", + "ledger_value": 11113.0, + "name": "ons.age.60_70@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21907.058696389246, + "kind": "calibration_drift", + "ledger_value": 23360.0, + "name": "ons.age.60_70@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11142.576019140437, + "kind": "calibration_drift", + "ledger_value": 11954.0, + "name": "ons.age.60_70@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12565.528853406104, + "kind": "calibration_drift", + "ledger_value": 13505.0, + "name": "ons.age.60_70@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12767.697015651498, + "kind": "calibration_drift", + "ledger_value": 13513.0, + "name": "ons.age.60_70@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12335.17378392457, + "kind": "calibration_drift", + "ledger_value": 13071.0, + "name": "ons.age.60_70@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14023.472331137318, + "kind": "calibration_drift", + "ledger_value": 14904.0, + "name": "ons.age.60_70@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16335.770686819027, + "kind": "calibration_drift", + "ledger_value": 17185.0, + "name": "ons.age.60_70@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11651.884274027874, + "kind": "calibration_drift", + "ledger_value": 12490.0, + "name": "ons.age.60_70@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19684.180874008387, + "kind": "calibration_drift", + "ledger_value": 20998.0, + "name": "ons.age.60_70@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16520.44352733165, + "kind": "calibration_drift", + "ledger_value": 17675.0, + "name": "ons.age.60_70@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15408.518634981974, + "kind": "calibration_drift", + "ledger_value": 16355.0, + "name": "ons.age.60_70@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14946.836533700422, + "kind": "calibration_drift", + "ledger_value": 15958.0, + "name": "ons.age.60_70@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10434.987451281553, + "kind": "calibration_drift", + "ledger_value": 11056.0, + "name": "ons.age.60_70@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10956.93121630933, + "kind": "calibration_drift", + "ledger_value": 11719.0, + "name": "ons.age.60_70@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16618.61172149888, + "kind": "calibration_drift", + "ledger_value": 17612.0, + "name": "ons.age.60_70@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25344.88941687945, + "kind": "calibration_drift", + "ledger_value": 26724.0, + "name": "ons.age.60_70@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9460.109245838614, + "kind": "calibration_drift", + "ledger_value": 10036.0, + "name": "ons.age.60_70@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15671.92042329208, + "kind": "calibration_drift", + "ledger_value": 16645.0, + "name": "ons.age.60_70@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14676.631009160903, + "kind": "calibration_drift", + "ledger_value": 15838.0, + "name": "ons.age.60_70@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10038.426825338664, + "kind": "calibration_drift", + "ledger_value": 10660.0, + "name": "ons.age.60_70@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16631.24723163922, + "kind": "calibration_drift", + "ledger_value": 17687.0, + "name": "ons.age.60_70@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11261.155421995909, + "kind": "calibration_drift", + "ledger_value": 11976.0, + "name": "ons.age.60_70@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14521.117038202907, + "kind": "calibration_drift", + "ledger_value": 15440.0, + "name": "ons.age.60_70@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10117.155773136148, + "kind": "calibration_drift", + "ledger_value": 10742.0, + "name": "ons.age.60_70@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8470.651605618363, + "kind": "calibration_drift", + "ledger_value": 8922.0, + "name": "ons.age.60_70@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14864.219736628986, + "kind": "calibration_drift", + "ledger_value": 15953.0, + "name": "ons.age.60_70@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18062.947726771272, + "kind": "calibration_drift", + "ledger_value": 19153.0, + "name": "ons.age.60_70@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10011.211880421013, + "kind": "calibration_drift", + "ledger_value": 10685.0, + "name": "ons.age.60_70@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15966.425005793786, + "kind": "calibration_drift", + "ledger_value": 16806.0, + "name": "ons.age.60_70@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10923.884497480754, + "kind": "calibration_drift", + "ledger_value": 11410.0, + "name": "ons.age.60_70@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18927.02222790664, + "kind": "calibration_drift", + "ledger_value": 20292.0, + "name": "ons.age.60_70@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13821.304168891924, + "kind": "calibration_drift", + "ledger_value": 14627.0, + "name": "ons.age.60_70@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14642.612328013842, + "kind": "calibration_drift", + "ledger_value": 15353.0, + "name": "ons.age.60_70@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17222.200321279604, + "kind": "calibration_drift", + "ledger_value": 18559.0, + "name": "ons.age.60_70@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17488.517996545175, + "kind": "calibration_drift", + "ledger_value": 18540.0, + "name": "ons.age.60_70@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14385.04231361466, + "kind": "calibration_drift", + "ledger_value": 15395.0, + "name": "ons.age.60_70@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12452.781224461556, + "kind": "calibration_drift", + "ledger_value": 13221.0, + "name": "ons.age.60_70@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10487.473416479877, + "kind": "calibration_drift", + "ledger_value": 11063.0, + "name": "ons.age.60_70@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14032.219992003706, + "kind": "calibration_drift", + "ledger_value": 14746.0, + "name": "ons.age.60_70@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13052.48197496833, + "kind": "calibration_drift", + "ledger_value": 13838.0, + "name": "ons.age.60_70@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8809.866454770492, + "kind": "calibration_drift", + "ledger_value": 9405.0, + "name": "ons.age.60_70@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16681.789272200567, + "kind": "calibration_drift", + "ledger_value": 17729.0, + "name": "ons.age.60_70@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10473.865944021052, + "kind": "calibration_drift", + "ledger_value": 11063.0, + "name": "ons.age.60_70@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14650.38802656174, + "kind": "calibration_drift", + "ledger_value": 15678.0, + "name": "ons.age.60_70@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9056.744883666312, + "kind": "calibration_drift", + "ledger_value": 9725.0, + "name": "ons.age.60_70@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8368.595562177177, + "kind": "calibration_drift", + "ledger_value": 8805.0, + "name": "ons.age.60_70@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13780.48175151545, + "kind": "calibration_drift", + "ledger_value": 14738.0, + "name": "ons.age.60_70@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14969.191667025634, + "kind": "calibration_drift", + "ledger_value": 15928.0, + "name": "ons.age.60_70@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17121.11624015691, + "kind": "calibration_drift", + "ledger_value": 18460.0, + "name": "ons.age.60_70@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11824.893566718645, + "kind": "calibration_drift", + "ledger_value": 12664.0, + "name": "ons.age.60_70@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19958.274247821853, + "kind": "calibration_drift", + "ledger_value": 20906.0, + "name": "ons.age.60_70@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12559.697079495178, + "kind": "calibration_drift", + "ledger_value": 13554.0, + "name": "ons.age.60_70@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14007.92093404152, + "kind": "calibration_drift", + "ledger_value": 14769.0, + "name": "ons.age.60_70@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7171.137985800606, + "kind": "calibration_drift", + "ledger_value": 7759.0, + "name": "ons.age.60_70@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12545.117644717866, + "kind": "calibration_drift", + "ledger_value": 13479.0, + "name": "ons.age.60_70@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6551.026026605596, + "kind": "calibration_drift", + "ledger_value": 6916.0, + "name": "ons.age.60_70@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8361.791825947765, + "kind": "calibration_drift", + "ledger_value": 8829.0, + "name": "ons.age.60_70@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23948.179565212948, + "kind": "calibration_drift", + "ledger_value": 25510.0, + "name": "ons.age.60_70@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9328.894332842805, + "kind": "calibration_drift", + "ledger_value": 9893.0, + "name": "ons.age.60_70@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15315.210252407176, + "kind": "calibration_drift", + "ledger_value": 16359.0, + "name": "ons.age.60_70@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12422.650392588444, + "kind": "calibration_drift", + "ledger_value": 13371.0, + "name": "ons.age.60_70@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18315.657929578018, + "kind": "calibration_drift", + "ledger_value": 19518.0, + "name": "ons.age.60_70@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13794.089223974273, + "kind": "calibration_drift", + "ledger_value": 14605.0, + "name": "ons.age.60_70@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18825.93814678394, + "kind": "calibration_drift", + "ledger_value": 20120.0, + "name": "ons.age.60_70@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17324.25636472079, + "kind": "calibration_drift", + "ledger_value": 18493.0, + "name": "ons.age.60_70@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13214.799682155737, + "kind": "calibration_drift", + "ledger_value": 13997.0, + "name": "ons.age.60_70@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20918.57301848748, + "kind": "calibration_drift", + "ledger_value": 22147.0, + "name": "ons.age.60_70@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17015.172347441774, + "kind": "calibration_drift", + "ledger_value": 17890.0, + "name": "ons.age.60_70@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12202.014946291787, + "kind": "calibration_drift", + "ledger_value": 12812.0, + "name": "ons.age.60_70@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18398.27472664945, + "kind": "calibration_drift", + "ledger_value": 19488.0, + "name": "ons.age.60_70@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14583.322626586105, + "kind": "calibration_drift", + "ledger_value": 15443.0, + "name": "ons.age.60_70@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15313.266327770201, + "kind": "calibration_drift", + "ledger_value": 16473.0, + "name": "ons.age.60_70@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12742.425995370824, + "kind": "calibration_drift", + "ledger_value": 13509.0, + "name": "ons.age.60_70@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14033.191954322194, + "kind": "calibration_drift", + "ledger_value": 14833.0, + "name": "ons.age.60_70@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13405.304296579283, + "kind": "calibration_drift", + "ledger_value": 14137.0, + "name": "ons.age.60_70@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16072.368898508921, + "kind": "calibration_drift", + "ledger_value": 16993.0, + "name": "ons.age.60_70@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14234.388154249102, + "kind": "calibration_drift", + "ledger_value": 15173.0, + "name": "ons.age.60_70@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17318.424590809867, + "kind": "calibration_drift", + "ledger_value": 18471.0, + "name": "ons.age.60_70@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12094.127128939677, + "kind": "calibration_drift", + "ledger_value": 12863.0, + "name": "ons.age.60_70@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17178.46201694767, + "kind": "calibration_drift", + "ledger_value": 18338.0, + "name": "ons.age.60_70@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15787.583939192089, + "kind": "calibration_drift", + "ledger_value": 16766.0, + "name": "ons.age.60_70@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14153.71528181464, + "kind": "calibration_drift", + "ledger_value": 15052.0, + "name": "ons.age.60_70@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11875.435607279995, + "kind": "calibration_drift", + "ledger_value": 12612.0, + "name": "ons.age.60_70@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14450.163788953321, + "kind": "calibration_drift", + "ledger_value": 15375.0, + "name": "ons.age.60_70@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13202.1641720154, + "kind": "calibration_drift", + "ledger_value": 14016.0, + "name": "ons.age.60_70@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14979.883252528996, + "kind": "calibration_drift", + "ledger_value": 15772.0, + "name": "ons.age.60_70@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15180.107490137416, + "kind": "calibration_drift", + "ledger_value": 16082.0, + "name": "ons.age.60_70@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17234.835831419943, + "kind": "calibration_drift", + "ledger_value": 18302.0, + "name": "ons.age.60_70@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13272.1454589465, + "kind": "calibration_drift", + "ledger_value": 14043.0, + "name": "ons.age.60_70@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8870.128118516715, + "kind": "calibration_drift", + "ledger_value": 9198.0, + "name": "ons.age.60_70@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12739.510108415361, + "kind": "calibration_drift", + "ledger_value": 13534.0, + "name": "ons.age.60_70@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13699.808879080989, + "kind": "calibration_drift", + "ledger_value": 14258.0, + "name": "ons.age.60_70@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14660.107649746617, + "kind": "calibration_drift", + "ledger_value": 15716.0, + "name": "ons.age.60_70@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14256.743287574312, + "kind": "calibration_drift", + "ledger_value": 15107.0, + "name": "ons.age.60_70@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8122.689095599846, + "kind": "calibration_drift", + "ledger_value": 8712.0, + "name": "ons.age.60_70@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14561.93945557938, + "kind": "calibration_drift", + "ledger_value": 15497.0, + "name": "ons.age.60_70@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11143.547981458925, + "kind": "calibration_drift", + "ledger_value": 11867.0, + "name": "ons.age.60_70@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15587.35970158367, + "kind": "calibration_drift", + "ledger_value": 16715.0, + "name": "ons.age.60_70@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8782.651509852843, + "kind": "calibration_drift", + "ledger_value": 9526.0, + "name": "ons.age.60_70@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10607.996743972324, + "kind": "calibration_drift", + "ledger_value": 11428.0, + "name": "ons.age.60_70@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10182.27724847481, + "kind": "calibration_drift", + "ledger_value": 10912.0, + "name": "ons.age.60_70@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10238.651062947083, + "kind": "calibration_drift", + "ledger_value": 10980.0, + "name": "ons.age.60_70@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14724.25716276679, + "kind": "calibration_drift", + "ledger_value": 15530.0, + "name": "ons.age.60_70@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10005.380106510089, + "kind": "calibration_drift", + "ledger_value": 10558.0, + "name": "ons.age.60_70@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8279.175028876329, + "kind": "calibration_drift", + "ledger_value": 8724.0, + "name": "ons.age.60_70@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14752.444070002926, + "kind": "calibration_drift", + "ledger_value": 15690.0, + "name": "ons.age.60_70@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11893.902891331256, + "kind": "calibration_drift", + "ledger_value": 12749.0, + "name": "ons.age.60_70@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18730.685839572172, + "kind": "calibration_drift", + "ledger_value": 20060.0, + "name": "ons.age.60_70@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15430.873768307185, + "kind": "calibration_drift", + "ledger_value": 16304.0, + "name": "ons.age.60_70@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7580.334121883833, + "kind": "calibration_drift", + "ledger_value": 7985.0, + "name": "ons.age.60_70@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22377.488458537184, + "kind": "calibration_drift", + "ledger_value": 24005.0, + "name": "ons.age.60_70@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17540.03199942501, + "kind": "calibration_drift", + "ledger_value": 18606.0, + "name": "ons.age.60_70@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11095.921827853039, + "kind": "calibration_drift", + "ledger_value": 11708.0, + "name": "ons.age.60_70@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18551.844772970475, + "kind": "calibration_drift", + "ledger_value": 19707.0, + "name": "ons.age.60_70@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17144.443335800606, + "kind": "calibration_drift", + "ledger_value": 18295.0, + "name": "ons.age.60_70@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12869.753059092684, + "kind": "calibration_drift", + "ledger_value": 13778.0, + "name": "ons.age.60_70@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12062.05237242959, + "kind": "calibration_drift", + "ledger_value": 12798.0, + "name": "ons.age.60_70@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11741.304807328723, + "kind": "calibration_drift", + "ledger_value": 12543.0, + "name": "ons.age.60_70@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9492.1840023487, + "kind": "calibration_drift", + "ledger_value": 9831.0, + "name": "ons.age.60_70@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10961.791027901767, + "kind": "calibration_drift", + "ledger_value": 11558.0, + "name": "ons.age.60_70@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17916.181416679665, + "kind": "calibration_drift", + "ledger_value": 19133.0, + "name": "ons.age.60_70@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12698.687691038887, + "kind": "calibration_drift", + "ledger_value": 13395.0, + "name": "ons.age.60_70@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14538.612359935682, + "kind": "calibration_drift", + "ledger_value": 15481.0, + "name": "ons.age.60_70@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11718.94967400351, + "kind": "calibration_drift", + "ledger_value": 12420.0, + "name": "ons.age.60_70@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16820.77988374428, + "kind": "calibration_drift", + "ledger_value": 17997.0, + "name": "ons.age.60_70@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9069.380393806648, + "kind": "calibration_drift", + "ledger_value": 9767.0, + "name": "ons.age.60_70@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34626.15759611637, + "kind": "calibration_drift", + "ledger_value": 36770.0, + "name": "ons.age.60_70@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20093.37701009161, + "kind": "calibration_drift", + "ledger_value": 21353.0, + "name": "ons.age.60_70@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30031.691716626065, + "kind": "calibration_drift", + "ledger_value": 31606.0, + "name": "ons.age.60_70@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20793.1898794026, + "kind": "calibration_drift", + "ledger_value": 22045.0, + "name": "ons.age.60_70@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39287.68887558231, + "kind": "calibration_drift", + "ledger_value": 41603.0, + "name": "ons.age.60_70@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23367.918061075925, + "kind": "calibration_drift", + "ledger_value": 24630.0, + "name": "ons.age.60_70@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23376.66572194231, + "kind": "calibration_drift", + "ledger_value": 24523.0, + "name": "ons.age.60_70@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22766.273385932174, + "kind": "calibration_drift", + "ledger_value": 24098.0, + "name": "ons.age.60_70@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33191.54121402885, + "kind": "calibration_drift", + "ledger_value": 34705.0, + "name": "ons.age.60_70@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25356.552964701303, + "kind": "calibration_drift", + "ledger_value": 26913.0, + "name": "ons.age.60_70@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24100.77764921548, + "kind": "calibration_drift", + "ledger_value": 25388.0, + "name": "ons.age.60_70@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37375.83899511744, + "kind": "calibration_drift", + "ledger_value": 39679.0, + "name": "ons.age.60_70@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19274.01277560667, + "kind": "calibration_drift", + "ledger_value": 20590.0, + "name": "ons.age.60_70@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 50845.2928047169, + "kind": "calibration_drift", + "ledger_value": 53177.0, + "name": "ons.age.60_70@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21658.23634285645, + "kind": "calibration_drift", + "ledger_value": 22865.0, + "name": "ons.age.60_70@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37674.2314268931, + "kind": "calibration_drift", + "ledger_value": 39779.0, + "name": "ons.age.60_70@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 41059.57618218498, + "kind": "calibration_drift", + "ledger_value": 43201.0, + "name": "ons.age.60_70@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29550.570368974764, + "kind": "calibration_drift", + "ledger_value": 31167.0, + "name": "ons.age.60_70@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36955.95127353085, + "kind": "calibration_drift", + "ledger_value": 39031.0, + "name": "ons.age.60_70@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30679.990583057213, + "kind": "calibration_drift", + "ledger_value": 32479.0, + "name": "ons.age.60_70@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55225.92697413996, + "kind": "calibration_drift", + "ledger_value": 57765.0, + "name": "ons.age.60_70@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28805.07527069487, + "kind": "calibration_drift", + "ledger_value": 30284.0, + "name": "ons.age.60_70@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26062.197607923208, + "kind": "calibration_drift", + "ledger_value": 27295.0, + "name": "ons.age.60_70@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19463.545427711728, + "kind": "calibration_drift", + "ledger_value": 20435.0, + "name": "ons.age.60_70@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35223.91442198617, + "kind": "calibration_drift", + "ledger_value": 36950.0, + "name": "ons.age.60_70@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 95517.65292471983, + "kind": "calibration_drift", + "ledger_value": 100385.0, + "name": "ons.age.60_70@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30283.429957114324, + "kind": "calibration_drift", + "ledger_value": 31807.0, + "name": "ons.age.60_70@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35522.306853761824, + "kind": "calibration_drift", + "ledger_value": 37466.0, + "name": "ons.age.60_70@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31708.326716016963, + "kind": "calibration_drift", + "ledger_value": 33345.0, + "name": "ons.age.60_70@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24258.235544810454, + "kind": "calibration_drift", + "ledger_value": 25329.0, + "name": "ons.age.60_70@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28761.336966362935, + "kind": "calibration_drift", + "ledger_value": 30347.0, + "name": "ons.age.60_70@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26482.0853295098, + "kind": "calibration_drift", + "ledger_value": 27745.0, + "name": "ons.age.60_70@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53424.88079798267, + "kind": "calibration_drift", + "ledger_value": 55800.0, + "name": "ons.age.60_70@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24260.179469447427, + "kind": "calibration_drift", + "ledger_value": 25722.0, + "name": "ons.age.60_70@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 46222.64001799046, + "kind": "calibration_drift", + "ledger_value": 48807.0, + "name": "ons.age.60_70@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 75121.99563357861, + "kind": "calibration_drift", + "ledger_value": 79373.0, + "name": "ons.age.60_70@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40870.04353007992, + "kind": "calibration_drift", + "ledger_value": 43073.0, + "name": "ons.age.60_70@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23604.10490446838, + "kind": "calibration_drift", + "ledger_value": 24775.0, + "name": "ons.age.60_70@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 920.4483156076408, + "kind": "calibration_drift", + "ledger_value": 1009.0, + "name": "ons.age.60_70@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15332.70557413995, + "kind": "calibration_drift", + "ledger_value": 16309.0, + "name": "ons.age.60_70@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35172.40041910633, + "kind": "calibration_drift", + "ledger_value": 37681.0, + "name": "ons.age.60_70@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24745.18866637268, + "kind": "calibration_drift", + "ledger_value": 26497.0, + "name": "ons.age.60_70@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29714.83200079915, + "kind": "calibration_drift", + "ledger_value": 31919.0, + "name": "ons.age.60_70@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33523.95232695157, + "kind": "calibration_drift", + "ledger_value": 35681.0, + "name": "ons.age.60_70@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16986.985440205637, + "kind": "calibration_drift", + "ledger_value": 18203.0, + "name": "ons.age.60_70@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37377.78291975442, + "kind": "calibration_drift", + "ledger_value": 40164.0, + "name": "ons.age.60_70@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32447.018078067445, + "kind": "calibration_drift", + "ledger_value": 34637.0, + "name": "ons.age.60_70@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30669.29899755385, + "kind": "calibration_drift", + "ledger_value": 33009.0, + "name": "ons.age.60_70@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23102.57234812884, + "kind": "calibration_drift", + "ledger_value": 24713.0, + "name": "ons.age.60_70@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18333.153251310792, + "kind": "calibration_drift", + "ledger_value": 19896.0, + "name": "ons.age.60_70@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14173.15452818439, + "kind": "calibration_drift", + "ledger_value": 15267.0, + "name": "ons.age.60_70@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21882.75963842706, + "kind": "calibration_drift", + "ledger_value": 23691.0, + "name": "ons.age.60_70@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25573.30056172401, + "kind": "calibration_drift", + "ledger_value": 26864.0, + "name": "ons.age.60_70@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26923.356222103113, + "kind": "calibration_drift", + "ledger_value": 28379.0, + "name": "ons.age.60_70@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27407.393456709877, + "kind": "calibration_drift", + "ledger_value": 29153.0, + "name": "ons.age.60_70@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24460.403707055848, + "kind": "calibration_drift", + "ledger_value": 26188.0, + "name": "ons.age.60_70@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16126.798788344218, + "kind": "calibration_drift", + "ledger_value": 17511.0, + "name": "ons.age.60_70@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15004.182310491184, + "kind": "calibration_drift", + "ledger_value": 16172.0, + "name": "ons.age.60_70@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15079.023409014719, + "kind": "calibration_drift", + "ledger_value": 15960.0, + "name": "ons.age.60_70@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24120.216895585232, + "kind": "calibration_drift", + "ledger_value": 26233.0, + "name": "ons.age.60_70@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24532.32891862392, + "kind": "calibration_drift", + "ledger_value": 26578.0, + "name": "ons.age.60_70@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18575.171868614172, + "kind": "calibration_drift", + "ledger_value": 19980.0, + "name": "ons.age.60_70@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22798.34814244226, + "kind": "calibration_drift", + "ledger_value": 24627.0, + "name": "ons.age.60_70@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26001.935944176985, + "kind": "calibration_drift", + "ledger_value": 27557.0, + "name": "ons.age.60_70@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19321.638929212557, + "kind": "calibration_drift", + "ledger_value": 20808.0, + "name": "ons.age.60_70@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23832.516049312937, + "kind": "calibration_drift", + "ledger_value": 25813.0, + "name": "ons.age.60_70@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19741.526650799147, + "kind": "calibration_drift", + "ledger_value": 20864.0, + "name": "ons.age.60_70@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15595.135400131569, + "kind": "calibration_drift", + "ledger_value": 16928.0, + "name": "ons.age.60_70@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21602.834490702666, + "kind": "calibration_drift", + "ledger_value": 23141.0, + "name": "ons.age.60_70@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22225.862336853137, + "kind": "calibration_drift", + "ledger_value": 24040.0, + "name": "ons.age.60_70@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18048.36829199396, + "kind": "calibration_drift", + "ledger_value": 19320.0, + "name": "ons.age.60_70@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10430.36011555799, + "kind": "calibration_drift", + "ledger_value": 12059.0, + "name": "ons.age.60_70@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10063.851379011447, + "kind": "calibration_drift", + "ledger_value": 11618.0, + "name": "ons.age.60_70@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10294.435692569872, + "kind": "calibration_drift", + "ledger_value": 10871.0, + "name": "ons.age.60_70@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11259.970521370973, + "kind": "calibration_drift", + "ledger_value": 12094.0, + "name": "ons.age.60_70@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13236.190520610067, + "kind": "calibration_drift", + "ledger_value": 15356.0, + "name": "ons.age.60_70@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11435.699832704764, + "kind": "calibration_drift", + "ledger_value": 11794.0, + "name": "ons.age.60_70@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11604.209823357427, + "kind": "calibration_drift", + "ledger_value": 11447.0, + "name": "ons.age.60_70@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10116.201316409572, + "kind": "calibration_drift", + "ledger_value": 11301.0, + "name": "ons.age.60_70@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10775.152887078888, + "kind": "calibration_drift", + "ledger_value": 12007.0, + "name": "ons.age.60_70@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9947.356002118713, + "kind": "calibration_drift", + "ledger_value": 11985.0, + "name": "ons.age.60_70@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8203.318034949441, + "kind": "calibration_drift", + "ledger_value": 9235.0, + "name": "ons.age.60_70@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12088.545368889532, + "kind": "calibration_drift", + "ledger_value": 13106.0, + "name": "ons.age.60_70@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12232.635908713683, + "kind": "calibration_drift", + "ledger_value": 12775.0, + "name": "ons.age.60_70@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12317.34457719757, + "kind": "calibration_drift", + "ledger_value": 13596.0, + "name": "ons.age.60_70@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10232.10494570549, + "kind": "calibration_drift", + "ledger_value": 11201.0, + "name": "ons.age.60_70@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9954.348486221063, + "kind": "calibration_drift", + "ledger_value": 11400.0, + "name": "ons.age.60_70@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12842.343045090727, + "kind": "calibration_drift", + "ledger_value": 14159.0, + "name": "ons.age.60_70@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9232.209306449404, + "kind": "calibration_drift", + "ledger_value": 10357.0, + "name": "ons.age.60_70@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6408.034725896099, + "kind": "calibration_drift", + "ledger_value": 7499.0, + "name": "ons.age.60_70@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10877.267625591627, + "kind": "calibration_drift", + "ledger_value": 12245.0, + "name": "ons.age.60_70@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9758.640122313436, + "kind": "calibration_drift", + "ledger_value": 11214.0, + "name": "ons.age.60_70@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10319.151017196793, + "kind": "calibration_drift", + "ledger_value": 11415.0, + "name": "ons.age.60_70@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7022.890066365426, + "kind": "calibration_drift", + "ledger_value": 7869.0, + "name": "ons.age.60_70@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7236.589848494765, + "kind": "calibration_drift", + "ledger_value": 7128.0, + "name": "ons.age.60_70@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13381.780154346145, + "kind": "calibration_drift", + "ledger_value": 14325.0, + "name": "ons.age.60_70@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12929.191867383093, + "kind": "calibration_drift", + "ledger_value": 14172.0, + "name": "ons.age.60_70@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9054.724477245065, + "kind": "calibration_drift", + "ledger_value": 10598.0, + "name": "ons.age.60_70@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10444.84806921998, + "kind": "calibration_drift", + "ledger_value": 12097.0, + "name": "ons.age.60_70@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11874.027002584602, + "kind": "calibration_drift", + "ledger_value": 13076.0, + "name": "ons.age.60_70@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8563.226096029708, + "kind": "calibration_drift", + "ledger_value": 9572.0, + "name": "ons.age.60_70@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10161.53904478545, + "kind": "calibration_drift", + "ledger_value": 12166.0, + "name": "ons.age.60_70@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9116.167602714226, + "kind": "calibration_drift", + "ledger_value": 9705.0, + "name": "ons.age.60_70@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8761.030282486454, + "kind": "calibration_drift", + "ledger_value": 10229.0, + "name": "ons.age.60_70@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8268.870219867387, + "kind": "calibration_drift", + "ledger_value": 8323.0, + "name": "ons.age.60_70@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10162.55487815998, + "kind": "calibration_drift", + "ledger_value": 11079.0, + "name": "ons.age.60_70@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8805.585290177458, + "kind": "calibration_drift", + "ledger_value": 10089.0, + "name": "ons.age.60_70@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8673.95462361531, + "kind": "calibration_drift", + "ledger_value": 9652.0, + "name": "ons.age.60_70@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8410.271894475105, + "kind": "calibration_drift", + "ledger_value": 10014.0, + "name": "ons.age.60_70@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12198.488187166035, + "kind": "calibration_drift", + "ledger_value": 13909.0, + "name": "ons.age.60_70@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9633.956612386206, + "kind": "calibration_drift", + "ledger_value": 10265.0, + "name": "ons.age.60_70@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8200.64052650507, + "kind": "calibration_drift", + "ledger_value": 10760.0, + "name": "ons.age.60_70@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11456.766047151334, + "kind": "calibration_drift", + "ledger_value": 14546.0, + "name": "ons.age.60_70@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12661.544429344234, + "kind": "calibration_drift", + "ledger_value": 14266.0, + "name": "ons.age.60_70@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11485.828325715456, + "kind": "calibration_drift", + "ledger_value": 12375.0, + "name": "ons.age.60_70@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13522.487870408506, + "kind": "calibration_drift", + "ledger_value": 13889.0, + "name": "ons.age.60_70@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13128.975718527361, + "kind": "calibration_drift", + "ledger_value": 14832.0, + "name": "ons.age.60_70@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12190.986740357941, + "kind": "calibration_drift", + "ledger_value": 13631.0, + "name": "ons.age.60_70@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10957.666399078724, + "kind": "calibration_drift", + "ledger_value": 12173.0, + "name": "ons.age.60_70@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10798.289046336886, + "kind": "calibration_drift", + "ledger_value": 11389.0, + "name": "ons.age.60_70@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10535.632013031156, + "kind": "calibration_drift", + "ledger_value": 11838.0, + "name": "ons.age.60_70@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11750.134780731696, + "kind": "calibration_drift", + "ledger_value": 13404.0, + "name": "ons.age.60_70@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15326.104958116975, + "kind": "calibration_drift", + "ledger_value": 17036.0, + "name": "ons.age.60_70@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10765.861278031492, + "kind": "calibration_drift", + "ledger_value": 11453.0, + "name": "ons.age.60_70@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10027.991474644534, + "kind": "calibration_drift", + "ledger_value": 11156.0, + "name": "ons.age.60_70@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10036.137866560668, + "kind": "calibration_drift", + "ledger_value": 10816.0, + "name": "ons.age.60_70@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9206.113237429916, + "kind": "calibration_drift", + "ledger_value": 9982.0, + "name": "ons.age.60_70@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10694.358443416497, + "kind": "calibration_drift", + "ledger_value": 11349.0, + "name": "ons.age.60_70@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8845.640326370874, + "kind": "calibration_drift", + "ledger_value": 9327.0, + "name": "ons.age.60_70@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11955.337907144607, + "kind": "calibration_drift", + "ledger_value": 13175.0, + "name": "ons.age.60_70@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11347.194117141318, + "kind": "calibration_drift", + "ledger_value": 12532.0, + "name": "ons.age.60_70@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12102.352812815188, + "kind": "calibration_drift", + "ledger_value": 12374.0, + "name": "ons.age.60_70@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10501.68542589394, + "kind": "calibration_drift", + "ledger_value": 11135.0, + "name": "ons.age.60_70@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10600.171950923643, + "kind": "calibration_drift", + "ledger_value": 11871.0, + "name": "ons.age.60_70@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13376.9968612719, + "kind": "calibration_drift", + "ledger_value": 13029.0, + "name": "ons.age.60_70@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13495.66197935295, + "kind": "calibration_drift", + "ledger_value": 15568.0, + "name": "ons.age.60_70@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11810.917121384415, + "kind": "calibration_drift", + "ledger_value": 13712.0, + "name": "ons.age.60_70@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9399.989475065993, + "kind": "calibration_drift", + "ledger_value": 10660.0, + "name": "ons.age.60_70@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7687.708628925727, + "kind": "calibration_drift", + "ledger_value": 8949.0, + "name": "ons.age.60_70@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5049.056782433482, + "kind": "calibration_drift", + "ledger_value": 5619.0, + "name": "ons.age.60_70@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7983.976925730477, + "kind": "calibration_drift", + "ledger_value": 9021.0, + "name": "ons.age.60_70@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8752.211281454462, + "kind": "calibration_drift", + "ledger_value": 9164.0, + "name": "ons.age.60_70@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8938.87016024888, + "kind": "calibration_drift", + "ledger_value": 10113.0, + "name": "ons.age.60_70@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8400.36998468842, + "kind": "calibration_drift", + "ledger_value": 9416.0, + "name": "ons.age.60_70@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12330.435946758593, + "kind": "calibration_drift", + "ledger_value": 13664.0, + "name": "ons.age.60_70@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9368.721591822841, + "kind": "calibration_drift", + "ledger_value": 10432.0, + "name": "ons.age.60_70@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11714.629924922872, + "kind": "calibration_drift", + "ledger_value": 12749.0, + "name": "ons.age.60_70@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10645.983077376974, + "kind": "calibration_drift", + "ledger_value": 11765.0, + "name": "ons.age.60_70@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10798.673682274813, + "kind": "calibration_drift", + "ledger_value": 11304.0, + "name": "ons.age.60_70@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10481.59120081679, + "kind": "calibration_drift", + "ledger_value": 11666.0, + "name": "ons.age.60_70@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11357.64832468503, + "kind": "calibration_drift", + "ledger_value": 12426.0, + "name": "ons.age.60_70@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11809.30954041307, + "kind": "calibration_drift", + "ledger_value": 13480.0, + "name": "ons.age.60_70@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10694.851566413843, + "kind": "calibration_drift", + "ledger_value": 12101.0, + "name": "ons.age.60_70@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10112.398590943985, + "kind": "calibration_drift", + "ledger_value": 11103.0, + "name": "ons.age.60_70@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12112.422384420968, + "kind": "calibration_drift", + "ledger_value": 13141.0, + "name": "ons.age.60_70@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12769.479191003062, + "kind": "calibration_drift", + "ledger_value": 13300.0, + "name": "ons.age.60_70@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12085.566905985572, + "kind": "calibration_drift", + "ledger_value": 13082.0, + "name": "ons.age.60_70@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8056.76188013857, + "kind": "calibration_drift", + "ledger_value": 8669.0, + "name": "ons.age.60_70@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11110.061130178157, + "kind": "calibration_drift", + "ledger_value": 12573.0, + "name": "ons.age.60_70@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11113.907489557447, + "kind": "calibration_drift", + "ledger_value": 11851.0, + "name": "ons.age.60_70@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12888.12458416422, + "kind": "calibration_drift", + "ledger_value": 14267.0, + "name": "ons.age.60_70@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9330.873355758149, + "kind": "calibration_drift", + "ledger_value": 10552.0, + "name": "ons.age.60_70@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11287.348710183556, + "kind": "calibration_drift", + "ledger_value": 11676.0, + "name": "ons.age.60_70@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12994.129690780912, + "kind": "calibration_drift", + "ledger_value": 14566.0, + "name": "ons.age.60_70@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12096.120616961813, + "kind": "calibration_drift", + "ledger_value": 12720.0, + "name": "ons.age.60_70@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10222.203035918807, + "kind": "calibration_drift", + "ledger_value": 11347.0, + "name": "ons.age.60_70@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11008.47779272513, + "kind": "calibration_drift", + "ledger_value": 11490.0, + "name": "ons.age.60_70@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9844.362332893279, + "kind": "calibration_drift", + "ledger_value": 10739.0, + "name": "ons.age.60_70@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10680.19216534207, + "kind": "calibration_drift", + "ledger_value": 10895.0, + "name": "ons.age.60_70@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10036.473190198863, + "kind": "calibration_drift", + "ledger_value": 11146.0, + "name": "ons.age.60_70@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10835.292996057638, + "kind": "calibration_drift", + "ledger_value": 12135.0, + "name": "ons.age.60_70@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10149.06901020108, + "kind": "calibration_drift", + "ledger_value": 11651.0, + "name": "ons.age.60_70@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10949.731402516198, + "kind": "calibration_drift", + "ledger_value": 13618.0, + "name": "ons.age.60_70@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11469.054672245165, + "kind": "calibration_drift", + "ledger_value": 12461.0, + "name": "ons.age.60_70@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13491.598645854829, + "kind": "calibration_drift", + "ledger_value": 14954.0, + "name": "ons.age.60_70@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10443.634986646513, + "kind": "calibration_drift", + "ledger_value": 11449.0, + "name": "ons.age.60_70@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11503.74426391442, + "kind": "calibration_drift", + "ledger_value": 12458.0, + "name": "ons.age.60_70@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11025.98365913087, + "kind": "calibration_drift", + "ledger_value": 12360.0, + "name": "ons.age.60_70@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11467.595028173024, + "kind": "calibration_drift", + "ledger_value": 12459.0, + "name": "ons.age.60_70@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12282.599130804656, + "kind": "calibration_drift", + "ledger_value": 13148.0, + "name": "ons.age.60_70@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13854.01446152341, + "kind": "calibration_drift", + "ledger_value": 11897.0, + "name": "ons.age.60_70@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11262.019522140547, + "kind": "calibration_drift", + "ledger_value": 11720.0, + "name": "ons.age.60_70@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14418.359848087479, + "kind": "calibration_drift", + "ledger_value": 15860.0, + "name": "ons.age.60_70@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6911.2864696063525, + "kind": "calibration_drift", + "ledger_value": 7940.0, + "name": "ons.age.60_70@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9206.364193093912, + "kind": "calibration_drift", + "ledger_value": 10268.0, + "name": "ons.age.60_70@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10886.203014303515, + "kind": "calibration_drift", + "ledger_value": 12046.0, + "name": "ons.age.60_70@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10842.176993100571, + "kind": "calibration_drift", + "ledger_value": 12430.0, + "name": "ons.age.60_70@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12540.315071676992, + "kind": "calibration_drift", + "ledger_value": 13841.0, + "name": "ons.age.60_70@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9566.497386349438, + "kind": "calibration_drift", + "ledger_value": 10918.0, + "name": "ons.age.60_70@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9514.31511077041, + "kind": "calibration_drift", + "ledger_value": 10722.0, + "name": "ons.age.60_70@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9616.97345635765, + "kind": "calibration_drift", + "ledger_value": 10055.0, + "name": "ons.age.60_70@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12042.452137022474, + "kind": "calibration_drift", + "ledger_value": 12836.0, + "name": "ons.age.60_70@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10285.559478617666, + "kind": "calibration_drift", + "ledger_value": 11676.0, + "name": "ons.age.60_70@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11577.877055299214, + "kind": "calibration_drift", + "ledger_value": 12964.0, + "name": "ons.age.60_70@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9845.89101418505, + "kind": "calibration_drift", + "ledger_value": 12029.0, + "name": "ons.age.60_70@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10310.906000681189, + "kind": "calibration_drift", + "ledger_value": 11079.0, + "name": "ons.age.60_70@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10910.957788770225, + "kind": "calibration_drift", + "ledger_value": 10775.0, + "name": "ons.age.60_70@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9298.767761144352, + "kind": "calibration_drift", + "ledger_value": 10886.0, + "name": "ons.age.60_70@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11065.877309616064, + "kind": "calibration_drift", + "ledger_value": 12534.0, + "name": "ons.age.60_70@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9139.22603407007, + "kind": "calibration_drift", + "ledger_value": 9698.0, + "name": "ons.age.60_70@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12435.019546318234, + "kind": "calibration_drift", + "ledger_value": 13893.0, + "name": "ons.age.60_70@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9490.645206897861, + "kind": "calibration_drift", + "ledger_value": 10674.0, + "name": "ons.age.60_70@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9564.61365649958, + "kind": "calibration_drift", + "ledger_value": 10675.0, + "name": "ons.age.60_70@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13011.405333500416, + "kind": "calibration_drift", + "ledger_value": 14206.0, + "name": "ons.age.60_70@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10666.93094230418, + "kind": "calibration_drift", + "ledger_value": 9434.0, + "name": "ons.age.60_70@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10322.494391118791, + "kind": "calibration_drift", + "ledger_value": 11929.0, + "name": "ons.age.60_70@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12718.500135537559, + "kind": "calibration_drift", + "ledger_value": 13476.0, + "name": "ons.age.60_70@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11578.508252735817, + "kind": "calibration_drift", + "ledger_value": 12985.0, + "name": "ons.age.60_70@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11279.863103083862, + "kind": "calibration_drift", + "ledger_value": 12515.0, + "name": "ons.age.60_70@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11030.732873011832, + "kind": "calibration_drift", + "ledger_value": 12273.0, + "name": "ons.age.60_70@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13569.59097911488, + "kind": "calibration_drift", + "ledger_value": 14368.0, + "name": "ons.age.60_70@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12926.874189295571, + "kind": "calibration_drift", + "ledger_value": 14241.0, + "name": "ons.age.60_70@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9809.63661142026, + "kind": "calibration_drift", + "ledger_value": 10744.0, + "name": "ons.age.60_70@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7845.221976737601, + "kind": "calibration_drift", + "ledger_value": 9785.0, + "name": "ons.age.60_70@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11027.51234042264, + "kind": "calibration_drift", + "ledger_value": 12069.0, + "name": "ons.age.60_70@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10178.083171915157, + "kind": "calibration_drift", + "ledger_value": 11371.0, + "name": "ons.age.60_70@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10866.596443929086, + "kind": "calibration_drift", + "ledger_value": 12644.0, + "name": "ons.age.60_70@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10487.069260252641, + "kind": "calibration_drift", + "ledger_value": 11979.0, + "name": "ons.age.60_70@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9037.696491853116, + "kind": "calibration_drift", + "ledger_value": 10429.0, + "name": "ons.age.60_70@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11837.634525380556, + "kind": "calibration_drift", + "ledger_value": 13066.0, + "name": "ons.age.60_70@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11442.517183427452, + "kind": "calibration_drift", + "ledger_value": 13105.0, + "name": "ons.age.60_70@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8368.139465581966, + "kind": "calibration_drift", + "ledger_value": 9353.0, + "name": "ons.age.60_70@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10962.9822649901, + "kind": "calibration_drift", + "ledger_value": 13087.0, + "name": "ons.age.60_70@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10560.534724397068, + "kind": "calibration_drift", + "ledger_value": 12065.0, + "name": "ons.age.60_70@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13814.919670293915, + "kind": "calibration_drift", + "ledger_value": 13241.0, + "name": "ons.age.60_70@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11162.430792496174, + "kind": "calibration_drift", + "ledger_value": 12178.0, + "name": "ons.age.60_70@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11165.290905880775, + "kind": "calibration_drift", + "ledger_value": 12094.0, + "name": "ons.age.60_70@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12385.987298427965, + "kind": "calibration_drift", + "ledger_value": 13063.0, + "name": "ons.age.60_70@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10003.483261676498, + "kind": "calibration_drift", + "ledger_value": 11189.0, + "name": "ons.age.60_70@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10745.574197920727, + "kind": "calibration_drift", + "ledger_value": 12908.0, + "name": "ons.age.60_70@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11473.614914331318, + "kind": "calibration_drift", + "ledger_value": 12106.0, + "name": "ons.age.60_70@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9894.481860031292, + "kind": "calibration_drift", + "ledger_value": 11048.0, + "name": "ons.age.60_70@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11802.683686527447, + "kind": "calibration_drift", + "ledger_value": 13068.0, + "name": "ons.age.60_70@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10428.58487276755, + "kind": "calibration_drift", + "ledger_value": 11705.0, + "name": "ons.age.60_70@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10263.862066734495, + "kind": "calibration_drift", + "ledger_value": 11345.0, + "name": "ons.age.60_70@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11449.856075708936, + "kind": "calibration_drift", + "ledger_value": 11846.0, + "name": "ons.age.60_70@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10353.610452251247, + "kind": "calibration_drift", + "ledger_value": 11425.0, + "name": "ons.age.60_70@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10654.3168560321, + "kind": "calibration_drift", + "ledger_value": 12381.0, + "name": "ons.age.60_70@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10155.877992775933, + "kind": "calibration_drift", + "ledger_value": 10928.0, + "name": "ons.age.60_70@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8596.910648880053, + "kind": "calibration_drift", + "ledger_value": 9276.0, + "name": "ons.age.60_70@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12060.620185894997, + "kind": "calibration_drift", + "ledger_value": 12991.0, + "name": "ons.age.60_70@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12314.701437931804, + "kind": "calibration_drift", + "ledger_value": 13569.0, + "name": "ons.age.60_70@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11072.75144419905, + "kind": "calibration_drift", + "ledger_value": 12143.0, + "name": "ons.age.60_70@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11330.38848539181, + "kind": "calibration_drift", + "ledger_value": 12583.0, + "name": "ons.age.60_70@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10577.84334160387, + "kind": "calibration_drift", + "ledger_value": 12240.0, + "name": "ons.age.60_70@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9618.891780272685, + "kind": "calibration_drift", + "ledger_value": 9883.0, + "name": "ons.age.60_70@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10995.656594794165, + "kind": "calibration_drift", + "ledger_value": 11606.0, + "name": "ons.age.60_70@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12286.258103444954, + "kind": "calibration_drift", + "ledger_value": 12820.0, + "name": "ons.age.60_70@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12693.972197649628, + "kind": "calibration_drift", + "ledger_value": 13670.0, + "name": "ons.age.60_70@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11795.936044725082, + "kind": "calibration_drift", + "ledger_value": 12154.0, + "name": "ons.age.60_70@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12922.24869558048, + "kind": "calibration_drift", + "ledger_value": 16145.0, + "name": "ons.age.60_70@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13131.096147415945, + "kind": "calibration_drift", + "ledger_value": 14550.0, + "name": "ons.age.60_70@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10638.24104631866, + "kind": "calibration_drift", + "ledger_value": 11515.0, + "name": "ons.age.60_70@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11547.67820294182, + "kind": "calibration_drift", + "ledger_value": 12545.0, + "name": "ons.age.60_70@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10600.171950923643, + "kind": "calibration_drift", + "ledger_value": 11384.0, + "name": "ons.age.60_70@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12490.904147343042, + "kind": "calibration_drift", + "ledger_value": 13751.0, + "name": "ons.age.60_70@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11282.555554649363, + "kind": "calibration_drift", + "ledger_value": 12756.0, + "name": "ons.age.60_70@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9882.814697152571, + "kind": "calibration_drift", + "ledger_value": 12128.0, + "name": "ons.age.60_70@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14044.68002015314, + "kind": "calibration_drift", + "ledger_value": 14701.0, + "name": "ons.age.60_70@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8346.382878939114, + "kind": "calibration_drift", + "ledger_value": 10335.0, + "name": "ons.age.60_70@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11788.59837452459, + "kind": "calibration_drift", + "ledger_value": 13204.0, + "name": "ons.age.60_70@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11994.447638536201, + "kind": "calibration_drift", + "ledger_value": 13234.0, + "name": "ons.age.60_70@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10623.841854796192, + "kind": "calibration_drift", + "ledger_value": 11389.0, + "name": "ons.age.60_70@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12630.438230671723, + "kind": "calibration_drift", + "ledger_value": 13620.0, + "name": "ons.age.60_70@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12701.862165607145, + "kind": "calibration_drift", + "ledger_value": 13910.0, + "name": "ons.age.60_70@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7156.871584744006, + "kind": "calibration_drift", + "ledger_value": 8317.0, + "name": "ons.age.60_70@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9937.929736316202, + "kind": "calibration_drift", + "ledger_value": 10326.0, + "name": "ons.age.60_70@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7496.572885729349, + "kind": "calibration_drift", + "ledger_value": 9130.0, + "name": "ons.age.60_70@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7484.6245643277425, + "kind": "calibration_drift", + "ledger_value": 8419.0, + "name": "ons.age.60_70@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10009.440187484422, + "kind": "calibration_drift", + "ledger_value": 10917.0, + "name": "ons.age.60_70@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11316.620491305945, + "kind": "calibration_drift", + "ledger_value": 12297.0, + "name": "ons.age.60_70@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11754.355913588968, + "kind": "calibration_drift", + "ledger_value": 13091.0, + "name": "ons.age.60_70@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8923.138540425507, + "kind": "calibration_drift", + "ledger_value": 10329.0, + "name": "ons.age.60_70@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10583.904072293257, + "kind": "calibration_drift", + "ledger_value": 10283.0, + "name": "ons.age.60_70@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11009.740187598334, + "kind": "calibration_drift", + "ledger_value": 12567.0, + "name": "ons.age.60_70@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10577.00981726618, + "kind": "calibration_drift", + "ledger_value": 12187.0, + "name": "ons.age.60_70@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9648.01061781053, + "kind": "calibration_drift", + "ledger_value": 11215.0, + "name": "ons.age.60_70@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12444.751421140641, + "kind": "calibration_drift", + "ledger_value": 13639.0, + "name": "ons.age.60_70@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11969.62119035067, + "kind": "calibration_drift", + "ledger_value": 12893.0, + "name": "ons.age.60_70@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10664.242077087749, + "kind": "calibration_drift", + "ledger_value": 11215.0, + "name": "ons.age.60_70@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11048.913878507403, + "kind": "calibration_drift", + "ledger_value": 12727.0, + "name": "ons.age.60_70@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12181.923042018625, + "kind": "calibration_drift", + "ledger_value": 13494.0, + "name": "ons.age.60_70@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13486.026355984832, + "kind": "calibration_drift", + "ledger_value": 14124.0, + "name": "ons.age.60_70@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11987.820065451886, + "kind": "calibration_drift", + "ledger_value": 13399.0, + "name": "ons.age.60_70@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9470.92028700407, + "kind": "calibration_drift", + "ledger_value": 11036.0, + "name": "ons.age.60_70@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11123.671324904873, + "kind": "calibration_drift", + "ledger_value": 11925.0, + "name": "ons.age.60_70@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10606.36557577029, + "kind": "calibration_drift", + "ledger_value": 11020.0, + "name": "ons.age.60_70@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10274.217649678736, + "kind": "calibration_drift", + "ledger_value": 11519.0, + "name": "ons.age.60_70@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11150.378866441068, + "kind": "calibration_drift", + "ledger_value": 12595.0, + "name": "ons.age.60_70@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12375.661302863564, + "kind": "calibration_drift", + "ledger_value": 13394.0, + "name": "ons.age.60_70@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12482.609818527704, + "kind": "calibration_drift", + "ledger_value": 14732.0, + "name": "ons.age.60_70@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10684.002860472257, + "kind": "calibration_drift", + "ledger_value": 11840.0, + "name": "ons.age.60_70@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10156.785339091046, + "kind": "calibration_drift", + "ledger_value": 11929.0, + "name": "ons.age.60_70@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13889.271486408024, + "kind": "calibration_drift", + "ledger_value": 15327.0, + "name": "ons.age.60_70@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10940.929804548841, + "kind": "calibration_drift", + "ledger_value": 11448.0, + "name": "ons.age.60_70@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11924.700321791754, + "kind": "calibration_drift", + "ledger_value": 13285.0, + "name": "ons.age.60_70@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11686.443014394645, + "kind": "calibration_drift", + "ledger_value": 12778.0, + "name": "ons.age.60_70@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10051.049906000377, + "kind": "calibration_drift", + "ledger_value": 11236.0, + "name": "ons.age.60_70@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10532.042077610486, + "kind": "calibration_drift", + "ledger_value": 8953.0, + "name": "ons.age.60_70@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12329.484874799726, + "kind": "calibration_drift", + "ledger_value": 14147.0, + "name": "ons.age.60_70@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11170.33171874252, + "kind": "calibration_drift", + "ledger_value": 11968.0, + "name": "ons.age.60_70@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8791.110386841256, + "kind": "calibration_drift", + "ledger_value": 9712.0, + "name": "ons.age.60_70@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11559.83861605634, + "kind": "calibration_drift", + "ledger_value": 12980.0, + "name": "ons.age.60_70@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12183.609620317662, + "kind": "calibration_drift", + "ledger_value": 13421.0, + "name": "ons.age.60_70@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8918.622529977903, + "kind": "calibration_drift", + "ledger_value": 10507.0, + "name": "ons.age.60_70@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11477.003814962363, + "kind": "calibration_drift", + "ledger_value": 11743.0, + "name": "ons.age.60_70@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11250.877333299935, + "kind": "calibration_drift", + "ledger_value": 13750.0, + "name": "ons.age.60_70@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9671.128223926054, + "kind": "calibration_drift", + "ledger_value": 10693.0, + "name": "ons.age.60_70@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10017.954379422014, + "kind": "calibration_drift", + "ledger_value": 10884.0, + "name": "ons.age.60_70@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9623.992638836422, + "kind": "calibration_drift", + "ledger_value": 9800.0, + "name": "ons.age.60_70@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11031.161450602991, + "kind": "calibration_drift", + "ledger_value": 11423.0, + "name": "ons.age.60_70@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10408.840227953864, + "kind": "calibration_drift", + "ledger_value": 11474.0, + "name": "ons.age.60_70@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10408.840227953864, + "kind": "calibration_drift", + "ledger_value": 10553.0, + "name": "ons.age.60_70@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7723.292384414128, + "kind": "calibration_drift", + "ledger_value": 8746.0, + "name": "ons.age.60_70@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8046.416159654276, + "kind": "calibration_drift", + "ledger_value": 9248.0, + "name": "ons.age.60_70@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11414.318019539895, + "kind": "calibration_drift", + "ledger_value": 12481.0, + "name": "ons.age.60_70@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11372.402564765585, + "kind": "calibration_drift", + "ledger_value": 12243.0, + "name": "ons.age.60_70@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10336.98234478078, + "kind": "calibration_drift", + "ledger_value": 12843.0, + "name": "ons.age.60_70@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13050.342325370762, + "kind": "calibration_drift", + "ledger_value": 13562.0, + "name": "ons.age.60_70@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11084.53708383559, + "kind": "calibration_drift", + "ledger_value": 12327.0, + "name": "ons.age.60_70@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10281.377795600181, + "kind": "calibration_drift", + "ledger_value": 10558.0, + "name": "ons.age.60_70@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10761.571107954593, + "kind": "calibration_drift", + "ledger_value": 11774.0, + "name": "ons.age.60_70@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10486.789026921018, + "kind": "calibration_drift", + "ledger_value": 12118.0, + "name": "ons.age.60_70@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11376.209075821858, + "kind": "calibration_drift", + "ledger_value": 12993.0, + "name": "ons.age.60_70@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10546.00732089529, + "kind": "calibration_drift", + "ledger_value": 12452.0, + "name": "ons.age.60_70@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10779.126286660068, + "kind": "calibration_drift", + "ledger_value": 12261.0, + "name": "ons.age.60_70@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11171.168932009125, + "kind": "calibration_drift", + "ledger_value": 12242.0, + "name": "ons.age.60_70@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8075.085234891019, + "kind": "calibration_drift", + "ledger_value": 5239.0, + "name": "ons.age.60_70@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10154.168662465334, + "kind": "calibration_drift", + "ledger_value": 11480.0, + "name": "ons.age.60_70@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9043.87577130348, + "kind": "calibration_drift", + "ledger_value": 10019.0, + "name": "ons.age.60_70@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8555.190880934791, + "kind": "calibration_drift", + "ledger_value": 10725.0, + "name": "ons.age.60_70@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7511.969455131991, + "kind": "calibration_drift", + "ledger_value": 9968.0, + "name": "ons.age.60_70@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9232.545626295672, + "kind": "calibration_drift", + "ledger_value": 11163.0, + "name": "ons.age.60_70@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8911.235647098485, + "kind": "calibration_drift", + "ledger_value": 9919.0, + "name": "ons.age.60_70@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11720.03455297377, + "kind": "calibration_drift", + "ledger_value": 12216.0, + "name": "ons.age.60_70@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8613.606231200256, + "kind": "calibration_drift", + "ledger_value": 9389.0, + "name": "ons.age.60_70@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9122.568339219762, + "kind": "calibration_drift", + "ledger_value": 10780.0, + "name": "ons.age.60_70@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11712.913856892112, + "kind": "calibration_drift", + "ledger_value": 12819.0, + "name": "ons.age.60_70@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12826.08134295041, + "kind": "calibration_drift", + "ledger_value": 13549.0, + "name": "ons.age.60_70@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9295.153717488258, + "kind": "calibration_drift", + "ledger_value": 11544.0, + "name": "ons.age.60_70@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7547.385548801294, + "kind": "calibration_drift", + "ledger_value": 9010.0, + "name": "ons.age.60_70@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7463.037308399102, + "kind": "calibration_drift", + "ledger_value": 8877.0, + "name": "ons.age.60_70@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9292.754948063395, + "kind": "calibration_drift", + "ledger_value": 9891.0, + "name": "ons.age.60_70@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11378.497565012767, + "kind": "calibration_drift", + "ledger_value": 12765.0, + "name": "ons.age.60_70@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10193.838601111534, + "kind": "calibration_drift", + "ledger_value": 11620.0, + "name": "ons.age.60_70@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10986.928317741162, + "kind": "calibration_drift", + "ledger_value": 12349.0, + "name": "ons.age.60_70@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9427.959411475393, + "kind": "calibration_drift", + "ledger_value": 9317.0, + "name": "ons.age.60_70@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11104.81430148641, + "kind": "calibration_drift", + "ledger_value": 12562.0, + "name": "ons.age.60_70@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9002.492889366305, + "kind": "calibration_drift", + "ledger_value": 10047.0, + "name": "ons.age.60_70@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10504.742788477477, + "kind": "calibration_drift", + "ledger_value": 12366.0, + "name": "ons.age.60_70@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9867.391176869283, + "kind": "calibration_drift", + "ledger_value": 10376.0, + "name": "ons.age.60_70@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15642.788547011802, + "kind": "calibration_drift", + "ledger_value": 17028.0, + "name": "ons.age.60_70@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12187.830753174934, + "kind": "calibration_drift", + "ledger_value": 12818.0, + "name": "ons.age.60_70@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9254.340666570237, + "kind": "calibration_drift", + "ledger_value": 10859.0, + "name": "ons.age.60_70@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9223.66841613539, + "kind": "calibration_drift", + "ledger_value": 10190.0, + "name": "ons.age.60_70@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11846.786888211276, + "kind": "calibration_drift", + "ledger_value": 13274.0, + "name": "ons.age.60_70@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10618.216666277389, + "kind": "calibration_drift", + "ledger_value": 11900.0, + "name": "ons.age.60_70@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10845.066693865014, + "kind": "calibration_drift", + "ledger_value": 10948.0, + "name": "ons.age.60_70@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11377.077370780415, + "kind": "calibration_drift", + "ledger_value": 12223.0, + "name": "ons.age.60_70@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12930.03017647858, + "kind": "calibration_drift", + "ledger_value": 14100.0, + "name": "ons.age.60_70@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7666.160150149835, + "kind": "calibration_drift", + "ledger_value": 8458.0, + "name": "ons.age.60_70@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5962.65589715423, + "kind": "calibration_drift", + "ledger_value": 6133.0, + "name": "ons.age.60_70@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6308.956453269583, + "kind": "calibration_drift", + "ledger_value": 7329.0, + "name": "ons.age.60_70@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12163.273227907162, + "kind": "calibration_drift", + "ledger_value": 13571.0, + "name": "ons.age.60_70@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10705.805341730704, + "kind": "calibration_drift", + "ledger_value": 13266.0, + "name": "ons.age.60_70@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11533.604472597599, + "kind": "calibration_drift", + "ledger_value": 13142.0, + "name": "ons.age.60_70@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10468.38976111322, + "kind": "calibration_drift", + "ledger_value": 11510.0, + "name": "ons.age.60_70@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10083.201525427257, + "kind": "calibration_drift", + "ledger_value": 12090.0, + "name": "ons.age.60_70@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10404.61245502455, + "kind": "calibration_drift", + "ledger_value": 12249.0, + "name": "ons.age.60_70@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11500.486332095923, + "kind": "calibration_drift", + "ledger_value": 11946.0, + "name": "ons.age.60_70@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10728.08805643488, + "kind": "calibration_drift", + "ledger_value": 11876.0, + "name": "ons.age.60_70@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12308.080240579171, + "kind": "calibration_drift", + "ledger_value": 13789.0, + "name": "ons.age.60_70@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11740.075071585863, + "kind": "calibration_drift", + "ledger_value": 12614.0, + "name": "ons.age.60_70@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11974.574781743206, + "kind": "calibration_drift", + "ledger_value": 13950.0, + "name": "ons.age.60_70@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11029.76098129053, + "kind": "calibration_drift", + "ledger_value": 11153.0, + "name": "ons.age.60_70@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10925.899415589773, + "kind": "calibration_drift", + "ledger_value": 11904.0, + "name": "ons.age.60_70@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11527.253048391798, + "kind": "calibration_drift", + "ledger_value": 13038.0, + "name": "ons.age.60_70@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11303.049746419016, + "kind": "calibration_drift", + "ledger_value": 11820.0, + "name": "ons.age.60_70@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9126.720434857405, + "kind": "calibration_drift", + "ledger_value": 10931.0, + "name": "ons.age.60_70@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9682.371428265516, + "kind": "calibration_drift", + "ledger_value": 11718.0, + "name": "ons.age.60_70@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12808.554257312664, + "kind": "calibration_drift", + "ledger_value": 14618.0, + "name": "ons.age.60_70@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12263.96894396497, + "kind": "calibration_drift", + "ledger_value": 13261.0, + "name": "ons.age.60_70@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12641.70115993108, + "kind": "calibration_drift", + "ledger_value": 13318.0, + "name": "ons.age.60_70@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13288.471420788559, + "kind": "calibration_drift", + "ledger_value": 14825.0, + "name": "ons.age.60_70@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10707.317715786718, + "kind": "calibration_drift", + "ledger_value": 11683.0, + "name": "ons.age.60_70@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11720.077225201461, + "kind": "calibration_drift", + "ledger_value": 12619.0, + "name": "ons.age.60_70@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11068.165400323744, + "kind": "calibration_drift", + "ledger_value": 12652.0, + "name": "ons.age.60_70@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10633.747768155727, + "kind": "calibration_drift", + "ledger_value": 11672.0, + "name": "ons.age.60_70@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10417.864378805272, + "kind": "calibration_drift", + "ledger_value": 11167.0, + "name": "ons.age.60_70@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13159.48030714311, + "kind": "calibration_drift", + "ledger_value": 14024.0, + "name": "ons.age.60_70@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11736.68238536413, + "kind": "calibration_drift", + "ledger_value": 12844.0, + "name": "ons.age.60_70@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11955.569821425537, + "kind": "calibration_drift", + "ledger_value": 13303.0, + "name": "ons.age.60_70@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11087.180223101359, + "kind": "calibration_drift", + "ledger_value": 12666.0, + "name": "ons.age.60_70@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14195.196400926323, + "kind": "calibration_drift", + "ledger_value": 15093.0, + "name": "ons.age.60_70@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11875.26967253791, + "kind": "calibration_drift", + "ledger_value": 13147.0, + "name": "ons.age.60_70@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13029.295835844086, + "kind": "calibration_drift", + "ledger_value": 14670.0, + "name": "ons.age.60_70@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13080.659527247519, + "kind": "calibration_drift", + "ledger_value": 14516.0, + "name": "ons.age.60_70@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12029.122852259796, + "kind": "calibration_drift", + "ledger_value": 13313.0, + "name": "ons.age.60_70@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12439.668667918919, + "kind": "calibration_drift", + "ledger_value": 13650.0, + "name": "ons.age.60_70@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12122.935766724358, + "kind": "calibration_drift", + "ledger_value": 13100.0, + "name": "ons.age.60_70@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10219.33306007426, + "kind": "calibration_drift", + "ledger_value": 12355.0, + "name": "ons.age.60_70@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11303.365345137316, + "kind": "calibration_drift", + "ledger_value": 12717.0, + "name": "ons.age.60_70@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10264.4713909926, + "kind": "calibration_drift", + "ledger_value": 12085.0, + "name": "ons.age.60_70@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13583.31952336096, + "kind": "calibration_drift", + "ledger_value": 14753.0, + "name": "ons.age.60_70@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14630.401454697721, + "kind": "calibration_drift", + "ledger_value": 15290.0, + "name": "ons.age.60_70@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14751.65611605008, + "kind": "calibration_drift", + "ledger_value": 16700.0, + "name": "ons.age.60_70@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13334.36144692147, + "kind": "calibration_drift", + "ledger_value": 14910.0, + "name": "ons.age.60_70@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11438.431734110054, + "kind": "calibration_drift", + "ledger_value": 12224.0, + "name": "ons.age.60_70@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11019.326498666715, + "kind": "calibration_drift", + "ledger_value": 11986.0, + "name": "ons.age.60_70@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11383.813430924145, + "kind": "calibration_drift", + "ledger_value": 11779.0, + "name": "ons.age.60_70@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11564.69123929457, + "kind": "calibration_drift", + "ledger_value": 12908.0, + "name": "ons.age.60_70@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11411.970754072532, + "kind": "calibration_drift", + "ledger_value": 12154.0, + "name": "ons.age.60_70@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11395.924531738932, + "kind": "calibration_drift", + "ledger_value": 12649.0, + "name": "ons.age.60_70@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13501.914778959283, + "kind": "calibration_drift", + "ledger_value": 14621.0, + "name": "ons.age.60_70@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11722.401543361024, + "kind": "calibration_drift", + "ledger_value": 11812.0, + "name": "ons.age.60_70@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10090.518298930434, + "kind": "calibration_drift", + "ledger_value": 11196.0, + "name": "ons.age.60_70@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10233.201372313322, + "kind": "calibration_drift", + "ledger_value": 11279.0, + "name": "ons.age.60_70@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8970.627281277886, + "kind": "calibration_drift", + "ledger_value": 9627.0, + "name": "ons.age.60_70@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8743.967330191057, + "kind": "calibration_drift", + "ledger_value": 8906.0, + "name": "ons.age.60_70@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9845.505780522275, + "kind": "calibration_drift", + "ledger_value": 11198.0, + "name": "ons.age.60_70@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8217.334084846094, + "kind": "calibration_drift", + "ledger_value": 8645.0, + "name": "ons.age.60_70@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10351.637960261867, + "kind": "calibration_drift", + "ledger_value": 11462.0, + "name": "ons.age.60_70@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10156.164004114393, + "kind": "calibration_drift", + "ledger_value": 11362.0, + "name": "ons.age.60_70@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10570.584571082954, + "kind": "calibration_drift", + "ledger_value": 11425.0, + "name": "ons.age.60_70@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9948.263348433828, + "kind": "calibration_drift", + "ledger_value": 10599.0, + "name": "ons.age.60_70@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10057.022073791855, + "kind": "calibration_drift", + "ledger_value": 10878.0, + "name": "ons.age.60_70@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10229.511118739456, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "ons.age.60_70@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7533.804941454418, + "kind": "calibration_drift", + "ledger_value": 9573.0, + "name": "ons.age.60_70@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10709.50718189493, + "kind": "calibration_drift", + "ledger_value": 10483.0, + "name": "ons.age.60_70@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8033.12156364586, + "kind": "calibration_drift", + "ledger_value": 9200.0, + "name": "ons.age.60_70@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12037.507138664347, + "kind": "calibration_drift", + "ledger_value": 13683.0, + "name": "ons.age.60_70@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11415.797388531928, + "kind": "calibration_drift", + "ledger_value": 12305.0, + "name": "ons.age.60_70@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13475.542561061282, + "kind": "calibration_drift", + "ledger_value": 15208.0, + "name": "ons.age.60_70@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11172.756788060575, + "kind": "calibration_drift", + "ledger_value": 12112.0, + "name": "ons.age.60_70@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11363.970161510992, + "kind": "calibration_drift", + "ledger_value": 12221.0, + "name": "ons.age.60_70@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9621.372113493964, + "kind": "calibration_drift", + "ledger_value": 10630.0, + "name": "ons.age.60_70@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10633.95087624176, + "kind": "calibration_drift", + "ledger_value": 11891.0, + "name": "ons.age.60_70@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10769.678050030941, + "kind": "calibration_drift", + "ledger_value": 11977.0, + "name": "ons.age.60_70@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7350.88589681934, + "kind": "calibration_drift", + "ledger_value": 6819.0, + "name": "ons.age.60_70@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9710.578063713638, + "kind": "calibration_drift", + "ledger_value": 10979.0, + "name": "ons.age.60_70@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8324.902441174774, + "kind": "calibration_drift", + "ledger_value": 9539.0, + "name": "ons.age.60_70@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10421.641700964934, + "kind": "calibration_drift", + "ledger_value": 11337.0, + "name": "ons.age.60_70@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7689.365522196806, + "kind": "calibration_drift", + "ledger_value": 8601.0, + "name": "ons.age.60_70@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11288.147569439256, + "kind": "calibration_drift", + "ledger_value": 11544.0, + "name": "ons.age.60_70@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11162.125251534057, + "kind": "calibration_drift", + "ledger_value": 11984.0, + "name": "ons.age.60_70@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11157.045889365168, + "kind": "calibration_drift", + "ledger_value": 12076.0, + "name": "ons.age.60_70@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9062.791969481625, + "kind": "calibration_drift", + "ledger_value": 9028.0, + "name": "ons.age.60_70@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8991.012985988118, + "kind": "calibration_drift", + "ledger_value": 11484.0, + "name": "ons.age.60_70@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11534.304707253828, + "kind": "calibration_drift", + "ledger_value": 13260.0, + "name": "ons.age.60_70@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11353.51595396728, + "kind": "calibration_drift", + "ledger_value": 11599.0, + "name": "ons.age.60_70@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10478.27194598001, + "kind": "calibration_drift", + "ledger_value": 12165.0, + "name": "ons.age.60_70@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12269.136872977142, + "kind": "calibration_drift", + "ledger_value": 14194.0, + "name": "ons.age.60_70@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13182.202633675814, + "kind": "calibration_drift", + "ledger_value": 14620.0, + "name": "ons.age.60_70@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10608.693116317761, + "kind": "calibration_drift", + "ledger_value": 11202.0, + "name": "ons.age.60_70@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9596.074903730178, + "kind": "calibration_drift", + "ledger_value": 10385.0, + "name": "ons.age.60_70@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9935.678849541588, + "kind": "calibration_drift", + "ledger_value": 11181.0, + "name": "ons.age.60_70@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10128.96553123862, + "kind": "calibration_drift", + "ledger_value": 11089.0, + "name": "ons.age.60_70@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11020.381781881033, + "kind": "calibration_drift", + "ledger_value": 12496.0, + "name": "ons.age.60_70@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11452.969000071776, + "kind": "calibration_drift", + "ledger_value": 12732.0, + "name": "ons.age.60_70@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10470.036206035642, + "kind": "calibration_drift", + "ledger_value": 11684.0, + "name": "ons.age.60_70@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11762.009573100233, + "kind": "calibration_drift", + "ledger_value": 12279.0, + "name": "ons.age.60_70@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10562.102855528625, + "kind": "calibration_drift", + "ledger_value": 12014.0, + "name": "ons.age.60_70@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10452.917345753975, + "kind": "calibration_drift", + "ledger_value": 11423.0, + "name": "ons.age.60_70@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10995.71158547993, + "kind": "calibration_drift", + "ledger_value": 11918.0, + "name": "ons.age.60_70@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10120.313962207425, + "kind": "calibration_drift", + "ledger_value": 11959.0, + "name": "ons.age.60_70@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11219.623197728222, + "kind": "calibration_drift", + "ledger_value": 12551.0, + "name": "ons.age.60_70@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11860.791581335869, + "kind": "calibration_drift", + "ledger_value": 13377.0, + "name": "ons.age.60_70@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9062.574596879565, + "kind": "calibration_drift", + "ledger_value": 8905.0, + "name": "ons.age.60_70@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11004.296109707644, + "kind": "calibration_drift", + "ledger_value": 12782.0, + "name": "ons.age.60_70@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14036.25299642215, + "kind": "calibration_drift", + "ledger_value": 14989.0, + "name": "ons.age.60_70@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12091.54355671339, + "kind": "calibration_drift", + "ledger_value": 13007.0, + "name": "ons.age.60_70@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12625.802874496685, + "kind": "calibration_drift", + "ledger_value": 13561.0, + "name": "ons.age.60_70@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12120.892772793577, + "kind": "calibration_drift", + "ledger_value": 13240.0, + "name": "ons.age.60_70@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10850.066961058088, + "kind": "calibration_drift", + "ledger_value": 11787.0, + "name": "ons.age.60_70@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9515.212594625578, + "kind": "calibration_drift", + "ledger_value": 10796.0, + "name": "ons.age.60_70@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5464.946855934132, + "kind": "calibration_drift", + "ledger_value": 5188.0, + "name": "ons.age.60_70@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10230.835129575296, + "kind": "calibration_drift", + "ledger_value": 10948.0, + "name": "ons.age.60_70@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9782.71238870959, + "kind": "calibration_drift", + "ledger_value": 11463.0, + "name": "ons.age.60_70@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10890.401688093581, + "kind": "calibration_drift", + "ledger_value": 12067.0, + "name": "ons.age.60_70@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11954.248251792655, + "kind": "calibration_drift", + "ledger_value": 13231.0, + "name": "ons.age.60_70@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11670.24885516184, + "kind": "calibration_drift", + "ledger_value": 12655.0, + "name": "ons.age.60_70@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12386.174685166958, + "kind": "calibration_drift", + "ledger_value": 13530.0, + "name": "ons.age.60_70@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11847.22083644894, + "kind": "calibration_drift", + "ledger_value": 13105.0, + "name": "ons.age.60_70@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13759.236221433739, + "kind": "calibration_drift", + "ledger_value": 15649.0, + "name": "ons.age.60_70@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12093.742885281548, + "kind": "calibration_drift", + "ledger_value": 13037.0, + "name": "ons.age.60_70@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9674.185586509593, + "kind": "calibration_drift", + "ledger_value": 10508.0, + "name": "ons.age.60_70@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8946.947514945387, + "kind": "calibration_drift", + "ledger_value": 10527.0, + "name": "ons.age.60_70@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10268.67494718858, + "kind": "calibration_drift", + "ledger_value": 10962.0, + "name": "ons.age.60_70@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10270.213490940296, + "kind": "calibration_drift", + "ledger_value": 10896.0, + "name": "ons.age.60_70@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10544.250364934274, + "kind": "calibration_drift", + "ledger_value": 12544.0, + "name": "ons.age.60_70@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12075.093071170086, + "kind": "calibration_drift", + "ledger_value": 13422.0, + "name": "ons.age.60_70@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10534.527417517103, + "kind": "calibration_drift", + "ledger_value": 12061.0, + "name": "ons.age.60_70@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13892.517505156091, + "kind": "calibration_drift", + "ledger_value": 15023.0, + "name": "ons.age.60_70@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14414.45223473403, + "kind": "calibration_drift", + "ledger_value": 15761.0, + "name": "ons.age.60_70@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13911.986001091263, + "kind": "calibration_drift", + "ledger_value": 15235.0, + "name": "ons.age.60_70@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14067.812868252218, + "kind": "calibration_drift", + "ledger_value": 15325.0, + "name": "ons.age.60_70@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11332.83437545864, + "kind": "calibration_drift", + "ledger_value": 13303.0, + "name": "ons.age.60_70@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11409.741838124533, + "kind": "calibration_drift", + "ledger_value": 11779.0, + "name": "ons.age.60_70@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10529.511603559984, + "kind": "calibration_drift", + "ledger_value": 12858.0, + "name": "ons.age.60_70@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11737.28399542089, + "kind": "calibration_drift", + "ledger_value": 12617.0, + "name": "ons.age.60_70@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11678.04019851989, + "kind": "calibration_drift", + "ledger_value": 12571.0, + "name": "ons.age.60_70@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14546.230937816188, + "kind": "calibration_drift", + "ledger_value": 16002.0, + "name": "ons.age.60_70@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12202.308844376976, + "kind": "calibration_drift", + "ledger_value": 13479.0, + "name": "ons.age.60_70@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12141.842102442559, + "kind": "calibration_drift", + "ledger_value": 13550.0, + "name": "ons.age.60_70@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9709.49319311948, + "kind": "calibration_drift", + "ledger_value": 11329.0, + "name": "ons.age.60_70@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13012.381717035161, + "kind": "calibration_drift", + "ledger_value": 14474.0, + "name": "ons.age.60_70@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11796.202331143648, + "kind": "calibration_drift", + "ledger_value": 12539.0, + "name": "ons.age.60_70@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9304.24471390153, + "kind": "calibration_drift", + "ledger_value": 10513.0, + "name": "ons.age.60_70@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8856.489032312458, + "kind": "calibration_drift", + "ledger_value": 9498.0, + "name": "ons.age.60_70@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10192.201432760348, + "kind": "calibration_drift", + "ledger_value": 11205.0, + "name": "ons.age.60_70@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11276.75642820059, + "kind": "calibration_drift", + "ledger_value": 11887.0, + "name": "ons.age.60_70@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11370.514252358582, + "kind": "calibration_drift", + "ledger_value": 12872.0, + "name": "ons.age.60_70@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12665.163952144745, + "kind": "calibration_drift", + "ledger_value": 14302.0, + "name": "ons.age.60_70@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10226.38471893629, + "kind": "calibration_drift", + "ledger_value": 11377.0, + "name": "ons.age.60_70@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9705.755320799608, + "kind": "calibration_drift", + "ledger_value": 11478.0, + "name": "ons.age.60_70@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9146.997652508222, + "kind": "calibration_drift", + "ledger_value": 9984.0, + "name": "ons.age.60_70@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12871.614826213116, + "kind": "calibration_drift", + "ledger_value": 13653.0, + "name": "ons.age.60_70@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11688.001283066253, + "kind": "calibration_drift", + "ledger_value": 12597.0, + "name": "ons.age.60_70@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10452.629550118081, + "kind": "calibration_drift", + "ledger_value": 11715.0, + "name": "ons.age.60_70@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13224.58240525257, + "kind": "calibration_drift", + "ledger_value": 13953.0, + "name": "ons.age.60_70@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11114.232669627476, + "kind": "calibration_drift", + "ledger_value": 11188.0, + "name": "ons.age.60_70@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11267.909801628224, + "kind": "calibration_drift", + "ledger_value": 12450.0, + "name": "ons.age.60_70@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11670.623628639822, + "kind": "calibration_drift", + "ledger_value": 12424.0, + "name": "ons.age.60_70@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10129.732611456711, + "kind": "calibration_drift", + "ledger_value": 11172.0, + "name": "ons.age.60_70@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9882.184866789627, + "kind": "calibration_drift", + "ledger_value": 11189.0, + "name": "ons.age.60_70@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10355.109546163176, + "kind": "calibration_drift", + "ledger_value": 11126.0, + "name": "ons.age.60_70@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11261.370990683434, + "kind": "calibration_drift", + "ledger_value": 12668.0, + "name": "ons.age.60_70@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10600.704523760774, + "kind": "calibration_drift", + "ledger_value": 12309.0, + "name": "ons.age.60_70@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11036.990164431605, + "kind": "calibration_drift", + "ledger_value": 11604.0, + "name": "ons.age.60_70@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10426.839217356948, + "kind": "calibration_drift", + "ledger_value": 11675.0, + "name": "ons.age.60_70@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11318.928306933516, + "kind": "calibration_drift", + "ledger_value": 11921.0, + "name": "ons.age.60_70@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11690.466898052977, + "kind": "calibration_drift", + "ledger_value": 13062.0, + "name": "ons.age.60_70@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10503.579018203744, + "kind": "calibration_drift", + "ledger_value": 11095.0, + "name": "ons.age.60_70@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7744.63474773921, + "kind": "calibration_drift", + "ledger_value": 8066.0, + "name": "ons.age.60_70@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12249.688101961865, + "kind": "calibration_drift", + "ledger_value": 14401.0, + "name": "ons.age.60_70@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8987.916173564794, + "kind": "calibration_drift", + "ledger_value": 10897.0, + "name": "ons.age.60_70@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10024.204290024925, + "kind": "calibration_drift", + "ledger_value": 11122.0, + "name": "ons.age.60_70@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12156.339918564496, + "kind": "calibration_drift", + "ledger_value": 13724.0, + "name": "ons.age.60_70@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14131.372028444639, + "kind": "calibration_drift", + "ledger_value": 15178.0, + "name": "ons.age.60_70@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12010.503723329746, + "kind": "calibration_drift", + "ledger_value": 13263.0, + "name": "ons.age.60_70@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10321.015022126754, + "kind": "calibration_drift", + "ledger_value": 11547.0, + "name": "ons.age.60_70@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12299.361427502885, + "kind": "calibration_drift", + "ledger_value": 13377.0, + "name": "ons.age.60_70@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9329.887109763458, + "kind": "calibration_drift", + "ledger_value": 10236.0, + "name": "ons.age.60_70@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10943.385557075617, + "kind": "calibration_drift", + "ledger_value": 11758.0, + "name": "ons.age.60_70@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10133.559245916107, + "kind": "calibration_drift", + "ledger_value": 11194.0, + "name": "ons.age.60_70@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11477.220789081195, + "kind": "calibration_drift", + "ledger_value": 12804.0, + "name": "ons.age.60_70@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11416.606110247574, + "kind": "calibration_drift", + "ledger_value": 12197.0, + "name": "ons.age.60_70@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11540.350395201274, + "kind": "calibration_drift", + "ledger_value": 13165.0, + "name": "ons.age.60_70@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13071.388814897438, + "kind": "calibration_drift", + "ledger_value": 13438.0, + "name": "ons.age.60_70@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10417.351530888034, + "kind": "calibration_drift", + "ledger_value": 11514.0, + "name": "ons.age.60_70@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11194.296400584593, + "kind": "calibration_drift", + "ledger_value": 12530.0, + "name": "ons.age.60_70@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11415.846700831662, + "kind": "calibration_drift", + "ledger_value": 13432.0, + "name": "ons.age.60_70@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14144.359618769162, + "kind": "calibration_drift", + "ledger_value": 15904.0, + "name": "ons.age.60_70@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10601.788497767664, + "kind": "calibration_drift", + "ledger_value": 12734.0, + "name": "ons.age.60_70@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9436.401677189933, + "kind": "calibration_drift", + "ledger_value": 10233.0, + "name": "ons.age.60_70@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10128.677328242393, + "kind": "calibration_drift", + "ledger_value": 11637.0, + "name": "ons.age.60_70@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12100.676194624215, + "kind": "calibration_drift", + "ledger_value": 14528.0, + "name": "ons.age.60_70@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10183.59150522671, + "kind": "calibration_drift", + "ledger_value": 11816.0, + "name": "ons.age.60_70@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6656.174218159998, + "kind": "calibration_drift", + "ledger_value": 7705.0, + "name": "ons.age.60_70@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13605.24377182291, + "kind": "calibration_drift", + "ledger_value": 14576.0, + "name": "ons.age.60_70@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15008.28718632826, + "kind": "calibration_drift", + "ledger_value": 16100.0, + "name": "ons.age.60_70@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9593.438986479785, + "kind": "calibration_drift", + "ledger_value": 10963.0, + "name": "ons.age.60_70@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11557.422313369352, + "kind": "calibration_drift", + "ledger_value": 12086.0, + "name": "ons.age.60_70@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11115.978606146295, + "kind": "calibration_drift", + "ledger_value": 11775.0, + "name": "ons.age.60_70@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10412.607687653577, + "kind": "calibration_drift", + "ledger_value": 11441.0, + "name": "ons.age.60_70@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11295.574001779269, + "kind": "calibration_drift", + "ledger_value": 12545.0, + "name": "ons.age.60_70@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9943.013785594769, + "kind": "calibration_drift", + "ledger_value": 10812.0, + "name": "ons.age.60_70@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6987.227411197451, + "kind": "calibration_drift", + "ledger_value": 9103.0, + "name": "ons.age.60_70@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11434.059539613794, + "kind": "calibration_drift", + "ledger_value": 12027.0, + "name": "ons.age.60_70@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12362.277944715628, + "kind": "calibration_drift", + "ledger_value": 13092.0, + "name": "ons.age.60_70@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10730.632571101181, + "kind": "calibration_drift", + "ledger_value": 11016.0, + "name": "ons.age.60_70@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7930.40404329894, + "kind": "calibration_drift", + "ledger_value": 8943.0, + "name": "ons.age.60_70@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11028.202712618922, + "kind": "calibration_drift", + "ledger_value": 12123.0, + "name": "ons.age.60_70@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10318.934043077961, + "kind": "calibration_drift", + "ledger_value": 11993.0, + "name": "ons.age.60_70@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9536.939593888588, + "kind": "calibration_drift", + "ledger_value": 10531.0, + "name": "ons.age.60_70@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12077.795287547418, + "kind": "calibration_drift", + "ledger_value": 12561.0, + "name": "ons.age.60_70@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9145.380209076933, + "kind": "calibration_drift", + "ledger_value": 9702.0, + "name": "ons.age.60_70@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11282.637969661198, + "kind": "calibration_drift", + "ledger_value": 14604.0, + "name": "ons.age.60_70@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9547.3938014323, + "kind": "calibration_drift", + "ledger_value": 13849.0, + "name": "ons.age.60_70@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12098.05367686561, + "kind": "calibration_drift", + "ledger_value": 12264.0, + "name": "ons.age.60_70@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11540.409569960957, + "kind": "calibration_drift", + "ledger_value": 13416.0, + "name": "ons.age.60_70@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10077.461573738163, + "kind": "calibration_drift", + "ledger_value": 11458.0, + "name": "ons.age.60_70@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10114.32744901966, + "kind": "calibration_drift", + "ledger_value": 10909.0, + "name": "ons.age.60_70@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14203.046919044053, + "kind": "calibration_drift", + "ledger_value": 15791.0, + "name": "ons.age.60_70@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8749.589828948056, + "kind": "calibration_drift", + "ledger_value": 9765.0, + "name": "ons.age.60_70@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11298.434115163867, + "kind": "calibration_drift", + "ledger_value": 13129.0, + "name": "ons.age.60_70@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12381.509741612075, + "kind": "calibration_drift", + "ledger_value": 13476.0, + "name": "ons.age.60_70@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14110.22144602387, + "kind": "calibration_drift", + "ledger_value": 15441.0, + "name": "ons.age.60_70@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13474.211128968453, + "kind": "calibration_drift", + "ledger_value": 14780.0, + "name": "ons.age.60_70@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11031.309387502193, + "kind": "calibration_drift", + "ledger_value": 11804.0, + "name": "ons.age.60_70@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11209.041488373337, + "kind": "calibration_drift", + "ledger_value": 13665.0, + "name": "ons.age.60_70@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12934.468283454682, + "kind": "calibration_drift", + "ledger_value": 13578.0, + "name": "ons.age.60_70@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10726.332538564335, + "kind": "calibration_drift", + "ledger_value": 12536.0, + "name": "ons.age.60_70@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11573.59674768226, + "kind": "calibration_drift", + "ledger_value": 12807.0, + "name": "ons.age.60_70@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9093.385320236897, + "kind": "calibration_drift", + "ledger_value": 10235.0, + "name": "ons.age.60_70@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11478.414146734769, + "kind": "calibration_drift", + "ledger_value": 12779.0, + "name": "ons.age.60_70@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10452.294226479886, + "kind": "calibration_drift", + "ledger_value": 11810.0, + "name": "ons.age.60_70@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11723.959812032635, + "kind": "calibration_drift", + "ledger_value": 12922.0, + "name": "ons.age.60_70@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11589.820494294905, + "kind": "calibration_drift", + "ledger_value": 12664.0, + "name": "ons.age.60_70@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10514.713735483789, + "kind": "calibration_drift", + "ledger_value": 12365.0, + "name": "ons.age.60_70@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9875.586881085153, + "kind": "calibration_drift", + "ledger_value": 10510.0, + "name": "ons.age.60_70@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9394.514913208199, + "kind": "calibration_drift", + "ledger_value": 10971.0, + "name": "ons.age.60_70@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9784.043527858066, + "kind": "calibration_drift", + "ledger_value": 11289.0, + "name": "ons.age.60_70@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11003.260551413223, + "kind": "calibration_drift", + "ledger_value": 11730.0, + "name": "ons.age.60_70@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11099.863346593067, + "kind": "calibration_drift", + "ledger_value": 12251.0, + "name": "ons.age.60_70@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10016.314322067408, + "kind": "calibration_drift", + "ledger_value": 11517.0, + "name": "ons.age.60_70@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9669.234631616251, + "kind": "calibration_drift", + "ledger_value": 11575.0, + "name": "ons.age.60_70@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12419.322413048472, + "kind": "calibration_drift", + "ledger_value": 13333.0, + "name": "ons.age.60_70@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9331.91877651252, + "kind": "calibration_drift", + "ledger_value": 10323.0, + "name": "ons.age.60_70@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12372.456003380823, + "kind": "calibration_drift", + "ledger_value": 13346.0, + "name": "ons.age.60_70@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10058.722899839062, + "kind": "calibration_drift", + "ledger_value": 11155.0, + "name": "ons.age.60_70@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12798.119774688848, + "kind": "calibration_drift", + "ledger_value": 13820.0, + "name": "ons.age.60_70@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9763.98328432608, + "kind": "calibration_drift", + "ledger_value": 9846.0, + "name": "ons.age.60_70@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10755.850881185394, + "kind": "calibration_drift", + "ledger_value": 12290.0, + "name": "ons.age.60_70@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12100.267144166559, + "kind": "calibration_drift", + "ledger_value": 11394.0, + "name": "ons.age.60_70@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11412.589061018727, + "kind": "calibration_drift", + "ledger_value": 12104.0, + "name": "ons.age.60_70@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12216.615866706623, + "kind": "calibration_drift", + "ledger_value": 12404.0, + "name": "ons.age.60_70@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12441.249538937438, + "kind": "calibration_drift", + "ledger_value": 12061.0, + "name": "ons.age.60_70@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12221.22373690623, + "kind": "calibration_drift", + "ledger_value": 13120.0, + "name": "ons.age.60_70@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11987.444140491349, + "kind": "calibration_drift", + "ledger_value": 13005.0, + "name": "ons.age.60_70@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11981.614486526692, + "kind": "calibration_drift", + "ledger_value": 12945.0, + "name": "ons.age.60_70@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11047.252443197909, + "kind": "calibration_drift", + "ledger_value": 11548.0, + "name": "ons.age.60_70@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11518.523531466244, + "kind": "calibration_drift", + "ledger_value": 12827.0, + "name": "ons.age.60_70@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11293.889859235429, + "kind": "calibration_drift", + "ledger_value": 11113.0, + "name": "ons.age.60_70@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10820.431196225867, + "kind": "calibration_drift", + "ledger_value": 12339.0, + "name": "ons.age.60_70@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10818.127261126063, + "kind": "calibration_drift", + "ledger_value": 12698.0, + "name": "ons.age.60_70@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12216.615866706623, + "kind": "calibration_drift", + "ledger_value": 12783.0, + "name": "ons.age.60_70@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11862.915284743398, + "kind": "calibration_drift", + "ledger_value": 11889.0, + "name": "ons.age.60_70@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10355.036306065615, + "kind": "calibration_drift", + "ledger_value": 12583.0, + "name": "ons.age.60_70@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11983.918421626498, + "kind": "calibration_drift", + "ledger_value": 13206.0, + "name": "ons.age.60_70@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10704.082473685803, + "kind": "calibration_drift", + "ledger_value": 13362.0, + "name": "ons.age.60_70@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12445.903953280475, + "kind": "calibration_drift", + "ledger_value": 11730.0, + "name": "ons.age.60_70@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 16855.0, + "name": "ons.age.60_70@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 24257.0, + "name": "ons.age.60_70@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 37044.0, + "name": "ons.age.60_70@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 18071.0, + "name": "ons.age.60_70@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 17708.0, + "name": "ons.age.60_70@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 14521.0, + "name": "ons.age.60_70@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 17837.0, + "name": "ons.age.60_70@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 17887.0, + "name": "ons.age.60_70@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 15557.0, + "name": "ons.age.60_70@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21053.767548524815, + "kind": "calibration_drift", + "ledger_value": 21660.0, + "name": "ons.age.60_70@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5579.777538463273, + "kind": "calibration_drift", + "ledger_value": 7203.0, + "name": "ons.age.60_70@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15722.153114722452, + "kind": "calibration_drift", + "ledger_value": 24020.0, + "name": "ons.age.60_70@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12966.533132567014, + "kind": "calibration_drift", + "ledger_value": 17193.0, + "name": "ons.age.60_70@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12100.114742338641, + "kind": "calibration_drift", + "ledger_value": 15758.0, + "name": "ons.age.60_70@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10433.336975962742, + "kind": "calibration_drift", + "ledger_value": 12822.0, + "name": "ons.age.60_70@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2816.93740305593, + "kind": "calibration_drift", + "ledger_value": 4198.0, + "name": "ons.age.60_70@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17070.1665032009, + "kind": "calibration_drift", + "ledger_value": 20963.0, + "name": "ons.age.60_70@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25362.243104308192, + "kind": "calibration_drift", + "ledger_value": 35540.0, + "name": "ons.age.60_70@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8451.45879005602, + "kind": "calibration_drift", + "ledger_value": 12206.0, + "name": "ons.age.60_70@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10402.085566364949, + "kind": "calibration_drift", + "ledger_value": 12202.0, + "name": "ons.age.60_70@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10053.578467608912, + "kind": "calibration_drift", + "ledger_value": 13657.0, + "name": "ons.age.60_70@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14377.04934024104, + "kind": "calibration_drift", + "ledger_value": 20462.0, + "name": "ons.age.60_70@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2366.2705239595302, + "kind": "calibration_drift", + "ledger_value": 3387.0, + "name": "ons.age.60_70@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12589.037657321991, + "kind": "calibration_drift", + "ledger_value": 18576.0, + "name": "ons.age.60_70@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2477.051382809625, + "kind": "calibration_drift", + "ledger_value": 3077.0, + "name": "ons.age.60_70@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12017.6756790893, + "kind": "calibration_drift", + "ledger_value": 17775.0, + "name": "ons.age.60_70@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35244.69316349887, + "kind": "calibration_drift", + "ledger_value": 46031.0, + "name": "ons.age.60_70@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9979.329428943816, + "kind": "calibration_drift", + "ledger_value": 11985.0, + "name": "ons.age.60_70@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24141.28286036697, + "kind": "calibration_drift", + "ledger_value": 25362.0, + "name": "ons.age.60_70@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28419.708597785735, + "kind": "calibration_drift", + "ledger_value": 36672.0, + "name": "ons.age.60_70@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9264.426493524037, + "kind": "calibration_drift", + "ledger_value": 14486.0, + "name": "ons.age.60_70@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 55448.94499543257, + "kind": "calibration_drift", + "ledger_value": 53377.0, + "name": "ons.age.60_70@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19814.9023737378, + "kind": "calibration_drift", + "ledger_value": 24851.0, + "name": "ons.age.60_70@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9526.183989775867, + "kind": "calibration_drift", + "ledger_value": 12842.0, + "name": "ons.age.60_70@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19535.1483760969, + "kind": "calibration_drift", + "ledger_value": 22654.0, + "name": "ons.age.60_70@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12321.891987001576, + "kind": "calibration_drift", + "ledger_value": 17053.0, + "name": "ons.age.60_70@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16024.106389525927, + "kind": "calibration_drift", + "ledger_value": 17561.0, + "name": "ons.age.60_70@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11739.430370187602, + "kind": "calibration_drift", + "ledger_value": 15596.0, + "name": "ons.age.60_70@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 40064.41486784762, + "kind": "calibration_drift", + "ledger_value": 50995.0, + "name": "ons.age.60_70@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16267.220803500451, + "kind": "calibration_drift", + "ledger_value": 22494.0, + "name": "ons.age.60_70@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 66894.8276423637, + "kind": "calibration_drift", + "ledger_value": 69110.0, + "name": "ons.age.60_70@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36744.437533748656, + "kind": "calibration_drift", + "ledger_value": 44040.0, + "name": "ons.age.60_70@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9485.343295479906, + "kind": "calibration_drift", + "ledger_value": 12794.0, + "name": "ons.age.60_70@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10143.74141861352, + "kind": "calibration_drift", + "ledger_value": 4186.0, + "name": "ons.age.60_70@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9207.07295635645, + "kind": "calibration_drift", + "ledger_value": 12166.0, + "name": "ons.age.60_70@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10165.79303039311, + "kind": "calibration_drift", + "ledger_value": 14497.0, + "name": "ons.age.60_70@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2743.8505514324142, + "kind": "calibration_drift", + "ledger_value": 6452.0, + "name": "ons.age.60_70@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10053.434817992318, + "kind": "calibration_drift", + "ledger_value": 12770.0, + "name": "ons.age.60_70@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10135.340804602243, + "kind": "calibration_drift", + "ledger_value": 12438.0, + "name": "ons.age.60_70@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9612.402582400427, + "kind": "calibration_drift", + "ledger_value": 13604.0, + "name": "ons.age.60_70@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4720.094997584653, + "kind": "calibration_drift", + "ledger_value": 11781.0, + "name": "ons.age.60_70@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10237.198249488943, + "kind": "calibration_drift", + "ledger_value": 12816.0, + "name": "ons.age.60_70@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12319.983482839165, + "kind": "calibration_drift", + "ledger_value": 15605.0, + "name": "ons.age.60_70@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14120.21406392018, + "kind": "calibration_drift", + "ledger_value": 14049.0, + "name": "ons.age.60_70@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10476.481338986076, + "kind": "calibration_drift", + "ledger_value": 15475.0, + "name": "ons.age.60_70@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10964.197886792115, + "kind": "calibration_drift", + "ledger_value": 11917.0, + "name": "ons.age.60_70@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8532.560355395713, + "kind": "calibration_drift", + "ledger_value": 15178.0, + "name": "ons.age.60_70@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11291.601317114011, + "kind": "calibration_drift", + "ledger_value": 12573.0, + "name": "ons.age.60_70@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11573.353710745143, + "kind": "calibration_drift", + "ledger_value": 12754.0, + "name": "ons.age.60_70@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10462.062308843693, + "kind": "calibration_drift", + "ledger_value": 11953.0, + "name": "ons.age.60_70@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8145.701579409027, + "kind": "calibration_drift", + "ledger_value": 15688.0, + "name": "ons.age.60_70@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15058.277612844331, + "kind": "calibration_drift", + "ledger_value": 14299.0, + "name": "ons.age.60_70@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10106.81021926645, + "kind": "calibration_drift", + "ledger_value": 11766.0, + "name": "ons.age.60_70@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9582.13727027131, + "kind": "calibration_drift", + "ledger_value": 12396.0, + "name": "ons.age.60_70@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9982.908481316914, + "kind": "calibration_drift", + "ledger_value": 14207.0, + "name": "ons.age.60_70@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10318.978226888694, + "kind": "calibration_drift", + "ledger_value": 11208.0, + "name": "ons.age.60_70@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9435.422646717909, + "kind": "calibration_drift", + "ledger_value": 10133.0, + "name": "ons.age.60_70@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11779.786199151189, + "kind": "calibration_drift", + "ledger_value": 10635.0, + "name": "ons.age.60_70@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9129.875513899846, + "kind": "calibration_drift", + "ledger_value": 10320.0, + "name": "ons.age.60_70@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9262.787928632722, + "kind": "calibration_drift", + "ledger_value": 12785.0, + "name": "ons.age.60_70@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12544.338681238265, + "kind": "calibration_drift", + "ledger_value": 12580.0, + "name": "ons.age.60_70@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11242.132201355122, + "kind": "calibration_drift", + "ledger_value": 11217.0, + "name": "ons.age.60_70@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11084.295164850795, + "kind": "calibration_drift", + "ledger_value": 9574.0, + "name": "ons.age.60_70@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11237.921393581973, + "kind": "calibration_drift", + "ledger_value": 12157.0, + "name": "ons.age.60_70@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10661.418756290768, + "kind": "calibration_drift", + "ledger_value": 10561.0, + "name": "ons.age.60_70@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8812.498216400407, + "kind": "calibration_drift", + "ledger_value": 11483.0, + "name": "ons.age.60_70@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10772.786969688648, + "kind": "calibration_drift", + "ledger_value": 11328.0, + "name": "ons.age.60_70@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13636.922872242163, + "kind": "calibration_drift", + "ledger_value": 12892.0, + "name": "ons.age.60_70@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13287.845229552446, + "kind": "calibration_drift", + "ledger_value": 12592.0, + "name": "ons.age.60_70@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9629.204434230945, + "kind": "calibration_drift", + "ledger_value": 12976.0, + "name": "ons.age.60_70@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10839.334507897984, + "kind": "calibration_drift", + "ledger_value": 13872.0, + "name": "ons.age.60_70@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12462.64691028563, + "kind": "calibration_drift", + "ledger_value": 14472.0, + "name": "ons.age.60_70@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10069.072560974306, + "kind": "calibration_drift", + "ledger_value": 12857.0, + "name": "ons.age.60_70@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8896.384647763487, + "kind": "calibration_drift", + "ledger_value": 13783.0, + "name": "ons.age.60_70@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9452.154569674865, + "kind": "calibration_drift", + "ledger_value": 13761.0, + "name": "ons.age.60_70@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11100.756417529075, + "kind": "calibration_drift", + "ledger_value": 14727.0, + "name": "ons.age.60_70@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11910.432909517052, + "kind": "calibration_drift", + "ledger_value": 12676.0, + "name": "ons.age.60_70@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9869.3773650053, + "kind": "calibration_drift", + "ledger_value": 13272.0, + "name": "ons.age.60_70@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8784.925301061903, + "kind": "calibration_drift", + "ledger_value": 12371.0, + "name": "ons.age.60_70@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10947.365156467029, + "kind": "calibration_drift", + "ledger_value": 12795.0, + "name": "ons.age.60_70@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11000.132043567137, + "kind": "calibration_drift", + "ledger_value": 13990.0, + "name": "ons.age.60_70@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10485.818621459608, + "kind": "calibration_drift", + "ledger_value": 12533.0, + "name": "ons.age.60_70@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10955.923281991012, + "kind": "calibration_drift", + "ledger_value": 13440.0, + "name": "ons.age.60_70@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9481.743715550472, + "kind": "calibration_drift", + "ledger_value": 13299.0, + "name": "ons.age.60_70@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10255.1878316965, + "kind": "calibration_drift", + "ledger_value": 13748.0, + "name": "ons.age.60_70@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10522.76032157418, + "kind": "calibration_drift", + "ledger_value": 15439.0, + "name": "ons.age.60_70@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8384.27901732921, + "kind": "calibration_drift", + "ledger_value": 13389.0, + "name": "ons.age.60_70@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11608.191057049895, + "kind": "calibration_drift", + "ledger_value": 13585.0, + "name": "ons.age.60_70@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10006.466985055287, + "kind": "calibration_drift", + "ledger_value": 13913.0, + "name": "ons.age.60_70@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9936.370781897478, + "kind": "calibration_drift", + "ledger_value": 10486.0, + "name": "ons.age.60_70@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15374.499953834911, + "kind": "calibration_drift", + "ledger_value": 16295.0, + "name": "ons.age.60_70@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16697.34066929637, + "kind": "calibration_drift", + "ledger_value": 17690.0, + "name": "ons.age.60_70@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13114.687563351528, + "kind": "calibration_drift", + "ledger_value": 13867.0, + "name": "ons.age.60_70@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19000.89136411169, + "kind": "calibration_drift", + "ledger_value": 20205.0, + "name": "ons.age.60_70@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16028.630594176984, + "kind": "calibration_drift", + "ledger_value": 16769.0, + "name": "ons.age.60_70@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10272.669744094144, + "kind": "calibration_drift", + "ledger_value": 10815.0, + "name": "ons.age.60_70@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18075.58323691161, + "kind": "calibration_drift", + "ledger_value": 19145.0, + "name": "ons.age.60_70@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26125.375158624895, + "kind": "calibration_drift", + "ledger_value": 27450.0, + "name": "ons.age.60_70@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27361.711227740965, + "kind": "calibration_drift", + "ledger_value": 28830.0, + "name": "ons.age.60_70@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17808.293599327553, + "kind": "calibration_drift", + "ledger_value": 18819.0, + "name": "ons.age.60_70@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17685.826347198134, + "kind": "calibration_drift", + "ledger_value": 18739.0, + "name": "ons.age.60_70@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16655.546289601407, + "kind": "calibration_drift", + "ledger_value": 17708.0, + "name": "ons.age.60_70@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33379.12994149694, + "kind": "calibration_drift", + "ledger_value": 35027.0, + "name": "ons.age.60_70@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27465.711195819127, + "kind": "calibration_drift", + "ledger_value": 28955.0, + "name": "ons.age.60_70@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20953.56366195303, + "kind": "calibration_drift", + "ledger_value": 21975.0, + "name": "ons.age.60_70@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8225.717101359518, + "kind": "calibration_drift", + "ledger_value": 8673.0, + "name": "ons.age.60_70@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11253.37972344801, + "kind": "calibration_drift", + "ledger_value": 11733.0, + "name": "ons.age.60_70@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12958.201630075044, + "kind": "calibration_drift", + "ledger_value": 13870.0, + "name": "ons.age.60_70@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16645.82666641653, + "kind": "calibration_drift", + "ledger_value": 17598.0, + "name": "ons.age.60_70@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20472.44231430173, + "kind": "calibration_drift", + "ledger_value": 21448.0, + "name": "ons.age.60_70@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6952.446464140923, + "kind": "calibration_drift", + "ledger_value": 7381.0, + "name": "ons.age.60_70@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10935.278614999268, + "kind": "calibration_drift", + "ledger_value": 12178.0, + "name": "ons.age.60_70@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11540.064383862815, + "kind": "calibration_drift", + "ledger_value": 12455.0, + "name": "ons.age.60_70@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12369.398640797286, + "kind": "calibration_drift", + "ledger_value": 13033.0, + "name": "ons.age.60_70@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11239.831378159412, + "kind": "calibration_drift", + "ledger_value": 12118.0, + "name": "ons.age.60_70@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13826.606685330986, + "kind": "calibration_drift", + "ledger_value": 14340.0, + "name": "ons.age.60_70@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11041.477583707443, + "kind": "calibration_drift", + "ledger_value": 12431.0, + "name": "ons.age.60_70@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13513.858217954972, + "kind": "calibration_drift", + "ledger_value": 14263.0, + "name": "ons.age.60_70@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11269.961193297178, + "kind": "calibration_drift", + "ledger_value": 11841.0, + "name": "ons.age.60_70@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7973.867904284911, + "kind": "calibration_drift", + "ledger_value": 9640.0, + "name": "ons.age.60_70@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10333.451584119792, + "kind": "calibration_drift", + "ledger_value": 11018.0, + "name": "ons.age.60_70@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9663.800416185511, + "kind": "calibration_drift", + "ledger_value": 9046.0, + "name": "ons.age.60_70@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10015.702849550702, + "kind": "calibration_drift", + "ledger_value": 11450.0, + "name": "ons.age.60_70@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13163.316804062453, + "kind": "calibration_drift", + "ledger_value": 14581.0, + "name": "ons.age.60_70@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12451.993129872162, + "kind": "calibration_drift", + "ledger_value": 14400.0, + "name": "ons.age.60_70@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13283.64867787453, + "kind": "calibration_drift", + "ledger_value": 14039.0, + "name": "ons.age.60_70@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12734.749270660956, + "kind": "calibration_drift", + "ledger_value": 14153.0, + "name": "ons.age.60_70@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11794.594750172304, + "kind": "calibration_drift", + "ledger_value": 12922.0, + "name": "ons.age.60_70@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11980.285146052458, + "kind": "calibration_drift", + "ledger_value": 13032.0, + "name": "ons.age.60_70@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11544.946301536529, + "kind": "calibration_drift", + "ledger_value": 12309.0, + "name": "ons.age.60_70@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14288.169810845711, + "kind": "calibration_drift", + "ledger_value": 15200.0, + "name": "ons.age.60_70@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12382.308600867771, + "kind": "calibration_drift", + "ledger_value": 13817.0, + "name": "ons.age.60_70@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13106.506202972903, + "kind": "calibration_drift", + "ledger_value": 14257.0, + "name": "ons.age.60_70@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12089.176566326136, + "kind": "calibration_drift", + "ledger_value": 12352.0, + "name": "ons.age.60_70@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10982.263374186281, + "kind": "calibration_drift", + "ledger_value": 11998.0, + "name": "ons.age.60_70@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11037.6410867881, + "kind": "calibration_drift", + "ledger_value": 12102.0, + "name": "ons.age.60_70@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11226.280358192378, + "kind": "calibration_drift", + "ledger_value": 11910.0, + "name": "ons.age.60_70@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11564.464109771436, + "kind": "calibration_drift", + "ledger_value": 12428.0, + "name": "ons.age.60_70@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10786.868317718381, + "kind": "calibration_drift", + "ledger_value": 11466.0, + "name": "ons.age.60_70@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10973.978907830888, + "kind": "calibration_drift", + "ledger_value": 11685.0, + "name": "ons.age.60_70@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11825.444524886194, + "kind": "calibration_drift", + "ledger_value": 12722.0, + "name": "ons.age.60_70@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11368.3794622922, + "kind": "calibration_drift", + "ledger_value": 12135.0, + "name": "ons.age.60_70@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9872.32240684273, + "kind": "calibration_drift", + "ledger_value": 10454.0, + "name": "ons.age.60_70@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8645.604822946108, + "kind": "calibration_drift", + "ledger_value": 9044.0, + "name": "ons.age.70_80@E06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11040.519975699252, + "kind": "calibration_drift", + "ledger_value": 11554.0, + "name": "ons.age.70_80@E06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15029.453330771858, + "kind": "calibration_drift", + "ledger_value": 15647.0, + "name": "ons.age.70_80@E06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17656.667477643507, + "kind": "calibration_drift", + "ledger_value": 18601.0, + "name": "ons.age.70_80@E06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10466.090245473153, + "kind": "calibration_drift", + "ledger_value": 10953.0, + "name": "ons.age.70_80@E06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11639.248763887537, + "kind": "calibration_drift", + "ledger_value": 12156.0, + "name": "ons.age.70_80@E06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18819.134410554532, + "kind": "calibration_drift", + "ledger_value": 19446.0, + "name": "ons.age.70_80@E06000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10390.27718463113, + "kind": "calibration_drift", + "ledger_value": 10686.0, + "name": "ons.age.70_80@E06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13040.81842714648, + "kind": "calibration_drift", + "ledger_value": 13445.0, + "name": "ons.age.70_80@E06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18883.283923574705, + "kind": "calibration_drift", + "ledger_value": 19843.0, + "name": "ons.age.70_80@E06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43327.164271216265, + "kind": "calibration_drift", + "ledger_value": 45182.0, + "name": "ons.age.70_80@E06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15089.71499451808, + "kind": "calibration_drift", + "ledger_value": 15717.0, + "name": "ons.age.70_80@E06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17616.81702258552, + "kind": "calibration_drift", + "ledger_value": 18252.0, + "name": "ons.age.70_80@E06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17863.69545148134, + "kind": "calibration_drift", + "ledger_value": 18377.0, + "name": "ons.age.70_80@E06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19378.984706003317, + "kind": "calibration_drift", + "ledger_value": 20002.0, + "name": "ons.age.70_80@E06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19461.60150307475, + "kind": "calibration_drift", + "ledger_value": 20693.0, + "name": "ons.age.70_80@E06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4862.727479392847, + "kind": "calibration_drift", + "ledger_value": 5017.0, + "name": "ons.age.70_80@E06000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16695.396744659392, + "kind": "calibration_drift", + "ledger_value": 17312.0, + "name": "ons.age.70_80@E06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23015.09573946497, + "kind": "calibration_drift", + "ledger_value": 23883.0, + "name": "ons.age.70_80@E06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15696.219481254268, + "kind": "calibration_drift", + "ledger_value": 16431.0, + "name": "ons.age.70_80@E06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20265.414340463896, + "kind": "calibration_drift", + "ledger_value": 20978.0, + "name": "ons.age.70_80@E06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17234.835831419943, + "kind": "calibration_drift", + "ledger_value": 17804.0, + "name": "ons.age.70_80@E06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26909.74874964429, + "kind": "calibration_drift", + "ledger_value": 27919.0, + "name": "ons.age.70_80@E06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24621.74945192477, + "kind": "calibration_drift", + "ledger_value": 25176.0, + "name": "ons.age.70_80@E06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24971.65588658026, + "kind": "calibration_drift", + "ledger_value": 25715.0, + "name": "ons.age.70_80@E06000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22879.99297719521, + "kind": "calibration_drift", + "ledger_value": 23634.0, + "name": "ons.age.70_80@E06000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17241.639567649356, + "kind": "calibration_drift", + "ledger_value": 17697.0, + "name": "ons.age.70_80@E06000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17143.47137348212, + "kind": "calibration_drift", + "ledger_value": 18118.0, + "name": "ons.age.70_80@E06000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14015.69663258942, + "kind": "calibration_drift", + "ledger_value": 14608.0, + "name": "ons.age.70_80@E06000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11254.351685766496, + "kind": "calibration_drift", + "ledger_value": 11583.0, + "name": "ons.age.70_80@E06000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15824.518507294613, + "kind": "calibration_drift", + "ledger_value": 16268.0, + "name": "ons.age.70_80@E06000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11172.706851013549, + "kind": "calibration_drift", + "ledger_value": 11487.0, + "name": "ons.age.70_80@E06000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21744.740989201837, + "kind": "calibration_drift", + "ledger_value": 22507.0, + "name": "ons.age.70_80@E06000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8973.156124276387, + "kind": "calibration_drift", + "ledger_value": 9413.0, + "name": "ons.age.70_80@E06000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15015.845858313032, + "kind": "calibration_drift", + "ledger_value": 15560.0, + "name": "ons.age.70_80@E06000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9290.015840103306, + "kind": "calibration_drift", + "ledger_value": 9623.0, + "name": "ons.age.70_80@E06000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6565.605461382907, + "kind": "calibration_drift", + "ledger_value": 6974.0, + "name": "ons.age.70_80@E06000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12908.631551832183, + "kind": "calibration_drift", + "ledger_value": 13390.0, + "name": "ons.age.70_80@E06000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14064.294748513794, + "kind": "calibration_drift", + "ledger_value": 14536.0, + "name": "ons.age.70_80@E06000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19219.58288577137, + "kind": "calibration_drift", + "ledger_value": 20308.0, + "name": "ons.age.70_80@E06000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17494.349770456098, + "kind": "calibration_drift", + "ledger_value": 18197.0, + "name": "ons.age.70_80@E06000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13894.201342778484, + "kind": "calibration_drift", + "ledger_value": 14449.0, + "name": "ons.age.70_80@E06000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15459.060675543322, + "kind": "calibration_drift", + "ledger_value": 16144.0, + "name": "ons.age.70_80@E06000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19539.35848855375, + "kind": "calibration_drift", + "ledger_value": 20245.0, + "name": "ons.age.70_80@E06000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52979.7220561154, + "kind": "calibration_drift", + "ledger_value": 54999.0, + "name": "ons.age.70_80@E06000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42353.25802809181, + "kind": "calibration_drift", + "ledger_value": 43778.0, + "name": "ons.age.70_80@E06000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 35756.549772517305, + "kind": "calibration_drift", + "ledger_value": 37045.0, + "name": "ons.age.70_80@E06000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39116.623507528515, + "kind": "calibration_drift", + "ledger_value": 40414.0, + "name": "ons.age.70_80@E06000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 69483.64222403277, + "kind": "calibration_drift", + "ledger_value": 71862.0, + "name": "ons.age.70_80@E06000052", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 294.50458250170556, + "kind": "calibration_drift", + "ledger_value": 290.0, + "name": "ons.age.70_80@E06000053", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53089.55379810448, + "kind": "calibration_drift", + "ledger_value": 55336.0, + "name": "ons.age.70_80@E06000054", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14369.49091651886, + "kind": "calibration_drift", + "ledger_value": 14904.0, + "name": "ons.age.70_80@E06000055", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25505.263199429886, + "kind": "calibration_drift", + "ledger_value": 26506.0, + "name": "ons.age.70_80@E06000056", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39891.27747536304, + "kind": "calibration_drift", + "ledger_value": 41770.0, + "name": "ons.age.70_80@E06000057", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 39309.07204658903, + "kind": "calibration_drift", + "ledger_value": 40589.0, + "name": "ons.age.70_80@E06000058", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 53168.28274590197, + "kind": "calibration_drift", + "ledger_value": 55252.0, + "name": "ons.age.70_80@E06000059", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 47215.985507484664, + "kind": "calibration_drift", + "ledger_value": 49007.0, + "name": "ons.age.70_80@E06000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31539.205272600142, + "kind": "calibration_drift", + "ledger_value": 32767.0, + "name": "ons.age.70_80@E06000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 34997.44720177859, + "kind": "calibration_drift", + "ledger_value": 36029.0, + "name": "ons.age.70_80@E06000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29910.19642681513, + "kind": "calibration_drift", + "ledger_value": 31053.0, + "name": "ons.age.70_80@E06000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27431.692514672064, + "kind": "calibration_drift", + "ledger_value": 28396.0, + "name": "ons.age.70_80@E06000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 73553.24845153982, + "kind": "calibration_drift", + "ledger_value": 76724.0, + "name": "ons.age.70_80@E06000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 67507.64283054772, + "kind": "calibration_drift", + "ledger_value": 70275.0, + "name": "ons.age.70_80@E06000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7356.782788631714, + "kind": "calibration_drift", + "ledger_value": 7707.0, + "name": "ons.age.70_80@E07000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8797.230944630155, + "kind": "calibration_drift", + "ledger_value": 9192.0, + "name": "ons.age.70_80@E07000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11022.05269164799, + "kind": "calibration_drift", + "ledger_value": 11519.0, + "name": "ons.age.70_80@E07000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17635.284306636782, + "kind": "calibration_drift", + "ledger_value": 18193.0, + "name": "ons.age.70_80@E07000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15010.986046720596, + "kind": "calibration_drift", + "ledger_value": 15677.0, + "name": "ons.age.70_80@E07000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13822.27613121041, + "kind": "calibration_drift", + "ledger_value": 14177.0, + "name": "ons.age.70_80@E07000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7879.698515977976, + "kind": "calibration_drift", + "ledger_value": 8059.0, + "name": "ons.age.70_80@E07000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10574.950025143751, + "kind": "calibration_drift", + "ledger_value": 10848.0, + "name": "ons.age.70_80@E07000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9603.959668974761, + "kind": "calibration_drift", + "ledger_value": 9837.0, + "name": "ons.age.70_80@E07000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11119.248923496738, + "kind": "calibration_drift", + "ledger_value": 11360.0, + "name": "ons.age.70_80@E07000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9641.866199395772, + "kind": "calibration_drift", + "ledger_value": 10047.0, + "name": "ons.age.70_80@E07000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12033.865465193454, + "kind": "calibration_drift", + "ledger_value": 12432.0, + "name": "ons.age.70_80@E07000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9839.17455004873, + "kind": "calibration_drift", + "ledger_value": 10365.0, + "name": "ons.age.70_80@E07000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21251.956093728684, + "kind": "calibration_drift", + "ledger_value": 22032.0, + "name": "ons.age.70_80@E07000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9864.445570329404, + "kind": "calibration_drift", + "ledger_value": 10180.0, + "name": "ons.age.70_80@E07000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9448.445698016765, + "kind": "calibration_drift", + "ledger_value": 9854.0, + "name": "ons.age.70_80@E07000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12006.650520275804, + "kind": "calibration_drift", + "ledger_value": 12433.0, + "name": "ons.age.70_80@E07000043", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12163.136453552288, + "kind": "calibration_drift", + "ledger_value": 12528.0, + "name": "ons.age.70_80@E07000044", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17472.966599449373, + "kind": "calibration_drift", + "ledger_value": 18175.0, + "name": "ons.age.70_80@E07000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9549.529779139462, + "kind": "calibration_drift", + "ledger_value": 9825.0, + "name": "ons.age.70_80@E07000046", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7975.922785508236, + "kind": "calibration_drift", + "ledger_value": 8168.0, + "name": "ons.age.70_80@E07000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11410.83761904298, + "kind": "calibration_drift", + "ledger_value": 11833.0, + "name": "ons.age.70_80@E07000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8673.791730182245, + "kind": "calibration_drift", + "ledger_value": 9037.0, + "name": "ons.age.70_80@E07000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12346.837331746421, + "kind": "calibration_drift", + "ledger_value": 12694.0, + "name": "ons.age.70_80@E07000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14281.0423455365, + "kind": "calibration_drift", + "ledger_value": 14709.0, + "name": "ons.age.70_80@E07000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20392.741404185756, + "kind": "calibration_drift", + "ledger_value": 21085.0, + "name": "ons.age.70_80@E07000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14599.845986000393, + "kind": "calibration_drift", + "ledger_value": 15156.0, + "name": "ons.age.70_80@E07000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15304.518666903814, + "kind": "calibration_drift", + "ledger_value": 15978.0, + "name": "ons.age.70_80@E07000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6771.661472902252, + "kind": "calibration_drift", + "ledger_value": 7008.0, + "name": "ons.age.70_80@E07000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10841.267700409318, + "kind": "calibration_drift", + "ledger_value": 11092.0, + "name": "ons.age.70_80@E07000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16373.677217240038, + "kind": "calibration_drift", + "ledger_value": 16685.0, + "name": "ons.age.70_80@E07000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16428.10710707534, + "kind": "calibration_drift", + "ledger_value": 16934.0, + "name": "ons.age.70_80@E07000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12050.38882460774, + "kind": "calibration_drift", + "ledger_value": 12375.0, + "name": "ons.age.70_80@E07000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5881.3439891677235, + "kind": "calibration_drift", + "ledger_value": 6093.0, + "name": "ons.age.70_80@E07000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8173.231136161195, + "kind": "calibration_drift", + "ledger_value": 8454.0, + "name": "ons.age.70_80@E07000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9515.511097992401, + "kind": "calibration_drift", + "ledger_value": 9735.0, + "name": "ons.age.70_80@E07000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21146.98416333204, + "kind": "calibration_drift", + "ledger_value": 21850.0, + "name": "ons.age.70_80@E07000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8859.436533013353, + "kind": "calibration_drift", + "ledger_value": 9180.0, + "name": "ons.age.70_80@E07000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10347.510842617681, + "kind": "calibration_drift", + "ledger_value": 10700.0, + "name": "ons.age.70_80@E07000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11292.258216187509, + "kind": "calibration_drift", + "ledger_value": 11702.0, + "name": "ons.age.70_80@E07000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10526.351909219376, + "kind": "calibration_drift", + "ledger_value": 10853.0, + "name": "ons.age.70_80@E07000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10017.04365433194, + "kind": "calibration_drift", + "ledger_value": 10395.0, + "name": "ons.age.70_80@E07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13394.61271107592, + "kind": "calibration_drift", + "ledger_value": 13932.0, + "name": "ons.age.70_80@E07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10082.165129670599, + "kind": "calibration_drift", + "ledger_value": 10307.0, + "name": "ons.age.70_80@E07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15453.228901632398, + "kind": "calibration_drift", + "ledger_value": 16111.0, + "name": "ons.age.70_80@E07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13734.799522546538, + "kind": "calibration_drift", + "ledger_value": 14171.0, + "name": "ons.age.70_80@E07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12407.098995492644, + "kind": "calibration_drift", + "ledger_value": 12895.0, + "name": "ons.age.70_80@E07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12955.28574311958, + "kind": "calibration_drift", + "ledger_value": 13357.0, + "name": "ons.age.70_80@E07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8367.62359985869, + "kind": "calibration_drift", + "ledger_value": 8717.0, + "name": "ons.age.70_80@E07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9359.997127034403, + "kind": "calibration_drift", + "ledger_value": 9621.0, + "name": "ons.age.70_80@E07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13829.079867439823, + "kind": "calibration_drift", + "ledger_value": 14358.0, + "name": "ons.age.70_80@E07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23907.357147836472, + "kind": "calibration_drift", + "ledger_value": 24753.0, + "name": "ons.age.70_80@E07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7244.035159687166, + "kind": "calibration_drift", + "ledger_value": 7448.0, + "name": "ons.age.70_80@E07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13178.837076371701, + "kind": "calibration_drift", + "ledger_value": 13468.0, + "name": "ons.age.70_80@E07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12463.472809964918, + "kind": "calibration_drift", + "ledger_value": 12784.0, + "name": "ons.age.70_80@E07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7657.119145044344, + "kind": "calibration_drift", + "ledger_value": 7862.0, + "name": "ons.age.70_80@E07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12194.239247743888, + "kind": "calibration_drift", + "ledger_value": 12587.0, + "name": "ons.age.70_80@E07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8700.034712781408, + "kind": "calibration_drift", + "ledger_value": 8975.0, + "name": "ons.age.70_80@E07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11689.790804448887, + "kind": "calibration_drift", + "ledger_value": 12126.0, + "name": "ons.age.70_80@E07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7576.446272609884, + "kind": "calibration_drift", + "ledger_value": 7859.0, + "name": "ons.age.70_80@E07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5686.951525470228, + "kind": "calibration_drift", + "ledger_value": 6048.0, + "name": "ons.age.70_80@E07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12621.902667878378, + "kind": "calibration_drift", + "ledger_value": 12979.0, + "name": "ons.age.70_80@E07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16180.25671586103, + "kind": "calibration_drift", + "ledger_value": 16909.0, + "name": "ons.age.70_80@E07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7136.147342335056, + "kind": "calibration_drift", + "ledger_value": 7427.0, + "name": "ons.age.70_80@E07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13408.220183534746, + "kind": "calibration_drift", + "ledger_value": 13933.0, + "name": "ons.age.70_80@E07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8181.006834709095, + "kind": "calibration_drift", + "ledger_value": 8419.0, + "name": "ons.age.70_80@E07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15942.125947831599, + "kind": "calibration_drift", + "ledger_value": 16368.0, + "name": "ons.age.70_80@E07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12080.519656480852, + "kind": "calibration_drift", + "ledger_value": 12370.0, + "name": "ons.age.70_80@E07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13394.61271107592, + "kind": "calibration_drift", + "ledger_value": 13888.0, + "name": "ons.age.70_80@E07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13886.425644230585, + "kind": "calibration_drift", + "ledger_value": 14282.0, + "name": "ons.age.70_80@E07000113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15625.26623200468, + "kind": "calibration_drift", + "ledger_value": 16235.0, + "name": "ons.age.70_80@E07000114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11733.529108780824, + "kind": "calibration_drift", + "ledger_value": 12002.0, + "name": "ons.age.70_80@E07000115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10284.333291915995, + "kind": "calibration_drift", + "ledger_value": 10621.0, + "name": "ons.age.70_80@E07000116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8168.371324568757, + "kind": "calibration_drift", + "ledger_value": 8458.0, + "name": "ons.age.70_80@E07000117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11753.94031746906, + "kind": "calibration_drift", + "ledger_value": 12176.0, + "name": "ons.age.70_80@E07000118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10841.267700409318, + "kind": "calibration_drift", + "ledger_value": 11398.0, + "name": "ons.age.70_80@E07000119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7150.726777112369, + "kind": "calibration_drift", + "ledger_value": 7279.0, + "name": "ons.age.70_80@E07000120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13621.079931283504, + "kind": "calibration_drift", + "ledger_value": 14157.0, + "name": "ons.age.70_80@E07000121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8268.483443372967, + "kind": "calibration_drift", + "ledger_value": 8614.0, + "name": "ons.age.70_80@E07000122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9879.025005106716, + "kind": "calibration_drift", + "ledger_value": 10303.0, + "name": "ons.age.70_80@E07000123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7134.2034176980815, + "kind": "calibration_drift", + "ledger_value": 7438.0, + "name": "ons.age.70_80@E07000124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6564.63349906442, + "kind": "calibration_drift", + "ledger_value": 6770.0, + "name": "ons.age.70_80@E07000125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11527.473097261478, + "kind": "calibration_drift", + "ledger_value": 11904.0, + "name": "ons.age.70_80@E07000126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12217.566343387587, + "kind": "calibration_drift", + "ledger_value": 12595.0, + "name": "ons.age.70_80@E07000127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14996.406611943283, + "kind": "calibration_drift", + "ledger_value": 15581.0, + "name": "ons.age.70_80@E07000128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10027.735239835301, + "kind": "calibration_drift", + "ledger_value": 10322.0, + "name": "ons.age.70_80@E07000129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16372.705254921551, + "kind": "calibration_drift", + "ledger_value": 16965.0, + "name": "ons.age.70_80@E07000130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10365.006164350456, + "kind": "calibration_drift", + "ledger_value": 10865.0, + "name": "ons.age.70_80@E07000131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12352.669105657345, + "kind": "calibration_drift", + "ledger_value": 12800.0, + "name": "ons.age.70_80@E07000132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6025.19441230387, + "kind": "calibration_drift", + "ledger_value": 6237.0, + "name": "ons.age.70_80@E07000133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10562.314515003412, + "kind": "calibration_drift", + "ledger_value": 10893.0, + "name": "ons.age.70_80@E07000134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5414.802076293735, + "kind": "calibration_drift", + "ledger_value": 5580.0, + "name": "ons.age.70_80@E07000135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6634.614785995518, + "kind": "calibration_drift", + "ledger_value": 6911.0, + "name": "ons.age.70_80@E07000136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21184.89069375305, + "kind": "calibration_drift", + "ledger_value": 21846.0, + "name": "ons.age.70_80@E07000137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6977.717484421598, + "kind": "calibration_drift", + "ledger_value": 7189.0, + "name": "ons.age.70_80@E07000138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13228.407154614562, + "kind": "calibration_drift", + "ledger_value": 13713.0, + "name": "ons.age.70_80@E07000139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10732.407920738722, + "kind": "calibration_drift", + "ledger_value": 11067.0, + "name": "ons.age.70_80@E07000140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15976.14462897866, + "kind": "calibration_drift", + "ledger_value": 16603.0, + "name": "ons.age.70_80@E07000141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11641.192688524512, + "kind": "calibration_drift", + "ledger_value": 12013.0, + "name": "ons.age.70_80@E07000142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17082.23774741741, + "kind": "calibration_drift", + "ledger_value": 17692.0, + "name": "ons.age.70_80@E07000143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16092.780107197157, + "kind": "calibration_drift", + "ledger_value": 16741.0, + "name": "ons.age.70_80@E07000144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11443.884337871556, + "kind": "calibration_drift", + "ledger_value": 11806.0, + "name": "ons.age.70_80@E07000145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18594.611114983923, + "kind": "calibration_drift", + "ledger_value": 19228.0, + "name": "ons.age.70_80@E07000146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16361.041707099701, + "kind": "calibration_drift", + "ledger_value": 16913.0, + "name": "ons.age.70_80@E07000147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9741.006355881495, + "kind": "calibration_drift", + "ledger_value": 10043.0, + "name": "ons.age.70_80@E07000148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16455.322051992986, + "kind": "calibration_drift", + "ledger_value": 17081.0, + "name": "ons.age.70_80@E07000149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11810.314131941333, + "kind": "calibration_drift", + "ledger_value": 12039.0, + "name": "ons.age.70_80@E07000170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12506.239151978367, + "kind": "calibration_drift", + "ledger_value": 13029.0, + "name": "ons.age.70_80@E07000171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11482.762830611055, + "kind": "calibration_drift", + "ledger_value": 11674.0, + "name": "ons.age.70_80@E07000172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11835.585152222007, + "kind": "calibration_drift", + "ledger_value": 12256.0, + "name": "ons.age.70_80@E07000173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9948.034329719327, + "kind": "calibration_drift", + "ledger_value": 10279.0, + "name": "ons.age.70_80@E07000174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13350.874406743986, + "kind": "calibration_drift", + "ledger_value": 13812.0, + "name": "ons.age.70_80@E07000175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12203.958870928762, + "kind": "calibration_drift", + "ledger_value": 12762.0, + "name": "ons.age.70_80@E07000176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13164.25764159439, + "kind": "calibration_drift", + "ledger_value": 13706.0, + "name": "ons.age.70_80@E07000177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8504.670286765424, + "kind": "calibration_drift", + "ledger_value": 8806.0, + "name": "ons.age.70_80@E07000178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14293.677855676837, + "kind": "calibration_drift", + "ledger_value": 14869.0, + "name": "ons.age.70_80@E07000179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12965.005366304456, + "kind": "calibration_drift", + "ledger_value": 13540.0, + "name": "ons.age.70_80@E07000180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11776.295450794272, + "kind": "calibration_drift", + "ledger_value": 12194.0, + "name": "ons.age.70_80@E07000181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9148.109341604135, + "kind": "calibration_drift", + "ledger_value": 9589.0, + "name": "ons.age.70_80@E07000192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10921.94057284378, + "kind": "calibration_drift", + "ledger_value": 11337.0, + "name": "ons.age.70_80@E07000193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12306.986876688434, + "kind": "calibration_drift", + "ledger_value": 12537.0, + "name": "ons.age.70_80@E07000194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12361.416766523733, + "kind": "calibration_drift", + "ledger_value": 12726.0, + "name": "ons.age.70_80@E07000195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13018.463293821267, + "kind": "calibration_drift", + "ledger_value": 13320.0, + "name": "ons.age.70_80@E07000196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14830.201055481924, + "kind": "calibration_drift", + "ledger_value": 15139.0, + "name": "ons.age.70_80@E07000197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12005.678557957317, + "kind": "calibration_drift", + "ledger_value": 12353.0, + "name": "ons.age.70_80@E07000198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7278.053840834228, + "kind": "calibration_drift", + "ledger_value": 7561.0, + "name": "ons.age.70_80@E07000199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12058.16452315564, + "kind": "calibration_drift", + "ledger_value": 12328.0, + "name": "ons.age.70_80@E07000200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10295.024877419357, + "kind": "calibration_drift", + "ledger_value": 10765.0, + "name": "ons.age.70_80@E07000202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12828.93064171621, + "kind": "calibration_drift", + "ledger_value": 13500.0, + "name": "ons.age.70_80@E07000203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11032.744277151352, + "kind": "calibration_drift", + "ledger_value": 11527.0, + "name": "ons.age.70_80@E07000207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6704.596072926617, + "kind": "calibration_drift", + "ledger_value": 6903.0, + "name": "ons.age.70_80@E07000208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11300.033914735408, + "kind": "calibration_drift", + "ledger_value": 11740.0, + "name": "ons.age.70_80@E07000209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9415.39897918819, + "kind": "calibration_drift", + "ledger_value": 9660.0, + "name": "ons.age.70_80@E07000210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12261.304647719522, + "kind": "calibration_drift", + "ledger_value": 12830.0, + "name": "ons.age.70_80@E07000211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6702.652148289641, + "kind": "calibration_drift", + "ledger_value": 6967.0, + "name": "ons.age.70_80@E07000212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8027.436788388073, + "kind": "calibration_drift", + "ledger_value": 8306.0, + "name": "ons.age.70_80@E07000213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8055.62369562421, + "kind": "calibration_drift", + "ledger_value": 8287.0, + "name": "ons.age.70_80@E07000214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8435.660962152813, + "kind": "calibration_drift", + "ledger_value": 8683.0, + "name": "ons.age.70_80@E07000215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12675.360595395188, + "kind": "calibration_drift", + "ledger_value": 13072.0, + "name": "ons.age.70_80@E07000216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7721.268658064518, + "kind": "calibration_drift", + "ledger_value": 8014.0, + "name": "ons.age.70_80@E07000217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6781.381096087127, + "kind": "calibration_drift", + "ledger_value": 6923.0, + "name": "ons.age.70_80@E07000218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12167.996265144726, + "kind": "calibration_drift", + "ledger_value": 12431.0, + "name": "ons.age.70_80@E07000219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9625.342839981486, + "kind": "calibration_drift", + "ledger_value": 9848.0, + "name": "ons.age.70_80@E07000220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16469.901486770297, + "kind": "calibration_drift", + "ledger_value": 16957.0, + "name": "ons.age.70_80@E07000221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12931.958647475882, + "kind": "calibration_drift", + "ledger_value": 13318.0, + "name": "ons.age.70_80@E07000222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7075.885678588833, + "kind": "calibration_drift", + "ledger_value": 7208.0, + "name": "ons.age.70_80@E07000223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22037.301647066568, + "kind": "calibration_drift", + "ledger_value": 22956.0, + "name": "ons.age.70_80@E07000224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15486.275620460972, + "kind": "calibration_drift", + "ledger_value": 16134.0, + "name": "ons.age.70_80@E07000225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7022.427751072021, + "kind": "calibration_drift", + "ledger_value": 7432.0, + "name": "ons.age.70_80@E07000226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15754.537220363516, + "kind": "calibration_drift", + "ledger_value": 16319.0, + "name": "ons.age.70_80@E07000227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14667.883348294516, + "kind": "calibration_drift", + "ledger_value": 15175.0, + "name": "ons.age.70_80@E07000228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11449.71611178248, + "kind": "calibration_drift", + "ledger_value": 11833.0, + "name": "ons.age.70_80@E07000229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10213.38004266641, + "kind": "calibration_drift", + "ledger_value": 10577.0, + "name": "ons.age.70_80@E07000234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10542.875268633663, + "kind": "calibration_drift", + "ledger_value": 10889.0, + "name": "ons.age.70_80@E07000235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8100.333962274633, + "kind": "calibration_drift", + "ledger_value": 8444.0, + "name": "ons.age.70_80@E07000236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8571.73568674106, + "kind": "calibration_drift", + "ledger_value": 8847.0, + "name": "ons.age.70_80@E07000237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15865.340924671087, + "kind": "calibration_drift", + "ledger_value": 16509.0, + "name": "ons.age.70_80@E07000238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12513.04288820778, + "kind": "calibration_drift", + "ledger_value": 12721.0, + "name": "ons.age.70_80@E07000239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11416.669392953905, + "kind": "calibration_drift", + "ledger_value": 11860.0, + "name": "ons.age.70_80@E07000240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8141.156379651108, + "kind": "calibration_drift", + "ledger_value": 8471.0, + "name": "ons.age.70_80@E07000241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12814.351206938898, + "kind": "calibration_drift", + "ledger_value": 13355.0, + "name": "ons.age.70_80@E07000242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5898.839310900498, + "kind": "calibration_drift", + "ledger_value": 6176.0, + "name": "ons.age.70_80@E07000243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32679.317072185953, + "kind": "calibration_drift", + "ledger_value": 33919.0, + "name": "ons.age.70_80@E07000244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17683.882422561157, + "kind": "calibration_drift", + "ledger_value": 18307.0, + "name": "ons.age.70_80@E07000245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23790.721669617975, + "kind": "calibration_drift", + "ledger_value": 24622.0, + "name": "ons.age.70_80@E08000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16756.630370724106, + "kind": "calibration_drift", + "ledger_value": 17099.0, + "name": "ons.age.70_80@E08000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23343.619003113738, + "kind": "calibration_drift", + "ledger_value": 24415.0, + "name": "ons.age.70_80@E08000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17958.947758693113, + "kind": "calibration_drift", + "ledger_value": 18402.0, + "name": "ons.age.70_80@E08000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17350.499347319954, + "kind": "calibration_drift", + "ledger_value": 18208.0, + "name": "ons.age.70_80@E08000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16278.424910028265, + "kind": "calibration_drift", + "ledger_value": 16818.0, + "name": "ons.age.70_80@E08000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26775.617949693016, + "kind": "calibration_drift", + "ledger_value": 27630.0, + "name": "ons.age.70_80@E08000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19323.58285384953, + "kind": "calibration_drift", + "ledger_value": 19821.0, + "name": "ons.age.70_80@E08000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18368.14389477634, + "kind": "calibration_drift", + "ledger_value": 18877.0, + "name": "ons.age.70_80@E08000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 30826.75689314882, + "kind": "calibration_drift", + "ledger_value": 31765.0, + "name": "ons.age.70_80@E08000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11842.38888845142, + "kind": "calibration_drift", + "ledger_value": 12548.0, + "name": "ons.age.70_80@E08000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 33900.10174420622, + "kind": "calibration_drift", + "ledger_value": 35448.0, + "name": "ons.age.70_80@E08000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17773.302955862004, + "kind": "calibration_drift", + "ledger_value": 18213.0, + "name": "ons.age.70_80@E08000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28915.87897500244, + "kind": "calibration_drift", + "ledger_value": 30240.0, + "name": "ons.age.70_80@E08000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 32902.86840543807, + "kind": "calibration_drift", + "ledger_value": 34167.0, + "name": "ons.age.70_80@E08000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22749.75002651789, + "kind": "calibration_drift", + "ledger_value": 23595.0, + "name": "ons.age.70_80@E08000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27810.757818882183, + "kind": "calibration_drift", + "ledger_value": 28954.0, + "name": "ons.age.70_80@E08000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24577.039185274345, + "kind": "calibration_drift", + "ledger_value": 25263.0, + "name": "ons.age.70_80@E08000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 42672.0616685557, + "kind": "calibration_drift", + "ledger_value": 43932.0, + "name": "ons.age.70_80@E08000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20241.11528250171, + "kind": "calibration_drift", + "ledger_value": 21096.0, + "name": "ons.age.70_80@E08000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20380.10589404542, + "kind": "calibration_drift", + "ledger_value": 21413.0, + "name": "ons.age.70_80@E08000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14040.967652870093, + "kind": "calibration_drift", + "ledger_value": 14870.0, + "name": "ons.age.70_80@E08000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26193.41252091902, + "kind": "calibration_drift", + "ledger_value": 27523.0, + "name": "ons.age.70_80@E08000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 64864.87728658027, + "kind": "calibration_drift", + "ledger_value": 67187.0, + "name": "ons.age.70_80@E08000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21950.79700072118, + "kind": "calibration_drift", + "ledger_value": 22450.0, + "name": "ons.age.70_80@E08000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 29917.000163044544, + "kind": "calibration_drift", + "ledger_value": 30350.0, + "name": "ons.age.70_80@E08000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21844.853108006046, + "kind": "calibration_drift", + "ledger_value": 22343.0, + "name": "ons.age.70_80@E08000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20869.974902563106, + "kind": "calibration_drift", + "ledger_value": 21359.0, + "name": "ons.age.70_80@E08000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21801.11480367411, + "kind": "calibration_drift", + "ledger_value": 22096.0, + "name": "ons.age.70_80@E08000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18983.396042378914, + "kind": "calibration_drift", + "ledger_value": 19650.0, + "name": "ons.age.70_80@E08000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 37674.2314268931, + "kind": "calibration_drift", + "ledger_value": 39567.0, + "name": "ons.age.70_80@E08000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18677.227912055358, + "kind": "calibration_drift", + "ledger_value": 19280.0, + "name": "ons.age.70_80@E08000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 36328.06361578794, + "kind": "calibration_drift", + "ledger_value": 37762.0, + "name": "ons.age.70_80@E08000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 57967.83267459313, + "kind": "calibration_drift", + "ledger_value": 60192.0, + "name": "ons.age.70_80@E08000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31680.139808780827, + "kind": "calibration_drift", + "ledger_value": 32835.0, + "name": "ons.age.70_80@E08000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18063.919689089762, + "kind": "calibration_drift", + "ledger_value": 18801.0, + "name": "ons.age.70_80@E08000037", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 624.9717707874478, + "kind": "calibration_drift", + "ledger_value": 624.0, + "name": "ons.age.70_80@E09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7971.062973915799, + "kind": "calibration_drift", + "ledger_value": 8456.0, + "name": "ons.age.70_80@E09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 25496.515538563497, + "kind": "calibration_drift", + "ledger_value": 26467.0, + "name": "ons.age.70_80@E09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17985.190741292274, + "kind": "calibration_drift", + "ledger_value": 18645.0, + "name": "ons.age.70_80@E09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16942.275173555212, + "kind": "calibration_drift", + "ledger_value": 18013.0, + "name": "ons.age.70_80@E09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 26030.12285141312, + "kind": "calibration_drift", + "ledger_value": 26878.0, + "name": "ons.age.70_80@E09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11403.06192049508, + "kind": "calibration_drift", + "ledger_value": 11876.0, + "name": "ons.age.70_80@E09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 23515.65633348602, + "kind": "calibration_drift", + "ledger_value": 24639.0, + "name": "ons.age.70_80@E09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20112.816256461363, + "kind": "calibration_drift", + "ledger_value": 21230.0, + "name": "ons.age.70_80@E09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19487.844485673915, + "kind": "calibration_drift", + "ledger_value": 20451.0, + "name": "ons.age.70_80@E09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13705.640652991913, + "kind": "calibration_drift", + "ledger_value": 14281.0, + "name": "ons.age.70_80@E09000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9056.744883666312, + "kind": "calibration_drift", + "ledger_value": 9646.0, + "name": "ons.age.70_80@E09000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8580.483347607447, + "kind": "calibration_drift", + "ledger_value": 9244.0, + "name": "ons.age.70_80@E09000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12418.762543314495, + "kind": "calibration_drift", + "ledger_value": 13120.0, + "name": "ons.age.70_80@E09000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17556.555358839298, + "kind": "calibration_drift", + "ledger_value": 18519.0, + "name": "ons.age.70_80@E09000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 20453.975030250465, + "kind": "calibration_drift", + "ledger_value": 21188.0, + "name": "ons.age.70_80@E09000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17897.714132628404, + "kind": "calibration_drift", + "ledger_value": 18682.0, + "name": "ons.age.70_80@E09000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15477.527959594585, + "kind": "calibration_drift", + "ledger_value": 16364.0, + "name": "ons.age.70_80@E09000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9127.698132915897, + "kind": "calibration_drift", + "ledger_value": 9654.0, + "name": "ons.age.70_80@E09000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9426.090564691553, + "kind": "calibration_drift", + "ledger_value": 10000.0, + "name": "ons.age.70_80@E09000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11314.61334951272, + "kind": "calibration_drift", + "ledger_value": 11863.0, + "name": "ons.age.70_80@E09000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11787.95899861612, + "kind": "calibration_drift", + "ledger_value": 12450.0, + "name": "ons.age.70_80@E09000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12092.183204302703, + "kind": "calibration_drift", + "ledger_value": 12799.0, + "name": "ons.age.70_80@E09000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12045.529013015303, + "kind": "calibration_drift", + "ledger_value": 12755.0, + "name": "ons.age.70_80@E09000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11053.155485839588, + "kind": "calibration_drift", + "ledger_value": 11930.0, + "name": "ons.age.70_80@E09000025", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16669.153762060232, + "kind": "calibration_drift", + "ledger_value": 17535.0, + "name": "ons.age.70_80@E09000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15182.05141477439, + "kind": "calibration_drift", + "ledger_value": 15621.0, + "name": "ons.age.70_80@E09000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11224.220853893385, + "kind": "calibration_drift", + "ledger_value": 11994.0, + "name": "ons.age.70_80@E09000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14085.677919520518, + "kind": "calibration_drift", + "ledger_value": 14705.0, + "name": "ons.age.70_80@E09000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7773.754623262841, + "kind": "calibration_drift", + "ledger_value": 8288.0, + "name": "ons.age.70_80@E09000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12377.940125938021, + "kind": "calibration_drift", + "ledger_value": 13080.0, + "name": "ons.age.70_80@E09000031", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14222.724606427251, + "kind": "calibration_drift", + "ledger_value": 14907.0, + "name": "ons.age.70_80@E09000032", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11091.062016260601, + "kind": "calibration_drift", + "ledger_value": 11690.0, + "name": "ons.age.70_80@E09000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8194.737694795644, + "kind": "calibration_drift", + "ledger_value": 9326.0, + "name": "ons.age.70_80@E14001063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9505.586833717407, + "kind": "calibration_drift", + "ledger_value": 9129.0, + "name": "ons.age.70_80@E14001064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8703.620903135574, + "kind": "calibration_drift", + "ledger_value": 8700.0, + "name": "ons.age.70_80@E14001065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9794.408973262252, + "kind": "calibration_drift", + "ledger_value": 9940.0, + "name": "ons.age.70_80@E14001066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12405.584006342446, + "kind": "calibration_drift", + "ledger_value": 13551.0, + "name": "ons.age.70_80@E14001067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9477.074462010933, + "kind": "calibration_drift", + "ledger_value": 9222.0, + "name": "ons.age.70_80@E14001068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10396.985551097696, + "kind": "calibration_drift", + "ledger_value": 9152.0, + "name": "ons.age.70_80@E14001069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8025.063933869247, + "kind": "calibration_drift", + "ledger_value": 7894.0, + "name": "ons.age.70_80@E14001070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8410.396005233446, + "kind": "calibration_drift", + "ledger_value": 8381.0, + "name": "ons.age.70_80@E14001071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8133.896179383241, + "kind": "calibration_drift", + "ledger_value": 9710.0, + "name": "ons.age.70_80@E14001072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4401.536974620036, + "kind": "calibration_drift", + "ledger_value": 4467.0, + "name": "ons.age.70_80@E14001073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9266.678603963805, + "kind": "calibration_drift", + "ledger_value": 9687.0, + "name": "ons.age.70_80@E14001074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9419.408658701434, + "kind": "calibration_drift", + "ledger_value": 9382.0, + "name": "ons.age.70_80@E14001075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10670.944963502567, + "kind": "calibration_drift", + "ledger_value": 10890.0, + "name": "ons.age.70_80@E14001076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8359.618300187847, + "kind": "calibration_drift", + "ledger_value": 8233.0, + "name": "ons.age.70_80@E14001077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7629.944201016759, + "kind": "calibration_drift", + "ledger_value": 8540.0, + "name": "ons.age.70_80@E14001078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10755.60431968672, + "kind": "calibration_drift", + "ledger_value": 11097.0, + "name": "ons.age.70_80@E14001079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7654.551038584264, + "kind": "calibration_drift", + "ledger_value": 8141.0, + "name": "ons.age.70_80@E14001080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4109.578572812078, + "kind": "calibration_drift", + "ledger_value": 4416.0, + "name": "ons.age.70_80@E14001081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9004.504831195472, + "kind": "calibration_drift", + "ledger_value": 9336.0, + "name": "ons.age.70_80@E14001082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7231.524329672748, + "kind": "calibration_drift", + "ledger_value": 7914.0, + "name": "ons.age.70_80@E14001083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7571.252701872781, + "kind": "calibration_drift", + "ledger_value": 7969.0, + "name": "ons.age.70_80@E14001084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3601.5731234074206, + "kind": "calibration_drift", + "ledger_value": 3415.0, + "name": "ons.age.70_80@E14001085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3780.961407381509, + "kind": "calibration_drift", + "ledger_value": 3505.0, + "name": "ons.age.70_80@E14001086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11990.877428035425, + "kind": "calibration_drift", + "ledger_value": 12147.0, + "name": "ons.age.70_80@E14001087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12880.086679307498, + "kind": "calibration_drift", + "ledger_value": 13838.0, + "name": "ons.age.70_80@E14001088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6642.613335733016, + "kind": "calibration_drift", + "ledger_value": 7611.0, + "name": "ons.age.70_80@E14001089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8697.299066309613, + "kind": "calibration_drift", + "ledger_value": 9014.0, + "name": "ons.age.70_80@E14001090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9127.105070795333, + "kind": "calibration_drift", + "ledger_value": 9329.0, + "name": "ons.age.70_80@E14001091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6747.883141169224, + "kind": "calibration_drift", + "ledger_value": 7460.0, + "name": "ons.age.70_80@E14001092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6937.944698842812, + "kind": "calibration_drift", + "ledger_value": 7604.0, + "name": "ons.age.70_80@E14001093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5577.260549809383, + "kind": "calibration_drift", + "ledger_value": 6327.0, + "name": "ons.age.70_80@E14001094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6434.111069995692, + "kind": "calibration_drift", + "ledger_value": 6956.0, + "name": "ons.age.70_80@E14001095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4725.666123049922, + "kind": "calibration_drift", + "ledger_value": 3665.0, + "name": "ons.age.70_80@E14001096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7858.82230900437, + "kind": "calibration_drift", + "ledger_value": 8438.0, + "name": "ons.age.70_80@E14001097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5618.222035730644, + "kind": "calibration_drift", + "ledger_value": 5809.0, + "name": "ons.age.70_80@E14001098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6420.313488529984, + "kind": "calibration_drift", + "ledger_value": 6792.0, + "name": "ons.age.70_80@E14001099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5864.267996723997, + "kind": "calibration_drift", + "ledger_value": 6108.0, + "name": "ons.age.70_80@E14001100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9794.799984931866, + "kind": "calibration_drift", + "ledger_value": 11111.0, + "name": "ons.age.70_80@E14001101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6478.363927777414, + "kind": "calibration_drift", + "ledger_value": 6936.0, + "name": "ons.age.70_80@E14001102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5500.392536983275, + "kind": "calibration_drift", + "ledger_value": 6818.0, + "name": "ons.age.70_80@E14001103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10071.110149532364, + "kind": "calibration_drift", + "ledger_value": 12222.0, + "name": "ons.age.70_80@E14001104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10249.857373609902, + "kind": "calibration_drift", + "ledger_value": 9444.0, + "name": "ons.age.70_80@E14001105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9652.627643756983, + "kind": "calibration_drift", + "ledger_value": 9533.0, + "name": "ons.age.70_80@E14001106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10794.442686957596, + "kind": "calibration_drift", + "ledger_value": 10873.0, + "name": "ons.age.70_80@E14001107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12855.105068262012, + "kind": "calibration_drift", + "ledger_value": 14182.0, + "name": "ons.age.70_80@E14001108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9913.744738619693, + "kind": "calibration_drift", + "ledger_value": 10253.0, + "name": "ons.age.70_80@E14001109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9096.26515854139, + "kind": "calibration_drift", + "ledger_value": 10167.0, + "name": "ons.age.70_80@E14001110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8735.299124485004, + "kind": "calibration_drift", + "ledger_value": 7731.0, + "name": "ons.age.70_80@E14001111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8596.317338913346, + "kind": "calibration_drift", + "ledger_value": 9415.0, + "name": "ons.age.70_80@E14001112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7663.131378738063, + "kind": "calibration_drift", + "ledger_value": 8225.0, + "name": "ons.age.70_80@E14001113", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13192.292711386433, + "kind": "calibration_drift", + "ledger_value": 13937.0, + "name": "ons.age.70_80@E14001114", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8482.701800325107, + "kind": "calibration_drift", + "ledger_value": 8953.0, + "name": "ons.age.70_80@E14001115", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8776.119846205205, + "kind": "calibration_drift", + "ledger_value": 8777.0, + "name": "ons.age.70_80@E14001116", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7164.317742003912, + "kind": "calibration_drift", + "ledger_value": 7362.0, + "name": "ons.age.70_80@E14001117", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5337.129375022362, + "kind": "calibration_drift", + "ledger_value": 5998.0, + "name": "ons.age.70_80@E14001118", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6827.228723478959, + "kind": "calibration_drift", + "ledger_value": 7305.0, + "name": "ons.age.70_80@E14001119", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4830.63288198958, + "kind": "calibration_drift", + "ledger_value": 5733.0, + "name": "ons.age.70_80@E14001120", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10113.194047310712, + "kind": "calibration_drift", + "ledger_value": 10712.0, + "name": "ons.age.70_80@E14001121", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6606.270170828706, + "kind": "calibration_drift", + "ledger_value": 6791.0, + "name": "ons.age.70_80@E14001122", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7310.499123336803, + "kind": "calibration_drift", + "ledger_value": 7541.0, + "name": "ons.age.70_80@E14001123", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7018.234985270492, + "kind": "calibration_drift", + "ledger_value": 7263.0, + "name": "ons.age.70_80@E14001124", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9008.370915494655, + "kind": "calibration_drift", + "ledger_value": 9299.0, + "name": "ons.age.70_80@E14001125", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11630.236855157284, + "kind": "calibration_drift", + "ledger_value": 10991.0, + "name": "ons.age.70_80@E14001126", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12648.466807454652, + "kind": "calibration_drift", + "ledger_value": 14006.0, + "name": "ons.age.70_80@E14001127", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9773.7668445934, + "kind": "calibration_drift", + "ledger_value": 10979.0, + "name": "ons.age.70_80@E14001128", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7810.101756866705, + "kind": "calibration_drift", + "ledger_value": 7924.0, + "name": "ons.age.70_80@E14001129", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5123.528217492491, + "kind": "calibration_drift", + "ledger_value": 5586.0, + "name": "ons.age.70_80@E14001130", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3316.478993722503, + "kind": "calibration_drift", + "ledger_value": 3695.0, + "name": "ons.age.70_80@E14001131", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5954.04596962059, + "kind": "calibration_drift", + "ledger_value": 6099.0, + "name": "ons.age.70_80@E14001132", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7154.026012051929, + "kind": "calibration_drift", + "ledger_value": 6886.0, + "name": "ons.age.70_80@E14001133", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7469.383353081294, + "kind": "calibration_drift", + "ledger_value": 8306.0, + "name": "ons.age.70_80@E14001134", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5841.811175424916, + "kind": "calibration_drift", + "ledger_value": 6436.0, + "name": "ons.age.70_80@E14001135", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11807.904887026694, + "kind": "calibration_drift", + "ledger_value": 12470.0, + "name": "ons.age.70_80@E14001136", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7792.886783218994, + "kind": "calibration_drift", + "ledger_value": 8113.0, + "name": "ons.age.70_80@E14001137", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10291.476954585803, + "kind": "calibration_drift", + "ledger_value": 10545.0, + "name": "ons.age.70_80@E14001138", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8745.013647532696, + "kind": "calibration_drift", + "ledger_value": 8746.0, + "name": "ons.age.70_80@E14001139", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9476.69968853295, + "kind": "calibration_drift", + "ledger_value": 9784.0, + "name": "ons.age.70_80@E14001140", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7985.437155691328, + "kind": "calibration_drift", + "ledger_value": 8950.0, + "name": "ons.age.70_80@E14001141", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9261.00768949434, + "kind": "calibration_drift", + "ledger_value": 9684.0, + "name": "ons.age.70_80@E14001142", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9252.959922177672, + "kind": "calibration_drift", + "ledger_value": 9741.0, + "name": "ons.age.70_80@E14001143", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9190.313576594988, + "kind": "calibration_drift", + "ledger_value": 9746.0, + "name": "ons.age.70_80@E14001144", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7959.518025062177, + "kind": "calibration_drift", + "ledger_value": 8221.0, + "name": "ons.age.70_80@E14001145", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11152.430258110022, + "kind": "calibration_drift", + "ledger_value": 11686.0, + "name": "ons.age.70_80@E14001146", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10194.154199829834, + "kind": "calibration_drift", + "ledger_value": 10408.0, + "name": "ons.age.70_80@E14001147", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10761.304821536029, + "kind": "calibration_drift", + "ledger_value": 11341.0, + "name": "ons.age.70_80@E14001148", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5878.3910393679525, + "kind": "calibration_drift", + "ledger_value": 6264.0, + "name": "ons.age.70_80@E14001149", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9163.21153666092, + "kind": "calibration_drift", + "ledger_value": 9557.0, + "name": "ons.age.70_80@E14001150", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10042.992276223762, + "kind": "calibration_drift", + "ledger_value": 10303.0, + "name": "ons.age.70_80@E14001151", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10224.136078068399, + "kind": "calibration_drift", + "ledger_value": 10697.0, + "name": "ons.age.70_80@E14001152", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6600.944442457382, + "kind": "calibration_drift", + "ledger_value": 6945.0, + "name": "ons.age.70_80@E14001153", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11425.304799920736, + "kind": "calibration_drift", + "ledger_value": 11320.0, + "name": "ons.age.70_80@E14001154", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11459.610619689956, + "kind": "calibration_drift", + "ledger_value": 12357.0, + "name": "ons.age.70_80@E14001155", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10839.094437302516, + "kind": "calibration_drift", + "ledger_value": 10866.0, + "name": "ons.age.70_80@E14001156", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7736.981478820419, + "kind": "calibration_drift", + "ledger_value": 8085.0, + "name": "ons.age.70_80@E14001157", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9455.140351089036, + "kind": "calibration_drift", + "ledger_value": 9857.0, + "name": "ons.age.70_80@E14001158", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8321.845078591236, + "kind": "calibration_drift", + "ledger_value": 8396.0, + "name": "ons.age.70_80@E14001159", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7716.7148209752, + "kind": "calibration_drift", + "ledger_value": 7253.0, + "name": "ons.age.70_80@E14001160", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8365.890824714072, + "kind": "calibration_drift", + "ledger_value": 8682.0, + "name": "ons.age.70_80@E14001161", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9104.43127537742, + "kind": "calibration_drift", + "ledger_value": 9433.0, + "name": "ons.age.70_80@E14001162", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8468.884394318698, + "kind": "calibration_drift", + "ledger_value": 9391.0, + "name": "ons.age.70_80@E14001163", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9328.541232653533, + "kind": "calibration_drift", + "ledger_value": 11349.0, + "name": "ons.age.70_80@E14001164", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9430.484201221796, + "kind": "calibration_drift", + "ledger_value": 9855.0, + "name": "ons.age.70_80@E14001165", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12622.400325815004, + "kind": "calibration_drift", + "ledger_value": 13257.0, + "name": "ons.age.70_80@E14001166", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7825.270220265031, + "kind": "calibration_drift", + "ledger_value": 7824.0, + "name": "ons.age.70_80@E14001167", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9690.111896953937, + "kind": "calibration_drift", + "ledger_value": 9510.0, + "name": "ons.age.70_80@E14001168", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8150.632773913124, + "kind": "calibration_drift", + "ledger_value": 9176.0, + "name": "ons.age.70_80@E14001169", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9748.213210870992, + "kind": "calibration_drift", + "ledger_value": 10091.0, + "name": "ons.age.70_80@E14001170", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14079.845069387431, + "kind": "calibration_drift", + "ledger_value": 14119.0, + "name": "ons.age.70_80@E14001171", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9196.073253203976, + "kind": "calibration_drift", + "ledger_value": 7472.0, + "name": "ons.age.70_80@E14001172", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9299.525277764922, + "kind": "calibration_drift", + "ledger_value": 9751.0, + "name": "ons.age.70_80@E14001173", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15304.301695673583, + "kind": "calibration_drift", + "ledger_value": 15481.0, + "name": "ons.age.70_80@E14001174", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3733.0693018793827, + "kind": "calibration_drift", + "ledger_value": 3480.0, + "name": "ons.age.70_80@E14001175", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7477.3636455482265, + "kind": "calibration_drift", + "ledger_value": 7663.0, + "name": "ons.age.70_80@E14001176", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8462.464032514077, + "kind": "calibration_drift", + "ledger_value": 9576.0, + "name": "ons.age.70_80@E14001177", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10152.61351853351, + "kind": "calibration_drift", + "ledger_value": 10840.0, + "name": "ons.age.70_80@E14001178", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9330.67610655921, + "kind": "calibration_drift", + "ledger_value": 10145.0, + "name": "ons.age.70_80@E14001179", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6839.290511994013, + "kind": "calibration_drift", + "ledger_value": 7190.0, + "name": "ons.age.70_80@E14001180", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8120.74952027403, + "kind": "calibration_drift", + "ledger_value": 8015.0, + "name": "ons.age.70_80@E14001181", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7719.672861613617, + "kind": "calibration_drift", + "ledger_value": 7205.0, + "name": "ons.age.70_80@E14001182", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9370.9403316533, + "kind": "calibration_drift", + "ledger_value": 11089.0, + "name": "ons.age.70_80@E14001183", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6575.302046595452, + "kind": "calibration_drift", + "ledger_value": 7410.0, + "name": "ons.age.70_80@E14001184", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9803.679685612335, + "kind": "calibration_drift", + "ledger_value": 9958.0, + "name": "ons.age.70_80@E14001185", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6503.937286419715, + "kind": "calibration_drift", + "ledger_value": 7798.0, + "name": "ons.age.70_80@E14001186", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7589.281278655707, + "kind": "calibration_drift", + "ledger_value": 8388.0, + "name": "ons.age.70_80@E14001187", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6279.309898669215, + "kind": "calibration_drift", + "ledger_value": 5003.0, + "name": "ons.age.70_80@E14001188", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6446.932865651502, + "kind": "calibration_drift", + "ledger_value": 6594.0, + "name": "ons.age.70_80@E14001189", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8735.65417304309, + "kind": "calibration_drift", + "ledger_value": 9519.0, + "name": "ons.age.70_80@E14001190", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7100.192027429195, + "kind": "calibration_drift", + "ledger_value": 6650.0, + "name": "ons.age.70_80@E14001191", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10366.522398819816, + "kind": "calibration_drift", + "ledger_value": 11271.0, + "name": "ons.age.70_80@E14001192", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7555.630565316898, + "kind": "calibration_drift", + "ledger_value": 8276.0, + "name": "ons.age.70_80@E14001193", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6947.116786593426, + "kind": "calibration_drift", + "ledger_value": 7354.0, + "name": "ons.age.70_80@E14001194", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11187.54061552097, + "kind": "calibration_drift", + "ledger_value": 11574.0, + "name": "ons.age.70_80@E14001195", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8721.402918419826, + "kind": "calibration_drift", + "ledger_value": 6558.0, + "name": "ons.age.70_80@E14001196", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8656.991192506652, + "kind": "calibration_drift", + "ledger_value": 9144.0, + "name": "ons.age.70_80@E14001197", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9002.670413645348, + "kind": "calibration_drift", + "ledger_value": 9898.0, + "name": "ons.age.70_80@E14001198", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9557.157636779726, + "kind": "calibration_drift", + "ledger_value": 10167.0, + "name": "ons.age.70_80@E14001199", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8409.916845917016, + "kind": "calibration_drift", + "ledger_value": 9204.0, + "name": "ons.age.70_80@E14001200", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9477.55606253032, + "kind": "calibration_drift", + "ledger_value": 9964.0, + "name": "ons.age.70_80@E14001201", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11387.137079926248, + "kind": "calibration_drift", + "ledger_value": 11908.0, + "name": "ons.age.70_80@E14001202", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11298.483427463601, + "kind": "calibration_drift", + "ledger_value": 12109.0, + "name": "ons.age.70_80@E14001203", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8335.474998237845, + "kind": "calibration_drift", + "ledger_value": 7935.0, + "name": "ons.age.70_80@E14001204", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4467.142058186786, + "kind": "calibration_drift", + "ledger_value": 4972.0, + "name": "ons.age.70_80@E14001205", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8815.520373693054, + "kind": "calibration_drift", + "ledger_value": 8877.0, + "name": "ons.age.70_80@E14001206", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6718.9598336316285, + "kind": "calibration_drift", + "ledger_value": 7146.0, + "name": "ons.age.70_80@E14001207", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6749.216665299014, + "kind": "calibration_drift", + "ledger_value": 7683.0, + "name": "ons.age.70_80@E14001208", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6337.735111394625, + "kind": "calibration_drift", + "ledger_value": 7081.0, + "name": "ons.age.70_80@E14001209", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6919.933157217977, + "kind": "calibration_drift", + "ledger_value": 7119.0, + "name": "ons.age.70_80@E14001210", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8676.134227263576, + "kind": "calibration_drift", + "ledger_value": 8986.0, + "name": "ons.age.70_80@E14001211", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9938.276462098309, + "kind": "calibration_drift", + "ledger_value": 10830.0, + "name": "ons.age.70_80@E14001212", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4221.764054708018, + "kind": "calibration_drift", + "ledger_value": 4728.0, + "name": "ons.age.70_80@E14001213", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9649.50971172246, + "kind": "calibration_drift", + "ledger_value": 10747.0, + "name": "ons.age.70_80@E14001214", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8811.85153859281, + "kind": "calibration_drift", + "ledger_value": 9432.0, + "name": "ons.age.70_80@E14001215", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12347.839303353372, + "kind": "calibration_drift", + "ledger_value": 11264.0, + "name": "ons.age.70_80@E14001216", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8952.253518396818, + "kind": "calibration_drift", + "ledger_value": 9583.0, + "name": "ons.age.70_80@E14001217", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10175.099927212432, + "kind": "calibration_drift", + "ledger_value": 10492.0, + "name": "ons.age.70_80@E14001218", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12057.626556956016, + "kind": "calibration_drift", + "ledger_value": 11771.0, + "name": "ons.age.70_80@E14001219", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8175.229749020682, + "kind": "calibration_drift", + "ledger_value": 9018.0, + "name": "ons.age.70_80@E14001220", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6767.955339198115, + "kind": "calibration_drift", + "ledger_value": 7823.0, + "name": "ons.age.70_80@E14001221", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9842.368621671894, + "kind": "calibration_drift", + "ledger_value": 8547.0, + "name": "ons.age.70_80@E14001222", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7350.924948175899, + "kind": "calibration_drift", + "ledger_value": 7811.0, + "name": "ons.age.70_80@E14001223", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10010.635886720147, + "kind": "calibration_drift", + "ledger_value": 10822.0, + "name": "ons.age.70_80@E14001224", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7278.574340488701, + "kind": "calibration_drift", + "ledger_value": 7076.0, + "name": "ons.age.70_80@E14001225", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8325.888687169463, + "kind": "calibration_drift", + "ledger_value": 8835.0, + "name": "ons.age.70_80@E14001226", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9951.670877169538, + "kind": "calibration_drift", + "ledger_value": 9471.0, + "name": "ons.age.70_80@E14001227", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8666.143555337369, + "kind": "calibration_drift", + "ledger_value": 9044.0, + "name": "ons.age.70_80@E14001228", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6521.7982013835435, + "kind": "calibration_drift", + "ledger_value": 6400.0, + "name": "ons.age.70_80@E14001229", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8182.488519541597, + "kind": "calibration_drift", + "ledger_value": 8229.0, + "name": "ons.age.70_80@E14001230", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7124.808239216056, + "kind": "calibration_drift", + "ledger_value": 7303.0, + "name": "ons.age.70_80@E14001231", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11622.089110962661, + "kind": "calibration_drift", + "ledger_value": 11937.0, + "name": "ons.age.70_80@E14001232", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10762.034643572099, + "kind": "calibration_drift", + "ledger_value": 11332.0, + "name": "ons.age.70_80@E14001233", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9785.355235031002, + "kind": "calibration_drift", + "ledger_value": 9835.0, + "name": "ons.age.70_80@E14001234", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9848.49470361103, + "kind": "calibration_drift", + "ledger_value": 10137.0, + "name": "ons.age.70_80@E14001235", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6454.861685723961, + "kind": "calibration_drift", + "ledger_value": 7121.0, + "name": "ons.age.70_80@E14001236", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7972.81315764207, + "kind": "calibration_drift", + "ledger_value": 6951.0, + "name": "ons.age.70_80@E14001237", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8543.849051995861, + "kind": "calibration_drift", + "ledger_value": 8957.0, + "name": "ons.age.70_80@E14001238", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11302.379099142627, + "kind": "calibration_drift", + "ledger_value": 11524.0, + "name": "ons.age.70_80@E14001239", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10835.884743654453, + "kind": "calibration_drift", + "ledger_value": 11544.0, + "name": "ons.age.70_80@E14001240", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10381.619838500432, + "kind": "calibration_drift", + "ledger_value": 10085.0, + "name": "ons.age.70_80@E14001241", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11756.841253495586, + "kind": "calibration_drift", + "ledger_value": 13410.0, + "name": "ons.age.70_80@E14001242", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11656.885221933797, + "kind": "calibration_drift", + "ledger_value": 11953.0, + "name": "ons.age.70_80@E14001243", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8180.713276751157, + "kind": "calibration_drift", + "ledger_value": 8581.0, + "name": "ons.age.70_80@E14001244", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9235.661167430815, + "kind": "calibration_drift", + "ledger_value": 10126.0, + "name": "ons.age.70_80@E14001245", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8400.843382765872, + "kind": "calibration_drift", + "ledger_value": 8975.0, + "name": "ons.age.70_80@E14001246", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10982.973471302457, + "kind": "calibration_drift", + "ledger_value": 12129.0, + "name": "ons.age.70_80@E14001247", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8586.060380568575, + "kind": "calibration_drift", + "ledger_value": 8728.0, + "name": "ons.age.70_80@E14001248", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8521.955172098698, + "kind": "calibration_drift", + "ledger_value": 9866.0, + "name": "ons.age.70_80@E14001249", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12313.901682088837, + "kind": "calibration_drift", + "ledger_value": 11952.0, + "name": "ons.age.70_80@E14001250", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5658.379282872601, + "kind": "calibration_drift", + "ledger_value": 6739.0, + "name": "ons.age.70_80@E14001251", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10221.453488962843, + "kind": "calibration_drift", + "ledger_value": 10900.0, + "name": "ons.age.70_80@E14001252", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10761.837394373159, + "kind": "calibration_drift", + "ledger_value": 11440.0, + "name": "ons.age.70_80@E14001253", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8294.328815339397, + "kind": "calibration_drift", + "ledger_value": 8402.0, + "name": "ons.age.70_80@E14001254", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9655.012964372827, + "kind": "calibration_drift", + "ledger_value": 9711.0, + "name": "ons.age.70_80@E14001255", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11588.390437602606, + "kind": "calibration_drift", + "ledger_value": 11783.0, + "name": "ons.age.70_80@E14001256", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4301.926129156387, + "kind": "calibration_drift", + "ledger_value": 4437.0, + "name": "ons.age.70_80@E14001257", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8364.022718563141, + "kind": "calibration_drift", + "ledger_value": 7635.0, + "name": "ons.age.70_80@E14001258", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4175.949412922429, + "kind": "calibration_drift", + "ledger_value": 4549.0, + "name": "ons.age.70_80@E14001259", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4064.656239531387, + "kind": "calibration_drift", + "ledger_value": 4026.0, + "name": "ons.age.70_80@E14001260", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8863.964776952207, + "kind": "calibration_drift", + "ledger_value": 8606.0, + "name": "ons.age.70_80@E14001261", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8600.735720969556, + "kind": "calibration_drift", + "ledger_value": 8804.0, + "name": "ons.age.70_80@E14001262", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9752.74007998662, + "kind": "calibration_drift", + "ledger_value": 9851.0, + "name": "ons.age.70_80@E14001263", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5797.950923245727, + "kind": "calibration_drift", + "ledger_value": 6715.0, + "name": "ons.age.70_80@E14001264", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7699.86625265764, + "kind": "calibration_drift", + "ledger_value": 7332.0, + "name": "ons.age.70_80@E14001265", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9733.103922232349, + "kind": "calibration_drift", + "ledger_value": 10406.0, + "name": "ons.age.70_80@E14001266", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7560.483676795717, + "kind": "calibration_drift", + "ledger_value": 7966.0, + "name": "ons.age.70_80@E14001267", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7763.195897359268, + "kind": "calibration_drift", + "ledger_value": 8823.0, + "name": "ons.age.70_80@E14001268", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10122.549751991146, + "kind": "calibration_drift", + "ledger_value": 10745.0, + "name": "ons.age.70_80@E14001269", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7873.137327848875, + "kind": "calibration_drift", + "ledger_value": 8968.0, + "name": "ons.age.70_80@E14001270", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6925.491101691687, + "kind": "calibration_drift", + "ledger_value": 7056.0, + "name": "ons.age.70_80@E14001271", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8092.148386428032, + "kind": "calibration_drift", + "ledger_value": 9020.0, + "name": "ons.age.70_80@E14001272", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11151.114352067998, + "kind": "calibration_drift", + "ledger_value": 11983.0, + "name": "ons.age.70_80@E14001273", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11314.105564019485, + "kind": "calibration_drift", + "ledger_value": 11383.0, + "name": "ons.age.70_80@E14001274", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10090.282771669128, + "kind": "calibration_drift", + "ledger_value": 10670.0, + "name": "ons.age.70_80@E14001275", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5640.340843629728, + "kind": "calibration_drift", + "ledger_value": 5753.0, + "name": "ons.age.70_80@E14001276", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10060.498142629502, + "kind": "calibration_drift", + "ledger_value": 10268.0, + "name": "ons.age.70_80@E14001277", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7276.838547538046, + "kind": "calibration_drift", + "ledger_value": 7537.0, + "name": "ons.age.70_80@E14001278", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6976.704166434113, + "kind": "calibration_drift", + "ledger_value": 7003.0, + "name": "ons.age.70_80@E14001279", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10322.879027056719, + "kind": "calibration_drift", + "ledger_value": 10607.0, + "name": "ons.age.70_80@E14001280", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10161.22344606715, + "kind": "calibration_drift", + "ledger_value": 10930.0, + "name": "ons.age.70_80@E14001281", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11418.726539136156, + "kind": "calibration_drift", + "ledger_value": 13392.0, + "name": "ons.age.70_80@E14001282", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8174.282952865781, + "kind": "calibration_drift", + "ledger_value": 8616.0, + "name": "ons.age.70_80@E14001283", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8392.480016730904, + "kind": "calibration_drift", + "ledger_value": 9068.0, + "name": "ons.age.70_80@E14001284", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11387.439496148581, + "kind": "calibration_drift", + "ledger_value": 12390.0, + "name": "ons.age.70_80@E14001285", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8019.659305818349, + "kind": "calibration_drift", + "ledger_value": 8729.0, + "name": "ons.age.70_80@E14001286", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9424.566725253659, + "kind": "calibration_drift", + "ledger_value": 10002.0, + "name": "ons.age.70_80@E14001287", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10261.021678269788, + "kind": "calibration_drift", + "ledger_value": 10899.0, + "name": "ons.age.70_80@E14001288", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8238.329767760923, + "kind": "calibration_drift", + "ledger_value": 8268.0, + "name": "ons.age.70_80@E14001289", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7197.544369565005, + "kind": "calibration_drift", + "ledger_value": 5385.0, + "name": "ons.age.70_80@E14001290", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11848.540062526983, + "kind": "calibration_drift", + "ledger_value": 13993.0, + "name": "ons.age.70_80@E14001291", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8965.225143747173, + "kind": "calibration_drift", + "ledger_value": 9526.0, + "name": "ons.age.70_80@E14001292", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5860.326499473504, + "kind": "calibration_drift", + "ledger_value": 6308.0, + "name": "ons.age.70_80@E14001293", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9285.328515723382, + "kind": "calibration_drift", + "ledger_value": 9943.0, + "name": "ons.age.70_80@E14001294", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9464.72666215742, + "kind": "calibration_drift", + "ledger_value": 10151.0, + "name": "ons.age.70_80@E14001295", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6767.620015559922, + "kind": "calibration_drift", + "ledger_value": 7182.0, + "name": "ons.age.70_80@E14001296", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8744.609286674873, + "kind": "calibration_drift", + "ledger_value": 8481.0, + "name": "ons.age.70_80@E14001297", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9560.254449203052, + "kind": "calibration_drift", + "ledger_value": 10697.0, + "name": "ons.age.70_80@E14001298", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8198.662953854508, + "kind": "calibration_drift", + "ledger_value": 8251.0, + "name": "ons.age.70_80@E14001299", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6503.283176197378, + "kind": "calibration_drift", + "ledger_value": 7131.0, + "name": "ons.age.70_80@E14001300", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5487.101128840702, + "kind": "calibration_drift", + "ledger_value": 5706.0, + "name": "ons.age.70_80@E14001301", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7889.967957516667, + "kind": "calibration_drift", + "ledger_value": 8485.0, + "name": "ons.age.70_80@E14001302", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9699.729357772052, + "kind": "calibration_drift", + "ledger_value": 10589.0, + "name": "ons.age.70_80@E14001303", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9699.729357772052, + "kind": "calibration_drift", + "ledger_value": 9585.0, + "name": "ons.age.70_80@E14001304", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4887.835149681576, + "kind": "calibration_drift", + "ledger_value": 4823.0, + "name": "ons.age.70_80@E14001305", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5040.417267520001, + "kind": "calibration_drift", + "ledger_value": 5118.0, + "name": "ons.age.70_80@E14001306", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8290.087957562231, + "kind": "calibration_drift", + "ledger_value": 8914.0, + "name": "ons.age.70_80@E14001307", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8889.035150137215, + "kind": "calibration_drift", + "ledger_value": 10011.0, + "name": "ons.age.70_80@E14001308", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9784.181602297323, + "kind": "calibration_drift", + "ledger_value": 10769.0, + "name": "ons.age.70_80@E14001309", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9910.213977958705, + "kind": "calibration_drift", + "ledger_value": 8253.0, + "name": "ons.age.70_80@E14001310", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9543.38964269386, + "kind": "calibration_drift", + "ledger_value": 10097.0, + "name": "ons.age.70_80@E14001311", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7589.192516516184, + "kind": "calibration_drift", + "ledger_value": 7607.0, + "name": "ons.age.70_80@E14001312", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7680.301921505608, + "kind": "calibration_drift", + "ledger_value": 8541.0, + "name": "ons.age.70_80@E14001313", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7693.974080374618, + "kind": "calibration_drift", + "ledger_value": 8697.0, + "name": "ons.age.70_80@E14001314", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8372.644716982353, + "kind": "calibration_drift", + "ledger_value": 9477.0, + "name": "ons.age.70_80@E14001315", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9596.252428009222, + "kind": "calibration_drift", + "ledger_value": 10925.0, + "name": "ons.age.70_80@E14001316", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6621.50767144666, + "kind": "calibration_drift", + "ledger_value": 7480.0, + "name": "ons.age.70_80@E14001317", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9580.077993696314, + "kind": "calibration_drift", + "ledger_value": 9603.0, + "name": "ons.age.70_80@E14001318", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5946.230518027117, + "kind": "calibration_drift", + "ledger_value": 3524.0, + "name": "ons.age.70_80@E14001319", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8139.164978901605, + "kind": "calibration_drift", + "ledger_value": 8282.0, + "name": "ons.age.70_80@E14001320", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6393.8327835725695, + "kind": "calibration_drift", + "ledger_value": 7546.0, + "name": "ons.age.70_80@E14001321", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7154.228445478238, + "kind": "calibration_drift", + "ledger_value": 10108.0, + "name": "ons.age.70_80@E14001322", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4813.3735770825115, + "kind": "calibration_drift", + "ledger_value": 5898.0, + "name": "ons.age.70_80@E14001323", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7229.863152706946, + "kind": "calibration_drift", + "ledger_value": 7841.0, + "name": "ons.age.70_80@E14001324", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6812.48922727792, + "kind": "calibration_drift", + "ledger_value": 7283.0, + "name": "ons.age.70_80@E14001325", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6878.73048932165, + "kind": "calibration_drift", + "ledger_value": 8211.0, + "name": "ons.age.70_80@E14001326", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5387.072872193443, + "kind": "calibration_drift", + "ledger_value": 5658.0, + "name": "ons.age.70_80@E14001327", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5803.209507192765, + "kind": "calibration_drift", + "ledger_value": 6871.0, + "name": "ons.age.70_80@E14001328", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9890.942731222469, + "kind": "calibration_drift", + "ledger_value": 10078.0, + "name": "ons.age.70_80@E14001329", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12147.923853122336, + "kind": "calibration_drift", + "ledger_value": 12810.0, + "name": "ons.age.70_80@E14001330", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5302.826643498175, + "kind": "calibration_drift", + "ledger_value": 5563.0, + "name": "ons.age.70_80@E14001331", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3945.447514375838, + "kind": "calibration_drift", + "ledger_value": 3906.0, + "name": "ons.age.70_80@E14001332", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4265.639449249955, + "kind": "calibration_drift", + "ledger_value": 4608.0, + "name": "ons.age.70_80@E14001333", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5503.548524166283, + "kind": "calibration_drift", + "ledger_value": 6052.0, + "name": "ons.age.70_80@E14001334", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11407.197323458235, + "kind": "calibration_drift", + "ledger_value": 11465.0, + "name": "ons.age.70_80@E14001335", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7998.455016932521, + "kind": "calibration_drift", + "ledger_value": 8499.0, + "name": "ons.age.70_80@E14001336", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7614.31220200093, + "kind": "calibration_drift", + "ledger_value": 8887.0, + "name": "ons.age.70_80@E14001337", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6386.574013051654, + "kind": "calibration_drift", + "ledger_value": 6045.0, + "name": "ons.age.70_80@E14001338", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7316.13058796648, + "kind": "calibration_drift", + "ledger_value": 7664.0, + "name": "ons.age.70_80@E14001339", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6198.279927745519, + "kind": "calibration_drift", + "ledger_value": 7175.0, + "name": "ons.age.70_80@E14001340", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6654.379250449663, + "kind": "calibration_drift", + "ledger_value": 7931.0, + "name": "ons.age.70_80@E14001341", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7728.775912144602, + "kind": "calibration_drift", + "ledger_value": 8572.0, + "name": "ons.age.70_80@E14001342", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14541.487094581731, + "kind": "calibration_drift", + "ledger_value": 14678.0, + "name": "ons.age.70_80@E14001343", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11951.792499265875, + "kind": "calibration_drift", + "ledger_value": 12151.0, + "name": "ons.age.70_80@E14001344", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6625.225818846639, + "kind": "calibration_drift", + "ledger_value": 6979.0, + "name": "ons.age.70_80@E14001345", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5918.383314452615, + "kind": "calibration_drift", + "ledger_value": 6522.0, + "name": "ons.age.70_80@E14001346", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10462.097511667102, + "kind": "calibration_drift", + "ledger_value": 11226.0, + "name": "ons.age.70_80@E14001347", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8937.763771560292, + "kind": "calibration_drift", + "ledger_value": 9015.0, + "name": "ons.age.70_80@E14001348", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9202.661376448503, + "kind": "calibration_drift", + "ledger_value": 8867.0, + "name": "ons.age.70_80@E14001349", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10645.697066038514, + "kind": "calibration_drift", + "ledger_value": 10593.0, + "name": "ons.age.70_80@E14001350", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11150.5958405599, + "kind": "calibration_drift", + "ledger_value": 12145.0, + "name": "ons.age.70_80@E14001351", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5043.796803795137, + "kind": "calibration_drift", + "ledger_value": 4804.0, + "name": "ons.age.70_80@E14001352", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3494.861306782008, + "kind": "calibration_drift", + "ledger_value": 2706.0, + "name": "ons.age.70_80@E14001353", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4096.175489744247, + "kind": "calibration_drift", + "ledger_value": 4804.0, + "name": "ons.age.70_80@E14001354", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9339.355071312479, + "kind": "calibration_drift", + "ledger_value": 9840.0, + "name": "ons.age.70_80@E14001355", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8919.97007401025, + "kind": "calibration_drift", + "ledger_value": 11346.0, + "name": "ons.age.70_80@E14001356", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9828.651434197875, + "kind": "calibration_drift", + "ledger_value": 10608.0, + "name": "ons.age.70_80@E14001357", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9620.3069678197, + "kind": "calibration_drift", + "ledger_value": 9895.0, + "name": "ons.age.70_80@E14001358", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8163.5427339836115, + "kind": "calibration_drift", + "ledger_value": 8843.0, + "name": "ons.age.70_80@E14001359", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8391.733985107197, + "kind": "calibration_drift", + "ledger_value": 9946.0, + "name": "ons.age.70_80@E14001360", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9787.880024777407, + "kind": "calibration_drift", + "ledger_value": 8740.0, + "name": "ons.age.70_80@E14001361", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9821.629362715685, + "kind": "calibration_drift", + "ledger_value": 10029.0, + "name": "ons.age.70_80@E14001362", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11220.55156403373, + "kind": "calibration_drift", + "ledger_value": 12559.0, + "name": "ons.age.70_80@E14001363", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10001.816505945473, + "kind": "calibration_drift", + "ledger_value": 10117.0, + "name": "ons.age.70_80@E14001364", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11474.59737473532, + "kind": "calibration_drift", + "ledger_value": 12516.0, + "name": "ons.age.70_80@E14001365", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9707.688362949199, + "kind": "calibration_drift", + "ledger_value": 9297.0, + "name": "ons.age.70_80@E14001366", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7424.7655842815375, + "kind": "calibration_drift", + "ledger_value": 7772.0, + "name": "ons.age.70_80@E14001367", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9548.587159085875, + "kind": "calibration_drift", + "ledger_value": 10617.0, + "name": "ons.age.70_80@E14001368", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7698.241736149012, + "kind": "calibration_drift", + "ledger_value": 6913.0, + "name": "ons.age.70_80@E14001369", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6118.216477896619, + "kind": "calibration_drift", + "ledger_value": 9069.0, + "name": "ons.age.70_80@E14001370", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5948.246843171815, + "kind": "calibration_drift", + "ledger_value": 6817.0, + "name": "ons.age.70_80@E14001371", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11260.956767365664, + "kind": "calibration_drift", + "ledger_value": 12453.0, + "name": "ons.age.70_80@E14001372", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10714.576486307635, + "kind": "calibration_drift", + "ledger_value": 11252.0, + "name": "ons.age.70_80@E14001373", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13338.977078176615, + "kind": "calibration_drift", + "ledger_value": 13402.0, + "name": "ons.age.70_80@E14001374", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11755.628170922118, + "kind": "calibration_drift", + "ledger_value": 12410.0, + "name": "ons.age.70_80@E14001375", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8714.11456051907, + "kind": "calibration_drift", + "ledger_value": 9128.0, + "name": "ons.age.70_80@E14001376", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8100.458729534769, + "kind": "calibration_drift", + "ledger_value": 8324.0, + "name": "ons.age.70_80@E14001377", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7857.36266493223, + "kind": "calibration_drift", + "ledger_value": 8591.0, + "name": "ons.age.70_80@E14001378", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7778.927888048223, + "kind": "calibration_drift", + "ledger_value": 8774.0, + "name": "ons.age.70_80@E14001379", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8753.919448864743, + "kind": "calibration_drift", + "ledger_value": 8905.0, + "name": "ons.age.70_80@E14001380", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11576.55548566633, + "kind": "calibration_drift", + "ledger_value": 12400.0, + "name": "ons.age.70_80@E14001381", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9846.62083622112, + "kind": "calibration_drift", + "ledger_value": 10039.0, + "name": "ons.age.70_80@E14001382", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9539.217822136323, + "kind": "calibration_drift", + "ledger_value": 9780.0, + "name": "ons.age.70_80@E14001383", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8816.378407708433, + "kind": "calibration_drift", + "ledger_value": 9854.0, + "name": "ons.age.70_80@E14001384", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12380.996893694835, + "kind": "calibration_drift", + "ledger_value": 12881.0, + "name": "ons.age.70_80@E14001385", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10309.160345270586, + "kind": "calibration_drift", + "ledger_value": 10959.0, + "name": "ons.age.70_80@E14001386", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11797.474588476796, + "kind": "calibration_drift", + "ledger_value": 12404.0, + "name": "ons.age.70_80@E14001387", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11861.255116953373, + "kind": "calibration_drift", + "ledger_value": 12429.0, + "name": "ons.age.70_80@E14001388", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9809.92989507767, + "kind": "calibration_drift", + "ledger_value": 10383.0, + "name": "ons.age.70_80@E14001389", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10638.142421719192, + "kind": "calibration_drift", + "ledger_value": 11483.0, + "name": "ons.age.70_80@E14001390", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11106.116146199398, + "kind": "calibration_drift", + "ledger_value": 11153.0, + "name": "ons.age.70_80@E14001391", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9026.872890355033, + "kind": "calibration_drift", + "ledger_value": 9840.0, + "name": "ons.age.70_80@E14001392", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9699.729357772052, + "kind": "calibration_drift", + "ledger_value": 10162.0, + "name": "ons.age.70_80@E14001393", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8930.286597707178, + "kind": "calibration_drift", + "ledger_value": 10064.0, + "name": "ons.age.70_80@E14001394", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12045.09137036351, + "kind": "calibration_drift", + "ledger_value": 12840.0, + "name": "ons.age.70_80@E14001395", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14180.972143541905, + "kind": "calibration_drift", + "ledger_value": 14610.0, + "name": "ons.age.70_80@E14001396", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11779.988446990948, + "kind": "calibration_drift", + "ledger_value": 13465.0, + "name": "ons.age.70_80@E14001397", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11205.726991663047, + "kind": "calibration_drift", + "ledger_value": 12197.0, + "name": "ons.age.70_80@E14001398", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11088.413030594722, + "kind": "calibration_drift", + "ledger_value": 11439.0, + "name": "ons.age.70_80@E14001399", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9215.482574379468, + "kind": "calibration_drift", + "ledger_value": 9535.0, + "name": "ons.age.70_80@E14001400", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8726.837133850568, + "kind": "calibration_drift", + "ledger_value": 8850.0, + "name": "ons.age.70_80@E14001401", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9624.930899164903, + "kind": "calibration_drift", + "ledger_value": 10208.0, + "name": "ons.age.70_80@E14001402", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9835.860892419056, + "kind": "calibration_drift", + "ledger_value": 9052.0, + "name": "ons.age.70_80@E14001403", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9663.534129766944, + "kind": "calibration_drift", + "ledger_value": 10285.0, + "name": "ons.age.70_80@E14001404", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12832.737009102451, + "kind": "calibration_drift", + "ledger_value": 12954.0, + "name": "ons.age.70_80@E14001405", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9230.552413178324, + "kind": "calibration_drift", + "ledger_value": 8523.0, + "name": "ons.age.70_80@E14001406", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7835.487338177541, + "kind": "calibration_drift", + "ledger_value": 8312.0, + "name": "ons.age.70_80@E14001407", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9091.044828984448, + "kind": "calibration_drift", + "ledger_value": 9169.0, + "name": "ons.age.70_80@E14001408", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7481.0900930382595, + "kind": "calibration_drift", + "ledger_value": 8080.0, + "name": "ons.age.70_80@E14001409", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5238.0122502809045, + "kind": "calibration_drift", + "ledger_value": 5106.0, + "name": "ons.age.70_80@E14001410", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7574.672086470936, + "kind": "calibration_drift", + "ledger_value": 7905.0, + "name": "ons.age.70_80@E14001411", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5475.571016575513, + "kind": "calibration_drift", + "ledger_value": 6123.0, + "name": "ons.age.70_80@E14001412", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8461.990634436626, + "kind": "calibration_drift", + "ledger_value": 8853.0, + "name": "ons.age.70_80@E14001413", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8070.056476146985, + "kind": "calibration_drift", + "ledger_value": 8560.0, + "name": "ons.age.70_80@E14001414", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8607.955041650685, + "kind": "calibration_drift", + "ledger_value": 8931.0, + "name": "ons.age.70_80@E14001415", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7365.285088341809, + "kind": "calibration_drift", + "ledger_value": 7649.0, + "name": "ons.age.70_80@E14001416", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8970.38609930282, + "kind": "calibration_drift", + "ledger_value": 8610.0, + "name": "ons.age.70_80@E14001417", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8293.086145386087, + "kind": "calibration_drift", + "ledger_value": 10739.0, + "name": "ons.age.70_80@E14001418", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5366.6181302635805, + "kind": "calibration_drift", + "ledger_value": 6256.0, + "name": "ons.age.70_80@E14001419", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8802.482201643257, + "kind": "calibration_drift", + "ledger_value": 8511.0, + "name": "ons.age.70_80@E14001420", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4132.942740426274, + "kind": "calibration_drift", + "ledger_value": 4061.0, + "name": "ons.age.70_80@E14001421", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9725.3125788743, + "kind": "calibration_drift", + "ledger_value": 10653.0, + "name": "ons.age.70_80@E14001422", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10469.001233629928, + "kind": "calibration_drift", + "ledger_value": 10956.0, + "name": "ons.age.70_80@E14001423", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11136.788396634245, + "kind": "calibration_drift", + "ledger_value": 12655.0, + "name": "ons.age.70_80@E14001424", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8228.96043081137, + "kind": "calibration_drift", + "ledger_value": 8728.0, + "name": "ons.age.70_80@E14001425", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9239.8428504483, + "kind": "calibration_drift", + "ledger_value": 9745.0, + "name": "ons.age.70_80@E14001426", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6946.426414397142, + "kind": "calibration_drift", + "ledger_value": 7470.0, + "name": "ons.age.70_80@E14001427", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8304.28989988576, + "kind": "calibration_drift", + "ledger_value": 8837.0, + "name": "ons.age.70_80@E14001428", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10046.069363727192, + "kind": "calibration_drift", + "ledger_value": 10570.0, + "name": "ons.age.70_80@E14001429", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3667.2571066537466, + "kind": "calibration_drift", + "ledger_value": 3368.0, + "name": "ons.age.70_80@E14001430", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7591.135421125723, + "kind": "calibration_drift", + "ledger_value": 7843.0, + "name": "ons.age.70_80@E14001431", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6326.768055933678, + "kind": "calibration_drift", + "ledger_value": 6522.0, + "name": "ons.age.70_80@E14001432", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7189.181003530037, + "kind": "calibration_drift", + "ledger_value": 6977.0, + "name": "ons.age.70_80@E14001433", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5420.5164738733665, + "kind": "calibration_drift", + "ledger_value": 5675.0, + "name": "ons.age.70_80@E14001434", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7638.968351868169, + "kind": "calibration_drift", + "ledger_value": 5925.0, + "name": "ons.age.70_80@E14001435", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8809.651428839705, + "kind": "calibration_drift", + "ledger_value": 8915.0, + "name": "ons.age.70_80@E14001436", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10474.405861680827, + "kind": "calibration_drift", + "ledger_value": 10570.0, + "name": "ons.age.70_80@E14001437", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6778.764595299913, + "kind": "calibration_drift", + "ledger_value": 5992.0, + "name": "ons.age.70_80@E14001438", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6649.122559297968, + "kind": "calibration_drift", + "ledger_value": 8641.0, + "name": "ons.age.70_80@E14001439", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9217.750940167254, + "kind": "calibration_drift", + "ledger_value": 10143.0, + "name": "ons.age.70_80@E14001440", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8986.62419131175, + "kind": "calibration_drift", + "ledger_value": 9997.0, + "name": "ons.age.70_80@E14001441", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8661.56737392201, + "kind": "calibration_drift", + "ledger_value": 9408.0, + "name": "ons.age.70_80@E14001442", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10654.553555070826, + "kind": "calibration_drift", + "ledger_value": 10836.0, + "name": "ons.age.70_80@E14001443", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11330.261542838038, + "kind": "calibration_drift", + "ledger_value": 12051.0, + "name": "ons.age.70_80@E14001444", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8117.120135013572, + "kind": "calibration_drift", + "ledger_value": 8433.0, + "name": "ons.age.70_80@E14001445", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7037.950042704337, + "kind": "calibration_drift", + "ledger_value": 7589.0, + "name": "ons.age.70_80@E14001446", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7970.761229401637, + "kind": "calibration_drift", + "ledger_value": 8059.0, + "name": "ons.age.70_80@E14001447", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7914.31528288052, + "kind": "calibration_drift", + "ledger_value": 8285.0, + "name": "ons.age.70_80@E14001448", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9806.017088619748, + "kind": "calibration_drift", + "ledger_value": 10969.0, + "name": "ons.age.70_80@E14001449", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8911.018573358846, + "kind": "calibration_drift", + "ledger_value": 9527.0, + "name": "ons.age.70_80@E14001450", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9299.631426201222, + "kind": "calibration_drift", + "ledger_value": 9986.0, + "name": "ons.age.70_80@E14001451", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8945.259471924575, + "kind": "calibration_drift", + "ledger_value": 8914.0, + "name": "ons.age.70_80@E14001452", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9464.164501940446, + "kind": "calibration_drift", + "ledger_value": 9362.0, + "name": "ons.age.70_80@E14001453", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8402.488602648264, + "kind": "calibration_drift", + "ledger_value": 9241.0, + "name": "ons.age.70_80@E14001454", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8510.17492776728, + "kind": "calibration_drift", + "ledger_value": 9985.0, + "name": "ons.age.70_80@E14001455", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8252.551435004347, + "kind": "calibration_drift", + "ledger_value": 8882.0, + "name": "ons.age.70_80@E14001456", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9672.055295161063, + "kind": "calibration_drift", + "ledger_value": 10571.0, + "name": "ons.age.70_80@E14001457", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10303.27245668229, + "kind": "calibration_drift", + "ledger_value": 11275.0, + "name": "ons.age.70_80@E14001458", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6468.327231038123, + "kind": "calibration_drift", + "ledger_value": 5765.0, + "name": "ons.age.70_80@E14001459", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9363.537823102268, + "kind": "calibration_drift", + "ledger_value": 10634.0, + "name": "ons.age.70_80@E14001460", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12013.462461313815, + "kind": "calibration_drift", + "ledger_value": 12761.0, + "name": "ons.age.70_80@E14001461", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9461.264938716058, + "kind": "calibration_drift", + "ledger_value": 10207.0, + "name": "ons.age.70_80@E14001462", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10995.439620675334, + "kind": "calibration_drift", + "ledger_value": 11692.0, + "name": "ons.age.70_80@E14001463", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10242.48962778898, + "kind": "calibration_drift", + "ledger_value": 10357.0, + "name": "ons.age.70_80@E14001464", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9340.538566506106, + "kind": "calibration_drift", + "ledger_value": 9774.0, + "name": "ons.age.70_80@E14001465", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6847.407316530308, + "kind": "calibration_drift", + "ledger_value": 7118.0, + "name": "ons.age.70_80@E14001466", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3740.2393102607757, + "kind": "calibration_drift", + "ledger_value": 3468.0, + "name": "ons.age.70_80@E14001467", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9097.144968087148, + "kind": "calibration_drift", + "ledger_value": 9449.0, + "name": "ons.age.70_80@E14001468", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7764.690108865282, + "kind": "calibration_drift", + "ledger_value": 8266.0, + "name": "ons.age.70_80@E14001469", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8828.590964918121, + "kind": "calibration_drift", + "ledger_value": 9119.0, + "name": "ons.age.70_80@E14001470", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10331.350880151103, + "kind": "calibration_drift", + "ledger_value": 10702.0, + "name": "ons.age.70_80@E14001471", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9483.741484935033, + "kind": "calibration_drift", + "ledger_value": 10453.0, + "name": "ons.age.70_80@E14001472", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10393.76052669506, + "kind": "calibration_drift", + "ledger_value": 11061.0, + "name": "ons.age.70_80@E14001473", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10006.215163081788, + "kind": "calibration_drift", + "ledger_value": 10080.0, + "name": "ons.age.70_80@E14001474", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12171.47879458298, + "kind": "calibration_drift", + "ledger_value": 13138.0, + "name": "ons.age.70_80@E14001475", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11563.53703853643, + "kind": "calibration_drift", + "ledger_value": 11047.0, + "name": "ons.age.70_80@E14001476", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5489.050708044346, + "kind": "calibration_drift", + "ledger_value": 6042.0, + "name": "ons.age.70_80@E14001477", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6786.477038978386, + "kind": "calibration_drift", + "ledger_value": 6704.0, + "name": "ons.age.70_80@E14001478", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9003.932808518552, + "kind": "calibration_drift", + "ledger_value": 9139.0, + "name": "ons.age.70_80@E14001479", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8005.950486492162, + "kind": "calibration_drift", + "ledger_value": 8808.0, + "name": "ons.age.70_80@E14001480", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8895.639947537698, + "kind": "calibration_drift", + "ledger_value": 10574.0, + "name": "ons.age.70_80@E14001481", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10497.577955446355, + "kind": "calibration_drift", + "ledger_value": 11316.0, + "name": "ons.age.70_80@E14001482", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8304.03347592714, + "kind": "calibration_drift", + "ledger_value": 9406.0, + "name": "ons.age.70_80@E14001483", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12881.595635679374, + "kind": "calibration_drift", + "ledger_value": 13301.0, + "name": "ons.age.70_80@E14001484", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13068.359744623243, + "kind": "calibration_drift", + "ledger_value": 13262.0, + "name": "ons.age.70_80@E14001485", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12295.528815795036, + "kind": "calibration_drift", + "ledger_value": 13042.0, + "name": "ons.age.70_80@E14001486", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12446.424452982543, + "kind": "calibration_drift", + "ledger_value": 12848.0, + "name": "ons.age.70_80@E14001487", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9584.811974470822, + "kind": "calibration_drift", + "ledger_value": 10945.0, + "name": "ons.age.70_80@E14001488", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10615.005090683773, + "kind": "calibration_drift", + "ledger_value": 10203.0, + "name": "ons.age.70_80@E14001489", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8633.108994720535, + "kind": "calibration_drift", + "ledger_value": 10289.0, + "name": "ons.age.70_80@E14001490", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10454.700666706929, + "kind": "calibration_drift", + "ledger_value": 10591.0, + "name": "ons.age.70_80@E14001491", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8323.2258229838, + "kind": "calibration_drift", + "ledger_value": 9284.0, + "name": "ons.age.70_80@E14001492", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13324.469399594731, + "kind": "calibration_drift", + "ledger_value": 14175.0, + "name": "ons.age.70_80@E14001493", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11814.122420867157, + "kind": "calibration_drift", + "ledger_value": 12298.0, + "name": "ons.age.70_80@E14001494", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11262.071225339663, + "kind": "calibration_drift", + "ledger_value": 11626.0, + "name": "ons.age.70_80@E14001495", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7538.0359367716355, + "kind": "calibration_drift", + "ledger_value": 8287.0, + "name": "ons.age.70_80@E14001496", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11727.608922212987, + "kind": "calibration_drift", + "ledger_value": 12209.0, + "name": "ons.age.70_80@E14001497", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10513.944463607932, + "kind": "calibration_drift", + "ledger_value": 10645.0, + "name": "ons.age.70_80@E14001498", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7150.28346149948, + "kind": "calibration_drift", + "ledger_value": 7426.0, + "name": "ons.age.70_80@E14001499", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6187.707370682447, + "kind": "calibration_drift", + "ledger_value": 6733.0, + "name": "ons.age.70_80@E14001500", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8351.18589693325, + "kind": "calibration_drift", + "ledger_value": 8644.0, + "name": "ons.age.70_80@E14001501", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9701.573637782123, + "kind": "calibration_drift", + "ledger_value": 9608.0, + "name": "ons.age.70_80@E14001502", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7933.416775760698, + "kind": "calibration_drift", + "ledger_value": 7854.0, + "name": "ons.age.70_80@E14001503", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11085.010481913041, + "kind": "calibration_drift", + "ledger_value": 11804.0, + "name": "ons.age.70_80@E14001504", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8290.383831360637, + "kind": "calibration_drift", + "ledger_value": 8314.0, + "name": "ons.age.70_80@E14001505", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7883.350246892301, + "kind": "calibration_drift", + "ledger_value": 9463.0, + "name": "ons.age.70_80@E14001506", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7037.535819386567, + "kind": "calibration_drift", + "ledger_value": 7517.0, + "name": "ons.age.70_80@E14001507", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11215.707801129307, + "kind": "calibration_drift", + "ledger_value": 11358.0, + "name": "ons.age.70_80@E14001508", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9976.864482279825, + "kind": "calibration_drift", + "ledger_value": 10206.0, + "name": "ons.age.70_80@E14001509", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8452.818546686014, + "kind": "calibration_drift", + "ledger_value": 8870.0, + "name": "ons.age.70_80@E14001510", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11870.239817964994, + "kind": "calibration_drift", + "ledger_value": 12329.0, + "name": "ons.age.70_80@E14001511", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9585.670717667992, + "kind": "calibration_drift", + "ledger_value": 9195.0, + "name": "ons.age.70_80@E14001512", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10306.70459274381, + "kind": "calibration_drift", + "ledger_value": 10023.0, + "name": "ons.age.70_80@E14001513", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10714.49758662806, + "kind": "calibration_drift", + "ledger_value": 10877.0, + "name": "ons.age.70_80@E14001514", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8058.616022608586, + "kind": "calibration_drift", + "ledger_value": 8611.0, + "name": "ons.age.70_80@E14001515", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6960.92423051908, + "kind": "calibration_drift", + "ledger_value": 7440.0, + "name": "ons.age.70_80@E14001516", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7280.329858359249, + "kind": "calibration_drift", + "ledger_value": 7449.0, + "name": "ons.age.70_80@E14001517", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8112.504503758424, + "kind": "calibration_drift", + "ledger_value": 8556.0, + "name": "ons.age.70_80@E14001518", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8048.714112821903, + "kind": "calibration_drift", + "ledger_value": 9998.0, + "name": "ons.age.70_80@E14001519", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8340.524577730655, + "kind": "calibration_drift", + "ledger_value": 7997.0, + "name": "ons.age.70_80@E14001520", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8654.466402760245, + "kind": "calibration_drift", + "ledger_value": 8982.0, + "name": "ons.age.70_80@E14001521", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9718.152432952855, + "kind": "calibration_drift", + "ledger_value": 10188.0, + "name": "ons.age.70_80@E14001522", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10621.06064109117, + "kind": "calibration_drift", + "ledger_value": 10948.0, + "name": "ons.age.70_80@E14001523", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9298.702011411373, + "kind": "calibration_drift", + "ledger_value": 9328.0, + "name": "ons.age.70_80@E14001524", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4068.0773413555407, + "kind": "calibration_drift", + "ledger_value": 3988.0, + "name": "ons.age.70_80@E14001525", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11602.118981848684, + "kind": "calibration_drift", + "ledger_value": 12455.0, + "name": "ons.age.70_80@E14001526", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4802.307897022095, + "kind": "calibration_drift", + "ledger_value": 6231.0, + "name": "ons.age.70_80@E14001527", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7031.9339421367295, + "kind": "calibration_drift", + "ledger_value": 7413.0, + "name": "ons.age.70_80@E14001528", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9933.785257231784, + "kind": "calibration_drift", + "ledger_value": 10998.0, + "name": "ons.age.70_80@E14001529", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13038.396640468352, + "kind": "calibration_drift", + "ledger_value": 13836.0, + "name": "ons.age.70_80@E14001530", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8318.984965206637, + "kind": "calibration_drift", + "ledger_value": 9012.0, + "name": "ons.age.70_80@E14001531", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8666.538053735245, + "kind": "calibration_drift", + "ledger_value": 8879.0, + "name": "ons.age.70_80@E14001532", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11176.474536977325, + "kind": "calibration_drift", + "ledger_value": 11563.0, + "name": "ons.age.70_80@E14001533", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7425.446094017873, + "kind": "calibration_drift", + "ledger_value": 7748.0, + "name": "ons.age.70_80@E14001534", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9617.870940212817, + "kind": "calibration_drift", + "ledger_value": 10265.0, + "name": "ons.age.70_80@E14001535", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7752.051317619277, + "kind": "calibration_drift", + "ledger_value": 8180.0, + "name": "ons.age.70_80@E14001536", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7717.335458606202, + "kind": "calibration_drift", + "ledger_value": 8151.0, + "name": "ons.age.70_80@E14001537", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9686.632010962576, + "kind": "calibration_drift", + "ledger_value": 10149.0, + "name": "ons.age.70_80@E14001538", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10081.603806915859, + "kind": "calibration_drift", + "ledger_value": 11113.0, + "name": "ons.age.70_80@E14001539", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11109.074884183467, + "kind": "calibration_drift", + "ledger_value": 11749.0, + "name": "ons.age.70_80@E14001540", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7761.341754889252, + "kind": "calibration_drift", + "ledger_value": 8389.0, + "name": "ons.age.70_80@E14001541", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9680.882196813534, + "kind": "calibration_drift", + "ledger_value": 10379.0, + "name": "ons.age.70_80@E14001542", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9762.277078755265, + "kind": "calibration_drift", + "ledger_value": 10830.0, + "name": "ons.age.70_80@E14001543", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12322.075433232294, + "kind": "calibration_drift", + "ledger_value": 13306.0, + "name": "ons.age.70_80@E14001544", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9859.73591553434, + "kind": "calibration_drift", + "ledger_value": 10976.0, + "name": "ons.age.70_80@E14001545", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6413.123755228698, + "kind": "calibration_drift", + "ledger_value": 6408.0, + "name": "ons.age.70_80@E14001546", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7455.102511078188, + "kind": "calibration_drift", + "ledger_value": 7964.0, + "name": "ons.age.70_80@E14001547", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10909.22199581957, + "kind": "calibration_drift", + "ledger_value": 12844.0, + "name": "ons.age.70_80@E14001548", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8716.925361603937, + "kind": "calibration_drift", + "ledger_value": 9759.0, + "name": "ons.age.70_80@E14001549", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4411.478334246506, + "kind": "calibration_drift", + "ledger_value": 4660.0, + "name": "ons.age.70_80@E14001550", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12296.199463071425, + "kind": "calibration_drift", + "ledger_value": 12676.0, + "name": "ons.age.70_80@E14001551", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12854.680982484297, + "kind": "calibration_drift", + "ledger_value": 13834.0, + "name": "ons.age.70_80@E14001552", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5220.413988042028, + "kind": "calibration_drift", + "ledger_value": 5285.0, + "name": "ons.age.70_80@E14001553", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10619.956045577117, + "kind": "calibration_drift", + "ledger_value": 10952.0, + "name": "ons.age.70_80@E14001554", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9452.181613104967, + "kind": "calibration_drift", + "ledger_value": 9475.0, + "name": "ons.age.70_80@E14001555", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7728.233476847524, + "kind": "calibration_drift", + "ledger_value": 8580.0, + "name": "ons.age.70_80@E14001556", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8983.813390226884, + "kind": "calibration_drift", + "ledger_value": 10506.0, + "name": "ons.age.70_80@E14001557", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7232.659121141276, + "kind": "calibration_drift", + "ledger_value": 7158.0, + "name": "ons.age.70_80@E14001558", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3669.200011263285, + "kind": "calibration_drift", + "ledger_value": 4188.0, + "name": "ons.age.70_80@E14001559", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9730.87725219107, + "kind": "calibration_drift", + "ledger_value": 8962.0, + "name": "ons.age.70_80@E14001560", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9100.84133995675, + "kind": "calibration_drift", + "ledger_value": 9850.0, + "name": "ons.age.70_80@E14001561", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7977.674813824412, + "kind": "calibration_drift", + "ledger_value": 7292.0, + "name": "ons.age.70_80@E14001562", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4421.340794193402, + "kind": "calibration_drift", + "ledger_value": 4477.0, + "name": "ons.age.70_80@E14001563", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8713.483363082469, + "kind": "calibration_drift", + "ledger_value": 9058.0, + "name": "ons.age.70_80@E14001564", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8880.28714816432, + "kind": "calibration_drift", + "ledger_value": 9014.0, + "name": "ons.age.70_80@E14001565", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7909.002505214176, + "kind": "calibration_drift", + "ledger_value": 8336.0, + "name": "ons.age.70_80@E14001566", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9112.301518415043, + "kind": "calibration_drift", + "ledger_value": 10191.0, + "name": "ons.age.70_80@E14001567", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6822.682129443441, + "kind": "calibration_drift", + "ledger_value": 6580.0, + "name": "ons.age.70_80@E14001568", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10415.51496507931, + "kind": "calibration_drift", + "ledger_value": 13166.0, + "name": "ons.age.70_80@E14001569", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8356.580662524204, + "kind": "calibration_drift", + "ledger_value": 11561.0, + "name": "ons.age.70_80@E14001570", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10145.595033400392, + "kind": "calibration_drift", + "ledger_value": 9872.0, + "name": "ons.age.70_80@E14001571", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10516.607327793594, + "kind": "calibration_drift", + "ledger_value": 11883.0, + "name": "ons.age.70_80@E14001572", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7445.171013911665, + "kind": "calibration_drift", + "ledger_value": 7790.0, + "name": "ons.age.70_80@E14001573", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7776.75677978625, + "kind": "calibration_drift", + "ledger_value": 7746.0, + "name": "ons.age.70_80@E14001574", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13579.433714141884, + "kind": "calibration_drift", + "ledger_value": 14756.0, + "name": "ons.age.70_80@E14001575", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4565.786382575639, + "kind": "calibration_drift", + "ledger_value": 4673.0, + "name": "ons.age.70_80@E14001576", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9746.082919522463, + "kind": "calibration_drift", + "ledger_value": 10201.0, + "name": "ons.age.70_80@E14001577", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10890.483321920468, + "kind": "calibration_drift", + "ledger_value": 11137.0, + "name": "ons.age.70_80@E14001578", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12926.72625239637, + "kind": "calibration_drift", + "ledger_value": 13624.0, + "name": "ons.age.70_80@E14001579", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12024.192817736037, + "kind": "calibration_drift", + "ledger_value": 12189.0, + "name": "ons.age.70_80@E14001580", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10362.338729304249, + "kind": "calibration_drift", + "ledger_value": 10096.0, + "name": "ons.age.70_80@E14001581", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10170.169537604608, + "kind": "calibration_drift", + "ledger_value": 11616.0, + "name": "ons.age.70_80@E14001582", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10432.13535834843, + "kind": "calibration_drift", + "ledger_value": 10126.0, + "name": "ons.age.70_80@E14001583", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7794.272508651938, + "kind": "calibration_drift", + "ledger_value": 8352.0, + "name": "ons.age.70_80@E14001584", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9581.379838409302, + "kind": "calibration_drift", + "ledger_value": 9724.0, + "name": "ons.age.70_80@E14001585", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6666.480488804505, + "kind": "calibration_drift", + "ledger_value": 7648.0, + "name": "ons.age.70_80@E14001586", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10538.95566203326, + "kind": "calibration_drift", + "ledger_value": 10598.0, + "name": "ons.age.70_80@E14001587", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8001.453204756378, + "kind": "calibration_drift", + "ledger_value": 8437.0, + "name": "ons.age.70_80@E14001588", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10411.86800315756, + "kind": "calibration_drift", + "ledger_value": 11937.0, + "name": "ons.age.70_80@E14001589", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10383.87834182827, + "kind": "calibration_drift", + "ledger_value": 11493.0, + "name": "ons.age.70_80@E14001590", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9081.17559482264, + "kind": "calibration_drift", + "ledger_value": 9588.0, + "name": "ons.age.70_80@E14001591", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7599.991910158036, + "kind": "calibration_drift", + "ledger_value": 7960.0, + "name": "ons.age.70_80@E14001592", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7223.516709541521, + "kind": "calibration_drift", + "ledger_value": 8703.0, + "name": "ons.age.70_80@E14001593", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7244.381191852813, + "kind": "calibration_drift", + "ledger_value": 7930.0, + "name": "ons.age.70_80@E14001594", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8139.143008074991, + "kind": "calibration_drift", + "ledger_value": 8175.0, + "name": "ons.age.70_80@E14001595", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8573.909829913999, + "kind": "calibration_drift", + "ledger_value": 9262.0, + "name": "ons.age.70_80@E14001596", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7975.771359054661, + "kind": "calibration_drift", + "ledger_value": 8816.0, + "name": "ons.age.70_80@E14001597", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7698.951833265189, + "kind": "calibration_drift", + "ledger_value": 8602.0, + "name": "ons.age.70_80@E14001598", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12982.725299974843, + "kind": "calibration_drift", + "ledger_value": 12639.0, + "name": "ons.age.70_80@E14001599", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7230.297599048646, + "kind": "calibration_drift", + "ledger_value": 7000.0, + "name": "ons.age.70_80@E14001600", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12307.36376773131, + "kind": "calibration_drift", + "ledger_value": 12688.0, + "name": "ons.age.70_80@E14001601", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7171.98087338265, + "kind": "calibration_drift", + "ledger_value": 8170.0, + "name": "ons.age.70_80@E14001602", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11634.901798712166, + "kind": "calibration_drift", + "ledger_value": 12455.0, + "name": "ons.age.70_80@E14001603", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7408.8278490073535, + "kind": "calibration_drift", + "ledger_value": 7156.0, + "name": "ons.age.70_80@E14001604", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10057.588716945167, + "kind": "calibration_drift", + "ledger_value": 11165.0, + "name": "ons.age.70_80@E14001605", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8913.14320887269, + "kind": "calibration_drift", + "ledger_value": 7249.0, + "name": "ons.age.70_80@N05000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8406.594620839689, + "kind": "calibration_drift", + "ledger_value": 7307.0, + "name": "ons.age.70_80@N05000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8998.846508958004, + "kind": "calibration_drift", + "ledger_value": 7910.0, + "name": "ons.age.70_80@N05000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9164.313276449453, + "kind": "calibration_drift", + "ledger_value": 6782.0, + "name": "ons.age.70_80@N05000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9002.240699060392, + "kind": "calibration_drift", + "ledger_value": 9022.0, + "name": "ons.age.70_80@N05000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8830.03697848693, + "kind": "calibration_drift", + "ledger_value": 9515.0, + "name": "ons.age.70_80@N05000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8825.74281373618, + "kind": "calibration_drift", + "ledger_value": 9517.0, + "name": "ons.age.70_80@N05000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8137.485058605604, + "kind": "calibration_drift", + "ledger_value": 7542.0, + "name": "ons.age.70_80@N05000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8484.62670844612, + "kind": "calibration_drift", + "ledger_value": 9124.0, + "name": "ons.age.70_80@N05000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8319.15994095467, + "kind": "calibration_drift", + "ledger_value": 7815.0, + "name": "ons.age.70_80@N05000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7970.4069079342335, + "kind": "calibration_drift", + "ledger_value": 8455.0, + "name": "ons.age.70_80@N05000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7968.7098128830385, + "kind": "calibration_drift", + "ledger_value": 9287.0, + "name": "ons.age.70_80@N05000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8998.846508958004, + "kind": "calibration_drift", + "ledger_value": 10852.0, + "name": "ons.age.70_80@N05000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8738.308133851164, + "kind": "calibration_drift", + "ledger_value": 8700.0, + "name": "ons.age.70_80@N05000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7627.593707592975, + "kind": "calibration_drift", + "ledger_value": 8714.0, + "name": "ons.age.70_80@N05000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8827.439908787377, + "kind": "calibration_drift", + "ledger_value": 10065.0, + "name": "ons.age.70_80@N05000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7884.703607848918, + "kind": "calibration_drift", + "ledger_value": 9102.0, + "name": "ons.age.70_80@N05000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9167.741751300351, + "kind": "calibration_drift", + "ledger_value": 8424.0, + "name": "ons.age.70_80@N05000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 11905.0, + "name": "ons.age.70_80@N09000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 16758.0, + "name": "ons.age.70_80@N09000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 22579.0, + "name": "ons.age.70_80@N09000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 13080.0, + "name": "ons.age.70_80@N09000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 12035.0, + "name": "ons.age.70_80@N09000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 10592.0, + "name": "ons.age.70_80@N09000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 12053.0, + "name": "ons.age.70_80@N09000007", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 12823.0, + "name": "ons.age.70_80@N09000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 10926.0, + "name": "ons.age.70_80@N09000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15508.355560297294, + "kind": "calibration_drift", + "ledger_value": 14789.0, + "name": "ons.age.70_80@N09000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 4380.890623106777, + "kind": "calibration_drift", + "ledger_value": 5422.0, + "name": "ons.age.70_80@S12000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12344.04645714711, + "kind": "calibration_drift", + "ledger_value": 18894.0, + "name": "ons.age.70_80@S12000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10180.506843344656, + "kind": "calibration_drift", + "ledger_value": 12610.0, + "name": "ons.age.70_80@S12000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9500.249579453073, + "kind": "calibration_drift", + "ledger_value": 11339.0, + "name": "ons.age.70_80@S12000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8191.6004375860175, + "kind": "calibration_drift", + "ledger_value": 9518.0, + "name": "ons.age.70_80@S12000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2211.6821987718936, + "kind": "calibration_drift", + "ledger_value": 3221.0, + "name": "ons.age.70_80@S12000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13402.42184446301, + "kind": "calibration_drift", + "ledger_value": 14900.0, + "name": "ons.age.70_80@S12000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 19912.839218177658, + "kind": "calibration_drift", + "ledger_value": 27104.0, + "name": "ons.age.70_80@S12000017", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6635.554250990227, + "kind": "calibration_drift", + "ledger_value": 8182.0, + "name": "ons.age.70_80@S12000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8167.0637949829625, + "kind": "calibration_drift", + "ledger_value": 9108.0, + "name": "ons.age.70_80@S12000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7893.437925402689, + "kind": "calibration_drift", + "ledger_value": 10188.0, + "name": "ons.age.70_80@S12000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11287.955515866666, + "kind": "calibration_drift", + "ledger_value": 15476.0, + "name": "ons.age.70_80@S12000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 1857.8468906133608, + "kind": "calibration_drift", + "ledger_value": 2595.0, + "name": "ons.age.70_80@S12000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9884.12112252224, + "kind": "calibration_drift", + "ledger_value": 14812.0, + "name": "ons.age.70_80@S12000026", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 1944.8250581855684, + "kind": "calibration_drift", + "ledger_value": 2363.0, + "name": "ons.age.70_80@S12000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9435.523608448462, + "kind": "calibration_drift", + "ledger_value": 14190.0, + "name": "ons.age.70_80@S12000028", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 27671.917873050515, + "kind": "calibration_drift", + "ledger_value": 31520.0, + "name": "ons.age.70_80@S12000029", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7835.142246942327, + "kind": "calibration_drift", + "ledger_value": 9166.0, + "name": "ons.age.70_80@S12000030", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 18954.21797441004, + "kind": "calibration_drift", + "ledger_value": 17816.0, + "name": "ons.age.70_80@S12000033", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22313.368955880647, + "kind": "calibration_drift", + "ledger_value": 27361.0, + "name": "ons.age.70_80@S12000034", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7273.845395119348, + "kind": "calibration_drift", + "ledger_value": 11340.0, + "name": "ons.age.70_80@S12000035", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 43535.02653415021, + "kind": "calibration_drift", + "ledger_value": 38286.0, + "name": "ons.age.70_80@S12000036", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15557.415937910604, + "kind": "calibration_drift", + "ledger_value": 17051.0, + "name": "ons.age.70_80@S12000038", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7479.360929198035, + "kind": "calibration_drift", + "ledger_value": 8355.0, + "name": "ons.age.70_80@S12000039", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15337.770682057055, + "kind": "calibration_drift", + "ledger_value": 15722.0, + "name": "ons.age.70_80@S12000040", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9674.375132822337, + "kind": "calibration_drift", + "ledger_value": 14011.0, + "name": "ons.age.70_80@S12000041", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12581.121190160073, + "kind": "calibration_drift", + "ledger_value": 12284.0, + "name": "ons.age.70_80@S12000042", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9217.062880168853, + "kind": "calibration_drift", + "ledger_value": 12137.0, + "name": "ons.age.70_80@S12000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 31456.060426228516, + "kind": "calibration_drift", + "ledger_value": 38946.0, + "name": "ons.age.70_80@S12000047", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12771.999347789353, + "kind": "calibration_drift", + "ledger_value": 17736.0, + "name": "ons.age.70_80@S12000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 52521.6141920752, + "kind": "calibration_drift", + "ledger_value": 39544.0, + "name": "ons.age.70_80@S12000049", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 28849.42289065987, + "kind": "calibration_drift", + "ledger_value": 29093.0, + "name": "ons.age.70_80@S12000050", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7663.2234324779065, + "kind": "calibration_drift", + "ledger_value": 9497.0, + "name": "ons.age.70_80@S14000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8195.14428846857, + "kind": "calibration_drift", + "ledger_value": 3218.0, + "name": "ons.age.70_80@S14000027", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7438.4083976493175, + "kind": "calibration_drift", + "ledger_value": 9096.0, + "name": "ons.age.70_80@S14000045", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8212.959819530455, + "kind": "calibration_drift", + "ledger_value": 11202.0, + "name": "ons.age.70_80@S14000048", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 2216.761079272088, + "kind": "calibration_drift", + "ledger_value": 4953.0, + "name": "ons.age.70_80@S14000051", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8122.185446977027, + "kind": "calibration_drift", + "ledger_value": 9454.0, + "name": "ons.age.70_80@S14000060", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8188.35741949261, + "kind": "calibration_drift", + "ledger_value": 8305.0, + "name": "ons.age.70_80@S14000061", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7765.874825739261, + "kind": "calibration_drift", + "ledger_value": 10407.0, + "name": "ons.age.70_80@S14000062", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 3813.3720058660674, + "kind": "calibration_drift", + "ledger_value": 7846.0, + "name": "ons.age.70_80@S14000063", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8270.648205826094, + "kind": "calibration_drift", + "ledger_value": 9091.0, + "name": "ons.age.70_80@S14000064", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9953.333598207653, + "kind": "calibration_drift", + "ledger_value": 12410.0, + "name": "ons.age.70_80@S14000065", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11407.742652582885, + "kind": "calibration_drift", + "ledger_value": 11551.0, + "name": "ons.age.70_80@S14000066", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8463.965381737265, + "kind": "calibration_drift", + "ledger_value": 12088.0, + "name": "ons.age.70_80@S14000067", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8857.992330591665, + "kind": "calibration_drift", + "ledger_value": 8458.0, + "name": "ons.age.70_80@S14000068", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6893.468630245526, + "kind": "calibration_drift", + "ledger_value": 11855.0, + "name": "ons.age.70_80@S14000069", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9122.502065343386, + "kind": "calibration_drift", + "ledger_value": 7889.0, + "name": "ons.age.70_80@S14000070", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9350.13025736251, + "kind": "calibration_drift", + "ledger_value": 10119.0, + "name": "ons.age.70_80@S14000071", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8452.316225115452, + "kind": "calibration_drift", + "ledger_value": 8564.0, + "name": "ons.age.70_80@S14000072", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6580.924830316467, + "kind": "calibration_drift", + "ledger_value": 12395.0, + "name": "ons.age.70_80@S14000073", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12165.605636065466, + "kind": "calibration_drift", + "ledger_value": 10786.0, + "name": "ons.age.70_80@S14000074", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8165.307515733013, + "kind": "calibration_drift", + "ledger_value": 7819.0, + "name": "ons.age.70_80@S14000075", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7741.423433536132, + "kind": "calibration_drift", + "ledger_value": 9012.0, + "name": "ons.age.70_80@S14000076", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8065.20711114016, + "kind": "calibration_drift", + "ledger_value": 8861.0, + "name": "ons.age.70_80@S14000077", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8336.718375307039, + "kind": "calibration_drift", + "ledger_value": 7460.0, + "name": "ons.age.70_80@S14000078", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7622.8924635882795, + "kind": "calibration_drift", + "ledger_value": 6358.0, + "name": "ons.age.70_80@S14000079", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9516.907382143201, + "kind": "calibration_drift", + "ledger_value": 8387.0, + "name": "ons.age.70_80@S14000080", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7376.0404651947565, + "kind": "calibration_drift", + "ledger_value": 7801.0, + "name": "ons.age.70_80@S14000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7483.4206094151095, + "kind": "calibration_drift", + "ledger_value": 9488.0, + "name": "ons.age.70_80@S14000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10134.590507948547, + "kind": "calibration_drift", + "ledger_value": 9050.0, + "name": "ons.age.70_80@S14000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9082.53589066122, + "kind": "calibration_drift", + "ledger_value": 6158.0, + "name": "ons.age.70_80@S14000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8955.0191061892, + "kind": "calibration_drift", + "ledger_value": 5803.0, + "name": "ons.age.70_80@S14000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9079.133972587022, + "kind": "calibration_drift", + "ledger_value": 6475.0, + "name": "ons.age.70_80@S14000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8613.376605525724, + "kind": "calibration_drift", + "ledger_value": 6670.0, + "name": "ons.age.70_80@S14000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7119.630858565842, + "kind": "calibration_drift", + "ledger_value": 6190.0, + "name": "ons.age.70_80@S14000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8703.351156362536, + "kind": "calibration_drift", + "ledger_value": 6700.0, + "name": "ons.age.70_80@S14000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11017.290955748456, + "kind": "calibration_drift", + "ledger_value": 9434.0, + "name": "ons.age.70_80@S14000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10735.270591499886, + "kind": "calibration_drift", + "ledger_value": 9603.0, + "name": "ons.age.70_80@S14000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7779.449067666597, + "kind": "calibration_drift", + "ledger_value": 9459.0, + "name": "ons.age.70_80@S14000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8757.115014801118, + "kind": "calibration_drift", + "ledger_value": 9458.0, + "name": "ons.age.70_80@S14000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10068.59160059185, + "kind": "calibration_drift", + "ledger_value": 10630.0, + "name": "ons.age.70_80@S14000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8134.81920357577, + "kind": "calibration_drift", + "ledger_value": 8920.0, + "name": "ons.age.70_80@S14000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7187.402835442507, + "kind": "calibration_drift", + "ledger_value": 9949.0, + "name": "ons.age.70_80@S14000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7636.410209871142, + "kind": "calibration_drift", + "ledger_value": 10832.0, + "name": "ons.age.70_80@S14000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8968.318177537754, + "kind": "calibration_drift", + "ledger_value": 11154.0, + "name": "ons.age.70_80@S14000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9622.457060321844, + "kind": "calibration_drift", + "ledger_value": 8511.0, + "name": "ons.age.70_80@S14000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7973.485147713798, + "kind": "calibration_drift", + "ledger_value": 10826.0, + "name": "ons.age.70_80@S14000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7097.354657869506, + "kind": "calibration_drift", + "ledger_value": 8586.0, + "name": "ons.age.70_80@S14000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8844.393141881093, + "kind": "calibration_drift", + "ledger_value": 8300.0, + "name": "ons.age.70_80@S14000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8887.023591100276, + "kind": "calibration_drift", + "ledger_value": 11076.0, + "name": "ons.age.70_80@S14000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8471.508986604042, + "kind": "calibration_drift", + "ledger_value": 8756.0, + "name": "ons.age.70_80@S14000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8851.30726465035, + "kind": "calibration_drift", + "ledger_value": 10224.0, + "name": "ons.age.70_80@S14000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7660.31532631843, + "kind": "calibration_drift", + "ledger_value": 8703.0, + "name": "ons.age.70_80@S14000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8285.182016951216, + "kind": "calibration_drift", + "ledger_value": 10907.0, + "name": "ons.age.70_80@S14000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8501.354242925814, + "kind": "calibration_drift", + "ledger_value": 12361.0, + "name": "ons.age.70_80@S14000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6773.671909233656, + "kind": "calibration_drift", + "ledger_value": 10211.0, + "name": "ons.age.70_80@S14000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9378.27540300581, + "kind": "calibration_drift", + "ledger_value": 9835.0, + "name": "ons.age.70_80@S14000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8084.240062532447, + "kind": "calibration_drift", + "ledger_value": 10101.0, + "name": "ons.age.70_80@S14000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8639.773049035184, + "kind": "calibration_drift", + "ledger_value": 8831.0, + "name": "ons.age.70_80@W06000001", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12553.865305584253, + "kind": "calibration_drift", + "ledger_value": 12888.0, + "name": "ons.age.70_80@W06000002", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14581.37870194913, + "kind": "calibration_drift", + "ledger_value": 15272.0, + "name": "ons.age.70_80@W06000003", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11217.417117663972, + "kind": "calibration_drift", + "ledger_value": 11569.0, + "name": "ons.age.70_80@W06000004", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16093.752069515645, + "kind": "calibration_drift", + "ledger_value": 16475.0, + "name": "ons.age.70_80@W06000005", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12855.173624315372, + "kind": "calibration_drift", + "ledger_value": 13427.0, + "name": "ons.age.70_80@W06000006", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8689.343127278045, + "kind": "calibration_drift", + "ledger_value": 8979.0, + "name": "ons.age.70_80@W06000008", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 15379.359765427349, + "kind": "calibration_drift", + "ledger_value": 15858.0, + "name": "ons.age.70_80@W06000009", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 21433.713047285844, + "kind": "calibration_drift", + "ledger_value": 22269.0, + "name": "ons.age.70_80@W06000010", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22391.09593099601, + "kind": "calibration_drift", + "ledger_value": 23169.0, + "name": "ons.age.70_80@W06000011", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14127.472299215478, + "kind": "calibration_drift", + "ledger_value": 14547.0, + "name": "ons.age.70_80@W06000012", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 14383.098388977685, + "kind": "calibration_drift", + "ledger_value": 14717.0, + "name": "ons.age.70_80@W06000013", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 13675.509821118801, + "kind": "calibration_drift", + "ledger_value": 14240.0, + "name": "ons.age.70_80@W06000014", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 24140.628104273466, + "kind": "calibration_drift", + "ledger_value": 25338.0, + "name": "ons.age.70_80@W06000015", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 22386.236119403573, + "kind": "calibration_drift", + "ledger_value": 23115.0, + "name": "ons.age.70_80@W06000016", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 16906.312567771176, + "kind": "calibration_drift", + "ledger_value": 17571.0, + "name": "ons.age.70_80@W06000018", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6416.895226654324, + "kind": "calibration_drift", + "ledger_value": 6675.0, + "name": "ons.age.70_80@W06000019", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8930.389782262939, + "kind": "calibration_drift", + "ledger_value": 9298.0, + "name": "ons.age.70_80@W06000020", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11331.136708927008, + "kind": "calibration_drift", + "ledger_value": 11724.0, + "name": "ons.age.70_80@W06000021", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12375.996201301044, + "kind": "calibration_drift", + "ledger_value": 12925.0, + "name": "ons.age.70_80@W06000022", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 17529.340413921647, + "kind": "calibration_drift", + "ledger_value": 18140.0, + "name": "ons.age.70_80@W06000023", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5254.428293743301, + "kind": "calibration_drift", + "ledger_value": 5421.0, + "name": "ons.age.70_80@W06000024", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8389.097192969117, + "kind": "calibration_drift", + "ledger_value": 9027.0, + "name": "ons.age.70_80@W07000081", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10003.493124136445, + "kind": "calibration_drift", + "ledger_value": 9841.0, + "name": "ons.age.70_80@W07000082", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11055.81760047023, + "kind": "calibration_drift", + "ledger_value": 10552.0, + "name": "ons.age.70_80@W07000083", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9264.272163736761, + "kind": "calibration_drift", + "ledger_value": 9325.0, + "name": "ons.age.70_80@W07000084", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11721.326535226814, + "kind": "calibration_drift", + "ledger_value": 12317.0, + "name": "ons.age.70_80@W07000085", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9107.873273898886, + "kind": "calibration_drift", + "ledger_value": 9808.0, + "name": "ons.age.70_80@W07000086", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11611.399556658713, + "kind": "calibration_drift", + "ledger_value": 12057.0, + "name": "ons.age.70_80@W07000087", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9074.587471578114, + "kind": "calibration_drift", + "ledger_value": 9574.0, + "name": "ons.age.70_80@W07000088", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 5781.738931888373, + "kind": "calibration_drift", + "ledger_value": 7359.0, + "name": "ons.age.70_80@W07000089", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7679.739761288635, + "kind": "calibration_drift", + "ledger_value": 8725.0, + "name": "ons.age.70_80@W07000090", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 6679.755359893027, + "kind": "calibration_drift", + "ledger_value": 6452.0, + "name": "ons.age.70_80@W07000091", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 7445.072389312196, + "kind": "calibration_drift", + "ledger_value": 8147.0, + "name": "ons.age.70_80@W07000092", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11246.73510012224, + "kind": "calibration_drift", + "ledger_value": 12216.0, + "name": "ons.age.70_80@W07000093", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10983.304107830974, + "kind": "calibration_drift", + "ledger_value": 12230.0, + "name": "ons.age.70_80@W07000094", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11919.571842619367, + "kind": "calibration_drift", + "ledger_value": 12181.0, + "name": "ons.age.70_80@W07000095", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11157.529833439396, + "kind": "calibration_drift", + "ledger_value": 11433.0, + "name": "ons.age.70_80@W07000096", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10288.21248034338, + "kind": "calibration_drift", + "ledger_value": 11324.0, + "name": "ons.age.70_80@W07000097", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9938.953186243958, + "kind": "calibration_drift", + "ledger_value": 10158.0, + "name": "ons.age.70_80@W07000098", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9226.518667060043, + "kind": "calibration_drift", + "ledger_value": 9631.0, + "name": "ons.age.70_80@W07000099", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 12186.578220761678, + "kind": "calibration_drift", + "ledger_value": 12532.0, + "name": "ons.age.70_80@W07000100", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 10705.463573316702, + "kind": "calibration_drift", + "ledger_value": 11676.0, + "name": "ons.age.70_80@W07000101", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11058.317392298353, + "kind": "calibration_drift", + "ledger_value": 11592.0, + "name": "ons.age.70_80@W07000102", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9607.180033630382, + "kind": "calibration_drift", + "ledger_value": 9701.0, + "name": "ons.age.70_80@W07000103", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8663.993539068946, + "kind": "calibration_drift", + "ledger_value": 8453.0, + "name": "ons.age.70_80@W07000104", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9378.893673239583, + "kind": "calibration_drift", + "ledger_value": 9776.0, + "name": "ons.age.70_80@W07000105", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9481.236420108522, + "kind": "calibration_drift", + "ledger_value": 9725.0, + "name": "ons.age.70_80@W07000106", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9655.210213571765, + "kind": "calibration_drift", + "ledger_value": 9410.0, + "name": "ons.age.70_80@W07000107", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8678.885853588758, + "kind": "calibration_drift", + "ledger_value": 8612.0, + "name": "ons.age.70_80@W07000108", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8879.498151368567, + "kind": "calibration_drift", + "ledger_value": 9283.0, + "name": "ons.age.70_80@W07000109", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9405.551902476043, + "kind": "calibration_drift", + "ledger_value": 9970.0, + "name": "ons.age.70_80@W07000110", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 9610.039561126274, + "kind": "calibration_drift", + "ledger_value": 9769.0, + "name": "ons.age.70_80@W07000111", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 8719.400839050606, + "kind": "calibration_drift", + "ledger_value": 8812.0, + "name": "ons.age.70_80@W07000112", + "period": 2025, + "reason": "Vintage and scaling class: ours holds the mid-2024 per-area publisher estimates at identity; the incumbent scales its age columns by uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at constituency grain, boundary-maps 2010-vintage rows to PCON24." + }, + { + "fixture_value": 11431.749, + "kind": "calibration_drift", + "ledger_value": 11073.0, + "name": "ons.tenure.owned_mortgage@E06000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16246.6352, + "kind": "calibration_drift", + "ledger_value": 15913.0, + "name": "ons.tenure.owned_mortgage@E06000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17572.423600000002, + "kind": "calibration_drift", + "ledger_value": 17205.0, + "name": "ons.tenure.owned_mortgage@E06000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28301.490299999998, + "kind": "calibration_drift", + "ledger_value": 27686.0, + "name": "ons.tenure.owned_mortgage@E06000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14758.5606, + "kind": "calibration_drift", + "ledger_value": 14474.0, + "name": "ons.tenure.owned_mortgage@E06000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17160.171700000003, + "kind": "calibration_drift", + "ledger_value": 16744.0, + "name": "ons.tenure.owned_mortgage@E06000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30828.189, + "kind": "calibration_drift", + "ledger_value": 30246.0, + "name": "ons.tenure.owned_mortgage@E06000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16348.9794, + "kind": "calibration_drift", + "ledger_value": 15958.0, + "name": "ons.tenure.owned_mortgage@E06000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17195.0006, + "kind": "calibration_drift", + "ledger_value": 16886.0, + "name": "ons.tenure.owned_mortgage@E06000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29826.417599999997, + "kind": "calibration_drift", + "ledger_value": 29046.0, + "name": "ons.tenure.owned_mortgage@E06000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 46380.13, + "kind": "calibration_drift", + "ledger_value": 45518.0, + "name": "ons.tenure.owned_mortgage@E06000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20605.6526, + "kind": "calibration_drift", + "ledger_value": 20211.0, + "name": "ons.tenure.owned_mortgage@E06000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21747.0156, + "kind": "calibration_drift", + "ledger_value": 21567.0, + "name": "ons.tenure.owned_mortgage@E06000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24842.9313, + "kind": "calibration_drift", + "ledger_value": 24182.0, + "name": "ons.tenure.owned_mortgage@E06000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30026.2984, + "kind": "calibration_drift", + "ledger_value": 28985.0, + "name": "ons.tenure.owned_mortgage@E06000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29311.748700000004, + "kind": "calibration_drift", + "ledger_value": 28106.0, + "name": "ons.tenure.owned_mortgage@E06000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4642.6014000000005, + "kind": "calibration_drift", + "ledger_value": 4555.0, + "name": "ons.tenure.owned_mortgage@E06000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29040.636000000002, + "kind": "calibration_drift", + "ledger_value": 28375.0, + "name": "ons.tenure.owned_mortgage@E06000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20888.969399999998, + "kind": "calibration_drift", + "ledger_value": 19893.0, + "name": "ons.tenure.owned_mortgage@E06000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23626.287999999997, + "kind": "calibration_drift", + "ledger_value": 22776.0, + "name": "ons.tenure.owned_mortgage@E06000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29575.892099999997, + "kind": "calibration_drift", + "ledger_value": 29095.0, + "name": "ons.tenure.owned_mortgage@E06000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23648.2, + "kind": "calibration_drift", + "ledger_value": 22878.0, + "name": "ons.tenure.owned_mortgage@E06000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 56341.572, + "kind": "calibration_drift", + "ledger_value": 55221.0, + "name": "ons.tenure.owned_mortgage@E06000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31016.149600000004, + "kind": "calibration_drift", + "ledger_value": 30532.0, + "name": "ons.tenure.owned_mortgage@E06000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 43189.5357, + "kind": "calibration_drift", + "ledger_value": 42272.0, + "name": "ons.tenure.owned_mortgage@E06000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33302.0106, + "kind": "calibration_drift", + "ledger_value": 32255.0, + "name": "ons.tenure.owned_mortgage@E06000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16396.817600000002, + "kind": "calibration_drift", + "ledger_value": 15699.0, + "name": "ons.tenure.owned_mortgage@E06000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34222.734000000004, + "kind": "calibration_drift", + "ledger_value": 33075.0, + "name": "ons.tenure.owned_mortgage@E06000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25774.1117, + "kind": "calibration_drift", + "ledger_value": 24624.0, + "name": "ons.tenure.owned_mortgage@E06000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23074.162, + "kind": "calibration_drift", + "ledger_value": 22281.0, + "name": "ons.tenure.owned_mortgage@E06000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23738.232, + "kind": "calibration_drift", + "ledger_value": 23301.0, + "name": "ons.tenure.owned_mortgage@E06000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25721.0875, + "kind": "calibration_drift", + "ledger_value": 25108.0, + "name": "ons.tenure.owned_mortgage@E06000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 42231.436200000004, + "kind": "calibration_drift", + "ledger_value": 37734.0, + "name": "ons.tenure.owned_mortgage@E06000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19817.8112, + "kind": "calibration_drift", + "ledger_value": 19053.0, + "name": "ons.tenure.owned_mortgage@E06000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22777.0386, + "kind": "calibration_drift", + "ledger_value": 21828.0, + "name": "ons.tenure.owned_mortgage@E06000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19661.9115, + "kind": "calibration_drift", + "ledger_value": 18707.0, + "name": "ons.tenure.owned_mortgage@E06000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15920.8651, + "kind": "calibration_drift", + "ledger_value": 15186.0, + "name": "ons.tenure.owned_mortgage@E06000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20442.685999999998, + "kind": "calibration_drift", + "ledger_value": 19913.0, + "name": "ons.tenure.owned_mortgage@E06000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29256.372, + "kind": "calibration_drift", + "ledger_value": 27647.0, + "name": "ons.tenure.owned_mortgage@E06000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 41191.748400000004, + "kind": "calibration_drift", + "ledger_value": 34752.0, + "name": "ons.tenure.owned_mortgage@E06000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33312.70880000001, + "kind": "calibration_drift", + "ledger_value": 31973.0, + "name": "ons.tenure.owned_mortgage@E06000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23554.777, + "kind": "calibration_drift", + "ledger_value": 23066.0, + "name": "ons.tenure.owned_mortgage@E06000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26718.4092, + "kind": "calibration_drift", + "ledger_value": 25789.0, + "name": "ons.tenure.owned_mortgage@E06000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15720.8925, + "kind": "calibration_drift", + "ledger_value": 15083.0, + "name": "ons.tenure.owned_mortgage@E06000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 66906.885, + "kind": "calibration_drift", + "ledger_value": 65775.0, + "name": "ons.tenure.owned_mortgage@E06000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 58209.562399999995, + "kind": "calibration_drift", + "ledger_value": 56455.0, + "name": "ons.tenure.owned_mortgage@E06000049", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50161.934799999995, + "kind": "calibration_drift", + "ledger_value": 48336.0, + "name": "ons.tenure.owned_mortgage@E06000050", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37644.4563, + "kind": "calibration_drift", + "ledger_value": 36522.0, + "name": "ons.tenure.owned_mortgage@E06000051", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 65239.31399999999, + "kind": "calibration_drift", + "ledger_value": 61299.0, + "name": "ons.tenure.owned_mortgage@E06000052", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 66589.0776, + "kind": "calibration_drift", + "ledger_value": 63547.0, + "name": "ons.tenure.owned_mortgage@E06000054", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24950.855, + "kind": "calibration_drift", + "ledger_value": 23605.0, + "name": "ons.tenure.owned_mortgage@E06000055", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 47094.450000000004, + "kind": "calibration_drift", + "ledger_value": 45305.0, + "name": "ons.tenure.owned_mortgage@E06000056", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40594.5486, + "kind": "calibration_drift", + "ledger_value": 39104.0, + "name": "ons.tenure.owned_mortgage@E06000057", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 51161.700600000004, + "kind": "calibration_drift", + "ledger_value": 49485.0, + "name": "ons.tenure.owned_mortgage@E06000058", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 43533.9292, + "kind": "calibration_drift", + "ledger_value": 41593.0, + "name": "ons.tenure.owned_mortgage@E06000059", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 79692.6376, + "kind": "calibration_drift", + "ledger_value": 77026.0, + "name": "ons.tenure.owned_mortgage@E06000060", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50766.1462, + "kind": "calibration_drift", + "ledger_value": 49245.0, + "name": "ons.tenure.owned_mortgage@E06000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 60959.5371, + "kind": "calibration_drift", + "ledger_value": 58173.0, + "name": "ons.tenure.owned_mortgage@E06000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11150.3, + "kind": "calibration_drift", + "ledger_value": 10234.0, + "name": "ons.tenure.owned_mortgage@E07000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12369.997500000001, + "kind": "calibration_drift", + "ledger_value": 11822.0, + "name": "ons.tenure.owned_mortgage@E07000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13088.2427, + "kind": "calibration_drift", + "ledger_value": 12820.0, + "name": "ons.tenure.owned_mortgage@E07000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26239.144000000004, + "kind": "calibration_drift", + "ledger_value": 25402.0, + "name": "ons.tenure.owned_mortgage@E07000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23441.900400000002, + "kind": "calibration_drift", + "ledger_value": 21736.0, + "name": "ons.tenure.owned_mortgage@E07000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17834.1813, + "kind": "calibration_drift", + "ledger_value": 17474.0, + "name": "ons.tenure.owned_mortgage@E07000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11015.8488, + "kind": "calibration_drift", + "ledger_value": 10873.0, + "name": "ons.tenure.owned_mortgage@E07000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12985.2716, + "kind": "calibration_drift", + "ledger_value": 12824.0, + "name": "ons.tenure.owned_mortgage@E07000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8216.0235, + "kind": "calibration_drift", + "ledger_value": 7824.0, + "name": "ons.tenure.owned_mortgage@E07000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16534.719, + "kind": "calibration_drift", + "ledger_value": 16285.0, + "name": "ons.tenure.owned_mortgage@E07000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12839.102799999999, + "kind": "calibration_drift", + "ledger_value": 12562.0, + "name": "ons.tenure.owned_mortgage@E07000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13869.679199999999, + "kind": "calibration_drift", + "ledger_value": 13467.0, + "name": "ons.tenure.owned_mortgage@E07000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17598.36, + "kind": "calibration_drift", + "ledger_value": 17321.0, + "name": "ons.tenure.owned_mortgage@E07000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18039.4388, + "kind": "calibration_drift", + "ledger_value": 16967.0, + "name": "ons.tenure.owned_mortgage@E07000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14194.8354, + "kind": "calibration_drift", + "ledger_value": 13703.0, + "name": "ons.tenure.owned_mortgage@E07000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10426.215800000002, + "kind": "calibration_drift", + "ledger_value": 9988.0, + "name": "ons.tenure.owned_mortgage@E07000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11559.5172, + "kind": "calibration_drift", + "ledger_value": 11025.0, + "name": "ons.tenure.owned_mortgage@E07000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10824.992, + "kind": "calibration_drift", + "ledger_value": 10008.0, + "name": "ons.tenure.owned_mortgage@E07000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17598.3558, + "kind": "calibration_drift", + "ledger_value": 16770.0, + "name": "ons.tenure.owned_mortgage@E07000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7662.981199999999, + "kind": "calibration_drift", + "ledger_value": 7316.0, + "name": "ons.tenure.owned_mortgage@E07000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6244.208799999999, + "kind": "calibration_drift", + "ledger_value": 6043.0, + "name": "ons.tenure.owned_mortgage@E07000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11315.840999999999, + "kind": "calibration_drift", + "ledger_value": 10924.0, + "name": "ons.tenure.owned_mortgage@E07000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10489.462899999999, + "kind": "calibration_drift", + "ledger_value": 10243.0, + "name": "ons.tenure.owned_mortgage@E07000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12984.073599999998, + "kind": "calibration_drift", + "ledger_value": 12549.0, + "name": "ons.tenure.owned_mortgage@E07000063", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10639.175399999998, + "kind": "calibration_drift", + "ledger_value": 10210.0, + "name": "ons.tenure.owned_mortgage@E07000064", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22807.670599999998, + "kind": "calibration_drift", + "ledger_value": 22033.0, + "name": "ons.tenure.owned_mortgage@E07000065", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26123.4402, + "kind": "calibration_drift", + "ledger_value": 25268.0, + "name": "ons.tenure.owned_mortgage@E07000066", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22212.214799999998, + "kind": "calibration_drift", + "ledger_value": 21828.0, + "name": "ons.tenure.owned_mortgage@E07000067", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11830.703599999999, + "kind": "calibration_drift", + "ledger_value": 11461.0, + "name": "ons.tenure.owned_mortgage@E07000068", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13157.1891, + "kind": "calibration_drift", + "ledger_value": 13000.0, + "name": "ons.tenure.owned_mortgage@E07000069", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26428.050499999998, + "kind": "calibration_drift", + "ledger_value": 25691.0, + "name": "ons.tenure.owned_mortgage@E07000070", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25714.446, + "kind": "calibration_drift", + "ledger_value": 25352.0, + "name": "ons.tenure.owned_mortgage@E07000071", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19182.241199999997, + "kind": "calibration_drift", + "ledger_value": 18807.0, + "name": "ons.tenure.owned_mortgage@E07000072", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12311.096400000002, + "kind": "calibration_drift", + "ledger_value": 11622.0, + "name": "ons.tenure.owned_mortgage@E07000073", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9240.48, + "kind": "calibration_drift", + "ledger_value": 9034.0, + "name": "ons.tenure.owned_mortgage@E07000074", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13205.8698, + "kind": "calibration_drift", + "ledger_value": 13102.0, + "name": "ons.tenure.owned_mortgage@E07000075", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17017.887300000002, + "kind": "calibration_drift", + "ledger_value": 16704.0, + "name": "ons.tenure.owned_mortgage@E07000076", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13585.7608, + "kind": "calibration_drift", + "ledger_value": 12909.0, + "name": "ons.tenure.owned_mortgage@E07000077", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15642.2343, + "kind": "calibration_drift", + "ledger_value": 15273.0, + "name": "ons.tenure.owned_mortgage@E07000078", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11326.562999999998, + "kind": "calibration_drift", + "ledger_value": 10260.0, + "name": "ons.tenure.owned_mortgage@E07000079", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10781.7649, + "kind": "calibration_drift", + "ledger_value": 10552.0, + "name": "ons.tenure.owned_mortgage@E07000080", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18300.9321, + "kind": "calibration_drift", + "ledger_value": 17869.0, + "name": "ons.tenure.owned_mortgage@E07000081", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17069.9902, + "kind": "calibration_drift", + "ledger_value": 16532.0, + "name": "ons.tenure.owned_mortgage@E07000082", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13900.1676, + "kind": "calibration_drift", + "ledger_value": 12975.0, + "name": "ons.tenure.owned_mortgage@E07000083", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27400.587499999998, + "kind": "calibration_drift", + "ledger_value": 26170.0, + "name": "ons.tenure.owned_mortgage@E07000084", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18192.981799999998, + "kind": "calibration_drift", + "ledger_value": 17391.0, + "name": "ons.tenure.owned_mortgage@E07000085", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21557.1188, + "kind": "calibration_drift", + "ledger_value": 20379.0, + "name": "ons.tenure.owned_mortgage@E07000086", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17150.111399999998, + "kind": "calibration_drift", + "ledger_value": 17037.0, + "name": "ons.tenure.owned_mortgage@E07000087", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10995.724199999999, + "kind": "calibration_drift", + "ledger_value": 10535.0, + "name": "ons.tenure.owned_mortgage@E07000088", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15785.78, + "kind": "calibration_drift", + "ledger_value": 15304.0, + "name": "ons.tenure.owned_mortgage@E07000089", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15921.291900000002, + "kind": "calibration_drift", + "ledger_value": 15526.0, + "name": "ons.tenure.owned_mortgage@E07000090", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21896.8818, + "kind": "calibration_drift", + "ledger_value": 21371.0, + "name": "ons.tenure.owned_mortgage@E07000091", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14491.016099999999, + "kind": "calibration_drift", + "ledger_value": 13795.0, + "name": "ons.tenure.owned_mortgage@E07000092", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18699.1944, + "kind": "calibration_drift", + "ledger_value": 17974.0, + "name": "ons.tenure.owned_mortgage@E07000093", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16005.7925, + "kind": "calibration_drift", + "ledger_value": 15270.0, + "name": "ons.tenure.owned_mortgage@E07000094", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14604.6585, + "kind": "calibration_drift", + "ledger_value": 14179.0, + "name": "ons.tenure.owned_mortgage@E07000095", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21439.5972, + "kind": "calibration_drift", + "ledger_value": 20937.0, + "name": "ons.tenure.owned_mortgage@E07000096", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14652.730599999999, + "kind": "calibration_drift", + "ledger_value": 14172.0, + "name": "ons.tenure.owned_mortgage@E07000098", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18557.0372, + "kind": "calibration_drift", + "ledger_value": 17828.0, + "name": "ons.tenure.owned_mortgage@E07000099", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13703.8044, + "kind": "calibration_drift", + "ledger_value": 13334.0, + "name": "ons.tenure.owned_mortgage@E07000102", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12542.262, + "kind": "calibration_drift", + "ledger_value": 12268.0, + "name": "ons.tenure.owned_mortgage@E07000103", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18534.3597, + "kind": "calibration_drift", + "ledger_value": 17565.0, + "name": "ons.tenure.owned_mortgage@E07000105", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17581.0752, + "kind": "calibration_drift", + "ledger_value": 16836.0, + "name": "ons.tenure.owned_mortgage@E07000106", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18936.4224, + "kind": "calibration_drift", + "ledger_value": 17694.0, + "name": "ons.tenure.owned_mortgage@E07000107", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14107.946800000002, + "kind": "calibration_drift", + "ledger_value": 13725.0, + "name": "ons.tenure.owned_mortgage@E07000108", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13497.714, + "kind": "calibration_drift", + "ledger_value": 12942.0, + "name": "ons.tenure.owned_mortgage@E07000109", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25278.84, + "kind": "calibration_drift", + "ledger_value": 23799.0, + "name": "ons.tenure.owned_mortgage@E07000110", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17267.279899999998, + "kind": "calibration_drift", + "ledger_value": 16297.0, + "name": "ons.tenure.owned_mortgage@E07000111", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13215.609199999999, + "kind": "calibration_drift", + "ledger_value": 12841.0, + "name": "ons.tenure.owned_mortgage@E07000112", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20659.0425, + "kind": "calibration_drift", + "ledger_value": 19727.0, + "name": "ons.tenure.owned_mortgage@E07000113", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15773.92, + "kind": "calibration_drift", + "ledger_value": 15431.0, + "name": "ons.tenure.owned_mortgage@E07000114", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20266.6659, + "kind": "calibration_drift", + "ledger_value": 19126.0, + "name": "ons.tenure.owned_mortgage@E07000115", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15595.318200000002, + "kind": "calibration_drift", + "ledger_value": 15069.0, + "name": "ons.tenure.owned_mortgage@E07000116", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10912.9664, + "kind": "calibration_drift", + "ledger_value": 10785.0, + "name": "ons.tenure.owned_mortgage@E07000117", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17841.9788, + "kind": "calibration_drift", + "ledger_value": 17598.0, + "name": "ons.tenure.owned_mortgage@E07000118", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10849.331000000002, + "kind": "calibration_drift", + "ledger_value": 10575.0, + "name": "ons.tenure.owned_mortgage@E07000119", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10130.848, + "kind": "calibration_drift", + "ledger_value": 10027.0, + "name": "ons.tenure.owned_mortgage@E07000120", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17645.5276, + "kind": "calibration_drift", + "ledger_value": 17114.0, + "name": "ons.tenure.owned_mortgage@E07000121", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10742.2252, + "kind": "calibration_drift", + "ledger_value": 10599.0, + "name": "ons.tenure.owned_mortgage@E07000122", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16952.230799999998, + "kind": "calibration_drift", + "ledger_value": 16524.0, + "name": "ons.tenure.owned_mortgage@E07000123", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8960.245, + "kind": "calibration_drift", + "ledger_value": 8533.0, + "name": "ons.tenure.owned_mortgage@E07000124", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10308.2253, + "kind": "calibration_drift", + "ledger_value": 10190.0, + "name": "ons.tenure.owned_mortgage@E07000125", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17889.3652, + "kind": "calibration_drift", + "ledger_value": 17519.0, + "name": "ons.tenure.owned_mortgage@E07000126", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15782.931600000002, + "kind": "calibration_drift", + "ledger_value": 15337.0, + "name": "ons.tenure.owned_mortgage@E07000127", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14955.958200000001, + "kind": "calibration_drift", + "ledger_value": 14539.0, + "name": "ons.tenure.owned_mortgage@E07000128", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16540.3875, + "kind": "calibration_drift", + "ledger_value": 16150.0, + "name": "ons.tenure.owned_mortgage@E07000129", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24511.377, + "kind": "calibration_drift", + "ledger_value": 23916.0, + "name": "ons.tenure.owned_mortgage@E07000130", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14960.892600000001, + "kind": "calibration_drift", + "ledger_value": 14148.0, + "name": "ons.tenure.owned_mortgage@E07000131", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17409.9366, + "kind": "calibration_drift", + "ledger_value": 17074.0, + "name": "ons.tenure.owned_mortgage@E07000132", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7111.905299999999, + "kind": "calibration_drift", + "ledger_value": 6871.0, + "name": "ons.tenure.owned_mortgage@E07000133", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16140.8097, + "kind": "calibration_drift", + "ledger_value": 15690.0, + "name": "ons.tenure.owned_mortgage@E07000134", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7452.3015000000005, + "kind": "calibration_drift", + "ledger_value": 7304.0, + "name": "ons.tenure.owned_mortgage@E07000135", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7739.132799999999, + "kind": "calibration_drift", + "ledger_value": 7338.0, + "name": "ons.tenure.owned_mortgage@E07000136", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14789.8136, + "kind": "calibration_drift", + "ledger_value": 13738.0, + "name": "ons.tenure.owned_mortgage@E07000137", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10703.262600000002, + "kind": "calibration_drift", + "ledger_value": 10374.0, + "name": "ons.tenure.owned_mortgage@E07000138", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16831.4689, + "kind": "calibration_drift", + "ledger_value": 16724.0, + "name": "ons.tenure.owned_mortgage@E07000139", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12166.1267, + "kind": "calibration_drift", + "ledger_value": 11717.0, + "name": "ons.tenure.owned_mortgage@E07000140", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19848.03, + "kind": "calibration_drift", + "ledger_value": 19155.0, + "name": "ons.tenure.owned_mortgage@E07000141", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12580.6995, + "kind": "calibration_drift", + "ledger_value": 12206.0, + "name": "ons.tenure.owned_mortgage@E07000142", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16840.160999999996, + "kind": "calibration_drift", + "ledger_value": 16335.0, + "name": "ons.tenure.owned_mortgage@E07000143", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18529.408, + "kind": "calibration_drift", + "ledger_value": 18088.0, + "name": "ons.tenure.owned_mortgage@E07000144", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10788.5568, + "kind": "calibration_drift", + "ledger_value": 10538.0, + "name": "ons.tenure.owned_mortgage@E07000145", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17405.712, + "kind": "calibration_drift", + "ledger_value": 17150.0, + "name": "ons.tenure.owned_mortgage@E07000146", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10269.800200000001, + "kind": "calibration_drift", + "ledger_value": 9701.0, + "name": "ons.tenure.owned_mortgage@E07000147", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13310.7835, + "kind": "calibration_drift", + "ledger_value": 12793.0, + "name": "ons.tenure.owned_mortgage@E07000148", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19850.615400000002, + "kind": "calibration_drift", + "ledger_value": 19175.0, + "name": "ons.tenure.owned_mortgage@E07000149", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17404.4044, + "kind": "calibration_drift", + "ledger_value": 17266.0, + "name": "ons.tenure.owned_mortgage@E07000170", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15946.834200000001, + "kind": "calibration_drift", + "ledger_value": 15672.0, + "name": "ons.tenure.owned_mortgage@E07000171", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15195.026200000002, + "kind": "calibration_drift", + "ledger_value": 15153.0, + "name": "ons.tenure.owned_mortgage@E07000172", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17651.062400000003, + "kind": "calibration_drift", + "ledger_value": 17417.0, + "name": "ons.tenure.owned_mortgage@E07000173", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14284.122, + "kind": "calibration_drift", + "ledger_value": 14088.0, + "name": "ons.tenure.owned_mortgage@E07000174", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16639.272, + "kind": "calibration_drift", + "ledger_value": 16268.0, + "name": "ons.tenure.owned_mortgage@E07000175", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17703.4767, + "kind": "calibration_drift", + "ledger_value": 17253.0, + "name": "ons.tenure.owned_mortgage@E07000176", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22601.642, + "kind": "calibration_drift", + "ledger_value": 21408.0, + "name": "ons.tenure.owned_mortgage@E07000177", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11721.5036, + "kind": "calibration_drift", + "ledger_value": 11042.0, + "name": "ons.tenure.owned_mortgage@E07000178", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21111.9201, + "kind": "calibration_drift", + "ledger_value": 20015.0, + "name": "ons.tenure.owned_mortgage@E07000179", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19560.819600000003, + "kind": "calibration_drift", + "ledger_value": 18398.0, + "name": "ons.tenure.owned_mortgage@E07000180", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14720.570800000001, + "kind": "calibration_drift", + "ledger_value": 14082.0, + "name": "ons.tenure.owned_mortgage@E07000181", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14671.083199999997, + "kind": "calibration_drift", + "ledger_value": 14438.0, + "name": "ons.tenure.owned_mortgage@E07000192", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15957.2523, + "kind": "calibration_drift", + "ledger_value": 15583.0, + "name": "ons.tenure.owned_mortgage@E07000193", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14916.446999999998, + "kind": "calibration_drift", + "ledger_value": 14528.0, + "name": "ons.tenure.owned_mortgage@E07000194", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16080.323, + "kind": "calibration_drift", + "ledger_value": 15716.0, + "name": "ons.tenure.owned_mortgage@E07000195", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14449.709299999999, + "kind": "calibration_drift", + "ledger_value": 14049.0, + "name": "ons.tenure.owned_mortgage@E07000196", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18872.772100000002, + "kind": "calibration_drift", + "ledger_value": 18558.0, + "name": "ons.tenure.owned_mortgage@E07000197", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12914.0395, + "kind": "calibration_drift", + "ledger_value": 12740.0, + "name": "ons.tenure.owned_mortgage@E07000198", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11289.564, + "kind": "calibration_drift", + "ledger_value": 11070.0, + "name": "ons.tenure.owned_mortgage@E07000199", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11372.58, + "kind": "calibration_drift", + "ledger_value": 11098.0, + "name": "ons.tenure.owned_mortgage@E07000200", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16471.5376, + "kind": "calibration_drift", + "ledger_value": 16182.0, + "name": "ons.tenure.owned_mortgage@E07000202", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14034.5595, + "kind": "calibration_drift", + "ledger_value": 13607.0, + "name": "ons.tenure.owned_mortgage@E07000203", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21513.33, + "kind": "calibration_drift", + "ledger_value": 20832.0, + "name": "ons.tenure.owned_mortgage@E07000207", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12165.0764, + "kind": "calibration_drift", + "ledger_value": 11803.0, + "name": "ons.tenure.owned_mortgage@E07000208", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18434.256, + "kind": "calibration_drift", + "ledger_value": 17717.0, + "name": "ons.tenure.owned_mortgage@E07000209", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12474.9901, + "kind": "calibration_drift", + "ledger_value": 12053.0, + "name": "ons.tenure.owned_mortgage@E07000210", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23359.064700000003, + "kind": "calibration_drift", + "ledger_value": 22374.0, + "name": "ons.tenure.owned_mortgage@E07000211", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12064.399400000002, + "kind": "calibration_drift", + "ledger_value": 11710.0, + "name": "ons.tenure.owned_mortgage@E07000212", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15016.356000000002, + "kind": "calibration_drift", + "ledger_value": 14489.0, + "name": "ons.tenure.owned_mortgage@E07000213", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13657.8344, + "kind": "calibration_drift", + "ledger_value": 13495.0, + "name": "ons.tenure.owned_mortgage@E07000214", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13604.4237, + "kind": "calibration_drift", + "ledger_value": 13203.0, + "name": "ons.tenure.owned_mortgage@E07000215", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18309.5968, + "kind": "calibration_drift", + "ledger_value": 17598.0, + "name": "ons.tenure.owned_mortgage@E07000216", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14664.5543, + "kind": "calibration_drift", + "ledger_value": 14280.0, + "name": "ons.tenure.owned_mortgage@E07000217", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9151.044, + "kind": "calibration_drift", + "ledger_value": 8856.0, + "name": "ons.tenure.owned_mortgage@E07000218", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19080.7992, + "kind": "calibration_drift", + "ledger_value": 18675.0, + "name": "ons.tenure.owned_mortgage@E07000219", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16642.602, + "kind": "calibration_drift", + "ledger_value": 16012.0, + "name": "ons.tenure.owned_mortgage@E07000220", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19046.3192, + "kind": "calibration_drift", + "ledger_value": 17967.0, + "name": "ons.tenure.owned_mortgage@E07000221", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20288.556, + "kind": "calibration_drift", + "ledger_value": 19541.0, + "name": "ons.tenure.owned_mortgage@E07000222", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9028.5636, + "kind": "calibration_drift", + "ledger_value": 8835.0, + "name": "ons.tenure.owned_mortgage@E07000223", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20439.5393, + "kind": "calibration_drift", + "ledger_value": 19588.0, + "name": "ons.tenure.owned_mortgage@E07000224", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13453.7348, + "kind": "calibration_drift", + "ledger_value": 12657.0, + "name": "ons.tenure.owned_mortgage@E07000225", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14901.905, + "kind": "calibration_drift", + "ledger_value": 14423.0, + "name": "ons.tenure.owned_mortgage@E07000226", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21692.286, + "kind": "calibration_drift", + "ledger_value": 20583.0, + "name": "ons.tenure.owned_mortgage@E07000227", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22906.998399999997, + "kind": "calibration_drift", + "ledger_value": 22754.0, + "name": "ons.tenure.owned_mortgage@E07000228", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15767.945399999999, + "kind": "calibration_drift", + "ledger_value": 15388.0, + "name": "ons.tenure.owned_mortgage@E07000229", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14979.557999999999, + "kind": "calibration_drift", + "ledger_value": 14511.0, + "name": "ons.tenure.owned_mortgage@E07000234", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9469.688800000002, + "kind": "calibration_drift", + "ledger_value": 9020.0, + "name": "ons.tenure.owned_mortgage@E07000235", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12397.6224, + "kind": "calibration_drift", + "ledger_value": 12184.0, + "name": "ons.tenure.owned_mortgage@E07000236", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13550.766, + "kind": "calibration_drift", + "ledger_value": 13142.0, + "name": "ons.tenure.owned_mortgage@E07000237", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17688.5904, + "kind": "calibration_drift", + "ledger_value": 16997.0, + "name": "ons.tenure.owned_mortgage@E07000238", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13133.736, + "kind": "calibration_drift", + "ledger_value": 12681.0, + "name": "ons.tenure.owned_mortgage@E07000239", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21514.017699999997, + "kind": "calibration_drift", + "ledger_value": 21237.0, + "name": "ons.tenure.owned_mortgage@E07000240", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14019.8106, + "kind": "calibration_drift", + "ledger_value": 13465.0, + "name": "ons.tenure.owned_mortgage@E07000241", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22767.909099999997, + "kind": "calibration_drift", + "ledger_value": 21870.0, + "name": "ons.tenure.owned_mortgage@E07000242", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11807.6574, + "kind": "calibration_drift", + "ledger_value": 11282.0, + "name": "ons.tenure.owned_mortgage@E07000243", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28007.9163, + "kind": "calibration_drift", + "ledger_value": 27266.0, + "name": "ons.tenure.owned_mortgage@E07000244", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22135.500600000003, + "kind": "calibration_drift", + "ledger_value": 20991.0, + "name": "ons.tenure.owned_mortgage@E07000245", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34045.214, + "kind": "calibration_drift", + "ledger_value": 33608.0, + "name": "ons.tenure.owned_mortgage@E08000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26484.4272, + "kind": "calibration_drift", + "ledger_value": 26240.0, + "name": "ons.tenure.owned_mortgage@E08000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 47155.14720000001, + "kind": "calibration_drift", + "ledger_value": 44502.0, + "name": "ons.tenure.owned_mortgage@E08000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27355.218, + "kind": "calibration_drift", + "ledger_value": 26845.0, + "name": "ons.tenure.owned_mortgage@E08000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27148.1007, + "kind": "calibration_drift", + "ledger_value": 26966.0, + "name": "ons.tenure.owned_mortgage@E08000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30056.7876, + "kind": "calibration_drift", + "ledger_value": 28774.0, + "name": "ons.tenure.owned_mortgage@E08000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44985.369600000005, + "kind": "calibration_drift", + "ledger_value": 43527.0, + "name": "ons.tenure.owned_mortgage@E08000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30455.262, + "kind": "calibration_drift", + "ledger_value": 30158.0, + "name": "ons.tenure.owned_mortgage@E08000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33780.792100000006, + "kind": "calibration_drift", + "ledger_value": 33238.0, + "name": "ons.tenure.owned_mortgage@E08000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 46408.951499999996, + "kind": "calibration_drift", + "ledger_value": 45766.0, + "name": "ons.tenure.owned_mortgage@E08000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20826.2096, + "kind": "calibration_drift", + "ledger_value": 20384.0, + "name": "ons.tenure.owned_mortgage@E08000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 48677.3886, + "kind": "calibration_drift", + "ledger_value": 46648.0, + "name": "ons.tenure.owned_mortgage@E08000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24522.0297, + "kind": "calibration_drift", + "ledger_value": 24026.0, + "name": "ons.tenure.owned_mortgage@E08000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36441.91529999999, + "kind": "calibration_drift", + "ledger_value": 35565.0, + "name": "ons.tenure.owned_mortgage@E08000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 42732.0716, + "kind": "calibration_drift", + "ledger_value": 41781.0, + "name": "ons.tenure.owned_mortgage@E08000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32405.0947, + "kind": "calibration_drift", + "ledger_value": 31733.0, + "name": "ons.tenure.owned_mortgage@E08000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 39443.931, + "kind": "calibration_drift", + "ledger_value": 39002.0, + "name": "ons.tenure.owned_mortgage@E08000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34564.845, + "kind": "calibration_drift", + "ledger_value": 34178.0, + "name": "ons.tenure.owned_mortgage@E08000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 63948.615, + "kind": "calibration_drift", + "ledger_value": 63274.0, + "name": "ons.tenure.owned_mortgage@E08000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30441.376299999996, + "kind": "calibration_drift", + "ledger_value": 29769.0, + "name": "ons.tenure.owned_mortgage@E08000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30794.24, + "kind": "calibration_drift", + "ledger_value": 30233.0, + "name": "ons.tenure.owned_mortgage@E08000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18539.920499999997, + "kind": "calibration_drift", + "ledger_value": 18152.0, + "name": "ons.tenure.owned_mortgage@E08000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33342.103299999995, + "kind": "calibration_drift", + "ledger_value": 32680.0, + "name": "ons.tenure.owned_mortgage@E08000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 112681.6416, + "kind": "calibration_drift", + "ledger_value": 108046.0, + "name": "ons.tenure.owned_mortgage@E08000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37612.5756, + "kind": "calibration_drift", + "ledger_value": 36784.0, + "name": "ons.tenure.owned_mortgage@E08000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40640.9585, + "kind": "calibration_drift", + "ledger_value": 39920.0, + "name": "ons.tenure.owned_mortgage@E08000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34840.805, + "kind": "calibration_drift", + "ledger_value": 34080.0, + "name": "ons.tenure.owned_mortgage@E08000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30200.5125, + "kind": "calibration_drift", + "ledger_value": 29584.0, + "name": "ons.tenure.owned_mortgage@E08000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30884.5952, + "kind": "calibration_drift", + "ledger_value": 30293.0, + "name": "ons.tenure.owned_mortgage@E08000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27021.237, + "kind": "calibration_drift", + "ledger_value": 26465.0, + "name": "ons.tenure.owned_mortgage@E08000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 63988.448300000004, + "kind": "calibration_drift", + "ledger_value": 62698.0, + "name": "ons.tenure.owned_mortgage@E08000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27577.0848, + "kind": "calibration_drift", + "ledger_value": 27170.0, + "name": "ons.tenure.owned_mortgage@E08000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 54980.8021, + "kind": "calibration_drift", + "ledger_value": 54256.0, + "name": "ons.tenure.owned_mortgage@E08000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 101961.74759999999, + "kind": "calibration_drift", + "ledger_value": 99132.0, + "name": "ons.tenure.owned_mortgage@E08000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 48586.005, + "kind": "calibration_drift", + "ledger_value": 47260.0, + "name": "ons.tenure.owned_mortgage@E08000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24634.923199999997, + "kind": "calibration_drift", + "ledger_value": 24448.0, + "name": "ons.tenure.owned_mortgage@E08000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 742.014, + "kind": "calibration_drift", + "ledger_value": 680.0, + "name": "ons.tenure.owned_mortgage@E09000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22621.4022, + "kind": "calibration_drift", + "ledger_value": 20189.0, + "name": "ons.tenure.owned_mortgage@E09000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 41592.5181, + "kind": "calibration_drift", + "ledger_value": 39324.0, + "name": "ons.tenure.owned_mortgage@E09000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 35585.020000000004, + "kind": "calibration_drift", + "ledger_value": 34207.0, + "name": "ons.tenure.owned_mortgage@E09000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24683.157199999998, + "kind": "calibration_drift", + "ledger_value": 21660.0, + "name": "ons.tenure.owned_mortgage@E09000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49169.374, + "kind": "calibration_drift", + "ledger_value": 48234.0, + "name": "ons.tenure.owned_mortgage@E09000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13848.918699999998, + "kind": "calibration_drift", + "ledger_value": 12727.0, + "name": "ons.tenure.owned_mortgage@E09000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49814.5122, + "kind": "calibration_drift", + "ledger_value": 46675.0, + "name": "ons.tenure.owned_mortgage@E09000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34403.82659999999, + "kind": "calibration_drift", + "ledger_value": 31539.0, + "name": "ons.tenure.owned_mortgage@E09000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33834.2554, + "kind": "calibration_drift", + "ledger_value": 31607.0, + "name": "ons.tenure.owned_mortgage@E09000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31558.1884, + "kind": "calibration_drift", + "ledger_value": 28454.0, + "name": "ons.tenure.owned_mortgage@E09000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19105.1881, + "kind": "calibration_drift", + "ledger_value": 15803.0, + "name": "ons.tenure.owned_mortgage@E09000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15452.6088, + "kind": "calibration_drift", + "ledger_value": 13607.0, + "name": "ons.tenure.owned_mortgage@E09000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23193.8044, + "kind": "calibration_drift", + "ledger_value": 20975.0, + "name": "ons.tenure.owned_mortgage@E09000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26758.137, + "kind": "calibration_drift", + "ledger_value": 25743.0, + "name": "ons.tenure.owned_mortgage@E09000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36733.1679, + "kind": "calibration_drift", + "ledger_value": 35461.0, + "name": "ons.tenure.owned_mortgage@E09000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34155.5956, + "kind": "calibration_drift", + "ledger_value": 32837.0, + "name": "ons.tenure.owned_mortgage@E09000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27614.140199999998, + "kind": "calibration_drift", + "ledger_value": 25283.0, + "name": "ons.tenure.owned_mortgage@E09000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16539.4144, + "kind": "calibration_drift", + "ledger_value": 14589.0, + "name": "ons.tenure.owned_mortgage@E09000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9236.6804, + "kind": "calibration_drift", + "ledger_value": 7890.0, + "name": "ons.tenure.owned_mortgage@E09000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21958.459600000002, + "kind": "calibration_drift", + "ledger_value": 21418.0, + "name": "ons.tenure.owned_mortgage@E09000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30843.551999999996, + "kind": "calibration_drift", + "ledger_value": 28289.0, + "name": "ons.tenure.owned_mortgage@E09000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34771.567200000005, + "kind": "calibration_drift", + "ledger_value": 32377.0, + "name": "ons.tenure.owned_mortgage@E09000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25981.649100000002, + "kind": "calibration_drift", + "ledger_value": 24773.0, + "name": "ons.tenure.owned_mortgage@E09000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25041.9176, + "kind": "calibration_drift", + "ledger_value": 20884.0, + "name": "ons.tenure.owned_mortgage@E09000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33177.7887, + "kind": "calibration_drift", + "ledger_value": 31265.0, + "name": "ons.tenure.owned_mortgage@E09000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26519.663, + "kind": "calibration_drift", + "ledger_value": 25826.0, + "name": "ons.tenure.owned_mortgage@E09000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27602.598, + "kind": "calibration_drift", + "ledger_value": 23870.0, + "name": "ons.tenure.owned_mortgage@E09000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30616.9864, + "kind": "calibration_drift", + "ledger_value": 29647.0, + "name": "ons.tenure.owned_mortgage@E09000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23059.1107, + "kind": "calibration_drift", + "ledger_value": 18459.0, + "name": "ons.tenure.owned_mortgage@E09000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31621.477300000002, + "kind": "calibration_drift", + "ledger_value": 29539.0, + "name": "ons.tenure.owned_mortgage@E09000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36601.495200000005, + "kind": "calibration_drift", + "ledger_value": 33915.0, + "name": "ons.tenure.owned_mortgage@E09000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12581.950499999999, + "kind": "calibration_drift", + "ledger_value": 10749.0, + "name": "ons.tenure.owned_mortgage@E09000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12905.229000000001, + "kind": "calibration_drift", + "ledger_value": 12761.0, + "name": "ons.tenure.owned_outright@E06000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17234.932, + "kind": "calibration_drift", + "ledger_value": 17224.0, + "name": "ons.tenure.owned_outright@E06000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22688.211600000002, + "kind": "calibration_drift", + "ledger_value": 22649.0, + "name": "ons.tenure.owned_outright@E06000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27974.837999999996, + "kind": "calibration_drift", + "ledger_value": 27726.0, + "name": "ons.tenure.owned_outright@E06000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16333.720200000002, + "kind": "calibration_drift", + "ledger_value": 16222.0, + "name": "ons.tenure.owned_outright@E06000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17093.0305, + "kind": "calibration_drift", + "ledger_value": 17096.0, + "name": "ons.tenure.owned_outright@E06000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31860.3222, + "kind": "calibration_drift", + "ledger_value": 31939.0, + "name": "ons.tenure.owned_outright@E06000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19686.945, + "kind": "calibration_drift", + "ledger_value": 19573.0, + "name": "ons.tenure.owned_outright@E06000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20473.324, + "kind": "calibration_drift", + "ledger_value": 20348.0, + "name": "ons.tenure.owned_outright@E06000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26893.428799999998, + "kind": "calibration_drift", + "ledger_value": 26695.0, + "name": "ons.tenure.owned_outright@E06000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 66042.2638, + "kind": "calibration_drift", + "ledger_value": 65680.0, + "name": "ons.tenure.owned_outright@E06000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24432.117400000003, + "kind": "calibration_drift", + "ledger_value": 24373.0, + "name": "ons.tenure.owned_outright@E06000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27813.0573, + "kind": "calibration_drift", + "ledger_value": 27829.0, + "name": "ons.tenure.owned_outright@E06000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31397.6366, + "kind": "calibration_drift", + "ledger_value": 31453.0, + "name": "ons.tenure.owned_outright@E06000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33692.4228, + "kind": "calibration_drift", + "ledger_value": 33384.0, + "name": "ons.tenure.owned_outright@E06000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31935.920899999997, + "kind": "calibration_drift", + "ledger_value": 31324.0, + "name": "ons.tenure.owned_outright@E06000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7069.909, + "kind": "calibration_drift", + "ledger_value": 7286.0, + "name": "ons.tenure.owned_outright@E06000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28017.727000000003, + "kind": "calibration_drift", + "ledger_value": 27940.0, + "name": "ons.tenure.owned_outright@E06000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 35226.3231, + "kind": "calibration_drift", + "ledger_value": 35070.0, + "name": "ons.tenure.owned_outright@E06000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23366.154, + "kind": "calibration_drift", + "ledger_value": 23088.0, + "name": "ons.tenure.owned_outright@E06000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33660.6551, + "kind": "calibration_drift", + "ledger_value": 33558.0, + "name": "ons.tenure.owned_outright@E06000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28854.925, + "kind": "calibration_drift", + "ledger_value": 28855.0, + "name": "ons.tenure.owned_outright@E06000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 47775.3534, + "kind": "calibration_drift", + "ledger_value": 48199.0, + "name": "ons.tenure.owned_outright@E06000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37035.76240000001, + "kind": "calibration_drift", + "ledger_value": 37250.0, + "name": "ons.tenure.owned_outright@E06000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 42941.5236, + "kind": "calibration_drift", + "ledger_value": 43220.0, + "name": "ons.tenure.owned_outright@E06000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33496.7592, + "kind": "calibration_drift", + "ledger_value": 33783.0, + "name": "ons.tenure.owned_outright@E06000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24793.6512, + "kind": "calibration_drift", + "ledger_value": 24663.0, + "name": "ons.tenure.owned_outright@E06000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27934.1868, + "kind": "calibration_drift", + "ledger_value": 27968.0, + "name": "ons.tenure.owned_outright@E06000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22265.9922, + "kind": "calibration_drift", + "ledger_value": 22268.0, + "name": "ons.tenure.owned_outright@E06000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20634.916, + "kind": "calibration_drift", + "ledger_value": 20296.0, + "name": "ons.tenure.owned_outright@E06000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24670.525599999997, + "kind": "calibration_drift", + "ledger_value": 24722.0, + "name": "ons.tenure.owned_outright@E06000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17032.3382, + "kind": "calibration_drift", + "ledger_value": 16912.0, + "name": "ons.tenure.owned_outright@E06000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36892.598000000005, + "kind": "calibration_drift", + "ledger_value": 34388.0, + "name": "ons.tenure.owned_outright@E06000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14416.1512, + "kind": "calibration_drift", + "ledger_value": 14488.0, + "name": "ons.tenure.owned_outright@E06000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23296.971, + "kind": "calibration_drift", + "ledger_value": 23209.0, + "name": "ons.tenure.owned_outright@E06000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15492.6387, + "kind": "calibration_drift", + "ledger_value": 15426.0, + "name": "ons.tenure.owned_outright@E06000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10327.330999999998, + "kind": "calibration_drift", + "ledger_value": 10215.0, + "name": "ons.tenure.owned_outright@E06000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20546.2704, + "kind": "calibration_drift", + "ledger_value": 20393.0, + "name": "ons.tenure.owned_outright@E06000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25120.364800000003, + "kind": "calibration_drift", + "ledger_value": 24952.0, + "name": "ons.tenure.owned_outright@E06000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26906.9658, + "kind": "calibration_drift", + "ledger_value": 27193.0, + "name": "ons.tenure.owned_outright@E06000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30775.407, + "kind": "calibration_drift", + "ledger_value": 30444.0, + "name": "ons.tenure.owned_outright@E06000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21711.06, + "kind": "calibration_drift", + "ledger_value": 21958.0, + "name": "ons.tenure.owned_outright@E06000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22943.8713, + "kind": "calibration_drift", + "ledger_value": 23049.0, + "name": "ons.tenure.owned_outright@E06000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28993.29, + "kind": "calibration_drift", + "ledger_value": 28737.0, + "name": "ons.tenure.owned_outright@E06000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 81626.39970000001, + "kind": "calibration_drift", + "ledger_value": 81046.0, + "name": "ons.tenure.owned_outright@E06000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 69208.0048, + "kind": "calibration_drift", + "ledger_value": 69191.0, + "name": "ons.tenure.owned_outright@E06000049", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 57516.32920000001, + "kind": "calibration_drift", + "ledger_value": 57620.0, + "name": "ons.tenure.owned_outright@E06000050", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 59223.3697, + "kind": "calibration_drift", + "ledger_value": 59262.0, + "name": "ons.tenure.owned_outright@E06000051", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 106327.054, + "kind": "calibration_drift", + "ledger_value": 104659.0, + "name": "ons.tenure.owned_outright@E06000052", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 80870.456, + "kind": "calibration_drift", + "ledger_value": 80220.0, + "name": "ons.tenure.owned_outright@E06000054", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23294.46, + "kind": "calibration_drift", + "ledger_value": 23359.0, + "name": "ons.tenure.owned_outright@E06000055", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40368.396499999995, + "kind": "calibration_drift", + "ledger_value": 40618.0, + "name": "ons.tenure.owned_outright@E06000056", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 57696.269400000005, + "kind": "calibration_drift", + "ledger_value": 56684.0, + "name": "ons.tenure.owned_outright@E06000057", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 60305.7898, + "kind": "calibration_drift", + "ledger_value": 59736.0, + "name": "ons.tenure.owned_outright@E06000058", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 78198.58200000001, + "kind": "calibration_drift", + "ledger_value": 77561.0, + "name": "ons.tenure.owned_outright@E06000059", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 77114.79999999999, + "kind": "calibration_drift", + "ledger_value": 77213.0, + "name": "ons.tenure.owned_outright@E06000060", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 47415.491200000004, + "kind": "calibration_drift", + "ledger_value": 47617.0, + "name": "ons.tenure.owned_outright@E06000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 53933.0484, + "kind": "calibration_drift", + "ledger_value": 53782.0, + "name": "ons.tenure.owned_outright@E06000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12955.336800000001, + "kind": "calibration_drift", + "ledger_value": 12897.0, + "name": "ons.tenure.owned_outright@E07000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13474.926599999999, + "kind": "calibration_drift", + "ledger_value": 13485.0, + "name": "ons.tenure.owned_outright@E07000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16681.0072, + "kind": "calibration_drift", + "ledger_value": 16632.0, + "name": "ons.tenure.owned_outright@E07000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27407.719999999998, + "kind": "calibration_drift", + "ledger_value": 27621.0, + "name": "ons.tenure.owned_outright@E07000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24473.6388, + "kind": "calibration_drift", + "ledger_value": 24426.0, + "name": "ons.tenure.owned_outright@E07000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23141.102399999996, + "kind": "calibration_drift", + "ledger_value": 23051.0, + "name": "ons.tenure.owned_outright@E07000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12426.328800000001, + "kind": "calibration_drift", + "ledger_value": 12391.0, + "name": "ons.tenure.owned_outright@E07000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17267.239400000002, + "kind": "calibration_drift", + "ledger_value": 17249.0, + "name": "ons.tenure.owned_outright@E07000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15550.7211, + "kind": "calibration_drift", + "ledger_value": 15405.0, + "name": "ons.tenure.owned_outright@E07000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18885.3168, + "kind": "calibration_drift", + "ledger_value": 18887.0, + "name": "ons.tenure.owned_outright@E07000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16369.957999999999, + "kind": "calibration_drift", + "ledger_value": 16367.0, + "name": "ons.tenure.owned_outright@E07000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19158.1842, + "kind": "calibration_drift", + "ledger_value": 18959.0, + "name": "ons.tenure.owned_outright@E07000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16313.544000000002, + "kind": "calibration_drift", + "ledger_value": 16388.0, + "name": "ons.tenure.owned_outright@E07000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31470.505599999997, + "kind": "calibration_drift", + "ledger_value": 31228.0, + "name": "ons.tenure.owned_outright@E07000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16270.7184, + "kind": "calibration_drift", + "ledger_value": 16369.0, + "name": "ons.tenure.owned_outright@E07000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14217.567, + "kind": "calibration_drift", + "ledger_value": 14110.0, + "name": "ons.tenure.owned_outright@E07000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18155.6991, + "kind": "calibration_drift", + "ledger_value": 18055.0, + "name": "ons.tenure.owned_outright@E07000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18035.0975, + "kind": "calibration_drift", + "ledger_value": 17708.0, + "name": "ons.tenure.owned_outright@E07000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25981.659600000003, + "kind": "calibration_drift", + "ledger_value": 25889.0, + "name": "ons.tenure.owned_outright@E07000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14031.5399, + "kind": "calibration_drift", + "ledger_value": 13870.0, + "name": "ons.tenure.owned_outright@E07000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11619.7876, + "kind": "calibration_drift", + "ledger_value": 11569.0, + "name": "ons.tenure.owned_outright@E07000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16492.575999999997, + "kind": "calibration_drift", + "ledger_value": 16305.0, + "name": "ons.tenure.owned_outright@E07000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12702.242, + "kind": "calibration_drift", + "ledger_value": 12644.0, + "name": "ons.tenure.owned_outright@E07000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18571.768799999998, + "kind": "calibration_drift", + "ledger_value": 18524.0, + "name": "ons.tenure.owned_outright@E07000063", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20516.3046, + "kind": "calibration_drift", + "ledger_value": 20395.0, + "name": "ons.tenure.owned_outright@E07000064", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30501.248799999998, + "kind": "calibration_drift", + "ledger_value": 30510.0, + "name": "ons.tenure.owned_outright@E07000065", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23023.143, + "kind": "calibration_drift", + "ledger_value": 23029.0, + "name": "ons.tenure.owned_outright@E07000066", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22186.2204, + "kind": "calibration_drift", + "ledger_value": 22262.0, + "name": "ons.tenure.owned_outright@E07000067", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11960.0716, + "kind": "calibration_drift", + "ledger_value": 11797.0, + "name": "ons.tenure.owned_outright@E07000068", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16974.606, + "kind": "calibration_drift", + "ledger_value": 16937.0, + "name": "ons.tenure.owned_outright@E07000069", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26925.6971, + "kind": "calibration_drift", + "ledger_value": 27057.0, + "name": "ons.tenure.owned_outright@E07000070", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26081.112, + "kind": "calibration_drift", + "ledger_value": 26126.0, + "name": "ons.tenure.owned_outright@E07000071", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19214.9754, + "kind": "calibration_drift", + "ledger_value": 19180.0, + "name": "ons.tenure.owned_outright@E07000072", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8866.109400000001, + "kind": "calibration_drift", + "ledger_value": 8723.0, + "name": "ons.tenure.owned_outright@E07000073", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12206.25, + "kind": "calibration_drift", + "ledger_value": 12224.0, + "name": "ons.tenure.owned_outright@E07000074", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15463.739300000001, + "kind": "calibration_drift", + "ledger_value": 15572.0, + "name": "ons.tenure.owned_outright@E07000075", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31526.597400000002, + "kind": "calibration_drift", + "ledger_value": 31510.0, + "name": "ons.tenure.owned_outright@E07000076", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13205.093399999998, + "kind": "calibration_drift", + "ledger_value": 13177.0, + "name": "ons.tenure.owned_outright@E07000077", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18340.083300000002, + "kind": "calibration_drift", + "ledger_value": 18362.0, + "name": "ons.tenure.owned_outright@E07000078", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16470.2029, + "kind": "calibration_drift", + "ledger_value": 16177.0, + "name": "ons.tenure.owned_outright@E07000079", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16341.984699999999, + "kind": "calibration_drift", + "ledger_value": 16466.0, + "name": "ons.tenure.owned_outright@E07000080", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17331.3096, + "kind": "calibration_drift", + "ledger_value": 17510.0, + "name": "ons.tenure.owned_outright@E07000081", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21443.5532, + "kind": "calibration_drift", + "ledger_value": 21548.0, + "name": "ons.tenure.owned_outright@E07000082", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15999.9279, + "kind": "calibration_drift", + "ledger_value": 15984.0, + "name": "ons.tenure.owned_outright@E07000083", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23277.0865, + "kind": "calibration_drift", + "ledger_value": 23475.0, + "name": "ons.tenure.owned_outright@E07000084", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21145.1898, + "kind": "calibration_drift", + "ledger_value": 21080.0, + "name": "ons.tenure.owned_outright@E07000085", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20037.248000000003, + "kind": "calibration_drift", + "ledger_value": 20012.0, + "name": "ons.tenure.owned_outright@E07000086", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20885.5866, + "kind": "calibration_drift", + "ledger_value": 21154.0, + "name": "ons.tenure.owned_outright@E07000087", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12349.983600000001, + "kind": "calibration_drift", + "ledger_value": 12314.0, + "name": "ons.tenure.owned_outright@E07000088", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14722.737600000002, + "kind": "calibration_drift", + "ledger_value": 14958.0, + "name": "ons.tenure.owned_outright@E07000089", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20787.1731, + "kind": "calibration_drift", + "ledger_value": 20869.0, + "name": "ons.tenure.owned_outright@E07000090", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36215.5654, + "kind": "calibration_drift", + "ledger_value": 36150.0, + "name": "ons.tenure.owned_outright@E07000091", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9998.683200000001, + "kind": "calibration_drift", + "ledger_value": 9979.0, + "name": "ons.tenure.owned_outright@E07000092", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19415.8692, + "kind": "calibration_drift", + "ledger_value": 19742.0, + "name": "ons.tenure.owned_outright@E07000093", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18700.144, + "kind": "calibration_drift", + "ledger_value": 18648.0, + "name": "ons.tenure.owned_outright@E07000094", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13190.019, + "kind": "calibration_drift", + "ledger_value": 13178.0, + "name": "ons.tenure.owned_outright@E07000095", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19708.449599999996, + "kind": "calibration_drift", + "ledger_value": 19598.0, + "name": "ons.tenure.owned_outright@E07000096", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13231.42, + "kind": "calibration_drift", + "ledger_value": 13227.0, + "name": "ons.tenure.owned_outright@E07000098", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19033.586, + "kind": "calibration_drift", + "ledger_value": 18933.0, + "name": "ons.tenure.owned_outright@E07000099", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12903.985799999999, + "kind": "calibration_drift", + "ledger_value": 12806.0, + "name": "ons.tenure.owned_outright@E07000102", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9471.091999999999, + "kind": "calibration_drift", + "ledger_value": 9577.0, + "name": "ons.tenure.owned_outright@E07000103", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18089.620799999997, + "kind": "calibration_drift", + "ledger_value": 18032.0, + "name": "ons.tenure.owned_outright@E07000105", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24713.020800000002, + "kind": "calibration_drift", + "ledger_value": 24477.0, + "name": "ons.tenure.owned_outright@E07000106", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12438.4512, + "kind": "calibration_drift", + "ledger_value": 12302.0, + "name": "ons.tenure.owned_outright@E07000107", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19759.213200000002, + "kind": "calibration_drift", + "ledger_value": 19753.0, + "name": "ons.tenure.owned_outright@E07000108", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13134.7152, + "kind": "calibration_drift", + "ledger_value": 13018.0, + "name": "ons.tenure.owned_outright@E07000109", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24331.7736, + "kind": "calibration_drift", + "ledger_value": 24192.0, + "name": "ons.tenure.owned_outright@E07000110", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18845.4985, + "kind": "calibration_drift", + "ledger_value": 18769.0, + "name": "ons.tenure.owned_outright@E07000111", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18992.0002, + "kind": "calibration_drift", + "ledger_value": 18966.0, + "name": "ons.tenure.owned_outright@E07000112", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20913.1215, + "kind": "calibration_drift", + "ledger_value": 20788.0, + "name": "ons.tenure.owned_outright@E07000113", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22833.62, + "kind": "calibration_drift", + "ledger_value": 22731.0, + "name": "ons.tenure.owned_outright@E07000114", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18418.3974, + "kind": "calibration_drift", + "ledger_value": 18379.0, + "name": "ons.tenure.owned_outright@E07000115", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16337.952400000002, + "kind": "calibration_drift", + "ledger_value": 16324.0, + "name": "ons.tenure.owned_outright@E07000116", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13105.9264, + "kind": "calibration_drift", + "ledger_value": 13051.0, + "name": "ons.tenure.owned_outright@E07000117", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18453.589200000002, + "kind": "calibration_drift", + "ledger_value": 18558.0, + "name": "ons.tenure.owned_outright@E07000118", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16358.61, + "kind": "calibration_drift", + "ledger_value": 16369.0, + "name": "ons.tenure.owned_outright@E07000119", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11953.844000000001, + "kind": "calibration_drift", + "ledger_value": 11917.0, + "name": "ons.tenure.owned_outright@E07000120", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23223.4816, + "kind": "calibration_drift", + "ledger_value": 23152.0, + "name": "ons.tenure.owned_outright@E07000121", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14225.2642, + "kind": "calibration_drift", + "ledger_value": 14127.0, + "name": "ons.tenure.owned_outright@E07000122", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18144.3708, + "kind": "calibration_drift", + "ledger_value": 18219.0, + "name": "ons.tenure.owned_outright@E07000123", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11691.1137, + "kind": "calibration_drift", + "ledger_value": 11654.0, + "name": "ons.tenure.owned_outright@E07000124", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10613.835299999999, + "kind": "calibration_drift", + "ledger_value": 10560.0, + "name": "ons.tenure.owned_outright@E07000125", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19429.541400000002, + "kind": "calibration_drift", + "ledger_value": 19428.0, + "name": "ons.tenure.owned_outright@E07000126", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19000.669499999996, + "kind": "calibration_drift", + "ledger_value": 18987.0, + "name": "ons.tenure.owned_outright@E07000127", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22728.3859, + "kind": "calibration_drift", + "ledger_value": 22699.0, + "name": "ons.tenure.owned_outright@E07000128", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16953.365, + "kind": "calibration_drift", + "ledger_value": 17012.0, + "name": "ons.tenure.owned_outright@E07000129", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27477.534, + "kind": "calibration_drift", + "ledger_value": 27619.0, + "name": "ons.tenure.owned_outright@E07000130", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16504.6692, + "kind": "calibration_drift", + "ledger_value": 16484.0, + "name": "ons.tenure.owned_outright@E07000131", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19600.3944, + "kind": "calibration_drift", + "ledger_value": 19715.0, + "name": "ons.tenure.owned_outright@E07000132", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9157.1148, + "kind": "calibration_drift", + "ledger_value": 9160.0, + "name": "ons.tenure.owned_outright@E07000133", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16581.5451, + "kind": "calibration_drift", + "ledger_value": 16599.0, + "name": "ons.tenure.owned_outright@E07000134", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9700.4313, + "kind": "calibration_drift", + "ledger_value": 9711.0, + "name": "ons.tenure.owned_outright@E07000135", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10006.181199999999, + "kind": "calibration_drift", + "ledger_value": 9967.0, + "name": "ons.tenure.owned_outright@E07000136", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30680.4452, + "kind": "calibration_drift", + "ledger_value": 29907.0, + "name": "ons.tenure.owned_outright@E07000137", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11039.0679, + "kind": "calibration_drift", + "ledger_value": 11092.0, + "name": "ons.tenure.owned_outright@E07000138", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19895.9078, + "kind": "calibration_drift", + "ledger_value": 20386.0, + "name": "ons.tenure.owned_outright@E07000139", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16631.2458, + "kind": "calibration_drift", + "ledger_value": 16604.0, + "name": "ons.tenure.owned_outright@E07000140", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23820.15, + "kind": "calibration_drift", + "ledger_value": 23765.0, + "name": "ons.tenure.owned_outright@E07000141", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17543.5335, + "kind": "calibration_drift", + "ledger_value": 17553.0, + "name": "ons.tenure.owned_outright@E07000142", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24240.174399999996, + "kind": "calibration_drift", + "ledger_value": 24126.0, + "name": "ons.tenure.owned_outright@E07000143", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26384.768, + "kind": "calibration_drift", + "ledger_value": 26448.0, + "name": "ons.tenure.owned_outright@E07000144", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17171.712, + "kind": "calibration_drift", + "ledger_value": 16978.0, + "name": "ons.tenure.owned_outright@E07000145", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27957.081599999998, + "kind": "calibration_drift", + "ledger_value": 28053.0, + "name": "ons.tenure.owned_outright@E07000146", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24070.9024, + "kind": "calibration_drift", + "ledger_value": 23509.0, + "name": "ons.tenure.owned_outright@E07000147", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14483.9373, + "kind": "calibration_drift", + "ledger_value": 14312.0, + "name": "ons.tenure.owned_outright@E07000148", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25632.705599999998, + "kind": "calibration_drift", + "ledger_value": 25720.0, + "name": "ons.tenure.owned_outright@E07000149", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19404.848, + "kind": "calibration_drift", + "ledger_value": 19484.0, + "name": "ons.tenure.owned_outright@E07000170", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19523.1652, + "kind": "calibration_drift", + "ledger_value": 19442.0, + "name": "ons.tenure.owned_outright@E07000171", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19175.136499999997, + "kind": "calibration_drift", + "ledger_value": 19301.0, + "name": "ons.tenure.owned_outright@E07000172", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20620.4, + "kind": "calibration_drift", + "ledger_value": 20649.0, + "name": "ons.tenure.owned_outright@E07000173", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16656.804, + "kind": "calibration_drift", + "ledger_value": 16668.0, + "name": "ons.tenure.owned_outright@E07000174", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20457.7716, + "kind": "calibration_drift", + "ledger_value": 20525.0, + "name": "ons.tenure.owned_outright@E07000175", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20437.0651, + "kind": "calibration_drift", + "ledger_value": 20508.0, + "name": "ons.tenure.owned_outright@E07000176", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21389.1924, + "kind": "calibration_drift", + "ledger_value": 21431.0, + "name": "ons.tenure.owned_outright@E07000177", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13870.2618, + "kind": "calibration_drift", + "ledger_value": 13993.0, + "name": "ons.tenure.owned_outright@E07000178", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23172.069600000003, + "kind": "calibration_drift", + "ledger_value": 23180.0, + "name": "ons.tenure.owned_outright@E07000179", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20940.7716, + "kind": "calibration_drift", + "ledger_value": 20812.0, + "name": "ons.tenure.owned_outright@E07000180", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17546.651700000002, + "kind": "calibration_drift", + "ledger_value": 17963.0, + "name": "ons.tenure.owned_outright@E07000181", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14662.391800000001, + "kind": "calibration_drift", + "ledger_value": 14718.0, + "name": "ons.tenure.owned_outright@E07000192", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18727.0743, + "kind": "calibration_drift", + "ledger_value": 18695.0, + "name": "ons.tenure.owned_outright@E07000193", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18840.627, + "kind": "calibration_drift", + "ledger_value": 18902.0, + "name": "ons.tenure.owned_outright@E07000194", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20466.3513, + "kind": "calibration_drift", + "ledger_value": 20435.0, + "name": "ons.tenure.owned_outright@E07000195", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20320.912600000003, + "kind": "calibration_drift", + "ledger_value": 20310.0, + "name": "ons.tenure.owned_outright@E07000196", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23262.2078, + "kind": "calibration_drift", + "ledger_value": 23474.0, + "name": "ons.tenure.owned_outright@E07000197", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20432.052, + "kind": "calibration_drift", + "ledger_value": 20401.0, + "name": "ons.tenure.owned_outright@E07000198", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10960.614, + "kind": "calibration_drift", + "ledger_value": 10967.0, + "name": "ons.tenure.owned_outright@E07000199", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17446.8, + "kind": "calibration_drift", + "ledger_value": 17460.0, + "name": "ons.tenure.owned_outright@E07000200", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16757.1712, + "kind": "calibration_drift", + "ledger_value": 16810.0, + "name": "ons.tenure.owned_outright@E07000202", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19138.4388, + "kind": "calibration_drift", + "ledger_value": 19151.0, + "name": "ons.tenure.owned_outright@E07000203", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18906.158999999996, + "kind": "calibration_drift", + "ledger_value": 18809.0, + "name": "ons.tenure.owned_outright@E07000207", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11375.7872, + "kind": "calibration_drift", + "ledger_value": 11364.0, + "name": "ons.tenure.owned_outright@E07000208", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19270.656000000003, + "kind": "calibration_drift", + "ledger_value": 19267.0, + "name": "ons.tenure.owned_outright@E07000209", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15197.2788, + "kind": "calibration_drift", + "ledger_value": 15136.0, + "name": "ons.tenure.owned_outright@E07000210", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20216.9922, + "kind": "calibration_drift", + "ledger_value": 20196.0, + "name": "ons.tenure.owned_outright@E07000211", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11294.479600000002, + "kind": "calibration_drift", + "ledger_value": 11431.0, + "name": "ons.tenure.owned_outright@E07000212", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13983.772500000001, + "kind": "calibration_drift", + "ledger_value": 13980.0, + "name": "ons.tenure.owned_outright@E07000213", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12973.6824, + "kind": "calibration_drift", + "ledger_value": 13156.0, + "name": "ons.tenure.owned_outright@E07000214", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13326.5643, + "kind": "calibration_drift", + "ledger_value": 13326.0, + "name": "ons.tenure.owned_outright@E07000215", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20129.542400000002, + "kind": "calibration_drift", + "ledger_value": 20039.0, + "name": "ons.tenure.owned_outright@E07000216", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13301.277, + "kind": "calibration_drift", + "ledger_value": 13251.0, + "name": "ons.tenure.owned_outright@E07000217", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10604.51, + "kind": "calibration_drift", + "ledger_value": 10558.0, + "name": "ons.tenure.owned_outright@E07000218", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19782.4656, + "kind": "calibration_drift", + "ledger_value": 19829.0, + "name": "ons.tenure.owned_outright@E07000219", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15655.328999999998, + "kind": "calibration_drift", + "ledger_value": 15703.0, + "name": "ons.tenure.owned_outright@E07000220", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24195.901599999997, + "kind": "calibration_drift", + "ledger_value": 24156.0, + "name": "ons.tenure.owned_outright@E07000221", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21265.4124, + "kind": "calibration_drift", + "ledger_value": 21411.0, + "name": "ons.tenure.owned_outright@E07000222", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11118.2526, + "kind": "calibration_drift", + "ledger_value": 11101.0, + "name": "ons.tenure.owned_outright@E07000223", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32232.4196, + "kind": "calibration_drift", + "ledger_value": 32182.0, + "name": "ons.tenure.owned_outright@E07000224", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22799.9134, + "kind": "calibration_drift", + "ledger_value": 22715.0, + "name": "ons.tenure.owned_outright@E07000225", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10888.6286, + "kind": "calibration_drift", + "ledger_value": 10940.0, + "name": "ons.tenure.owned_outright@E07000226", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24536.358, + "kind": "calibration_drift", + "ledger_value": 24482.0, + "name": "ons.tenure.owned_outright@E07000227", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22628.262799999997, + "kind": "calibration_drift", + "ledger_value": 23259.0, + "name": "ons.tenure.owned_outright@E07000228", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18130.908, + "kind": "calibration_drift", + "ledger_value": 18052.0, + "name": "ons.tenure.owned_outright@E07000229", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17509.163800000002, + "kind": "calibration_drift", + "ledger_value": 17483.0, + "name": "ons.tenure.owned_outright@E07000234", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15757.227199999998, + "kind": "calibration_drift", + "ledger_value": 15753.0, + "name": "ons.tenure.owned_outright@E07000235", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11193.5106, + "kind": "calibration_drift", + "ledger_value": 11254.0, + "name": "ons.tenure.owned_outright@E07000236", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14261.845800000001, + "kind": "calibration_drift", + "ledger_value": 14320.0, + "name": "ons.tenure.owned_outright@E07000237", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23183.2952, + "kind": "calibration_drift", + "ledger_value": 23188.0, + "name": "ons.tenure.owned_outright@E07000238", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18472.431999999997, + "kind": "calibration_drift", + "ledger_value": 18477.0, + "name": "ons.tenure.owned_outright@E07000239", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20605.5563, + "kind": "calibration_drift", + "ledger_value": 20615.0, + "name": "ons.tenure.owned_outright@E07000240", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12638.1615, + "kind": "calibration_drift", + "ledger_value": 12711.0, + "name": "ons.tenure.owned_outright@E07000241", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21136.7568, + "kind": "calibration_drift", + "ledger_value": 21140.0, + "name": "ons.tenure.owned_outright@E07000242", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9452.697900000001, + "kind": "calibration_drift", + "ledger_value": 9522.0, + "name": "ons.tenure.owned_outright@E07000243", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49570.3572, + "kind": "calibration_drift", + "ledger_value": 49014.0, + "name": "ons.tenure.owned_outright@E07000244", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26663.3956, + "kind": "calibration_drift", + "ledger_value": 26398.0, + "name": "ons.tenure.owned_outright@E07000245", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 39438.28, + "kind": "calibration_drift", + "ledger_value": 39475.0, + "name": "ons.tenure.owned_outright@E08000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27719.076, + "kind": "calibration_drift", + "ledger_value": 27752.0, + "name": "ons.tenure.owned_outright@E08000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36182.342000000004, + "kind": "calibration_drift", + "ledger_value": 35423.0, + "name": "ons.tenure.owned_outright@E08000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29506.751999999997, + "kind": "calibration_drift", + "ledger_value": 29384.0, + "name": "ons.tenure.owned_outright@E08000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27265.3906, + "kind": "calibration_drift", + "ledger_value": 27411.0, + "name": "ons.tenure.owned_outright@E08000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25855.053600000003, + "kind": "calibration_drift", + "ledger_value": 25294.0, + "name": "ons.tenure.owned_outright@E08000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 46492.4808, + "kind": "calibration_drift", + "ledger_value": 46498.0, + "name": "ons.tenure.owned_outright@E08000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30355.735, + "kind": "calibration_drift", + "ledger_value": 30363.0, + "name": "ons.tenure.owned_outright@E08000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33058.774600000004, + "kind": "calibration_drift", + "ledger_value": 33149.0, + "name": "ons.tenure.owned_outright@E08000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49228.119999999995, + "kind": "calibration_drift", + "ledger_value": 49212.0, + "name": "ons.tenure.owned_outright@E08000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18824.1977, + "kind": "calibration_drift", + "ledger_value": 18902.0, + "name": "ons.tenure.owned_outright@E08000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 51105.033299999996, + "kind": "calibration_drift", + "ledger_value": 50393.0, + "name": "ons.tenure.owned_outright@E08000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27892.0873, + "kind": "calibration_drift", + "ledger_value": 28023.0, + "name": "ons.tenure.owned_outright@E08000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 46496.979400000004, + "kind": "calibration_drift", + "ledger_value": 46426.0, + "name": "ons.tenure.owned_outright@E08000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 51441.79319999999, + "kind": "calibration_drift", + "ledger_value": 51333.0, + "name": "ons.tenure.owned_outright@E08000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 35808.764200000005, + "kind": "calibration_drift", + "ledger_value": 35620.0, + "name": "ons.tenure.owned_outright@E08000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44769.862799999995, + "kind": "calibration_drift", + "ledger_value": 44881.0, + "name": "ons.tenure.owned_outright@E08000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38256.015, + "kind": "calibration_drift", + "ledger_value": 38318.0, + "name": "ons.tenure.owned_outright@E08000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 71834.915, + "kind": "calibration_drift", + "ledger_value": 71903.0, + "name": "ons.tenure.owned_outright@E08000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30822.047, + "kind": "calibration_drift", + "ledger_value": 30707.0, + "name": "ons.tenure.owned_outright@E08000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31111.805599999996, + "kind": "calibration_drift", + "ledger_value": 31038.0, + "name": "ons.tenure.owned_outright@E08000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20574.8731, + "kind": "calibration_drift", + "ledger_value": 20503.0, + "name": "ons.tenure.owned_outright@E08000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38546.8435, + "kind": "calibration_drift", + "ledger_value": 38312.0, + "name": "ons.tenure.owned_outright@E08000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 116026.94399999999, + "kind": "calibration_drift", + "ledger_value": 114970.0, + "name": "ons.tenure.owned_outright@E08000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40214.8722, + "kind": "calibration_drift", + "ledger_value": 40278.0, + "name": "ons.tenure.owned_outright@E08000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 51291.219800000006, + "kind": "calibration_drift", + "ledger_value": 51133.0, + "name": "ons.tenure.owned_outright@E08000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36078.14199999999, + "kind": "calibration_drift", + "ledger_value": 35924.0, + "name": "ons.tenure.owned_outright@E08000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34961.0081, + "kind": "calibration_drift", + "ledger_value": 35054.0, + "name": "ons.tenure.owned_outright@E08000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36361.224, + "kind": "calibration_drift", + "ledger_value": 36296.0, + "name": "ons.tenure.owned_outright@E08000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31489.729499999998, + "kind": "calibration_drift", + "ledger_value": 31345.0, + "name": "ons.tenure.owned_outright@E08000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 67178.4267, + "kind": "calibration_drift", + "ledger_value": 66875.0, + "name": "ons.tenure.owned_outright@E08000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31331.838800000005, + "kind": "calibration_drift", + "ledger_value": 31269.0, + "name": "ons.tenure.owned_outright@E08000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 62456.34010000001, + "kind": "calibration_drift", + "ledger_value": 62352.0, + "name": "ons.tenure.owned_outright@E08000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 96361.7052, + "kind": "calibration_drift", + "ledger_value": 95452.0, + "name": "ons.tenure.owned_outright@E08000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 48708.465, + "kind": "calibration_drift", + "ledger_value": 48566.0, + "name": "ons.tenure.owned_outright@E08000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27002.2966, + "kind": "calibration_drift", + "ledger_value": 27161.0, + "name": "ons.tenure.owned_outright@E08000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 1194.1019999999999, + "kind": "calibration_drift", + "ledger_value": 1114.0, + "name": "ons.tenure.owned_outright@E09000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11735.6376, + "kind": "calibration_drift", + "ledger_value": 11130.0, + "name": "ons.tenure.owned_outright@E09000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 39716.1639, + "kind": "calibration_drift", + "ledger_value": 39083.0, + "name": "ons.tenure.owned_outright@E09000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31325.11, + "kind": "calibration_drift", + "ledger_value": 31210.0, + "name": "ons.tenure.owned_outright@E09000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24718.7408, + "kind": "calibration_drift", + "ledger_value": 23933.0, + "name": "ons.tenure.owned_outright@E09000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44605.586800000005, + "kind": "calibration_drift", + "ledger_value": 44794.0, + "name": "ons.tenure.owned_outright@E09000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15231.027800000002, + "kind": "calibration_drift", + "ledger_value": 14780.0, + "name": "ons.tenure.owned_outright@E09000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37731.77820000001, + "kind": "calibration_drift", + "ledger_value": 36992.0, + "name": "ons.tenure.owned_outright@E09000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30474.252, + "kind": "calibration_drift", + "ledger_value": 30275.0, + "name": "ons.tenure.owned_outright@E09000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32637.117699999995, + "kind": "calibration_drift", + "ledger_value": 31740.0, + "name": "ons.tenure.owned_outright@E09000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18864.2008, + "kind": "calibration_drift", + "ledger_value": 18473.0, + "name": "ons.tenure.owned_outright@E09000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10618.7081, + "kind": "calibration_drift", + "ledger_value": 10263.0, + "name": "ons.tenure.owned_outright@E09000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13023.413199999999, + "kind": "calibration_drift", + "ledger_value": 12483.0, + "name": "ons.tenure.owned_outright@E09000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18538.2288, + "kind": "calibration_drift", + "ledger_value": 18141.0, + "name": "ons.tenure.owned_outright@E09000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26964.313599999998, + "kind": "calibration_drift", + "ledger_value": 26947.0, + "name": "ons.tenure.owned_outright@E09000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 35224.1406, + "kind": "calibration_drift", + "ledger_value": 34918.0, + "name": "ons.tenure.owned_outright@E09000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28967.2656, + "kind": "calibration_drift", + "ledger_value": 28994.0, + "name": "ons.tenure.owned_outright@E09000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21858.620300000002, + "kind": "calibration_drift", + "ledger_value": 21761.0, + "name": "ons.tenure.owned_outright@E09000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11415.4768, + "kind": "calibration_drift", + "ledger_value": 11151.0, + "name": "ons.tenure.owned_outright@E09000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14346.618, + "kind": "calibration_drift", + "ledger_value": 13301.0, + "name": "ons.tenure.owned_outright@E09000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18598.4084, + "kind": "calibration_drift", + "ledger_value": 18519.0, + "name": "ons.tenure.owned_outright@E09000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16243.3728, + "kind": "calibration_drift", + "ledger_value": 16180.0, + "name": "ons.tenure.owned_outright@E09000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19105.3912, + "kind": "calibration_drift", + "ledger_value": 18853.0, + "name": "ons.tenure.owned_outright@E09000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20988.007199999996, + "kind": "calibration_drift", + "ledger_value": 20695.0, + "name": "ons.tenure.owned_outright@E09000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15581.8943, + "kind": "calibration_drift", + "ledger_value": 14695.0, + "name": "ons.tenure.owned_outright@E09000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28780.357500000002, + "kind": "calibration_drift", + "ledger_value": 27956.0, + "name": "ons.tenure.owned_outright@E09000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24679.588999999996, + "kind": "calibration_drift", + "ledger_value": 24535.0, + "name": "ons.tenure.owned_outright@E09000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14167.5894, + "kind": "calibration_drift", + "ledger_value": 13879.0, + "name": "ons.tenure.owned_outright@E09000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23477.414800000002, + "kind": "calibration_drift", + "ledger_value": 23400.0, + "name": "ons.tenure.owned_outright@E09000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10065.0065, + "kind": "calibration_drift", + "ledger_value": 9424.0, + "name": "ons.tenure.owned_outright@E09000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21084.414899999996, + "kind": "calibration_drift", + "ledger_value": 20817.0, + "name": "ons.tenure.owned_outright@E09000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24552.1291, + "kind": "calibration_drift", + "ledger_value": 24410.0, + "name": "ons.tenure.owned_outright@E09000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16734.8475, + "kind": "calibration_drift", + "ledger_value": 15213.0, + "name": "ons.tenure.owned_outright@E09000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7334.656000000001, + "kind": "calibration_drift", + "ledger_value": 7194.0, + "name": "ons.tenure.private_rent@E06000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12781.5702, + "kind": "calibration_drift", + "ledger_value": 12677.0, + "name": "ons.tenure.private_rent@E06000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9793.9604, + "kind": "calibration_drift", + "ledger_value": 9748.0, + "name": "ons.tenure.private_rent@E06000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14389.4526, + "kind": "calibration_drift", + "ledger_value": 14207.0, + "name": "ons.tenure.private_rent@E06000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10155.3768, + "kind": "calibration_drift", + "ledger_value": 10078.0, + "name": "ons.tenure.private_rent@E06000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8051.3489, + "kind": "calibration_drift", + "ledger_value": 8018.0, + "name": "ons.tenure.private_rent@E06000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13770.829800000001, + "kind": "calibration_drift", + "ledger_value": 13773.0, + "name": "ons.tenure.private_rent@E06000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11947.3311, + "kind": "calibration_drift", + "ledger_value": 11850.0, + "name": "ons.tenure.private_rent@E06000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20732.48, + "kind": "calibration_drift", + "ledger_value": 20569.0, + "name": "ons.tenure.private_rent@E06000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28140.5264, + "kind": "calibration_drift", + "ledger_value": 27593.0, + "name": "ons.tenure.private_rent@E06000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26064.112399999998, + "kind": "calibration_drift", + "ledger_value": 25732.0, + "name": "ons.tenure.private_rent@E06000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15710.85, + "kind": "calibration_drift", + "ledger_value": 15644.0, + "name": "ons.tenure.private_rent@E06000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12593.0733, + "kind": "calibration_drift", + "ledger_value": 12555.0, + "name": "ons.tenure.private_rent@E06000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17125.9836, + "kind": "calibration_drift", + "ledger_value": 17084.0, + "name": "ons.tenure.private_rent@E06000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22820.832000000002, + "kind": "calibration_drift", + "ledger_value": 22453.0, + "name": "ons.tenure.private_rent@E06000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38483.612700000005, + "kind": "calibration_drift", + "ledger_value": 37437.0, + "name": "ons.tenure.private_rent@E06000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2711.1056, + "kind": "calibration_drift", + "ledger_value": 2790.0, + "name": "ons.tenure.private_rent@E06000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36063.779500000004, + "kind": "calibration_drift", + "ledger_value": 35688.0, + "name": "ons.tenure.private_rent@E06000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15687.4338, + "kind": "calibration_drift", + "ledger_value": 15605.0, + "name": "ons.tenure.private_rent@E06000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16449.65, + "kind": "calibration_drift", + "ledger_value": 16197.0, + "name": "ons.tenure.private_rent@E06000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22808.4334, + "kind": "calibration_drift", + "ledger_value": 22400.0, + "name": "ons.tenure.private_rent@E06000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15342.8, + "kind": "calibration_drift", + "ledger_value": 15309.0, + "name": "ons.tenure.private_rent@E06000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50170.8284, + "kind": "calibration_drift", + "ledger_value": 50213.0, + "name": "ons.tenure.private_rent@E06000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17348.9784, + "kind": "calibration_drift", + "ledger_value": 17420.0, + "name": "ons.tenure.private_rent@E06000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18494.616599999998, + "kind": "calibration_drift", + "ledger_value": 18588.0, + "name": "ons.tenure.private_rent@E06000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25798.4616, + "kind": "calibration_drift", + "ledger_value": 25921.0, + "name": "ons.tenure.private_rent@E06000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16844.0608, + "kind": "calibration_drift", + "ledger_value": 16767.0, + "name": "ons.tenure.private_rent@E06000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18625.9866, + "kind": "calibration_drift", + "ledger_value": 18520.0, + "name": "ons.tenure.private_rent@E06000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20685.2251, + "kind": "calibration_drift", + "ledger_value": 20612.0, + "name": "ons.tenure.private_rent@E06000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23366.24, + "kind": "calibration_drift", + "ledger_value": 22887.0, + "name": "ons.tenure.private_rent@E06000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20729.8224, + "kind": "calibration_drift", + "ledger_value": 20759.0, + "name": "ons.tenure.private_rent@E06000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12246.5565, + "kind": "calibration_drift", + "ledger_value": 12131.0, + "name": "ons.tenure.private_rent@E06000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24175.2402, + "kind": "calibration_drift", + "ledger_value": 22491.0, + "name": "ons.tenure.private_rent@E06000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7888.936, + "kind": "calibration_drift", + "ledger_value": 7902.0, + "name": "ons.tenure.private_rent@E06000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11465.176, + "kind": "calibration_drift", + "ledger_value": 11431.0, + "name": "ons.tenure.private_rent@E06000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21800.6943, + "kind": "calibration_drift", + "ledger_value": 21623.0, + "name": "ons.tenure.private_rent@E06000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16335.0068, + "kind": "calibration_drift", + "ledger_value": 16095.0, + "name": "ons.tenure.private_rent@E06000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12649.4832, + "kind": "calibration_drift", + "ledger_value": 12553.0, + "name": "ons.tenure.private_rent@E06000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9862.7864, + "kind": "calibration_drift", + "ledger_value": 9782.0, + "name": "ons.tenure.private_rent@E06000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23513.9058, + "kind": "calibration_drift", + "ledger_value": 23656.0, + "name": "ons.tenure.private_rent@E06000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40317.6042, + "kind": "calibration_drift", + "ledger_value": 39684.0, + "name": "ons.tenure.private_rent@E06000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24536.944, + "kind": "calibration_drift", + "ledger_value": 24669.0, + "name": "ons.tenure.private_rent@E06000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29817.8265, + "kind": "calibration_drift", + "ledger_value": 29860.0, + "name": "ons.tenure.private_rent@E06000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13486.155, + "kind": "calibration_drift", + "ledger_value": 13380.0, + "name": "ons.tenure.private_rent@E06000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40613.653000000006, + "kind": "calibration_drift", + "ledger_value": 40198.0, + "name": "ons.tenure.private_rent@E06000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27155.1368, + "kind": "calibration_drift", + "ledger_value": 27114.0, + "name": "ons.tenure.private_rent@E06000049", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24468.1012, + "kind": "calibration_drift", + "ledger_value": 24384.0, + "name": "ons.tenure.private_rent@E06000050", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24398.409200000002, + "kind": "calibration_drift", + "ledger_value": 24367.0, + "name": "ons.tenure.private_rent@E06000051", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50307.42799999999, + "kind": "calibration_drift", + "ledger_value": 49371.0, + "name": "ons.tenure.private_rent@E06000052", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37789.7317, + "kind": "calibration_drift", + "ledger_value": 37422.0, + "name": "ons.tenure.private_rent@E06000054", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14300.459999999997, + "kind": "calibration_drift", + "ledger_value": 14316.0, + "name": "ons.tenure.private_rent@E06000055", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16519.284, + "kind": "calibration_drift", + "ledger_value": 16567.0, + "name": "ons.tenure.private_rent@E06000056", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24638.819399999997, + "kind": "calibration_drift", + "ledger_value": 24128.0, + "name": "ons.tenure.private_rent@E06000057", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44660.0098, + "kind": "calibration_drift", + "ledger_value": 44152.0, + "name": "ons.tenure.private_rent@E06000058", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27843.434499999996, + "kind": "calibration_drift", + "ledger_value": 27612.0, + "name": "ons.tenure.private_rent@E06000059", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34657.5944, + "kind": "calibration_drift", + "ledger_value": 34630.0, + "name": "ons.tenure.private_rent@E06000060", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27475.371, + "kind": "calibration_drift", + "ledger_value": 27455.0, + "name": "ons.tenure.private_rent@E06000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33267.920699999995, + "kind": "calibration_drift", + "ledger_value": 33000.0, + "name": "ons.tenure.private_rent@E06000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16633.624, + "kind": "calibration_drift", + "ledger_value": 16495.0, + "name": "ons.tenure.private_rent@E07000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6116.173200000001, + "kind": "calibration_drift", + "ledger_value": 6120.0, + "name": "ons.tenure.private_rent@E07000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8829.8249, + "kind": "calibration_drift", + "ledger_value": 8795.0, + "name": "ons.tenure.private_rent@E07000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12800.519999999999, + "kind": "calibration_drift", + "ledger_value": 12897.0, + "name": "ons.tenure.private_rent@E07000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9466.534800000001, + "kind": "calibration_drift", + "ledger_value": 9383.0, + "name": "ons.tenure.private_rent@E07000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8306.485200000001, + "kind": "calibration_drift", + "ledger_value": 8235.0, + "name": "ons.tenure.private_rent@E07000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6128.535599999999, + "kind": "calibration_drift", + "ledger_value": 6056.0, + "name": "ons.tenure.private_rent@E07000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7857.483, + "kind": "calibration_drift", + "ledger_value": 7781.0, + "name": "ons.tenure.private_rent@E07000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4697.1765000000005, + "kind": "calibration_drift", + "ledger_value": 4650.0, + "name": "ons.tenure.private_rent@E07000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8486.3124, + "kind": "calibration_drift", + "ledger_value": 8470.0, + "name": "ons.tenure.private_rent@E07000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6592.8324, + "kind": "calibration_drift", + "ledger_value": 6545.0, + "name": "ons.tenure.private_rent@E07000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4736.661, + "kind": "calibration_drift", + "ledger_value": 4608.0, + "name": "ons.tenure.private_rent@E07000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6654.804, + "kind": "calibration_drift", + "ledger_value": 6648.0, + "name": "ons.tenure.private_rent@E07000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10812.977200000001, + "kind": "calibration_drift", + "ledger_value": 10697.0, + "name": "ons.tenure.private_rent@E07000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13075.4352, + "kind": "calibration_drift", + "ledger_value": 13107.0, + "name": "ons.tenure.private_rent@E07000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6706.1306, + "kind": "calibration_drift", + "ledger_value": 6612.0, + "name": "ons.tenure.private_rent@E07000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8864.0244, + "kind": "calibration_drift", + "ledger_value": 8813.0, + "name": "ons.tenure.private_rent@E07000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6447.0065, + "kind": "calibration_drift", + "ledger_value": 6326.0, + "name": "ons.tenure.private_rent@E07000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10734.9372, + "kind": "calibration_drift", + "ledger_value": 10683.0, + "name": "ons.tenure.private_rent@E07000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6222.3651, + "kind": "calibration_drift", + "ledger_value": 6152.0, + "name": "ons.tenure.private_rent@E07000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4549.1394, + "kind": "calibration_drift", + "ledger_value": 4526.0, + "name": "ons.tenure.private_rent@E07000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12291.895, + "kind": "calibration_drift", + "ledger_value": 12118.0, + "name": "ons.tenure.private_rent@E07000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11630.2375, + "kind": "calibration_drift", + "ledger_value": 11572.0, + "name": "ons.tenure.private_rent@E07000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7440.066400000001, + "kind": "calibration_drift", + "ledger_value": 7384.0, + "name": "ons.tenure.private_rent@E07000063", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6862.626, + "kind": "calibration_drift", + "ledger_value": 6827.0, + "name": "ons.tenure.private_rent@E07000064", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9209.0834, + "kind": "calibration_drift", + "ledger_value": 9203.0, + "name": "ons.tenure.private_rent@E07000065", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10957.946999999998, + "kind": "calibration_drift", + "ledger_value": 10876.0, + "name": "ons.tenure.private_rent@E07000066", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9780.393, + "kind": "calibration_drift", + "ledger_value": 9795.0, + "name": "ons.tenure.private_rent@E07000067", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5274.9802, + "kind": "calibration_drift", + "ledger_value": 5163.0, + "name": "ons.tenure.private_rent@E07000068", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5271.848999999999, + "kind": "calibration_drift", + "ledger_value": 5240.0, + "name": "ons.tenure.private_rent@E07000069", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11687.155, + "kind": "calibration_drift", + "ledger_value": 11724.0, + "name": "ons.tenure.private_rent@E07000070", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17177.505, + "kind": "calibration_drift", + "ledger_value": 17165.0, + "name": "ons.tenure.private_rent@E07000071", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8227.1956, + "kind": "calibration_drift", + "ledger_value": 8147.0, + "name": "ons.tenure.private_rent@E07000072", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6004.120199999999, + "kind": "calibration_drift", + "ledger_value": 5824.0, + "name": "ons.tenure.private_rent@E07000073", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3272.67, + "kind": "calibration_drift", + "ledger_value": 3279.0, + "name": "ons.tenure.private_rent@E07000074", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3776.1533999999997, + "kind": "calibration_drift", + "ledger_value": 3805.0, + "name": "ons.tenure.private_rent@E07000075", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13402.513700000001, + "kind": "calibration_drift", + "ledger_value": 13370.0, + "name": "ons.tenure.private_rent@E07000076", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5403.2596, + "kind": "calibration_drift", + "ledger_value": 5375.0, + "name": "ons.tenure.private_rent@E07000077", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12399.5256, + "kind": "calibration_drift", + "ledger_value": 12378.0, + "name": "ons.tenure.private_rent@E07000078", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7177.549599999999, + "kind": "calibration_drift", + "ledger_value": 7049.0, + "name": "ons.tenure.private_rent@E07000079", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4998.2431, + "kind": "calibration_drift", + "ledger_value": 5031.0, + "name": "ons.tenure.private_rent@E07000080", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11724.121200000001, + "kind": "calibration_drift", + "ledger_value": 11803.0, + "name": "ons.tenure.private_rent@E07000081", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7191.499400000001, + "kind": "calibration_drift", + "ledger_value": 7153.0, + "name": "ons.tenure.private_rent@E07000082", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5853.133000000001, + "kind": "calibration_drift", + "ledger_value": 5841.0, + "name": "ons.tenure.private_rent@E07000083", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11696.026999999998, + "kind": "calibration_drift", + "ledger_value": 11800.0, + "name": "ons.tenure.private_rent@E07000084", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6895.5144, + "kind": "calibration_drift", + "ledger_value": 6876.0, + "name": "ons.tenure.private_rent@E07000085", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7940.897999999999, + "kind": "calibration_drift", + "ledger_value": 7936.0, + "name": "ons.tenure.private_rent@E07000086", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6060.4194, + "kind": "calibration_drift", + "ledger_value": 6106.0, + "name": "ons.tenure.private_rent@E07000087", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6785.665800000001, + "kind": "calibration_drift", + "ledger_value": 6714.0, + "name": "ons.tenure.private_rent@E07000088", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5355.176, + "kind": "calibration_drift", + "ledger_value": 5442.0, + "name": "ons.tenure.private_rent@E07000089", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6698.625, + "kind": "calibration_drift", + "ledger_value": 6655.0, + "name": "ons.tenure.private_rent@E07000090", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11177.2606, + "kind": "calibration_drift", + "ledger_value": 11124.0, + "name": "ons.tenure.private_rent@E07000091", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8485.5177, + "kind": "calibration_drift", + "ledger_value": 8449.0, + "name": "ons.tenure.private_rent@E07000092", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7954.5432, + "kind": "calibration_drift", + "ledger_value": 8070.0, + "name": "ons.tenure.private_rent@E07000093", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9169.069500000001, + "kind": "calibration_drift", + "ledger_value": 9096.0, + "name": "ons.tenure.private_rent@E07000094", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6387.7947, + "kind": "calibration_drift", + "ledger_value": 6367.0, + "name": "ons.tenure.private_rent@E07000095", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9201.0812, + "kind": "calibration_drift", + "ledger_value": 9093.0, + "name": "ons.tenure.private_rent@E07000096", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7383.986000000001, + "kind": "calibration_drift", + "ledger_value": 7370.0, + "name": "ons.tenure.private_rent@E07000098", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8770.7672, + "kind": "calibration_drift", + "ledger_value": 8722.0, + "name": "ons.tenure.private_rent@E07000099", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5005.3164, + "kind": "calibration_drift", + "ledger_value": 4956.0, + "name": "ons.tenure.private_rent@E07000102", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11056.212, + "kind": "calibration_drift", + "ledger_value": 11177.0, + "name": "ons.tenure.private_rent@E07000103", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9585.9987, + "kind": "calibration_drift", + "ledger_value": 9499.0, + "name": "ons.tenure.private_rent@E07000105", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14212.8576, + "kind": "calibration_drift", + "ledger_value": 14024.0, + "name": "ons.tenure.private_rent@E07000106", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8421.772799999999, + "kind": "calibration_drift", + "ledger_value": 8275.0, + "name": "ons.tenure.private_rent@E07000107", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9634.4488, + "kind": "calibration_drift", + "ledger_value": 9595.0, + "name": "ons.tenure.private_rent@E07000108", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8111.145600000001, + "kind": "calibration_drift", + "ledger_value": 7950.0, + "name": "ons.tenure.private_rent@E07000109", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12411.5544, + "kind": "calibration_drift", + "ledger_value": 12339.0, + "name": "ons.tenure.private_rent@E07000110", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6587.347199999999, + "kind": "calibration_drift", + "ledger_value": 6548.0, + "name": "ons.tenure.private_rent@E07000111", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10914.720399999998, + "kind": "calibration_drift", + "ledger_value": 10870.0, + "name": "ons.tenure.private_rent@E07000112", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11167.377, + "kind": "calibration_drift", + "ledger_value": 11102.0, + "name": "ons.tenure.private_rent@E07000113", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16408.359999999997, + "kind": "calibration_drift", + "ledger_value": 16334.0, + "name": "ons.tenure.private_rent@E07000114", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6707.3396, + "kind": "calibration_drift", + "ledger_value": 6694.0, + "name": "ons.tenure.private_rent@E07000115", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9278.1052, + "kind": "calibration_drift", + "ledger_value": 9268.0, + "name": "ons.tenure.private_rent@E07000116", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9760.6656, + "kind": "calibration_drift", + "ledger_value": 9696.0, + "name": "ons.tenure.private_rent@E07000117", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6933.2556, + "kind": "calibration_drift", + "ledger_value": 6964.0, + "name": "ons.tenure.private_rent@E07000118", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7224.1126, + "kind": "calibration_drift", + "ledger_value": 7230.0, + "name": "ons.tenure.private_rent@E07000119", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8067.801, + "kind": "calibration_drift", + "ledger_value": 8035.0, + "name": "ons.tenure.private_rent@E07000120", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13093.1974, + "kind": "calibration_drift", + "ledger_value": 13029.0, + "name": "ons.tenure.private_rent@E07000121", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8819.8922, + "kind": "calibration_drift", + "ledger_value": 8741.0, + "name": "ons.tenure.private_rent@E07000122", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13292.361, + "kind": "calibration_drift", + "ledger_value": 13333.0, + "name": "ons.tenure.private_rent@E07000123", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4012.0499999999997, + "kind": "calibration_drift", + "ledger_value": 4003.0, + "name": "ons.tenure.private_rent@E07000124", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5244.2676, + "kind": "calibration_drift", + "ledger_value": 5207.0, + "name": "ons.tenure.private_rent@E07000125", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6214.149399999999, + "kind": "calibration_drift", + "ledger_value": 6217.0, + "name": "ons.tenure.private_rent@E07000126", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6804.326599999999, + "kind": "calibration_drift", + "ledger_value": 6722.0, + "name": "ons.tenure.private_rent@E07000127", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9249.7474, + "kind": "calibration_drift", + "ledger_value": 9241.0, + "name": "ons.tenure.private_rent@E07000128", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5428.3125, + "kind": "calibration_drift", + "ledger_value": 5449.0, + "name": "ons.tenure.private_rent@E07000129", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12794.319, + "kind": "calibration_drift", + "ledger_value": 12814.0, + "name": "ons.tenure.private_rent@E07000130", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5443.6311000000005, + "kind": "calibration_drift", + "ledger_value": 5439.0, + "name": "ons.tenure.private_rent@E07000131", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7105.3902, + "kind": "calibration_drift", + "ledger_value": 7114.0, + "name": "ons.tenure.private_rent@E07000132", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3896.0676, + "kind": "calibration_drift", + "ledger_value": 3881.0, + "name": "ons.tenure.private_rent@E07000133", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6102.8361, + "kind": "calibration_drift", + "ledger_value": 6074.0, + "name": "ons.tenure.private_rent@E07000134", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3639.0752999999995, + "kind": "calibration_drift", + "ledger_value": 3623.0, + "name": "ons.tenure.private_rent@E07000135", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6010.177600000001, + "kind": "calibration_drift", + "ledger_value": 5965.0, + "name": "ons.tenure.private_rent@E07000136", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13449.4058, + "kind": "calibration_drift", + "ledger_value": 13110.0, + "name": "ons.tenure.private_rent@E07000137", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11625.6645, + "kind": "calibration_drift", + "ledger_value": 11558.0, + "name": "ons.tenure.private_rent@E07000138", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8020.5697, + "kind": "calibration_drift", + "ledger_value": 8164.0, + "name": "ons.tenure.private_rent@E07000139", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7013.1269, + "kind": "calibration_drift", + "ledger_value": 6943.0, + "name": "ons.tenure.private_rent@E07000140", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11432.415, + "kind": "calibration_drift", + "ledger_value": 11325.0, + "name": "ons.tenure.private_rent@E07000141", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7575.5205000000005, + "kind": "calibration_drift", + "ledger_value": 7570.0, + "name": "ons.tenure.private_rent@E07000142", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10991.3739, + "kind": "calibration_drift", + "ledger_value": 10930.0, + "name": "ons.tenure.private_rent@E07000143", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7081.376, + "kind": "calibration_drift", + "ledger_value": 7095.0, + "name": "ons.tenure.private_rent@E07000144", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9781.8624, + "kind": "calibration_drift", + "ledger_value": 9576.0, + "name": "ons.tenure.private_rent@E07000145", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12696.7248, + "kind": "calibration_drift", + "ledger_value": 12704.0, + "name": "ons.tenure.private_rent@E07000146", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8750.856600000001, + "kind": "calibration_drift", + "ledger_value": 8538.0, + "name": "ons.tenure.private_rent@E07000147", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17648.8742, + "kind": "calibration_drift", + "ledger_value": 17351.0, + "name": "ons.tenure.private_rent@E07000148", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8507.4066, + "kind": "calibration_drift", + "ledger_value": 8527.0, + "name": "ons.tenure.private_rent@E07000149", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9353.5728, + "kind": "calibration_drift", + "ledger_value": 9297.0, + "name": "ons.tenure.private_rent@E07000170", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8454.5494, + "kind": "calibration_drift", + "ledger_value": 8351.0, + "name": "ons.tenure.private_rent@E07000171", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8351.9447, + "kind": "calibration_drift", + "ledger_value": 8355.0, + "name": "ons.tenure.private_rent@E07000172", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8196.609, + "kind": "calibration_drift", + "ledger_value": 8191.0, + "name": "ons.tenure.private_rent@E07000173", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9178.533, + "kind": "calibration_drift", + "ledger_value": 9065.0, + "name": "ons.tenure.private_rent@E07000174", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8650.288199999999, + "kind": "calibration_drift", + "ledger_value": 8624.0, + "name": "ons.tenure.private_rent@E07000175", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7287.906300000001, + "kind": "calibration_drift", + "ledger_value": 7312.0, + "name": "ons.tenure.private_rent@E07000176", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13014.065, + "kind": "calibration_drift", + "ledger_value": 13033.0, + "name": "ons.tenure.private_rent@E07000177", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17676.16, + "kind": "calibration_drift", + "ledger_value": 17762.0, + "name": "ons.tenure.private_rent@E07000178", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9784.1727, + "kind": "calibration_drift", + "ledger_value": 9784.0, + "name": "ons.tenure.private_rent@E07000179", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9073.1844, + "kind": "calibration_drift", + "ledger_value": 9002.0, + "name": "ons.tenure.private_rent@E07000180", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8367.8864, + "kind": "calibration_drift", + "ledger_value": 8570.0, + "name": "ons.tenure.private_rent@E07000181", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6935.7372000000005, + "kind": "calibration_drift", + "ledger_value": 6862.0, + "name": "ons.tenure.private_rent@E07000192", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10027.781500000001, + "kind": "calibration_drift", + "ledger_value": 9992.0, + "name": "ons.tenure.private_rent@E07000193", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5799.573000000001, + "kind": "calibration_drift", + "ledger_value": 5817.0, + "name": "ons.tenure.private_rent@E07000194", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7783.7311, + "kind": "calibration_drift", + "ledger_value": 7735.0, + "name": "ons.tenure.private_rent@E07000195", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4884.2139, + "kind": "calibration_drift", + "ledger_value": 4873.0, + "name": "ons.tenure.private_rent@E07000196", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9271.2568, + "kind": "calibration_drift", + "ledger_value": 9336.0, + "name": "ons.tenure.private_rent@E07000197", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5396.027000000001, + "kind": "calibration_drift", + "ledger_value": 5373.0, + "name": "ons.tenure.private_rent@E07000198", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4690.827, + "kind": "calibration_drift", + "ledger_value": 4643.0, + "name": "ons.tenure.private_rent@E07000199", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6005.88, + "kind": "calibration_drift", + "ledger_value": 5959.0, + "name": "ons.tenure.private_rent@E07000200", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13728.2649, + "kind": "calibration_drift", + "ledger_value": 13664.0, + "name": "ons.tenure.private_rent@E07000202", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6114.8997, + "kind": "calibration_drift", + "ledger_value": 6079.0, + "name": "ons.tenure.private_rent@E07000203", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9789.399000000001, + "kind": "calibration_drift", + "ledger_value": 9725.0, + "name": "ons.tenure.private_rent@E07000207", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5052.0773, + "kind": "calibration_drift", + "ledger_value": 5048.0, + "name": "ons.tenure.private_rent@E07000208", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10967.992, + "kind": "calibration_drift", + "ledger_value": 10930.0, + "name": "ons.tenure.private_rent@E07000209", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5258.8824, + "kind": "calibration_drift", + "ledger_value": 5238.0, + "name": "ons.tenure.private_rent@E07000210", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9402.277900000001, + "kind": "calibration_drift", + "ledger_value": 9387.0, + "name": "ons.tenure.private_rent@E07000211", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6605.2848, + "kind": "calibration_drift", + "ledger_value": 6652.0, + "name": "ons.tenure.private_rent@E07000212", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7499.817, + "kind": "calibration_drift", + "ledger_value": 7487.0, + "name": "ons.tenure.private_rent@E07000213", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5458.812800000001, + "kind": "calibration_drift", + "ledger_value": 5531.0, + "name": "ons.tenure.private_rent@E07000214", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4734.2967, + "kind": "calibration_drift", + "ledger_value": 4730.0, + "name": "ons.tenure.private_rent@E07000215", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7767.5488000000005, + "kind": "calibration_drift", + "ledger_value": 7703.0, + "name": "ons.tenure.private_rent@E07000216", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8797.0751, + "kind": "calibration_drift", + "ledger_value": 8738.0, + "name": "ons.tenure.private_rent@E07000217", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4164.58, + "kind": "calibration_drift", + "ledger_value": 4110.0, + "name": "ons.tenure.private_rent@E07000218", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9427.2276, + "kind": "calibration_drift", + "ledger_value": 9399.0, + "name": "ons.tenure.private_rent@E07000219", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8495.249099999999, + "kind": "calibration_drift", + "ledger_value": 8474.0, + "name": "ons.tenure.private_rent@E07000220", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8378.4776, + "kind": "calibration_drift", + "ledger_value": 8363.0, + "name": "ons.tenure.private_rent@E07000221", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11866.3005, + "kind": "calibration_drift", + "ledger_value": 11910.0, + "name": "ons.tenure.private_rent@E07000222", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4121.2542, + "kind": "calibration_drift", + "ledger_value": 4095.0, + "name": "ons.tenure.private_rent@E07000223", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13282.430800000002, + "kind": "calibration_drift", + "ledger_value": 13225.0, + "name": "ons.tenure.private_rent@E07000224", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9860.2996, + "kind": "calibration_drift", + "ledger_value": 9807.0, + "name": "ons.tenure.private_rent@E07000225", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9091.2996, + "kind": "calibration_drift", + "ledger_value": 9015.0, + "name": "ons.tenure.private_rent@E07000226", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9087.309, + "kind": "calibration_drift", + "ledger_value": 9055.0, + "name": "ons.tenure.private_rent@E07000227", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9432.6661, + "kind": "calibration_drift", + "ledger_value": 9710.0, + "name": "ons.tenure.private_rent@E07000228", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10962.759399999999, + "kind": "calibration_drift", + "ledger_value": 10916.0, + "name": "ons.tenure.private_rent@E07000229", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4394.829, + "kind": "calibration_drift", + "ledger_value": 4379.0, + "name": "ons.tenure.private_rent@E07000234", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4658.082, + "kind": "calibration_drift", + "ledger_value": 4653.0, + "name": "ons.tenure.private_rent@E07000235", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5278.4478, + "kind": "calibration_drift", + "ledger_value": 5243.0, + "name": "ons.tenure.private_rent@E07000236", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9472.1196, + "kind": "calibration_drift", + "ledger_value": 9494.0, + "name": "ons.tenure.private_rent@E07000237", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7496.4292000000005, + "kind": "calibration_drift", + "ledger_value": 7493.0, + "name": "ons.tenure.private_rent@E07000238", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7273.860000000001, + "kind": "calibration_drift", + "ledger_value": 7239.0, + "name": "ons.tenure.private_rent@E07000239", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9633.2303, + "kind": "calibration_drift", + "ledger_value": 9602.0, + "name": "ons.tenure.private_rent@E07000240", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7615.2432, + "kind": "calibration_drift", + "ledger_value": 7586.0, + "name": "ons.tenure.private_rent@E07000241", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9972.976799999999, + "kind": "calibration_drift", + "ledger_value": 9967.0, + "name": "ons.tenure.private_rent@E07000242", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5447.4412, + "kind": "calibration_drift", + "ledger_value": 5470.0, + "name": "ons.tenure.private_rent@E07000243", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19746.1901, + "kind": "calibration_drift", + "ledger_value": 19485.0, + "name": "ons.tenure.private_rent@E07000244", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17835.968999999997, + "kind": "calibration_drift", + "ledger_value": 17629.0, + "name": "ons.tenure.private_rent@E07000245", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21607.901, + "kind": "calibration_drift", + "ledger_value": 21372.0, + "name": "ons.tenure.private_rent@E08000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14331.6096, + "kind": "calibration_drift", + "ledger_value": 14249.0, + "name": "ons.tenure.private_rent@E08000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 71248.07759999999, + "kind": "calibration_drift", + "ledger_value": 69403.0, + "name": "ons.tenure.private_rent@E08000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16783.828, + "kind": "calibration_drift", + "ledger_value": 16498.0, + "name": "ons.tenure.private_rent@E08000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16573.9651, + "kind": "calibration_drift", + "ledger_value": 16503.0, + "name": "ons.tenure.private_rent@E08000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31818.0624, + "kind": "calibration_drift", + "ledger_value": 30853.0, + "name": "ons.tenure.private_rent@E08000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18262.6416, + "kind": "calibration_drift", + "ledger_value": 18192.0, + "name": "ons.tenure.private_rent@E08000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17536.657400000004, + "kind": "calibration_drift", + "ledger_value": 17459.0, + "name": "ons.tenure.private_rent@E08000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14748.4108, + "kind": "calibration_drift", + "ledger_value": 14744.0, + "name": "ons.tenure.private_rent@E08000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23111.457499999997, + "kind": "calibration_drift", + "ledger_value": 22761.0, + "name": "ons.tenure.private_rent@E08000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9501.297400000001, + "kind": "calibration_drift", + "ledger_value": 9461.0, + "name": "ons.tenure.private_rent@E08000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 55005.8641, + "kind": "calibration_drift", + "ledger_value": 54067.0, + "name": "ons.tenure.private_rent@E08000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12265.065400000001, + "kind": "calibration_drift", + "ledger_value": 12264.0, + "name": "ons.tenure.private_rent@E08000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22497.744400000003, + "kind": "calibration_drift", + "ledger_value": 22457.0, + "name": "ons.tenure.private_rent@E08000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27203.554799999998, + "kind": "calibration_drift", + "ledger_value": 27091.0, + "name": "ons.tenure.private_rent@E08000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18952.4962, + "kind": "calibration_drift", + "ledger_value": 18569.0, + "name": "ons.tenure.private_rent@E08000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26242.5612, + "kind": "calibration_drift", + "ledger_value": 25941.0, + "name": "ons.tenure.private_rent@E08000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17362.170000000002, + "kind": "calibration_drift", + "ledger_value": 17035.0, + "name": "ons.tenure.private_rent@E08000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 43560.21000000001, + "kind": "calibration_drift", + "ledger_value": 43424.0, + "name": "ons.tenure.private_rent@E08000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28329.267900000003, + "kind": "calibration_drift", + "ledger_value": 27978.0, + "name": "ons.tenure.private_rent@E08000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14704.2496, + "kind": "calibration_drift", + "ledger_value": 14625.0, + "name": "ons.tenure.private_rent@E08000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9109.485799999999, + "kind": "calibration_drift", + "ledger_value": 9025.0, + "name": "ons.tenure.private_rent@E08000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18228.8084, + "kind": "calibration_drift", + "ledger_value": 18096.0, + "name": "ons.tenure.private_rent@E08000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 98072.4096, + "kind": "calibration_drift", + "ledger_value": 95719.0, + "name": "ons.tenure.private_rent@E08000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33306.7137, + "kind": "calibration_drift", + "ledger_value": 33195.0, + "name": "ons.tenure.private_rent@E08000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19408.970400000002, + "kind": "calibration_drift", + "ledger_value": 18940.0, + "name": "ons.tenure.private_rent@E08000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25072.355, + "kind": "calibration_drift", + "ledger_value": 24237.0, + "name": "ons.tenure.private_rent@E08000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11552.255299999999, + "kind": "calibration_drift", + "ledger_value": 11496.0, + "name": "ons.tenure.private_rent@E08000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18517.29, + "kind": "calibration_drift", + "ledger_value": 18336.0, + "name": "ons.tenure.private_rent@E08000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20470.952699999998, + "kind": "calibration_drift", + "ledger_value": 20006.0, + "name": "ons.tenure.private_rent@E08000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 48668.157300000006, + "kind": "calibration_drift", + "ledger_value": 48278.0, + "name": "ons.tenure.private_rent@E08000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18511.3896, + "kind": "calibration_drift", + "ledger_value": 18437.0, + "name": "ons.tenure.private_rent@E08000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34423.0726, + "kind": "calibration_drift", + "ledger_value": 33942.0, + "name": "ons.tenure.private_rent@E08000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 75805.452, + "kind": "calibration_drift", + "ledger_value": 74402.0, + "name": "ons.tenure.private_rent@E08000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22900.02, + "kind": "calibration_drift", + "ledger_value": 22754.0, + "name": "ons.tenure.private_rent@E08000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14595.835999999998, + "kind": "calibration_drift", + "ledger_value": 14584.0, + "name": "ons.tenure.private_rent@E08000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2546.9262, + "kind": "calibration_drift", + "ledger_value": 2373.0, + "name": "ons.tenure.private_rent@E09000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18992.814000000002, + "kind": "calibration_drift", + "ledger_value": 17890.0, + "name": "ons.tenure.private_rent@E09000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49559.5776, + "kind": "calibration_drift", + "ledger_value": 48705.0, + "name": "ons.tenure.private_rent@E09000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14676.199999999999, + "kind": "calibration_drift", + "ledger_value": 14578.0, + "name": "ons.tenure.private_rent@E09000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44242.276, + "kind": "calibration_drift", + "ledger_value": 42726.0, + "name": "ons.tenure.private_rent@E09000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23579.5672, + "kind": "calibration_drift", + "ledger_value": 23661.0, + "name": "ons.tenure.private_rent@E09000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34255.898700000005, + "kind": "calibration_drift", + "ledger_value": 33012.0, + "name": "ons.tenure.private_rent@E09000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40469.5116, + "kind": "calibration_drift", + "ledger_value": 39441.0, + "name": "ons.tenure.private_rent@E09000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 46032.1596, + "kind": "calibration_drift", + "ledger_value": 45490.0, + "name": "ons.tenure.private_rent@E09000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 36639.669, + "kind": "calibration_drift", + "ledger_value": 35388.0, + "name": "ons.tenure.private_rent@E09000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29893.0292, + "kind": "calibration_drift", + "ledger_value": 29088.0, + "name": "ons.tenure.private_rent@E09000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 35558.351200000005, + "kind": "calibration_drift", + "ledger_value": 34147.0, + "name": "ons.tenure.private_rent@E09000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30962.0884, + "kind": "calibration_drift", + "ledger_value": 29558.0, + "name": "ons.tenure.private_rent@E09000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38537.2364, + "kind": "calibration_drift", + "ledger_value": 37376.0, + "name": "ons.tenure.private_rent@E09000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26632.6382, + "kind": "calibration_drift", + "ledger_value": 26495.0, + "name": "ons.tenure.private_rent@E09000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16234.7031, + "kind": "calibration_drift", + "ledger_value": 16019.0, + "name": "ons.tenure.private_rent@E09000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28344.666, + "kind": "calibration_drift", + "ledger_value": 28276.0, + "name": "ons.tenure.private_rent@E09000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32165.0164, + "kind": "calibration_drift", + "ledger_value": 31788.0, + "name": "ons.tenure.private_rent@E09000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31052.4128, + "kind": "calibration_drift", + "ledger_value": 30079.0, + "name": "ons.tenure.private_rent@E09000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28639.7288, + "kind": "calibration_drift", + "ledger_value": 26460.0, + "name": "ons.tenure.private_rent@E09000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18040.5874, + "kind": "calibration_drift", + "ledger_value": 17911.0, + "name": "ons.tenure.private_rent@E09000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 42642.220799999996, + "kind": "calibration_drift", + "ledger_value": 42329.0, + "name": "ons.tenure.private_rent@E09000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33878.105599999995, + "kind": "calibration_drift", + "ledger_value": 33289.0, + "name": "ons.tenure.private_rent@E09000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24085.536299999996, + "kind": "calibration_drift", + "ledger_value": 23748.0, + "name": "ons.tenure.private_rent@E09000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 47450.2756, + "kind": "calibration_drift", + "ledger_value": 44479.0, + "name": "ons.tenure.private_rent@E09000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32690.3376, + "kind": "calibration_drift", + "ledger_value": 31576.0, + "name": "ons.tenure.private_rent@E09000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20119.7565, + "kind": "calibration_drift", + "ledger_value": 19970.0, + "name": "ons.tenure.private_rent@E09000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38643.6372, + "kind": "calibration_drift", + "ledger_value": 37506.0, + "name": "ons.tenure.private_rent@E09000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16774.287600000003, + "kind": "calibration_drift", + "ledger_value": 16683.0, + "name": "ons.tenure.private_rent@E09000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 49360.7205, + "kind": "calibration_drift", + "ledger_value": 46000.0, + "name": "ons.tenure.private_rent@E09000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29069.532499999998, + "kind": "calibration_drift", + "ledger_value": 28593.0, + "name": "ons.tenure.private_rent@E09000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50217.1415, + "kind": "calibration_drift", + "ledger_value": 49830.0, + "name": "ons.tenure.private_rent@E09000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 45406.9035, + "kind": "calibration_drift", + "ledger_value": 41065.0, + "name": "ons.tenure.private_rent@E09000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9262.459, + "kind": "calibration_drift", + "ledger_value": 9594.0, + "name": "ons.tenure.social_rent@E06000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13998.8626, + "kind": "calibration_drift", + "ledger_value": 14006.0, + "name": "ons.tenure.social_rent@E06000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11581.4044, + "kind": "calibration_drift", + "ledger_value": 11649.0, + "name": "ons.tenure.social_rent@E06000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13091.2191, + "kind": "calibration_drift", + "ledger_value": 13673.0, + "name": "ons.tenure.social_rent@E06000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7670.3423999999995, + "kind": "calibration_drift", + "ledger_value": 7931.0, + "name": "ons.tenure.social_rent@E06000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13646.4489, + "kind": "calibration_drift", + "ledger_value": 13619.0, + "name": "ons.tenure.social_rent@E06000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14078.659, + "kind": "calibration_drift", + "ledger_value": 13842.0, + "name": "ons.tenure.social_rent@E06000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10777.8678, + "kind": "calibration_drift", + "ledger_value": 11031.0, + "name": "ons.tenure.social_rent@E06000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6381.7164999999995, + "kind": "calibration_drift", + "ledger_value": 6700.0, + "name": "ons.tenure.social_rent@E06000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30611.6272, + "kind": "calibration_drift", + "ledger_value": 31167.0, + "name": "ons.tenure.social_rent@E06000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13564.2872, + "kind": "calibration_drift", + "ledger_value": 14280.0, + "name": "ons.tenure.social_rent@E06000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9077.380000000001, + "kind": "calibration_drift", + "ledger_value": 9191.0, + "name": "ons.tenure.social_rent@E06000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11027.1711, + "kind": "calibration_drift", + "ledger_value": 10953.0, + "name": "ons.tenure.social_rent@E06000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12092.4485, + "kind": "calibration_drift", + "ledger_value": 11924.0, + "name": "ons.tenure.social_rent@E06000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19112.4468, + "kind": "calibration_drift", + "ledger_value": 19851.0, + "name": "ons.tenure.social_rent@E06000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27668.456399999995, + "kind": "calibration_drift", + "ledger_value": 29495.0, + "name": "ons.tenure.social_rent@E06000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2270.384, + "kind": "calibration_drift", + "ledger_value": 1819.0, + "name": "ons.tenure.social_rent@E06000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 31622.857500000002, + "kind": "calibration_drift", + "ledger_value": 31796.0, + "name": "ons.tenure.social_rent@E06000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11024.2737, + "kind": "calibration_drift", + "ledger_value": 11309.0, + "name": "ons.tenure.social_rent@E06000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13067.907999999998, + "kind": "calibration_drift", + "ledger_value": 13784.0, + "name": "ons.tenure.social_rent@E06000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24354.019399999997, + "kind": "calibration_drift", + "ledger_value": 24569.0, + "name": "ons.tenure.social_rent@E06000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11412.000000000002, + "kind": "calibration_drift", + "ledger_value": 11363.0, + "name": "ons.tenure.social_rent@E06000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37350.2462, + "kind": "calibration_drift", + "ledger_value": 35879.0, + "name": "ons.tenure.social_rent@E06000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9247.1096, + "kind": "calibration_drift", + "ledger_value": 8714.0, + "name": "ons.tenure.social_rent@E06000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13475.324100000002, + "kind": "calibration_drift", + "ledger_value": 12738.0, + "name": "ons.tenure.social_rent@E06000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21960.7686, + "kind": "calibration_drift", + "ledger_value": 21111.0, + "name": "ons.tenure.social_rent@E06000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4957.4704, + "kind": "calibration_drift", + "ledger_value": 5225.0, + "name": "ons.tenure.social_rent@E06000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15079.0926, + "kind": "calibration_drift", + "ledger_value": 14944.0, + "name": "ons.tenure.social_rent@E06000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 15807.671, + "kind": "calibration_drift", + "ledger_value": 15760.0, + "name": "ons.tenure.social_rent@E06000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11864.681999999999, + "kind": "calibration_drift", + "ledger_value": 12923.0, + "name": "ons.tenure.social_rent@E06000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9205.42, + "kind": "calibration_drift", + "ledger_value": 9019.0, + "name": "ons.tenure.social_rent@E06000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11377.0178, + "kind": "calibration_drift", + "ledger_value": 11733.0, + "name": "ons.tenure.social_rent@E06000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8158.7256, + "kind": "calibration_drift", + "ledger_value": 15130.0, + "name": "ons.tenure.social_rent@E06000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8120.0768, + "kind": "calibration_drift", + "ledger_value": 7889.0, + "name": "ons.tenure.social_rent@E06000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9118.814400000001, + "kind": "calibration_drift", + "ledger_value": 9305.0, + "name": "ons.tenure.social_rent@E06000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10727.7555, + "kind": "calibration_drift", + "ledger_value": 10924.0, + "name": "ons.tenure.social_rent@E06000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9839.7971, + "kind": "calibration_drift", + "ledger_value": 10266.0, + "name": "ons.tenure.social_rent@E06000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7293.5604, + "kind": "calibration_drift", + "ledger_value": 7655.0, + "name": "ons.tenure.social_rent@E06000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4924.4768, + "kind": "calibration_drift", + "ledger_value": 5331.0, + "name": "ons.tenure.social_rent@E06000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21500.6902, + "kind": "calibration_drift", + "ledger_value": 20448.0, + "name": "ons.tenure.social_rent@E06000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16984.1398, + "kind": "calibration_drift", + "ledger_value": 18051.0, + "name": "ons.tenure.social_rent@E06000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16352.219, + "kind": "calibration_drift", + "ledger_value": 15507.0, + "name": "ons.tenure.social_rent@E06000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22810.893, + "kind": "calibration_drift", + "ledger_value": 22397.0, + "name": "ons.tenure.social_rent@E06000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6574.6625, + "kind": "calibration_drift", + "ledger_value": 7057.0, + "name": "ons.tenure.social_rent@E06000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 45614.0623, + "kind": "calibration_drift", + "ledger_value": 46858.0, + "name": "ons.tenure.social_rent@E06000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20283.296, + "kind": "calibration_drift", + "ledger_value": 20243.0, + "name": "ons.tenure.social_rent@E06000049", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23025.150400000002, + "kind": "calibration_drift", + "ledger_value": 22710.0, + "name": "ons.tenure.social_rent@E06000050", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18312.764799999997, + "kind": "calibration_drift", + "ledger_value": 18169.0, + "name": "ons.tenure.social_rent@E06000051", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28636.1505, + "kind": "calibration_drift", + "ledger_value": 32039.0, + "name": "ons.tenure.social_rent@E06000052", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29831.734699999997, + "kind": "calibration_drift", + "ledger_value": 31228.0, + "name": "ons.tenure.social_rent@E06000054", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12411.72, + "kind": "calibration_drift", + "ledger_value": 12200.0, + "name": "ons.tenure.social_rent@E06000055", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16784.945, + "kind": "calibration_drift", + "ledger_value": 16077.0, + "name": "ons.tenure.social_rent@E06000056", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23992.362599999997, + "kind": "calibration_drift", + "ledger_value": 26085.0, + "name": "ons.tenure.social_rent@E06000057", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17714.499799999998, + "kind": "calibration_drift", + "ledger_value": 19102.0, + "name": "ons.tenure.social_rent@E06000058", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19685.054300000003, + "kind": "calibration_drift", + "ledger_value": 20836.0, + "name": "ons.tenure.social_rent@E06000059", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 28862.968, + "kind": "calibration_drift", + "ledger_value": 28535.0, + "name": "ons.tenure.social_rent@E06000060", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23275.8834, + "kind": "calibration_drift", + "ledger_value": 22671.0, + "name": "ons.tenure.social_rent@E06000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24480.4938, + "kind": "calibration_drift", + "ledger_value": 24811.0, + "name": "ons.tenure.social_rent@E06000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11727.492, + "kind": "calibration_drift", + "ledger_value": 11890.0, + "name": "ons.tenure.social_rent@E07000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5245.623, + "kind": "calibration_drift", + "ledger_value": 5200.0, + "name": "ons.tenure.social_rent@E07000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5479.5169, + "kind": "calibration_drift", + "ledger_value": 5581.0, + "name": "ons.tenure.social_rent@E07000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10432.616000000002, + "kind": "calibration_drift", + "ledger_value": 9886.0, + "name": "ons.tenure.social_rent@E07000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9620.625600000001, + "kind": "calibration_drift", + "ledger_value": 9696.0, + "name": "ons.tenure.social_rent@E07000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6995.2311, + "kind": "calibration_drift", + "ledger_value": 7169.0, + "name": "ons.tenure.social_rent@E07000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5691.286800000001, + "kind": "calibration_drift", + "ledger_value": 5762.0, + "name": "ons.tenure.social_rent@E07000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9948.006, + "kind": "calibration_drift", + "ledger_value": 9967.0, + "name": "ons.tenure.social_rent@E07000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3819.0789, + "kind": "calibration_drift", + "ledger_value": 4075.0, + "name": "ons.tenure.social_rent@E07000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6427.651800000001, + "kind": "calibration_drift", + "ledger_value": 6398.0, + "name": "ons.tenure.social_rent@E07000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4970.1068, + "kind": "calibration_drift", + "ledger_value": 4957.0, + "name": "ons.tenure.social_rent@E07000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8222.4756, + "kind": "calibration_drift", + "ledger_value": 8597.0, + "name": "ons.tenure.social_rent@E07000038", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4668.768, + "kind": "calibration_drift", + "ledger_value": 4466.0, + "name": "ons.tenure.social_rent@E07000039", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6465.078399999999, + "kind": "calibration_drift", + "ledger_value": 6898.0, + "name": "ons.tenure.social_rent@E07000040", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9018.2664, + "kind": "calibration_drift", + "ledger_value": 8727.0, + "name": "ons.tenure.social_rent@E07000041", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4283.0866, + "kind": "calibration_drift", + "ledger_value": 4504.0, + "name": "ons.tenure.social_rent@E07000042", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4622.079, + "kind": "calibration_drift", + "ledger_value": 4811.0, + "name": "ons.tenure.social_rent@E07000043", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4023.9705, + "kind": "calibration_drift", + "ledger_value": 4653.0, + "name": "ons.tenure.social_rent@E07000044", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5529.031199999999, + "kind": "calibration_drift", + "ledger_value": 5694.0, + "name": "ons.tenure.social_rent@E07000045", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2540.1138, + "kind": "calibration_drift", + "ledger_value": 2847.0, + "name": "ons.tenure.social_rent@E07000046", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2404.8642, + "kind": "calibration_drift", + "ledger_value": 2495.0, + "name": "ons.tenure.social_rent@E07000047", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5505.127, + "kind": "calibration_drift", + "ledger_value": 5940.0, + "name": "ons.tenure.social_rent@E07000061", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5631.057599999999, + "kind": "calibration_drift", + "ledger_value": 5771.0, + "name": "ons.tenure.social_rent@E07000062", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4692.0912, + "kind": "calibration_drift", + "ledger_value": 4774.0, + "name": "ons.tenure.social_rent@E07000063", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4088.1042, + "kind": "calibration_drift", + "ledger_value": 4293.0, + "name": "ons.tenure.social_rent@E07000064", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5747.9972, + "kind": "calibration_drift", + "ledger_value": 5701.0, + "name": "ons.tenure.social_rent@E07000065", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16257.469799999999, + "kind": "calibration_drift", + "ledger_value": 16213.0, + "name": "ons.tenure.social_rent@E07000066", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10807.1718, + "kind": "calibration_drift", + "ledger_value": 10593.0, + "name": "ons.tenure.social_rent@E07000067", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3276.2446, + "kind": "calibration_drift", + "ledger_value": 3660.0, + "name": "ons.tenure.social_rent@E07000068", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 1989.0948, + "kind": "calibration_drift", + "ledger_value": 2051.0, + "name": "ons.tenure.social_rent@E07000069", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10360.097399999999, + "kind": "calibration_drift", + "ledger_value": 10017.0, + "name": "ons.tenure.social_rent@E07000070", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10736.937000000002, + "kind": "calibration_drift", + "ledger_value": 10585.0, + "name": "ons.tenure.social_rent@E07000071", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7927.132099999999, + "kind": "calibration_drift", + "ledger_value": 7993.0, + "name": "ons.tenure.social_rent@E07000072", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10671.888300000002, + "kind": "calibration_drift", + "ledger_value": 11097.0, + "name": "ons.tenure.social_rent@E07000073", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3180.6, + "kind": "calibration_drift", + "ledger_value": 3132.0, + "name": "ons.tenure.social_rent@E07000074", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3107.6818000000003, + "kind": "calibration_drift", + "ledger_value": 2871.0, + "name": "ons.tenure.social_rent@E07000075", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5504.0016000000005, + "kind": "calibration_drift", + "ledger_value": 5506.0, + "name": "ons.tenure.social_rent@E07000076", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4760.1903999999995, + "kind": "calibration_drift", + "ledger_value": 4809.0, + "name": "ons.tenure.social_rent@E07000077", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6517.156800000001, + "kind": "calibration_drift", + "ledger_value": 6432.0, + "name": "ons.tenure.social_rent@E07000078", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5622.684499999999, + "kind": "calibration_drift", + "ledger_value": 6232.0, + "name": "ons.tenure.social_rent@E07000079", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5095.0073, + "kind": "calibration_drift", + "ledger_value": 4836.0, + "name": "ons.tenure.social_rent@E07000080", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8050.637099999999, + "kind": "calibration_drift", + "ledger_value": 7537.0, + "name": "ons.tenure.social_rent@E07000081", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6672.957200000001, + "kind": "calibration_drift", + "ledger_value": 6430.0, + "name": "ons.tenure.social_rent@E07000082", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5173.678400000001, + "kind": "calibration_drift", + "ledger_value": 5198.0, + "name": "ons.tenure.social_rent@E07000083", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14263.634499999998, + "kind": "calibration_drift", + "ledger_value": 13711.0, + "name": "ons.tenure.social_rent@E07000084", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6484.314, + "kind": "calibration_drift", + "ledger_value": 6607.0, + "name": "ons.tenure.social_rent@E07000085", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7388.7352, + "kind": "calibration_drift", + "ledger_value": 7430.0, + "name": "ons.tenure.social_rent@E07000086", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4542.8826, + "kind": "calibration_drift", + "ledger_value": 3959.0, + "name": "ons.tenure.social_rent@E07000087", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5790.6264, + "kind": "calibration_drift", + "ledger_value": 5862.0, + "name": "ons.tenure.social_rent@E07000088", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4104.3028, + "kind": "calibration_drift", + "ledger_value": 3514.0, + "name": "ons.tenure.social_rent@E07000089", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10181.91, + "kind": "calibration_drift", + "ledger_value": 9989.0, + "name": "ons.tenure.social_rent@E07000090", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8276.2922, + "kind": "calibration_drift", + "ledger_value": 8367.0, + "name": "ons.tenure.social_rent@E07000091", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6331.713299999999, + "kind": "calibration_drift", + "ledger_value": 6369.0, + "name": "ons.tenure.social_rent@E07000092", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8638.393199999999, + "kind": "calibration_drift", + "ledger_value": 7842.0, + "name": "ons.tenure.social_rent@E07000093", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7839.994000000001, + "kind": "calibration_drift", + "ledger_value": 7937.0, + "name": "ons.tenure.social_rent@E07000094", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5670.5127, + "kind": "calibration_drift", + "ledger_value": 5683.0, + "name": "ons.tenure.social_rent@E07000095", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13056.5308, + "kind": "calibration_drift", + "ledger_value": 13320.0, + "name": "ons.tenure.social_rent@E07000096", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7413.863400000001, + "kind": "calibration_drift", + "ledger_value": 7401.0, + "name": "ons.tenure.social_rent@E07000098", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10370.609600000002, + "kind": "calibration_drift", + "ledger_value": 10594.0, + "name": "ons.tenure.social_rent@E07000099", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5244.8934, + "kind": "calibration_drift", + "ledger_value": 5467.0, + "name": "ons.tenure.social_rent@E07000102", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6558.434, + "kind": "calibration_drift", + "ledger_value": 6172.0, + "name": "ons.tenure.social_rent@E07000103", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7373.0208, + "kind": "calibration_drift", + "ledger_value": 7501.0, + "name": "ons.tenure.social_rent@E07000105", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7285.0464, + "kind": "calibration_drift", + "ledger_value": 7800.0, + "name": "ons.tenure.social_rent@E07000106", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5899.3535999999995, + "kind": "calibration_drift", + "ledger_value": 6314.0, + "name": "ons.tenure.social_rent@E07000107", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7046.3912, + "kind": "calibration_drift", + "ledger_value": 7039.0, + "name": "ons.tenure.social_rent@E07000108", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6980.425200000001, + "kind": "calibration_drift", + "ledger_value": 7270.0, + "name": "ons.tenure.social_rent@E07000109", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9178.711200000002, + "kind": "calibration_drift", + "ledger_value": 9507.0, + "name": "ons.tenure.social_rent@E07000110", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6312.8744, + "kind": "calibration_drift", + "ledger_value": 6465.0, + "name": "ons.tenure.social_rent@E07000111", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5220.504000000001, + "kind": "calibration_drift", + "ledger_value": 5251.0, + "name": "ons.tenure.social_rent@E07000112", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7755.459000000001, + "kind": "calibration_drift", + "ledger_value": 8041.0, + "name": "ons.tenure.social_rent@E07000113", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7177.879999999999, + "kind": "calibration_drift", + "ledger_value": 7396.0, + "name": "ons.tenure.social_rent@E07000114", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8180.5971, + "kind": "calibration_drift", + "ledger_value": 8255.0, + "name": "ons.tenure.social_rent@E07000115", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7011.6242, + "kind": "calibration_drift", + "ledger_value": 7029.0, + "name": "ons.tenure.social_rent@E07000116", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6092.4416, + "kind": "calibration_drift", + "ledger_value": 6209.0, + "name": "ons.tenure.social_rent@E07000117", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6898.1632, + "kind": "calibration_drift", + "ledger_value": 6637.0, + "name": "ons.tenure.social_rent@E07000118", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3170.1858, + "kind": "calibration_drift", + "ledger_value": 3134.0, + "name": "ons.tenure.social_rent@E07000119", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4637.5070000000005, + "kind": "calibration_drift", + "ledger_value": 4711.0, + "name": "ons.tenure.social_rent@E07000120", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6015.7934, + "kind": "calibration_drift", + "ledger_value": 6153.0, + "name": "ons.tenure.social_rent@E07000121", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4278.6184, + "kind": "calibration_drift", + "ledger_value": 4491.0, + "name": "ons.tenure.social_rent@E07000122", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11218.037400000001, + "kind": "calibration_drift", + "ledger_value": 10983.0, + "name": "ons.tenure.social_rent@E07000123", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2083.5913, + "kind": "calibration_drift", + "ledger_value": 2151.0, + "name": "ons.tenure.social_rent@E07000124", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4394.6718, + "kind": "calibration_drift", + "ledger_value": 4514.0, + "name": "ons.tenure.social_rent@E07000125", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5052.944, + "kind": "calibration_drift", + "ledger_value": 5039.0, + "name": "ons.tenure.social_rent@E07000126", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6945.0723, + "kind": "calibration_drift", + "ledger_value": 6958.0, + "name": "ons.tenure.social_rent@E07000127", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3832.9085, + "kind": "calibration_drift", + "ledger_value": 3871.0, + "name": "ons.tenure.social_rent@E07000128", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3652.935, + "kind": "calibration_drift", + "ledger_value": 3497.0, + "name": "ons.tenure.social_rent@E07000129", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9009.148500000001, + "kind": "calibration_drift", + "ledger_value": 8632.0, + "name": "ons.tenure.social_rent@E07000130", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3499.7657999999997, + "kind": "calibration_drift", + "ledger_value": 3531.0, + "name": "ons.tenure.social_rent@E07000131", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5330.2788, + "kind": "calibration_drift", + "ledger_value": 5049.0, + "name": "ons.tenure.social_rent@E07000132", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2433.9123, + "kind": "calibration_drift", + "ledger_value": 2416.0, + "name": "ons.tenure.social_rent@E07000133", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6143.3118, + "kind": "calibration_drift", + "ledger_value": 6089.0, + "name": "ons.tenure.social_rent@E07000134", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 1822.9302, + "kind": "calibration_drift", + "ledger_value": 1793.0, + "name": "ons.tenure.social_rent@E07000135", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5648.508400000001, + "kind": "calibration_drift", + "ledger_value": 5726.0, + "name": "ons.tenure.social_rent@E07000136", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5840.8108, + "kind": "calibration_drift", + "ledger_value": 7295.0, + "name": "ons.tenure.social_rent@E07000137", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9134.754299999999, + "kind": "calibration_drift", + "ledger_value": 8953.0, + "name": "ons.tenure.social_rent@E07000138", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6241.0536, + "kind": "calibration_drift", + "ledger_value": 5113.0, + "name": "ons.tenure.social_rent@E07000139", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4892.5006, + "kind": "calibration_drift", + "ledger_value": 4936.0, + "name": "ons.tenure.social_rent@E07000140", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7749.405000000001, + "kind": "calibration_drift", + "ledger_value": 7851.0, + "name": "ons.tenure.social_rent@E07000141", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4645.2465, + "kind": "calibration_drift", + "ledger_value": 4605.0, + "name": "ons.tenure.social_rent@E07000142", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8287.2907, + "kind": "calibration_drift", + "ledger_value": 8507.0, + "name": "ons.tenure.social_rent@E07000143", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5758.6720000000005, + "kind": "calibration_drift", + "ledger_value": 5619.0, + "name": "ons.tenure.social_rent@E07000144", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6801.8688, + "kind": "calibration_drift", + "ledger_value": 7213.0, + "name": "ons.tenure.social_rent@E07000145", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9404.4816, + "kind": "calibration_drift", + "ledger_value": 9180.0, + "name": "ons.tenure.social_rent@E07000146", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5282.4408, + "kind": "calibration_drift", + "ledger_value": 6275.0, + "name": "ons.tenure.social_rent@E07000147", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19021.8509, + "kind": "calibration_drift", + "ledger_value": 19518.0, + "name": "ons.tenure.social_rent@E07000148", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7396.410500000001, + "kind": "calibration_drift", + "ledger_value": 7184.0, + "name": "ons.tenure.social_rent@E07000149", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8345.1748, + "kind": "calibration_drift", + "ledger_value": 8130.0, + "name": "ons.tenure.social_rent@E07000170", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7533.4512, + "kind": "calibration_drift", + "ledger_value": 7697.0, + "name": "ons.tenure.social_rent@E07000171", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5643.7287, + "kind": "calibration_drift", + "ledger_value": 5337.0, + "name": "ons.tenure.social_rent@E07000172", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5077.773499999999, + "kind": "calibration_drift", + "ledger_value": 4995.0, + "name": "ons.tenure.social_rent@E07000173", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7910.540999999999, + "kind": "calibration_drift", + "ledger_value": 7865.0, + "name": "ons.tenure.social_rent@E07000174", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7589.001300000001, + "kind": "calibration_drift", + "ledger_value": 7413.0, + "name": "ons.tenure.social_rent@E07000175", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4454.5518999999995, + "kind": "calibration_drift", + "ledger_value": 4273.0, + "name": "ons.tenure.social_rent@E07000176", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8889.1006, + "kind": "calibration_drift", + "ledger_value": 8742.0, + "name": "ons.tenure.social_rent@E07000177", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11970.0746, + "kind": "calibration_drift", + "ledger_value": 11554.0, + "name": "ons.tenure.social_rent@E07000178", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7434.9873, + "kind": "calibration_drift", + "ledger_value": 7386.0, + "name": "ons.tenure.social_rent@E07000179", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7923.2244, + "kind": "calibration_drift", + "ledger_value": 8206.0, + "name": "ons.tenure.social_rent@E07000180", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7345.891100000001, + "kind": "calibration_drift", + "ledger_value": 6363.0, + "name": "ons.tenure.social_rent@E07000181", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7187.7878, + "kind": "calibration_drift", + "ledger_value": 7031.0, + "name": "ons.tenure.social_rent@E07000192", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6586.021199999999, + "kind": "calibration_drift", + "ledger_value": 6634.0, + "name": "ons.tenure.social_rent@E07000193", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6077.916, + "kind": "calibration_drift", + "ledger_value": 5932.0, + "name": "ons.tenure.social_rent@E07000194", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9092.5946, + "kind": "calibration_drift", + "ledger_value": 9142.0, + "name": "ons.tenure.social_rent@E07000195", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6466.164199999999, + "kind": "calibration_drift", + "ledger_value": 6471.0, + "name": "ons.tenure.social_rent@E07000196", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8640.7633, + "kind": "calibration_drift", + "ledger_value": 8146.0, + "name": "ons.tenure.social_rent@E07000197", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3612.8814999999995, + "kind": "calibration_drift", + "ledger_value": 3653.0, + "name": "ons.tenure.social_rent@E07000198", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5953.995000000001, + "kind": "calibration_drift", + "ledger_value": 5926.0, + "name": "ons.tenure.social_rent@E07000199", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5374.74, + "kind": "calibration_drift", + "ledger_value": 5333.0, + "name": "ons.tenure.social_rent@E07000200", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12550.0263, + "kind": "calibration_drift", + "ledger_value": 12368.0, + "name": "ons.tenure.social_rent@E07000202", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5055.102, + "kind": "calibration_drift", + "ledger_value": 5011.0, + "name": "ons.tenure.social_rent@E07000203", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5381.112, + "kind": "calibration_drift", + "ledger_value": 5608.0, + "name": "ons.tenure.social_rent@E07000207", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 2728.0591000000004, + "kind": "calibration_drift", + "ledger_value": 2743.0, + "name": "ons.tenure.social_rent@E07000208", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7087.096000000001, + "kind": "calibration_drift", + "ledger_value": 7066.0, + "name": "ons.tenure.social_rent@E07000209", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4207.8487, + "kind": "calibration_drift", + "ledger_value": 4327.0, + "name": "ons.tenure.social_rent@E07000210", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6870.6652, + "kind": "calibration_drift", + "ledger_value": 6907.0, + "name": "ons.tenure.social_rent@E07000211", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4873.8362, + "kind": "calibration_drift", + "ledger_value": 4499.0, + "name": "ons.tenure.social_rent@E07000212", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5300.874, + "kind": "calibration_drift", + "ledger_value": 5296.0, + "name": "ons.tenure.social_rent@E07000213", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3914.0696, + "kind": "calibration_drift", + "ledger_value": 3449.0, + "name": "ons.tenure.social_rent@E07000214", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3957.7153, + "kind": "calibration_drift", + "ledger_value": 3939.0, + "name": "ons.tenure.social_rent@E07000215", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6241.312000000001, + "kind": "calibration_drift", + "ledger_value": 6427.0, + "name": "ons.tenure.social_rent@E07000216", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4674.0936, + "kind": "calibration_drift", + "ledger_value": 4792.0, + "name": "ons.tenure.social_rent@E07000217", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3659.8659999999995, + "kind": "calibration_drift", + "ledger_value": 3752.0, + "name": "ons.tenure.social_rent@E07000218", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8295.5076, + "kind": "calibration_drift", + "ledger_value": 8157.0, + "name": "ons.tenure.social_rent@E07000219", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6215.118600000001, + "kind": "calibration_drift", + "ledger_value": 6074.0, + "name": "ons.tenure.social_rent@E07000220", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7849.2480000000005, + "kind": "calibration_drift", + "ledger_value": 7906.0, + "name": "ons.tenure.social_rent@E07000221", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9192.4692, + "kind": "calibration_drift", + "ledger_value": 8804.0, + "name": "ons.tenure.social_rent@E07000222", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 3409.9296, + "kind": "calibration_drift", + "ledger_value": 3436.0, + "name": "ons.tenure.social_rent@E07000223", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6706.6103, + "kind": "calibration_drift", + "ledger_value": 6774.0, + "name": "ons.tenure.social_rent@E07000224", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8004.0522, + "kind": "calibration_drift", + "ledger_value": 8157.0, + "name": "ons.tenure.social_rent@E07000225", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10624.717, + "kind": "calibration_drift", + "ledger_value": 10432.0, + "name": "ons.tenure.social_rent@E07000226", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7054.0470000000005, + "kind": "calibration_drift", + "ledger_value": 7155.0, + "name": "ons.tenure.social_rent@E07000227", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8381.0727, + "kind": "calibration_drift", + "ledger_value": 6812.0, + "name": "ons.tenure.social_rent@E07000228", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4676.3872, + "kind": "calibration_drift", + "ledger_value": 4845.0, + "name": "ons.tenure.social_rent@E07000229", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 4386.5758000000005, + "kind": "calibration_drift", + "ledger_value": 4417.0, + "name": "ons.tenure.social_rent@E07000234", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 5007.0019999999995, + "kind": "calibration_drift", + "ledger_value": 5001.0, + "name": "ons.tenure.social_rent@E07000235", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7508.4192, + "kind": "calibration_drift", + "ledger_value": 7331.0, + "name": "ons.tenure.social_rent@E07000236", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7437.2686, + "kind": "calibration_drift", + "ledger_value": 7269.0, + "name": "ons.tenure.social_rent@E07000237", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8987.6852, + "kind": "calibration_drift", + "ledger_value": 8954.0, + "name": "ons.tenure.social_rent@E07000238", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 6439.972, + "kind": "calibration_drift", + "ledger_value": 6411.0, + "name": "ons.tenure.social_rent@E07000239", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7238.195699999999, + "kind": "calibration_drift", + "ledger_value": 7187.0, + "name": "ons.tenure.social_rent@E07000240", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11935.784699999998, + "kind": "calibration_drift", + "ledger_value": 11714.0, + "name": "ons.tenure.social_rent@E07000241", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 8143.3573, + "kind": "calibration_drift", + "ledger_value": 8111.0, + "name": "ons.tenure.social_rent@E07000242", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9803.203500000001, + "kind": "calibration_drift", + "ledger_value": 9594.0, + "name": "ons.tenure.social_rent@E07000243", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13422.536399999999, + "kind": "calibration_drift", + "ledger_value": 14477.0, + "name": "ons.tenure.social_rent@E07000244", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12111.134800000002, + "kind": "calibration_drift", + "ledger_value": 12735.0, + "name": "ons.tenure.social_rent@E07000245", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23698.605, + "kind": "calibration_drift", + "ledger_value": 23555.0, + "name": "ons.tenure.social_rent@E08000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12152.8176, + "kind": "calibration_drift", + "ledger_value": 12044.0, + "name": "ons.tenure.social_rent@E08000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 60146.43320000001, + "kind": "calibration_drift", + "ledger_value": 63276.0, + "name": "ons.tenure.social_rent@E08000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19503.516, + "kind": "calibration_drift", + "ledger_value": 19760.0, + "name": "ons.tenure.social_rent@E08000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19235.5436, + "kind": "calibration_drift", + "ledger_value": 18815.0, + "name": "ons.tenure.social_rent@E08000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27386.0964, + "kind": "calibration_drift", + "ledger_value": 29227.0, + "name": "ons.tenure.social_rent@E08000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16894.8432, + "kind": "calibration_drift", + "ledger_value": 16849.0, + "name": "ons.tenure.social_rent@E08000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21179.3456, + "kind": "calibration_drift", + "ledger_value": 21125.0, + "name": "ons.tenure.social_rent@E08000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14681.0225, + "kind": "calibration_drift", + "ledger_value": 14419.0, + "name": "ons.tenure.social_rent@E08000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24342.160500000005, + "kind": "calibration_drift", + "ledger_value": 24333.0, + "name": "ons.tenure.social_rent@E08000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16921.295299999998, + "kind": "calibration_drift", + "ledger_value": 16687.0, + "name": "ons.tenure.social_rent@E08000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 52681.964900000006, + "kind": "calibration_drift", + "ledger_value": 54758.0, + "name": "ons.tenure.social_rent@E08000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 16323.716499999999, + "kind": "calibration_drift", + "ledger_value": 15993.0, + "name": "ons.tenure.social_rent@E08000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17636.3609, + "kind": "calibration_drift", + "ledger_value": 17735.0, + "name": "ons.tenure.social_rent@E08000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21860.2552, + "kind": "calibration_drift", + "ledger_value": 22065.0, + "name": "ons.tenure.social_rent@E08000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20886.644899999996, + "kind": "calibration_drift", + "ledger_value": 21294.0, + "name": "ons.tenure.social_rent@E08000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23025.644999999997, + "kind": "calibration_drift", + "ledger_value": 22694.0, + "name": "ons.tenure.social_rent@E08000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 23741.97, + "kind": "calibration_drift", + "ledger_value": 23545.0, + "name": "ons.tenure.social_rent@E08000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 52583.065, + "kind": "calibration_drift", + "ledger_value": 52334.0, + "name": "ons.tenure.social_rent@E08000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33204.3088, + "kind": "calibration_drift", + "ledger_value": 33476.0, + "name": "ons.tenure.social_rent@E08000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 19612.081599999998, + "kind": "calibration_drift", + "ledger_value": 19765.0, + "name": "ons.tenure.social_rent@E08000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20062.7206, + "kind": "calibration_drift", + "ledger_value": 20208.0, + "name": "ons.tenure.social_rent@E08000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32059.244799999997, + "kind": "calibration_drift", + "ledger_value": 32554.0, + "name": "ons.tenure.social_rent@E08000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 96675.0048, + "kind": "calibration_drift", + "ledger_value": 99499.0, + "name": "ons.tenure.social_rent@E08000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22991.4246, + "kind": "calibration_drift", + "ledger_value": 22766.0, + "name": "ons.tenure.social_rent@E08000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 25727.851300000002, + "kind": "calibration_drift", + "ledger_value": 26021.0, + "name": "ons.tenure.social_rent@E08000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34267.7226, + "kind": "calibration_drift", + "ledger_value": 34612.0, + "name": "ons.tenure.social_rent@E08000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 12769.2241, + "kind": "calibration_drift", + "ledger_value": 12532.0, + "name": "ons.tenure.social_rent@E08000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26462.890799999997, + "kind": "calibration_drift", + "ledger_value": 26576.0, + "name": "ons.tenure.social_rent@E08000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26159.0808, + "kind": "calibration_drift", + "ledger_value": 26484.0, + "name": "ons.tenure.social_rent@E08000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 30052.9544, + "kind": "calibration_drift", + "ledger_value": 30731.0, + "name": "ons.tenure.social_rent@E08000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13046.6392, + "kind": "calibration_drift", + "ledger_value": 13170.0, + "name": "ons.tenure.social_rent@E08000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26128.7852, + "kind": "calibration_drift", + "ledger_value": 26288.0, + "name": "ons.tenure.social_rent@E08000034", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 67371.2418, + "kind": "calibration_drift", + "ledger_value": 69742.0, + "name": "ons.tenure.social_rent@E08000035", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 32880.51, + "kind": "calibration_drift", + "ledger_value": 33188.0, + "name": "ons.tenure.social_rent@E08000036", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22757.044299999998, + "kind": "calibration_drift", + "ledger_value": 22334.0, + "name": "ons.tenure.social_rent@E08000037", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 430.9578, + "kind": "calibration_drift", + "ledger_value": 730.0, + "name": "ons.tenure.social_rent@E09000001", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20552.1462, + "kind": "calibration_drift", + "ledger_value": 23273.0, + "name": "ons.tenure.social_rent@E09000002", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18048.7404, + "kind": "calibration_drift", + "ledger_value": 20034.0, + "name": "ons.tenure.social_rent@E09000003", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13713.67, + "kind": "calibration_drift", + "ledger_value": 13977.0, + "name": "ons.tenure.social_rent@E09000004", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24967.826, + "kind": "calibration_drift", + "ledger_value": 27876.0, + "name": "ons.tenure.social_rent@E09000005", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 18472.472, + "kind": "calibration_drift", + "ledger_value": 17926.0, + "name": "ons.tenure.social_rent@E09000006", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 29423.154799999997, + "kind": "calibration_drift", + "ledger_value": 31250.0, + "name": "ons.tenure.social_rent@E09000007", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24945.492599999998, + "kind": "calibration_drift", + "ledger_value": 27371.0, + "name": "ons.tenure.social_rent@E09000008", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 22748.7618, + "kind": "calibration_drift", + "ledger_value": 23382.0, + "name": "ons.tenure.social_rent@E09000009", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17811.9579, + "kind": "calibration_drift", + "ledger_value": 20573.0, + "name": "ons.tenure.social_rent@E09000010", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 33736.5816, + "kind": "calibration_drift", + "ledger_value": 35327.0, + "name": "ons.tenure.social_rent@E09000011", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 40788.1445, + "kind": "calibration_drift", + "ledger_value": 42945.0, + "name": "ons.tenure.social_rent@E09000012", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21797.765199999998, + "kind": "calibration_drift", + "ledger_value": 24231.0, + "name": "ons.tenure.social_rent@E09000013", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 24822.730400000004, + "kind": "calibration_drift", + "ledger_value": 26474.0, + "name": "ons.tenure.social_rent@E09000014", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9286.9112, + "kind": "calibration_drift", + "ledger_value": 9298.0, + "name": "ons.tenure.social_rent@E09000015", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 13095.1161, + "kind": "calibration_drift", + "ledger_value": 13807.0, + "name": "ons.tenure.social_rent@E09000016", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 17760.472800000003, + "kind": "calibration_drift", + "ledger_value": 17613.0, + "name": "ons.tenure.social_rent@E09000017", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21333.5192, + "kind": "calibration_drift", + "ledger_value": 21618.0, + "name": "ons.tenure.social_rent@E09000018", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 37488.696, + "kind": "calibration_drift", + "ledger_value": 38787.0, + "name": "ons.tenure.social_rent@E09000019", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 14660.9728, + "kind": "calibration_drift", + "ledger_value": 18430.0, + "name": "ons.tenure.social_rent@E09000020", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 7021.982, + "kind": "calibration_drift", + "ledger_value": 7244.0, + "name": "ons.tenure.social_rent@E09000021", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 44958.854400000004, + "kind": "calibration_drift", + "ledger_value": 45243.0, + "name": "ons.tenure.social_rent@E09000022", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 34636.936, + "kind": "calibration_drift", + "ledger_value": 35753.0, + "name": "ons.tenure.social_rent@E09000023", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 10673.8074, + "kind": "calibration_drift", + "ledger_value": 11599.0, + "name": "ons.tenure.social_rent@E09000024", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 27444.463200000002, + "kind": "calibration_drift", + "ledger_value": 32390.0, + "name": "ons.tenure.social_rent@E09000025", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9064.5162, + "kind": "calibration_drift", + "ledger_value": 11707.0, + "name": "ons.tenure.social_rent@E09000026", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 9385.991500000002, + "kind": "calibration_drift", + "ledger_value": 9752.0, + "name": "ons.tenure.social_rent@E09000027", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 50404.17540000001, + "kind": "calibration_drift", + "ledger_value": 51991.0, + "name": "ons.tenure.social_rent@E09000028", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 11479.3112, + "kind": "calibration_drift", + "ledger_value": 11667.0, + "name": "ons.tenure.social_rent@E09000029", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 38054.162299999996, + "kind": "calibration_drift", + "ledger_value": 43237.0, + "name": "ons.tenure.social_rent@E09000030", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 21115.2852, + "kind": "calibration_drift", + "ledger_value": 22099.0, + "name": "ons.tenure.social_rent@E09000031", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 26022.234200000003, + "kind": "calibration_drift", + "ledger_value": 26544.0, + "name": "ons.tenure.social_rent@E09000032", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + }, + { + "fixture_value": 20100.78, + "kind": "calibration_drift", + "ledger_value": 26810.0, + "name": "ons.tenure.social_rent@E09000033", + "period": 2025, + "reason": "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, Scotland 2022, NI 2021) at identity with uprating declared as holds; the incumbent derives counts as percentage shares times a separate household-count workbook." + } + ], + "fixture_count": 23545 +} diff --git a/packages/microcosm-build/src/microcosm/build/uk/local_area_crosswalk.json b/packages/microcosm-build/src/microcosm/build/uk/local_area_crosswalk.json new file mode 100644 index 00000000..8d3e0891 --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/local_area_crosswalk.json @@ -0,0 +1,1060 @@ +{ + "schema_version": 1, + "country": "uk", + "kind": "uk_local_area_crosswalk", + "description": "Identity crosswalk for UK local Ledger target references. Area ids come from the packaged OA ladder roster; facts must carry the same geography ids and the declared fact-side vintages.", + "ladder_artifact": "build/uk/uk_oa_ladder_2021.npz", + "ladder_artifact_sha256": "9c6d56b90d2e975d750106b175020a54c5ec6acf42ef8909d304a9d7fc3868a7", + "ladder_summary": "build/uk/ladder_summary.json", + "ladder_summary_sha256": "aa5cd8d900ab669a4b9e6139b12dd9494af99a61eec4333da9d73088f5de26d4", + "levels": { + "constituency": { + "ledger_geography_level": "constituency", + "ladder_layer": "constituency", + "ladder_code_column": "constituency_code", + "ladder_vintage": "2024_pcon", + "expected_vintage": [ + "pcon_2024" + ], + "area_count": 650, + "area_ids": [ + "E14001063", + "E14001064", + "E14001065", + "E14001066", + "E14001067", + "E14001068", + "E14001069", + "E14001070", + "E14001071", + "E14001072", + "E14001073", + "E14001074", + "E14001075", + "E14001076", + "E14001077", + "E14001078", + "E14001079", + "E14001080", + "E14001081", + "E14001082", + "E14001083", + "E14001084", + "E14001085", + "E14001086", + "E14001087", + "E14001088", + "E14001089", + "E14001090", + "E14001091", + "E14001092", + "E14001093", + "E14001094", + "E14001095", + "E14001096", + "E14001097", + "E14001098", + "E14001099", + "E14001100", + "E14001101", + "E14001102", + "E14001103", + "E14001104", + "E14001105", + "E14001106", + "E14001107", + "E14001108", + "E14001109", + "E14001110", + "E14001111", + "E14001112", + "E14001113", + "E14001114", + "E14001115", + "E14001116", + "E14001117", + "E14001118", + "E14001119", + "E14001120", + "E14001121", + "E14001122", + "E14001123", + "E14001124", + "E14001125", + "E14001126", + "E14001127", + "E14001128", + "E14001129", + "E14001130", + "E14001131", + "E14001132", + "E14001133", + "E14001134", + "E14001135", + "E14001136", + "E14001137", + "E14001138", + "E14001139", + "E14001140", + "E14001141", + "E14001142", + "E14001143", + "E14001144", + "E14001145", + "E14001146", + "E14001147", + "E14001148", + "E14001149", + "E14001150", + "E14001151", + "E14001152", + "E14001153", + "E14001154", + "E14001155", + "E14001156", + "E14001157", + "E14001158", + "E14001159", + "E14001160", + "E14001161", + "E14001162", + "E14001163", + "E14001164", + "E14001165", + "E14001166", + "E14001167", + "E14001168", + "E14001169", + "E14001170", + "E14001171", + "E14001172", + "E14001173", + "E14001174", + "E14001175", + "E14001176", + "E14001177", + "E14001178", + "E14001179", + "E14001180", + "E14001181", + "E14001182", + "E14001183", + "E14001184", + "E14001185", + "E14001186", + "E14001187", + "E14001188", + "E14001189", + "E14001190", + "E14001191", + "E14001192", + "E14001193", + "E14001194", + "E14001195", + "E14001196", + "E14001197", + "E14001198", + "E14001199", + "E14001200", + "E14001201", + "E14001202", + "E14001203", + "E14001204", + "E14001205", + "E14001206", + "E14001207", + "E14001208", + "E14001209", + "E14001210", + "E14001211", + "E14001212", + "E14001213", + "E14001214", + "E14001215", + "E14001216", + "E14001217", + "E14001218", + "E14001219", + "E14001220", + "E14001221", + "E14001222", + "E14001223", + "E14001224", + "E14001225", + "E14001226", + "E14001227", + "E14001228", + "E14001229", + "E14001230", + "E14001231", + "E14001232", + "E14001233", + "E14001234", + "E14001235", + "E14001236", + "E14001237", + "E14001238", + "E14001239", + "E14001240", + "E14001241", + "E14001242", + "E14001243", + "E14001244", + "E14001245", + "E14001246", + "E14001247", + "E14001248", + "E14001249", + "E14001250", + "E14001251", + "E14001252", + "E14001253", + "E14001254", + "E14001255", + "E14001256", + "E14001257", + "E14001258", + "E14001259", + "E14001260", + "E14001261", + "E14001262", + "E14001263", + "E14001264", + "E14001265", + "E14001266", + "E14001267", + "E14001268", + "E14001269", + "E14001270", + "E14001271", + "E14001272", + "E14001273", + "E14001274", + "E14001275", + "E14001276", + "E14001277", + "E14001278", + "E14001279", + "E14001280", + "E14001281", + "E14001282", + "E14001283", + "E14001284", + "E14001285", + "E14001286", + "E14001287", + "E14001288", + "E14001289", + "E14001290", + "E14001291", + "E14001292", + "E14001293", + "E14001294", + "E14001295", + "E14001296", + "E14001297", + "E14001298", + "E14001299", + "E14001300", + "E14001301", + "E14001302", + "E14001303", + "E14001304", + "E14001305", + "E14001306", + "E14001307", + "E14001308", + "E14001309", + "E14001310", + "E14001311", + "E14001312", + "E14001313", + "E14001314", + "E14001315", + "E14001316", + "E14001317", + "E14001318", + "E14001319", + "E14001320", + "E14001321", + "E14001322", + "E14001323", + "E14001324", + "E14001325", + "E14001326", + "E14001327", + "E14001328", + "E14001329", + "E14001330", + "E14001331", + "E14001332", + "E14001333", + "E14001334", + "E14001335", + "E14001336", + "E14001337", + "E14001338", + "E14001339", + "E14001340", + "E14001341", + "E14001342", + "E14001343", + "E14001344", + "E14001345", + "E14001346", + "E14001347", + "E14001348", + "E14001349", + "E14001350", + "E14001351", + "E14001352", + "E14001353", + "E14001354", + "E14001355", + "E14001356", + "E14001357", + "E14001358", + "E14001359", + "E14001360", + "E14001361", + "E14001362", + "E14001363", + "E14001364", + "E14001365", + "E14001366", + "E14001367", + "E14001368", + "E14001369", + "E14001370", + "E14001371", + "E14001372", + "E14001373", + "E14001374", + "E14001375", + "E14001376", + "E14001377", + "E14001378", + "E14001379", + "E14001380", + "E14001381", + "E14001382", + "E14001383", + "E14001384", + "E14001385", + "E14001386", + "E14001387", + "E14001388", + "E14001389", + "E14001390", + "E14001391", + "E14001392", + "E14001393", + "E14001394", + "E14001395", + "E14001396", + "E14001397", + "E14001398", + "E14001399", + "E14001400", + "E14001401", + "E14001402", + "E14001403", + "E14001404", + "E14001405", + "E14001406", + "E14001407", + "E14001408", + "E14001409", + "E14001410", + "E14001411", + "E14001412", + "E14001413", + "E14001414", + "E14001415", + "E14001416", + "E14001417", + "E14001418", + "E14001419", + "E14001420", + "E14001421", + "E14001422", + "E14001423", + "E14001424", + "E14001425", + "E14001426", + "E14001427", + "E14001428", + "E14001429", + "E14001430", + "E14001431", + "E14001432", + "E14001433", + "E14001434", + "E14001435", + "E14001436", + "E14001437", + "E14001438", + "E14001439", + "E14001440", + "E14001441", + "E14001442", + "E14001443", + "E14001444", + "E14001445", + "E14001446", + "E14001447", + "E14001448", + "E14001449", + "E14001450", + "E14001451", + "E14001452", + "E14001453", + "E14001454", + "E14001455", + "E14001456", + "E14001457", + "E14001458", + "E14001459", + "E14001460", + "E14001461", + "E14001462", + "E14001463", + "E14001464", + "E14001465", + "E14001466", + "E14001467", + "E14001468", + "E14001469", + "E14001470", + "E14001471", + "E14001472", + "E14001473", + "E14001474", + "E14001475", + "E14001476", + "E14001477", + "E14001478", + "E14001479", + "E14001480", + "E14001481", + "E14001482", + "E14001483", + "E14001484", + "E14001485", + "E14001486", + "E14001487", + "E14001488", + "E14001489", + "E14001490", + "E14001491", + "E14001492", + "E14001493", + "E14001494", + "E14001495", + "E14001496", + "E14001497", + "E14001498", + "E14001499", + "E14001500", + "E14001501", + "E14001502", + "E14001503", + "E14001504", + "E14001505", + "E14001506", + "E14001507", + "E14001508", + "E14001509", + "E14001510", + "E14001511", + "E14001512", + "E14001513", + "E14001514", + "E14001515", + "E14001516", + "E14001517", + "E14001518", + "E14001519", + "E14001520", + "E14001521", + "E14001522", + "E14001523", + "E14001524", + "E14001525", + "E14001526", + "E14001527", + "E14001528", + "E14001529", + "E14001530", + "E14001531", + "E14001532", + "E14001533", + "E14001534", + "E14001535", + "E14001536", + "E14001537", + "E14001538", + "E14001539", + "E14001540", + "E14001541", + "E14001542", + "E14001543", + "E14001544", + "E14001545", + "E14001546", + "E14001547", + "E14001548", + "E14001549", + "E14001550", + "E14001551", + "E14001552", + "E14001553", + "E14001554", + "E14001555", + "E14001556", + "E14001557", + "E14001558", + "E14001559", + "E14001560", + "E14001561", + "E14001562", + "E14001563", + "E14001564", + "E14001565", + "E14001566", + "E14001567", + "E14001568", + "E14001569", + "E14001570", + "E14001571", + "E14001572", + "E14001573", + "E14001574", + "E14001575", + "E14001576", + "E14001577", + "E14001578", + "E14001579", + "E14001580", + "E14001581", + "E14001582", + "E14001583", + "E14001584", + "E14001585", + "E14001586", + "E14001587", + "E14001588", + "E14001589", + "E14001590", + "E14001591", + "E14001592", + "E14001593", + "E14001594", + "E14001595", + "E14001596", + "E14001597", + "E14001598", + "E14001599", + "E14001600", + "E14001601", + "E14001602", + "E14001603", + "E14001604", + "E14001605", + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018", + "S14000021", + "S14000027", + "S14000045", + "S14000048", + "S14000051", + "S14000060", + "S14000061", + "S14000062", + "S14000063", + "S14000064", + "S14000065", + "S14000066", + "S14000067", + "S14000068", + "S14000069", + "S14000070", + "S14000071", + "S14000072", + "S14000073", + "S14000074", + "S14000075", + "S14000076", + "S14000077", + "S14000078", + "S14000079", + "S14000080", + "S14000081", + "S14000082", + "S14000083", + "S14000084", + "S14000085", + "S14000086", + "S14000087", + "S14000088", + "S14000089", + "S14000090", + "S14000091", + "S14000092", + "S14000093", + "S14000094", + "S14000095", + "S14000096", + "S14000097", + "S14000098", + "S14000099", + "S14000100", + "S14000101", + "S14000102", + "S14000103", + "S14000104", + "S14000105", + "S14000106", + "S14000107", + "S14000108", + "S14000109", + "S14000110", + "S14000111", + "W07000081", + "W07000082", + "W07000083", + "W07000084", + "W07000085", + "W07000086", + "W07000087", + "W07000088", + "W07000089", + "W07000090", + "W07000091", + "W07000092", + "W07000093", + "W07000094", + "W07000095", + "W07000096", + "W07000097", + "W07000098", + "W07000099", + "W07000100", + "W07000101", + "W07000102", + "W07000103", + "W07000104", + "W07000105", + "W07000106", + "W07000107", + "W07000108", + "W07000109", + "W07000110", + "W07000111", + "W07000112" + ] + }, + "local_authority": { + "ledger_geography_level": "local_authority", + "ladder_layer": "local_authority", + "ladder_code_column": "local_authority_code", + "ladder_vintage": "ew:2023_april_lad;scotland:2019_council_area;ni:2014_lgd", + "expected_vintage": { + "E": [ + "lad_2023" + ], + "W": [ + "lad_2023" + ], + "S": [ + "ca_2019", + "lad_2023" + ], + "N": [ + "lgd_2014", + "lad_2023" + ] + }, + "area_count": 361, + "area_ids": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000053", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000016", + "E08000017", + "E08000018", + "E08000019", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000001", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011", + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + } + } +} diff --git a/packages/microcosm-build/src/microcosm/build/uk/local_registry_parity_fixture_2025.json b/packages/microcosm-build/src/microcosm/build/uk/local_registry_parity_fixture_2025.json new file mode 100644 index 00000000..c6b117a8 --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/local_registry_parity_fixture_2025.json @@ -0,0 +1,259053 @@ +{ + "schema_version": 1, + "country": "uk", + "fixture": "incumbent_local_2025", + "provenance": { + "source_repository": "policyengine-uk-data", + "pinned_ref": "12a1e028afeef08d8b2d74ee03fd9de3a78b2dd3", + "pinned_version": "1.56.16", + "method": "y-side replay of datasets/local_areas/{constituencies,local_authorities}/loss.py: published statistics with the builders' declared national-consistency scalings; constituency rows boundary-mapped 2010->PCON24 with the incumbent's own mapping_matrix. EXCEPTION, fix-and-signed: the UC family corrects policyengine-uk-data#468 at extraction - totals join to their areas BY NAME (never by row position), attach post-mapping on native PCON24/LAD codes, and the child splits recompute from the corrected totals with the incumbent's own country-proportion buckets keyed by true country prefix.", + "time_period": 2025 + }, + "surface": { + "row_count": 23545, + "metric_count": 38, + "metrics": [ + "age/0_10", + "age/10_20", + "age/20_30", + "age/30_40", + "age/40_50", + "age/50_60", + "age/60_70", + "age/70_80", + "hmrc/employment_income/amount", + "hmrc/employment_income/count", + "hmrc/self_employment_income/amount", + "hmrc/self_employment_income/count", + "housing/council_tax_net", + "housing/scotland_private_rent_amount", + "housing/scotland_private_renter_households", + "housing/wales_private_rent_amount", + "housing/wales_private_renter_households", + "ons/equiv_housing_costs", + "ons/equiv_net_income_ahc", + "ons/equiv_net_income_bhc", + "rent/private_rent", + "tenure/owned_mortgage", + "tenure/owned_outright", + "tenure/private_rent", + "tenure/social_rent", + "uc_hh_0_children", + "uc_hh_1_child", + "uc_hh_2_children", + "uc_hh_3plus_children", + "uc_households", + "voa/council_tax/A", + "voa/council_tax/B", + "voa/council_tax/C", + "voa/council_tax/D", + "voa/council_tax/E", + "voa/council_tax/F", + "voa/council_tax/G", + "voa/council_tax/H" + ] + }, + "rows": [ + { + "name": "hmrc/self_employment_income/amount@E14001063", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 115312000.0, + "value": 123078217.11262494, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001064", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 107640000.0, + "value": 114889510.97893496, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001065", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 240500000.0, + "value": 256697578.87805519, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001066", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 75600000.0, + "value": 80691629.78453626, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001067", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 234808000.0, + "value": 250622224.95300782, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001068", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 80692000.0, + "value": 86126573.94938889, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001069", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 208350000.0, + "value": 222382289.2276208, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001070", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 74212000.0, + "value": 79210148.53928578, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001071", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 189918178.21782178, + "value": 202709091.61515945, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001072", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 171524000.0, + "value": 183076072.84606874, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001073", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 216568000.0, + "value": 231153768.24308798, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001074", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 94224000.0, + "value": 100569948.74098076, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001075", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 90288000.0, + "value": 96368860.7141033, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001076", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 54476000.0, + "value": 58144936.827280395, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001077", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 183630000.0, + "value": 195997407.10759783, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001078", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 114724000.0, + "value": 122450615.54763411, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001079", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 96960000.0, + "value": 103490217.24746872, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001080", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 217132000.0, + "value": 231755753.417671, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001081", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 591136000.0, + "value": 630948773.3374554, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001082", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 396060000.0, + "value": 422734482.70454276, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001083", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 247706404.04040405, + "value": 264389331.35035765, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001084", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 142356000.0, + "value": 151943619.70380214, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001085", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 247080000.0, + "value": 263720739.24819073, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001086", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 214522000.0, + "value": 228969970.96082392, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001087", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 106200000.0, + "value": 113352527.5544676, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001088", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 202836000.0, + "value": 216496923.5314312, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001089", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 111910000.0, + "value": 119447093.77232082, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001090", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 197398000.0, + "value": 210692676.40486628, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001091", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 87804000.0, + "value": 93717564.30689712, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001092", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 187130828.28282827, + "value": 199734014.77607948, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001093", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 64140000.0, + "value": 68459803.36481687, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001094", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 111528000.0, + "value": 119039366.22499682, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001095", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 72729000.0, + "value": 77627269.08200446, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001096", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 77966808.08080807, + "value": 83217841.4436317, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001097", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 71895000.0, + "value": 76737099.51533379, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001098", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 79196363.63636364, + "value": 84530207.07443075, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001099", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 75569000.0, + "value": 80658541.94692619, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001100", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 66900000.00000001, + "value": 71405688.26171264, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001101", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 74739393.93939394, + "value": 79773062.2497115, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001102", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 57040000.0, + "value": 60881621.20251254, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001103", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 90312121.2121212, + "value": 96394606.48022021, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001104", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 92468000.0, + "value": 98695682.84281082, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001105", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 63882000.0, + "value": 68184427.16793314, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001106", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 60998242.42424243, + "value": 65106449.67201539, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001107", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 82332000.0, + "value": 87877027.29392114, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001108", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 115315000.0, + "value": 123081419.16142592, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001109", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 87600000.0, + "value": 93499824.9884309, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001110", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 84948000.0, + "value": 90669213.8483702, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001111", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 89356000.0, + "value": 95374090.88660082, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001112", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 108608000.0, + "value": 115922705.39204912, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001113", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 57600000.0, + "value": 61479336.9786943, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001114", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 126312000.0, + "value": 134819062.71619505, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001115", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 144000000.0, + "value": 153698342.44673574, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001116", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 104310000.0, + "value": 111335236.8098542, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001117", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 126556000.0, + "value": 135079496.01867422, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001118", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 51450000.0, + "value": 54915136.93669829, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001119", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 52650000.0, + "value": 56195956.457087755, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001120", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 54300000.0, + "value": 57957083.29762327, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001121", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 220909009.9009901, + "value": 235787143.42591465, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001122", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 430476000.0, + "value": 459468386.5493126, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001123", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 270932000.0, + "value": 289179161.915132, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001124", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 355668000.0, + "value": 379622097.64823335, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001125", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 287700000.0, + "value": 307076480.0133741, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001126", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 128033000.0, + "value": 136655971.3783536, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001127", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 120346000.0, + "value": 128451255.00065875, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001128", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 69625000.0, + "value": 74314215.92259705, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001129", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 170534000.0, + "value": 182019396.74174747, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001130", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 158466000.0, + "value": 169138621.7650307, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001131", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 175473000.0, + "value": 187291036.41775045, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001132", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 153000000.0, + "value": 163304488.84965673, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001133", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 115410185.41854186, + "value": 123183015.27986328, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001134", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 167715000.0, + "value": 179010538.21843255, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001135", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 106656000.0, + "value": 113839238.97221561, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001136", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 177545454.54545453, + "value": 189503069.94853213, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001137", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 282437272.72727275, + "value": 301459310.16221154, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001138", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 197500000.0, + "value": 210801546.06409937, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001139", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 199479000.0, + "value": 212913830.92314166, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001140", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 65245000.0, + "value": 69639224.67317551, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001141", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 158056831.68316832, + "value": 168701896.12559497, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001142", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 67880000.0, + "value": 72451690.87003072, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001143", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 97000000.0, + "value": 103532911.23148172, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001144", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 91095000.0, + "value": 97230211.84156522, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001145", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 122744393.93939394, + "value": 131011179.8132917, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001146", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 159096000.0, + "value": 169811052.0132352, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001147", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 96515000.0, + "value": 103015246.6753243, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001148", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 151053000.0, + "value": 161226359.17782483, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001149", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 189441000.0, + "value": 202199775.6350838, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001150", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 107000000.0, + "value": 114206407.23472725, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001151", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 186200000.0, + "value": 198740495.5804319, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001152", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 86452000.0, + "value": 92274507.64725831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001153", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 149400000.0, + "value": 159462030.28848833, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001154", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 118986000.0, + "value": 126999659.54421735, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001155", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 237111111.1111111, + "value": 253080449.6769553, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001156", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 128965900.99009901, + "value": 137651702.87727815, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001157", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 116718000.0, + "value": 124578910.65068126, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001158", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 158500000.0, + "value": 169174911.65144175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001159", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 146775000.0, + "value": 156660237.58763638, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001160", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 1865979797.979798, + "value": 1991652791.5874288, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001161", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 134232000.0, + "value": 143272471.55076548, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001162", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 357600000.0, + "value": 381684217.0760604, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001163", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 87640404.04040404, + "value": 93542950.22480765, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001164", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 116175252.52525254, + "value": 123999609.35043238, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001165", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 61200000.0, + "value": 65321795.539862685, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001166", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 223594000.0, + "value": 238652966.5349683, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001167", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 235040000.0, + "value": 250869850.0602831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001168", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 147506554.45544553, + "value": 157441061.94327182, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001169", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 342870000.0, + "value": 365962157.4632797, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001170", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 69120000.0, + "value": 73775204.37443314, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001171", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 125033000.0, + "value": 133453922.57737994, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001172", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 2217240000.0, + "value": 2366570227.823613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001173", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 80394242.42424242, + "value": 85808762.51991042, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001174", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 93956435.64356436, + "value": 100284364.03207807, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001175", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 286416000.0, + "value": 305706003.1265574, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001176", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 145656554.45544556, + "value": 155466465.1826714, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001177", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 96432000.0, + "value": 102926656.65849736, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001178", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 118680000.0, + "value": 126673050.56651802, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001179", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 131220000.0, + "value": 140057614.55458793, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001180", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 65424000.0, + "value": 69830280.2516336, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001181", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 58500000.0, + "value": 62439951.61898639, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001182", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 76976000.0, + "value": 82160302.83458285, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001183", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 72421148.5148515, + "value": 77298683.92237188, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001184", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 139200000.0, + "value": 148575064.36517787, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001185", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 85030000.0, + "value": 90756736.51559679, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001186", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 134512000.0, + "value": 143571329.43885636, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001187", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 146622000.0, + "value": 156496933.0987867, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001188", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 153370000.0, + "value": 163699408.2017768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001189", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 193700787.87878788, + "value": 206746458.52497542, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001190", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 57810000.0, + "value": 61703480.39476245, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001191", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 152635000.0, + "value": 162914906.24553826, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001192", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 186201678.9678968, + "value": 198742287.6261455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001193", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 84800000.0, + "value": 90511246.10752216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001194", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 54600000.0, + "value": 58277288.177720636, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001195", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 142260000.0, + "value": 151841154.14217103, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001196", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 103828000.0, + "value": 110820774.30249776, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001197", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 187857000.0, + "value": 200509093.8681697, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001198", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 69948000.0, + "value": 74658969.84350188, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001199", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 79934000.0, + "value": 85317522.95234288, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001200", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 82872000.0, + "value": 88453396.07809642, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001201", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 314635316.83168316, + "value": 335825879.6682864, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001202", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 126678000.0, + "value": 135209712.66991383, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001203", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 139650000.0, + "value": 149055371.68532392, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001204", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 64068000.0, + "value": 68382954.1935935, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001205", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 486616000.0, + "value": 519389393.11153305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001206", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 180480000.0, + "value": 192635255.86657545, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001207", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 530623939.3939394, + "value": 566361249.6347613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001208", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 200214000.0, + "value": 213698332.8793802, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001209", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 203856000.0, + "value": 217585620.12376222, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001210", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 138946060.6060606, + "value": 148304022.25455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001211", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 45400000.0, + "value": 48457671.85473474, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001212", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 215476363.63636366, + "value": 229988610.60666093, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001213", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 197496000.0, + "value": 210797276.66569808, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001214", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 224517000.0, + "value": 239638130.21606782, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001215", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 282387000.0, + "value": 301405651.58684975, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001216", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 136548000.0, + "value": 145744453.22511718, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001217", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 154332000.0, + "value": 164726198.51728904, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001218", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 131400000.0, + "value": 140249737.48264635, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001219", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 127596000.0, + "value": 136189539.60301176, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001220", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 153026999.99999997, + "value": 163333307.28886548, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001221", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 218830999.99999997, + "value": 233569180.38862243, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001222", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 108383757.57575758, + "value": 115683360.33015816, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001223", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 266058181.8181818, + "value": 283977094.02671385, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001224", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 172451125.11251125, + "value": 184065639.4643585, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001225", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 170879000.0, + "value": 182387632.35385942, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001226", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 293600000.0, + "value": 313373842.655289, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001227", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 235127049.5049505, + "value": 250962762.31460044, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001228", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 67500000.0, + "value": 72046098.02190737, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001229", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 208706000.0, + "value": 222762265.68533632, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001230", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 609652000.0, + "value": 650711818.5370648, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001231", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 119476673.26732673, + "value": 127523379.45998847, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001232", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 150895383.93839383, + "value": 161058127.73746473, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001233", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 179130000.0, + "value": 191194333.90613732, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001234", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 356560000.0, + "value": 380574173.4917228, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001235", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 191040000.0, + "value": 203906467.64600274, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001236", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 135884000.0, + "value": 145035733.09050167, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001237", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 111122924.49244924, + "value": 118607009.04391125, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001238", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 741400000.0, + "value": 791332993.6806241, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001239", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 118160000.0, + "value": 126118028.77434927, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001240", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 110400000.0, + "value": 117835395.87583072, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001241", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 177413000.0, + "value": 189361694.64238006, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001242", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 120962000.0, + "value": 129108742.35445867, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001243", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 105245000.0, + "value": 112333208.68615764, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001244", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 45432000.0, + "value": 48491827.04194513, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001245", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 95490000.0, + "value": 101921213.33499163, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001246", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 123000000.0, + "value": 131284000.8399201, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001247", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 163359000.00000003, + "value": 174361163.35941878, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001248", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 99750000.0, + "value": 106468122.63237423, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001249", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 344582792.0792079, + "value": 367790305.4044613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001250", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 111868909.0909091, + "value": 119403235.40692566, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001251", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 73322000.0, + "value": 78260207.39499693, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001252", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 84800000.0, + "value": 90511246.10752216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001253", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 131784000.0, + "value": 140659599.729171, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001254", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 155400000.0, + "value": 165866127.89043564, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001255", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 53964000.0, + "value": 57598453.83191421, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001256", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 98000000.0, + "value": 104600260.83180627, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001257", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 311664000.0, + "value": 332654445.83555174, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001258", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 405215841.5841584, + "value": 432506966.56002915, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001259", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 250526742.57425743, + "value": 267399618.557246, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001260", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 316386752.4752475, + "value": 337695273.8024389, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001261", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 83704000.0, + "value": 89341430.94556645, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001262", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 53085000.0, + "value": 56660253.533228934, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001263", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 143794000.0, + "value": 153478468.42906886, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001264", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 462006262.62626266, + "value": 493122199.7615822, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001265", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 1657669595.959596, + "value": 1769312980.7176392, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001266", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 135700000.0, + "value": 144839340.76404196, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001267", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 155899009.9009901, + "value": 166398745.9088154, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001268", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 379789000.0, + "value": 405367637.3576619, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001269", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 179682060.6060606, + "value": 191783575.573371, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001270", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 373709029.7029703, + "value": 398878183.49114215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001271", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 227078989.8989899, + "value": 242372669.11079025, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001272", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 67800000.0, + "value": 72366302.90200475, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001273", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 200587009.9009901, + "value": 214096464.84811908, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001274", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 180084000.0, + "value": 192212585.42484695, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001275", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 110000000.0, + "value": 117408456.03570092, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001276", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 143500000.0, + "value": 153164667.64657345, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001277", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 99480000.0, + "value": 106179938.2402866, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001278", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 211098000.0, + "value": 225315365.92931262, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001279", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 396630000.0, + "value": 423342871.9767278, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001280", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 317216000.0, + "value": 338580370.81655365, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001281", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 112365000.0, + "value": 119932737.84046847, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001282", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 132974000.0, + "value": 141929745.75355724, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001283", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 221536000.0, + "value": 236456361.05750036, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001284", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 347633000.0, + "value": 371045943.6096256, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001285", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 173071326.73267326, + "value": 184727611.4157591, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001286", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 99430000.0, + "value": 106126570.76027039, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001287", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 113000000.0, + "value": 120610504.83667457, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001288", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 106965000.0, + "value": 114169049.99871589, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001289", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 338047000.0, + "value": 360814330.3409144, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001290", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 861840000.0, + "value": 919884579.5437135, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001291", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 157020831.68316832, + "value": 167596121.93965873, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001292", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 176661616.16161615, + "value": 188559705.40279073, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001293", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 555265656.5656565, + "value": 592662576.6093044, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001294", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 203912000.0, + "value": 217645391.7013804, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001295", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 71004000.0, + "value": 75786091.0214446, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001296", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 217600000.0, + "value": 232255273.0306229, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001297", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 81360000.0, + "value": 86839563.48240569, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001298", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 157080000.0, + "value": 167659275.21898088, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001299", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 63300000.0, + "value": 67563229.70054425, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001300", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 223922222.22222224, + "value": 239003294.3926748, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001301", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 196587777.7777778, + "value": 209827886.03980333, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001302", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 110000000.0, + "value": 117408456.03570092, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001303", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 86000000.0, + "value": 91792065.62791163, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001304", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 86000000.0, + "value": 91792065.62791163, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001305", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 431200000.0, + "value": 460241147.6599476, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001306", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 739137000.0, + "value": 788917581.5350897, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001307", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 52680000.0, + "value": 56227976.94509749, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001308", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 161500000.0, + "value": 172376960.45241544, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001309", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 135698000.0, + "value": 144837206.0648413, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001310", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 2471760000.0, + "value": 2638232048.0982184, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001311", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 145632000.0, + "value": 155440256.9944654, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001312", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 263720000.0, + "value": 281481436.5975913, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001313", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 55443000.0, + "value": 59177063.89079423, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001314", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 73421949.49494949, + "value": 78366888.44848391, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001315", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 75044141.41414142, + "value": 80098334.34508313, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001316", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 87480000.0, + "value": 93371743.03639197, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001317", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 64926000.00000001, + "value": 69298740.15067199, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001318", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 121056000.0, + "value": 129209073.21688917, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001319", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 101900888.8888889, + "value": 108763873.02827232, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001320", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 112869108.91089109, + "value": 120470798.28502813, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001321", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 149500000.0, + "value": 159568765.2485208, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001322", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 131150000.0, + "value": 139982900.08256522, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001323", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 67408000.0, + "value": 71947901.85867752, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001324", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 89637828.28282829, + "value": 95674900.19163775, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001325", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 103778282.82828283, + "value": 110767708.69913617, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001326", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 50568000.0, + "value": 53973734.58921204, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001327", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 69828000.0, + "value": 74530887.89146294, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001328", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 61104000.0, + "value": 65219329.978231534, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001329", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 101394000.0, + "value": 108222845.3753078, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001330", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 201748727.27272728, + "value": 215336423.42053282, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001331", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 233708777.7777778, + "value": 249448970.55345103, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001332", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 197625000.0, + "value": 210934964.76413992, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001333", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 237389818.1818182, + "value": 253377927.55748215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001334", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 277760000.0, + "value": 296467024.98614806, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001335", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 131532000.0, + "value": 140390627.62988922, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001336", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 81200000.0, + "value": 86668787.54635376, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001337", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 72165000.0, + "value": 77025283.90742142, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001338", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 70142000.0, + "value": 74866035.66596484, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001339", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 66282000.0, + "value": 70746066.20871207, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001340", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 68588000.0, + "value": 73207374.3870605, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001341", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 64403000.0, + "value": 68740516.30970223, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001342", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 89424000.0, + "value": 95446670.6594229, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001343", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 79143000.0, + "value": 84473249.41848616, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001344", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 79716000.0, + "value": 85084840.73947212, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001345", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 140184000.0, + "value": 149625336.37189725, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001346", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 120936000.0, + "value": 129080991.26485021, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001347", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 118500000.0, + "value": 126480927.63845962, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001348", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 223289818.1818182, + "value": 238328298.1929059, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001349", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 209384000.0, + "value": 223485928.7143564, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001350", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 85710000.0, + "value": 91482534.2438175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001351", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 177125000.0, + "value": 189054297.95748657, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001352", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 91227141.41414142, + "value": 97371252.9271354, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001353", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 67719000.0, + "value": 72279847.58437845, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001354", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 85384000.0, + "value": 91134578.2741117, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001355", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 108300000.0, + "value": 115593961.71514916, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001356", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 133057782.17821783, + "value": 142019170.62799233, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001357", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 150798000.0, + "value": 160954185.02974206, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001358", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 130931000.0, + "value": 139749150.52009416, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001359", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 155358000.0, + "value": 165821299.207222, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001360", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 214668990.0990099, + "value": 229126860.7842538, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001361", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 131072000.0, + "value": 139899646.8137399, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001362", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 79120000.0, + "value": 84448700.37767869, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001363", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 109391515.15151516, + "value": 116758989.97586706, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001364", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 122005000.0, + "value": 130221987.98759718, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001365", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 148586000.0, + "value": 158593207.71382412, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001366", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 185212000.0, + "value": 197685954.17531124, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001367", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 66837000.0, + "value": 71338445.2368922, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001368", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 60591000.0, + "value": 64671779.63326503, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001369", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 126896000.0, + "value": 135442394.88278458, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001370", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 99764000.00000001, + "value": 106483065.52677879, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001371", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 289400000.0, + "value": 308890974.33392584, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001372", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 118184000.0, + "value": 126143645.16475704, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001373", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 139500000.0, + "value": 148895269.24527526, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001374", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 158400000.0, + "value": 169068176.69140932, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001375", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 146537000.0, + "value": 156406208.3827591, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001376", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 214312000.0, + "value": 228745827.54475576, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001377", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 122593247.52475247, + "value": 130849853.74803363, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001378", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 91500000.0, + "value": 97662488.42969666, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001379", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 99294277.22772276, + "value": 105981707.11352533, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001380", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 77925000.0, + "value": 83173217.60529085, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001381", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 129600000.0, + "value": 138328508.20206216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001382", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 69100000.0, + "value": 73753857.38242666, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001383", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 83920000.0, + "value": 89571978.45923655, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001384", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 183678000.0, + "value": 196048639.88841337, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001385", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 183344000.0, + "value": 195692145.12190497, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001386", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 202235000.0, + "value": 215855446.42163613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001387", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 181800000.0, + "value": 194044157.33900386, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001388", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 168672000.0, + "value": 180031991.78594315, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001389", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 66012121.21212121, + "value": 70458011.19233358, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001390", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 127500000.0, + "value": 136087074.04138058, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001391", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 80400000.0, + "value": 85814907.86609411, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001392", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 186882000.0, + "value": 199468428.00785327, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001393", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 224700000.0, + "value": 239833455.1929272, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001394", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 147585940.5940594, + "value": 157525794.70659265, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001395", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 182735000.0, + "value": 195042129.21530733, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001396", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 138109090.9090909, + "value": 147410682.98300564, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001397", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 141408000.0, + "value": 150931772.2826945, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001398", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 139748000.0, + "value": 149159971.94615573, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001399", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 154154000.0, + "value": 164536210.28843126, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001400", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 57000000.0, + "value": 60838927.21849956, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001401", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 147276000.0, + "value": 157194979.73739898, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001402", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 274401980.1980198, + "value": 292882843.8926226, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001403", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 161710000.0, + "value": 172601103.86848357, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001404", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 90060000.0, + "value": 96125505.00522931, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001405", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 166500000.0, + "value": 177713708.4540382, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001406", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 189180000.0, + "value": 201921197.38939905, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001407", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 207238811.88118812, + "value": 221196263.0331215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001408", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 108715454.54545455, + "value": 116037396.95819311, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001409", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 118042000.0, + "value": 125992081.52151097, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001410", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 64021212.121212125, + "value": 68333015.16986923, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001411", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 63514808.08080808, + "value": 67792505.01974124, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001412", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 88926979.7979798, + "value": 94916176.3454434, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001413", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 87200000.0, + "value": 93072885.14830108, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001414", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 136480000.0, + "value": 145671873.4522951, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001415", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 92000000.0, + "value": 98196163.22985895, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001416", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 54900000.0, + "value": 58597493.057818, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001417", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 210678545.45454544, + "value": 224867661.28786743, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001418", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 89736000.0, + "value": 95779683.73472415, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001419", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 125846000.0, + "value": 134321677.8024438, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001420", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 211106000.0, + "value": 225323904.72611526, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001421", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 226712000.00000003, + "value": 241980962.58878022, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001422", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 90465000.0, + "value": 96557781.59336077, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001423", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 77600000.0, + "value": 82826328.98518537, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001424", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 113004000.0, + "value": 120614774.23507586, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001425", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 127116000.0, + "value": 135677211.79485595, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001426", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 67750000.0, + "value": 72312935.42198852, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001427", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 95950000.0, + "value": 102412194.15114093, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001428", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 69020000.0, + "value": 73668469.4144007, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001429", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 161085000.0, + "value": 171934010.36828074, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001430", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 210903000.0, + "value": 225107232.75724936, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001431", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 121800000.0, + "value": 130003181.31953065, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001432", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 94400000.0, + "value": 100757802.27063787, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001433", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 76718000.0, + "value": 81884926.63769911, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001434", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 596064000.0, + "value": 636208672.1678548, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001435", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 1138450000.0, + "value": 1215124152.4894881, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001436", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 84690336.63366337, + "value": 90394196.95729251, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001437", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 160608000.0, + "value": 171424884.60892594, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001438", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 137879999.99999997, + "value": 147166162.89274946, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001439", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 128668000.0, + "value": 137333738.37455967, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001440", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 54216000.0, + "value": 57867425.931196004, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001441", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 120350000.0, + "value": 128455524.39906004, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001442", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 242270000.0, + "value": 258586787.67062962, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001443", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 136705000.0, + "value": 145912027.1123681, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001444", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 171035247.52475247, + "value": 182554403.0869557, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001445", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 897920000.0, + "value": 958394553.1234232, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001446", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 56520000.0, + "value": 60326599.41034378, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001447", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 139832000.0, + "value": 149249629.312583, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001448", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 201859595.95959595, + "value": 215454759.06915066, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001449", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 203618000.0, + "value": 217331590.918885, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001450", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 117960000.0, + "value": 125904558.85428436, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001451", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 79225990.0990099, + "value": 84561828.86749525, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001452", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 68651673.26732674, + "value": 73275336.02349304, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001453", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 94552000.0, + "value": 100920039.4098872, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001454", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 265439505.15051505, + "value": 283316749.7327496, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001455", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 86750585.85858586, + "value": 92593203.1440825, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001456", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 321556000.0, + "value": 343212668.0819622, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001457", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 149490000.0, + "value": 159558091.75251755, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001458", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 161964000.0, + "value": 172872210.66696602, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001459", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 115174343.43434344, + "value": 122931289.43228936, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001460", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 146448000.0, + "value": 156311214.26833025, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001461", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 103000000.0, + "value": 109937008.83342904, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001462", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 44353000.0, + "value": 47340156.823194936, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001463", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 112168000.0, + "value": 119722469.96920455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001464", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 171838019.8019802, + "value": 183411241.7562063, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001465", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 354894000.0, + "value": 378795969.05758214, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001466", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 50300000.0, + "value": 53687684.89632505, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001467", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 83600000.0, + "value": 89230426.58713269, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001468", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 167021435.64356434, + "value": 178270262.5797916, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001469", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 89857772.27722773, + "value": 95909657.32615377, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001470", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 76420792.07920793, + "value": 81567701.88222839, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001471", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 112623000.0, + "value": 120208114.03735222, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001472", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 121000000.0, + "value": 129149301.639271, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001473", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 138866000.0, + "value": 148218569.5986695, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001474", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 150696000.0, + "value": 160845315.37050897, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001475", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 212380000.0, + "value": 226683708.1169287, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001476", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 108960000.0, + "value": 116298412.45136338, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001477", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 138960000.0, + "value": 148318900.46109998, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001478", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 78416000.0, + "value": 83697286.2590502, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001479", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 116314000.0, + "value": 124147701.41215014, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001480", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 169944000.0, + "value": 181389660.47755596, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001481", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 212508144.91449144, + "value": 226820483.5401948, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001482", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 230983663.36633664, + "value": 246540320.77556068, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001483", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 106920000.0, + "value": 114121019.26670128, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001484", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 169040000.0, + "value": 180424776.43886256, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001485", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 122802484.84848486, + "value": 131073183.12189238, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001486", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 108600000.0, + "value": 115914166.59524654, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001487", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 133800000.0, + "value": 142811376.52342528, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001488", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 111340000.0, + "value": 118838704.50013581, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001489", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 153856000.0, + "value": 164218140.10753456, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001490", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 243606781.87818784, + "value": 260013601.27403453, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001491", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 87792000.0, + "value": 93704756.11169322, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001492", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 51760000.0, + "value": 55246015.3127989, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001493", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 149534000.0, + "value": 159605055.1349318, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001494", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 187776000.0, + "value": 200422638.5505434, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001495", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 116688000.0, + "value": 124546890.16267152, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001496", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 278554000.0, + "value": 297314500.5688057, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001497", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 116462000.0, + "value": 124305669.15299818, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001498", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 130230000.0, + "value": 139000938.45026663, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001499", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 111600000.0, + "value": 119116215.39622019, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001500", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 112500000.0, + "value": 120076830.0365123, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001501", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 134318000.0, + "value": 143364263.6163934, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001502", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 142774000.0, + "value": 152389771.83673784, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001503", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 534604141.4141414, + "value": 570609516.6702352, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001504", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 87264000.0, + "value": 93141195.52272186, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001505", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 113500000.0, + "value": 121144179.63683684, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001506", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 70576000.0, + "value": 75329265.3925057, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001507", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 295680000.0, + "value": 315593929.82396406, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001508", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 149408000.0, + "value": 159470569.0852909, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001509", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 66300000.0, + "value": 70765278.5015179, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001510", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 62100000.0, + "value": 66282410.180154786, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001511", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 181863000.0, + "value": 194111400.3638243, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001512", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 191627729.9729973, + "value": 204533780.99778017, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001513", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 95211000.0, + "value": 101623422.79650109, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001514", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 124910000.0, + "value": 133322638.57654001, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001515", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 92000000.0, + "value": 98196163.22985895, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001516", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 144000000.0, + "value": 153698342.44673574, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001517", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 123420000.0, + "value": 131732287.67205642, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001518", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 69426000.0, + "value": 74101813.35213247, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001519", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 72150000.0, + "value": 77009273.66341655, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001520", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 73837000.0, + "value": 78809892.43916407, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001521", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 79071000.0, + "value": 84396400.24726279, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001522", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 86502000.0, + "value": 92327875.12727454, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001523", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 104384000.0, + "value": 111414220.68027823, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001524", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 68772000.0, + "value": 73403766.71352021, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001525", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 229075000.0, + "value": 244503109.69434717, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001526", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 170520000.0, + "value": 182004453.84734288, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001527", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 239148000.0, + "value": 255254522.2184164, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001528", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 80000000.0, + "value": 85387968.0259643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001529", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 165515000.0, + "value": 176662369.09771848, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001530", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 155150495.04950497, + "value": 165599818.88124576, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001531", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 51600000.0, + "value": 55075239.376746975, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001532", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 179683000.0, + "value": 191784578.23511678, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001533", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 263026909.0909091, + "value": 280741666.2927845, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001534", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 165600000.0, + "value": 176753093.8137461, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001535", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 178500000.0, + "value": 190521903.65793285, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001536", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 112992000.0, + "value": 120601966.03987198, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001537", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 115200000.0, + "value": 122958673.9573886, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001538", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 91268000.0, + "value": 97414863.32242137, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001539", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 234258000.0, + "value": 250035182.67282927, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001540", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 143616000.0, + "value": 153288480.2002111, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001541", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 79652000.0, + "value": 85016530.36505136, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001542", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 122718000.0, + "value": 130983008.2526286, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001543", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 78500000.0, + "value": 83786943.62547748, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001544", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 195285544.55445543, + "value": 208437947.92936084, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001545", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 165216949.4949495, + "value": 176344245.01027632, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001546", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 190440000.0, + "value": 203266057.88580802, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001547", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 62708000.0, + "value": 66931358.73715211, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001548", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 134070000.0, + "value": 143099560.91551292, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001549", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 301067000.0, + "value": 321343742.12091243, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001550", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 721000000.0, + "value": 769559061.8340032, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001551", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 101860000.0, + "value": 108720230.28905904, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001552", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 147312000.0, + "value": 157233404.32301068, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001553", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 263510111.0111011, + "value": 281257411.66917753, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001554", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 179032000.0, + "value": 191089733.6453055, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001555", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 343000000.0, + "value": 366100912.91132194, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001556", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 386568000.0, + "value": 412603200.2982621, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001557", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 93180000.0, + "value": 99455635.75824192, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001558", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 167564475.24752477, + "value": 178849875.68403912, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001559", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 265360000.0, + "value": 283231889.9421236, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001560", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 108462108.9108911, + "value": 115766988.59639783, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001561", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 64800000.0, + "value": 69164254.10103108, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001562", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 86374000.0, + "value": 92191254.378433, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001563", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 272400000.0, + "value": 290746031.12840843, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001564", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 78800000.0, + "value": 84107148.50557484, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001565", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 124600000.0, + "value": 132991760.2004394, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001566", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 133530000.0, + "value": 142523192.13133764, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001567", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 48850000.0, + "value": 52140027.97585445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001568", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 176092000.0, + "value": 187951725.8203513, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001569", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 133351603.96039604, + "value": 142332781.18976688, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001570", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 175124000.0, + "value": 186918531.40723717, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001571", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 96020727.27272728, + "value": 102487684.87741844, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001572", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 128948000.0, + "value": 137632596.26265058, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001573", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 181800000.0, + "value": 194044157.33900386, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001574", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 72656000.0, + "value": 77549352.56118077, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001575", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 154406000.0, + "value": 164805182.38771304, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001576", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 244904000.00000003, + "value": 261398186.51788455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001577", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 97600000.0, + "value": 104173320.99167645, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001578", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 184728000.0, + "value": 197169356.96875417, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001579", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 200200000.0, + "value": 213683389.98497567, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001580", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 188880000.0, + "value": 201600992.50930172, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001581", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 93075000.0, + "value": 99343564.05020784, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001582", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 156800909.6909691, + "value": 167361388.2891823, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001583", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 60088000.0, + "value": 64134902.78430179, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001584", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 58248000.0, + "value": 62170979.51970461, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001585", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 80800000.0, + "value": 86241847.70622393, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001586", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 738360000.0, + "value": 788088250.8956375, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001587", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 237606000.0, + "value": 253608669.1347159, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001588", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 211088000.0, + "value": 225304692.4333094, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001589", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 91388000.0, + "value": 97542945.27446032, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001590", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 189990000.0, + "value": 202785750.56566197, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001591", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 216153000.0, + "value": 230710818.15895325, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001592", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 305319000.0, + "value": 325882112.62149245, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001593", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 141692121.21212122, + "value": 151235028.9448958, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001594", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 64008000.0, + "value": 68318913.21757403, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001595", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 76860000.0, + "value": 82036490.2809452, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001596", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 99474000.0, + "value": 106173534.14268467, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001597", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 107000000.0, + "value": 114206407.23472725, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001598", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 99444000.0, + "value": 106141513.65467492, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001599", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 113591000.0, + "value": 121241308.45046638, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001600", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 161536000.0, + "value": 172415385.0380271, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001601", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 112800000.0, + "value": 120397034.91660966, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001602", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 112000000.0, + "value": 119543155.23635001, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001603", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 114816000.0, + "value": 122548811.71086396, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001604", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 104370000.0, + "value": 111399277.78587368, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@E14001605", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 116130000.0, + "value": 123951309.08569042, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 99957000.0, + "value": 106689063.9996414, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 73059780.97809781, + "value": 77980328.02677213, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 149874000.0, + "value": 159967953.99904218, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 46488019.8019802, + "value": 49618969.3555235, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 90798257.42574257, + "value": 96913483.77353227, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 146000000.0, + "value": 155833041.64738485, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000007", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 130824495.04950495, + "value": 139635472.50375065, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 100266666.66666667, + "value": 107019586.59254192, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 155574000.0, + "value": 166051846.7208921, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 124929267.32673267, + "value": 133343203.55002743, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 130526000.0, + "value": 139316873.93196273, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 177688871.28712872, + "value": 189656145.75043792, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 149075000.0, + "value": 159115141.66838285, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 111121070.50705071, + "value": 118605030.19333713, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000015", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 192998000.0, + "value": 205996338.16343823, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000016", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 153618000.0, + "value": 163964110.9026573, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000017", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 111492000.0, + "value": 119000941.63938515, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@N05000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 111409570.95709571, + "value": 118912961.03338611, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 76200000.0, + "value": 81332039.54473099, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000027", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 154700000.0, + "value": 165118983.17020845, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000045", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 69600000.0, + "value": 74287532.18258893, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000048", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 172000000.0, + "value": 183584131.25582325, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000051", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 17200000.0, + "value": 18358413.125582322, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000060", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 84800000.0, + "value": 90511246.10752216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000061", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 102400000.0, + "value": 109296599.0732343, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000062", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 57300000.0, + "value": 61159132.09859693, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000063", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 61800000.0, + "value": 65962205.30005742, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000064", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 140500000.0, + "value": 149962618.8455998, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000065", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 80616000.0, + "value": 86045455.37976423, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000066", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 117144000.0, + "value": 125033601.58041953, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000067", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 117912000.0, + "value": 125853326.07346877, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000068", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 51760000.0, + "value": 55246015.312798895, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000069", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 104775000.0, + "value": 111831554.37400512, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000070", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 125654000.0, + "value": 134116746.67918149, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000071", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 114060000.0, + "value": 121741895.4130186, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000072", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 148336633.66336635, + "value": 158327046.6540838, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000073", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 64863000.0, + "value": 69231497.12585153, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000074", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 127477167.71677168, + "value": 136062704.01300237, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000075", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 55152000.0, + "value": 58866465.15709979, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000076", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 64317000.0, + "value": 68648724.24407433, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000077", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 66806484.84848485, + "value": 71305874.90211867, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000078", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 135092000.0, + "value": 144190392.20704463, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000079", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 140588000.0, + "value": 150056545.61042833, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000080", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 82776000.0, + "value": 88350930.51646526, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000081", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 90568000.0, + "value": 96667718.60219419, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000082", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 86516000.0, + "value": 92342818.0216791, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000083", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 147797000.0, + "value": 157751068.87916806, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000084", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 408324000.0, + "value": 435824458.2029231, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000085", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 605975000.0, + "value": 646787174.0566714, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000086", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 138000000.0, + "value": 147294244.8447884, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000087", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 240876000.0, + "value": 257098902.3277772, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000088", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 76414000.0, + "value": 81560452.35920045, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000089", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 80861626.16261627, + "value": 86307624.36626194, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000090", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 105612613.86138614, + "value": 112725581.1941819, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000091", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 57691572.15721573, + "value": 61577076.48409936, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000092", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 100409900.99009901, + "value": 107172467.6904102, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000093", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 79354801.98019801, + "value": 84699316.17739846, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000094", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 119448000.0, + "value": 127492775.05956729, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000095", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 69564000.0, + "value": 74249107.59697726, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000096", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 93828000.0, + "value": 100147278.29925223, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000097", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 82120000.0, + "value": 87650749.17865235, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000098", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 62365346.53465346, + "value": 66565627.69786467, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000099", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 132082158.21582158, + "value": 140977838.78166163, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000100", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 68448000.0, + "value": 73057945.44301505, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000101", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 251328000.0, + "value": 268254840.35036945, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000102", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 164230000.0, + "value": 175290824.86130145, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000103", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 93604040.4040404, + "value": 99908235.1140159, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000104", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 64848000.0, + "value": 69215486.88184667, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000105", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 150431000.0, + "value": 160562467.72642294, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000106", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 66127782.17821782, + "value": 70581461.87826994, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000107", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 69271871.28712872, + "value": 73937304.13205077, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000108", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 145590000.0, + "value": 155395428.3112518, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000109", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 56536000.0, + "value": 60343677.00394897, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000110", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 158540000.0, + "value": 169217605.63545477, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@S14000111", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 68208000.0, + "value": 72801781.53893715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000081", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 54484000.0, + "value": 58153475.62408298, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000082", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 82200000.0, + "value": 87736137.14667831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000083", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 109584000.0, + "value": 116964438.60196589, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000084", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 57603000.0, + "value": 61482539.02749527, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000085", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 125829000.0, + "value": 134303532.85923827, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000086", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 61210000.0, + "value": 65332469.03586594, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000087", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 110937000.0, + "value": 118408562.61120501, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000088", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 75060000.0, + "value": 80115261.000361, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000089", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 82692000.0, + "value": 88261273.150038, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000090", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 115804000.0, + "value": 123603353.11598462, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000091", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 82188000.0, + "value": 87723328.95147443, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000092", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 111960000.0, + "value": 119500461.25233704, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000093", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 113425000.0, + "value": 121064128.4168125, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000094", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 88566376.23762377, + "value": 94531286.27942176, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000095", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 109600000.0, + "value": 116981516.19557108, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000096", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 144646653.46534654, + "value": 154388547.76452184, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000097", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 85548000.0, + "value": 91309623.60856493, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000098", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 64188000.0, + "value": 68511036.14563246, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000099", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 80001000.0, + "value": 85389035.37556462, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000100", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 107250000.0, + "value": 114473244.63480839, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000101", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 139488000.0, + "value": 148882461.05007136, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000102", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 148732673.2673267, + "value": 158749759.3670836, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000103", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 62541000.0, + "value": 66753111.35389792, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000104", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 49950000.0, + "value": 53314112.53621146, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000105", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 68394000.0, + "value": 73000308.56459753, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000106", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 76292000.0, + "value": 81430235.70796086, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000107", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 77416000.0, + "value": 82629936.65872565, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000108", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 59752000.0, + "value": 63776273.318592735, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000109", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 52168000.0, + "value": 55681493.94973132, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000110", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 111320000.0, + "value": 118817357.50812933, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000111", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 71570297.02970298, + "value": 76390527.92976306, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/amount@W07000112", + "metric": "hmrc/self_employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 77200000.0, + "value": 82399389.14505555, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001063", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 5360.0, + "value": 5720.993857739608, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001064", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 4600.0, + "value": 4909.808161492947, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001065", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001066", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001067", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 7280.0, + "value": 7770.305090362751, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001068", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 3740.0, + "value": 3991.8875052138305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001069", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 7380.0, + "value": 7877.040050395208, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001070", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 3500.0, + "value": 3735.723601135938, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001071", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 7181.782178217822, + "value": 7665.472337538795, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001072", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 5560.0, + "value": 5934.463777804519, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001073", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 10120.0, + "value": 10801.577955284483, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001074", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 4560.0, + "value": 4867.114177479964, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001075", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 4400.0, + "value": 4696.338241428036, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001076", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 3260.0, + "value": 3479.5596970580455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001077", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 6700.0, + "value": 7151.24232217451, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001078", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 5510.0, + "value": 5881.096297788292, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001079", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 4800.0, + "value": 5123.278081557857, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001080", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 6490.0, + "value": 6927.098906106354, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001081", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 7280.0, + "value": 7770.305090362751, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001082", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 6440.0, + "value": 6873.731426090127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001083", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 7254.747474747475, + "value": 7743.351817627283, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001084", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 4980.0, + "value": 5315.401009616277, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001085", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947322, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001086", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 6860.0, + "value": 7322.018258226438, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001087", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 4500.0, + "value": 4803.073201460492, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001088", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 6740.0, + "value": 7193.936306187492, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001089", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 5350.0, + "value": 5710.320361736362, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001090", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 6060.0, + "value": 6468.138577966796, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001091", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 3630.0, + "value": 3874.4790491781305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001092", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 4163.232323232323, + "value": 4443.624356260283, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001093", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 3600.0, + "value": 3842.4585611683938, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001094", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 3920.0, + "value": 4184.01043327225, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001095", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 3480.0, + "value": 3714.376609129447, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001096", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 4099.49494949495, + "value": 4375.594295875961, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001097", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 3090.0, + "value": 3298.110265002871, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001098", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 4127.272727272727, + "value": 4405.242895884976, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001099", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 3910.0, + "value": 4173.336937269005, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001100", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 3660.0000000000005, + "value": 3906.4995371878667, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001101", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 4050.505050505051, + "value": 4323.304946769152, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001102", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 2990.0, + "value": 3191.3753049704155, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001103", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 4328.787878787879, + "value": 4620.330012314015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001104", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 4330.0, + "value": 4621.623769405317, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001105", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 4020.0, + "value": 4290.745393304706, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001106", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 2999.7979797979797, + "value": 3201.8331747917773, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001107", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 3630.0, + "value": 3874.47904917813, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001108", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 5750.0, + "value": 6137.260201866184, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001109", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001110", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 3480.0, + "value": 3714.376609129447, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001111", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 4480.0, + "value": 4781.726209454, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001112", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 3880.0, + "value": 4141.316449259268, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001113", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001114", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 6280.0, + "value": 6702.955490038198, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001115", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001116", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 4980.0, + "value": 5315.4010096162765, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001117", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 4520.0, + "value": 4824.420193466983, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001118", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 2940.0, + "value": 3138.007824954188, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001119", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 3060.0, + "value": 3266.089776993135, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001120", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001121", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 7154.653465346534, + "value": 7636.516516698307, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001122", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 9530.0, + "value": 10171.841691092995, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001123", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 11510.0, + "value": 12285.193899735614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001124", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 8680.0, + "value": 9264.594530817127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001125", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001126", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 6310.0, + "value": 6734.975978047934, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001127", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 5240.0, + "value": 5592.911905700662, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001128", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 2840.0, + "value": 3031.272864921733, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001129", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 7140.0, + "value": 7620.876146317314, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001130", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 6860.0, + "value": 7322.018258226439, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001131", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 6030.0, + "value": 6436.118089957059, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001132", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 6480.0, + "value": 6916.425410103107, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001133", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 5406.228622862286, + "value": 5770.335959875224, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001134", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 6090.0, + "value": 6500.159065976533, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001135", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 5280.0, + "value": 5635.6058897136445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001136", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 6575.757575757575, + "value": 7018.632220316004, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001137", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 6212.121212121212, + "value": 6630.505092925258, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001138", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001139", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 7210.0, + "value": 7695.590618340032, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001140", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 3050.0, + "value": 3255.416280989889, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001141", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 6108.316831683168, + "value": 6519.709528952774, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001142", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 3640.0, + "value": 3885.152545181376, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001143", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001144", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 3550.0, + "value": 3789.0910811521658, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001145", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 5056.060606060606, + "value": 5396.584267095508, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001146", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 6090.0, + "value": 6500.1590659765325, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001147", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 4850.0, + "value": 5176.645561574085, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001148", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 7210.0, + "value": 7695.590618340033, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001149", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 6510.0, + "value": 6948.4458981128455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001150", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001151", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 6650.0, + "value": 7097.874842158282, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001152", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 4840.0, + "value": 5165.972065570841, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001153", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001154", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 5140.0, + "value": 5486.176945668206, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001155", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 9797.979797979799, + "value": 10457.869821361788, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001156", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 5478.6138613861385, + "value": 5847.596315283055, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001157", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 5340.0, + "value": 5699.646865733117, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001158", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001159", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 4750.0, + "value": 5069.910601541629, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001160", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 8173.737373737374, + "value": 8724.235319016454, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001161", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 5640.0, + "value": 6019.851745830483, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001162", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 6920.0, + "value": 7386.059234245911, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001163", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 3838.3838383838383, + "value": 4096.897455791216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001164", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 4360.101010101011, + "value": 4653.752070505996, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001165", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001166", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 6980.0, + "value": 7450.100210265385, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001167", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 8320.0, + "value": 8880.348674700286, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001168", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 5361.485148514851, + "value": 5722.579030413358, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001169", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 8770.0, + "value": 9360.655994846336, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001170", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 3840.0, + "value": 4098.622465246286, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001171", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 5020.0, + "value": 5358.094993629259, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001172", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 8980.0, + "value": 9584.799410914493, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001173", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 3226.4646464646466, + "value": 3443.7657508653433, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001174", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 4554.455445544554, + "value": 4861.196199497967, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001175", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 7440.0, + "value": 7941.081026414679, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001176", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 6509.306930693069, + "value": 6947.706150865096, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001177", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 4920.0, + "value": 5251.360033596804, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001178", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 5160.0, + "value": 5507.523937674698, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001179", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 5400.0, + "value": 5763.68784175259, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001180", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 3720.0, + "value": 3970.54051320734, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001181", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001182", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 3280.0, + "value": 3500.9066890645363, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001183", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 3548.019801980198, + "value": 3786.977517587167, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001184", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001185", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 3850.0, + "value": 4109.2959612495315, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001186", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 6080.0, + "value": 6489.485569973287, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001187", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 5100.0, + "value": 5443.482961655224, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001188", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 7310.0, + "value": 7802.325578372488, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001189", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 9192.121212121212, + "value": 9811.206901892429, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001190", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 3180.0, + "value": 3394.171729032081, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001191", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 6230.0, + "value": 6649.58801002197, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001192", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 6690.03200320032, + "value": 7140.602984774336, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001193", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001194", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001195", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 6300.0, + "value": 6724.302482044689, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001196", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 4820.0, + "value": 5144.625073564349, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001197", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 5770.0, + "value": 6158.607193872675, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001198", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 4280.0, + "value": 4568.25628938909, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001199", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 4180.0, + "value": 4461.521329356635, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001200", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 3920.0, + "value": 4184.01043327225, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001201", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 7280.0990099009905, + "value": 7770.410768541001, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001202", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 6060.0, + "value": 6468.138577966796, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001203", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 5700.0, + "value": 6083.892721849957, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001204", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 3540.0, + "value": 3778.4175851489204, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001205", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 7440.0, + "value": 7941.081026414679, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001206", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 7520.0, + "value": 8026.468994440643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001207", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 10112.121212121212, + "value": 10793.168534191018, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001208", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 8820.0, + "value": 9414.023474862564, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001209", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 7280.0, + "value": 7770.305090362752, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001210", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 5344.848484848485, + "value": 5704.821894098328, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001211", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 2420.0, + "value": 2582.98603278542, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001212", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 7128.282828282829, + "value": 7608.369827768057, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001213", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 9360.0, + "value": 9990.392259037824, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001214", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 6870.0, + "value": 7332.691754229684, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001215", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 6850.0, + "value": 7311.344762223192, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001216", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 6360.0, + "value": 6788.343458064162, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001217", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 5760.0, + "value": 6147.933697869429, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001218", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001219", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 6510.0, + "value": 6948.4458981128455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001220", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 5670.0, + "value": 6051.87223384022, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001221", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 8350.0, + "value": 8912.369162710023, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001222", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 4088.282828282828, + "value": 4363.6270427814125, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001223", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 6856.969696969697, + "value": 7318.783865498183, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001224", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 6740.684068406841, + "value": 7194.666446328129, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001225", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 7210.0, + "value": 7695.590618340033, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001226", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 8000.0, + "value": 8538.79680259643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001227", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 7049.702970297029, + "value": 7524.497647753354, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001228", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001229", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 8010.0, + "value": 8549.470298599676, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001230", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.4472022718755, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001231", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 5349.306930693069, + "value": 5709.580614488613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001232", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 6120.0400040004, + "value": 6532.222252240107, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001233", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 5920.0, + "value": 6318.7096339213585, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001234", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 7520.0, + "value": 8026.468994440643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001235", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 5840.0, + "value": 6233.321665895394, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001236", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 6440.0, + "value": 6873.731426090127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001237", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 5263.008300830083, + "value": 5617.469806395797, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001238", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 11000.0, + "value": 11740.845603570091, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001239", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 5600.0, + "value": 5977.1577618175015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001240", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001241", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 7110.0, + "value": 7588.855658307577, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001242", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 4580.0, + "value": 4888.461169486456, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001243", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 4850.0, + "value": 5176.645561574085, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001244", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 2160.0, + "value": 2305.4751367010363, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001245", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 4300.0, + "value": 4589.603281395581, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001246", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001247", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 7030.0, + "value": 7503.467690281613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001248", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 4750.0, + "value": 5069.910601541629, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001249", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 6855.247524752475, + "value": 7316.9457056704405, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001250", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 5067.272727272728, + "value": 5408.551520190057, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001251", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 3730.0, + "value": 3981.2140092105856, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001252", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001253", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 5160.0, + "value": 5507.523937674698, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001254", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001255", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 2790.0, + "value": 2977.905384905505, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001256", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001257", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 6880.0, + "value": 7343.365250232929, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001258", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 7504.950495049505, + "value": 8010.40591134665, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001259", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 7089.009900990099, + "value": 7566.451884518586, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001260", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 8013.663366336633, + "value": 8553.380391194924, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001261", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 3820.0, + "value": 4077.2754732397952, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001262", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 3150.0, + "value": 3362.1512410223445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001263", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 5800.0, + "value": 6190.627681882412, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001264", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 8014.141414141414, + "value": 8553.890635328293, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001265", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 9903.131313131313, + "value": 10570.103249032281, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001266", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 4600.0, + "value": 4909.808161492947, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001267", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 6534.653465346534, + "value": 6974.759764497084, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001268", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 6570.0, + "value": 7012.486874132318, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001269", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 5897.575757575757, + "value": 6294.775127732262, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001270", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 13329.30693069307, + "value": 14227.030425078552, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001271", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 8895.959595959595, + "value": 9495.098919250853, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001272", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001273", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 6936.237623762377, + "value": 7403.390455478905, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001274", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 6660.0, + "value": 7108.548338161528, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001275", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001276", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001277", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 3800.0, + "value": 4055.9284812333044, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001278", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 6810.0, + "value": 7268.650778210211, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001279", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 11700.0, + "value": 12487.99032379728, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001280", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 7360.0, + "value": 7855.693058388715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001281", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 4950.0, + "value": 5283.38052160654, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001282", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 5930.0, + "value": 6329.383129924604, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001283", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 6440.0, + "value": 6873.731426090127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001284", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 8720.0, + "value": 9307.288514830108, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001285", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 5795.6435643564355, + "value": 6185.977842039413, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001286", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 4450.000000000001, + "value": 4749.705721444264, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001287", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001288", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 4550.0, + "value": 4856.44068147672, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001289", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 6430.0, + "value": 6863.057930086881, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001290", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 7560.0, + "value": 8069.162978453626, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001291", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 6612.6732673267325, + "value": 7058.034168958048, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001292", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 6717.171717171717, + "value": 7169.570547634628, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001293", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 9964.343434343435, + "value": 10635.437982143058, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001294", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 7040.0, + "value": 7514.141186284857, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001295", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 3240.0, + "value": 3458.212705051554, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001296", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 8000.0, + "value": 8538.79680259643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001297", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 3960.0, + "value": 4226.704417285233, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001298", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 5950.0, + "value": 6350.730121931095, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001299", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001300", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 9819.191919191919, + "value": 10480.510570459583, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001301", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 8980.808080808081, + "value": 9585.661915642027, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001302", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001303", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001304", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001305", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 8000.0, + "value": 8538.79680259643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001306", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 7630.0, + "value": 8143.877450476345, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001307", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 2200.0, + "value": 2348.169120714018, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001308", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001309", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 5060.0, + "value": 5400.788977642243, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001310", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 9500.0, + "value": 10139.82120308326, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001311", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 6240.0, + "value": 6660.261506025216, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001312", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 7440.0, + "value": 7941.0810264146785, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001313", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 3360.0, + "value": 3586.2946570905006, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001314", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 3899.5959595959594, + "value": 4162.232188901992, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001315", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 4013.131313131313, + "value": 4283.414103120659, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001316", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 4050.0, + "value": 4322.765881314443, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001317", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 3330.0, + "value": 3554.274169080764, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001318", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 5380.0, + "value": 5742.340849746099, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001319", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 3968.888888888889, + "value": 4236.191969288117, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001320", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 4470.0990099009905, + "value": 4771.158391629005, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001321", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001322", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 4500.0, + "value": 4803.073201460491, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001323", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 3440.0, + "value": 3671.682625116465, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001324", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 4360.101010101011, + "value": 4653.752070505996, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001325", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 4601.010101010101, + "value": 4910.886292402365, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001326", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 2940.0, + "value": 3138.007824954188, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001327", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 3700.0, + "value": 3949.193521200849, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001328", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 3360.0, + "value": 3586.2946570905006, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001329", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 4890.0, + "value": 5219.339545587067, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001330", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 7231.010101010101, + "value": 7718.015741255943, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001331", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 7618.888888888889, + "value": 8132.018010472739, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001332", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 7310.0, + "value": 7802.325578372488, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001333", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 6756.363636363637, + "value": 7211.402026920075, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001334", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 10780.0, + "value": 11506.028691498688, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001335", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 5820.0, + "value": 6211.9746738889025, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001336", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001337", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 2850.0, + "value": 3041.9463609249788, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001338", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 3740.0, + "value": 3991.887505213831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001339", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 3380.0, + "value": 3607.6416490969914, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001340", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 3320.0, + "value": 3543.600673077519, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001341", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 3190.0, + "value": 3404.8452250353266, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001342", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 3680.0, + "value": 3927.8465291943576, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001343", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 3870.0, + "value": 4130.642953256023, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001344", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 3640.0, + "value": 3885.1525451813754, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001345", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 6360.0, + "value": 6788.343458064162, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001346", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 6120.0, + "value": 6532.179553986269, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001347", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001348", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 5805.454545454545, + "value": 6196.4495887932735, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001349", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 6870.0, + "value": 7332.691754229684, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001350", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 4150.0, + "value": 4429.500841346898, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001351", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 7250.0, + "value": 7738.284602353015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001352", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 4068.5858585858587, + "value": 4342.603490047747, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001353", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 3180.0, + "value": 3394.1717290320807, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001354", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 3560.0, + "value": 3799.764577155411, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001355", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 5700.0, + "value": 6083.892721849957, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001356", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 4994.059405940594, + "value": 5330.4073109277715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001357", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 5330.0, + "value": 5688.973369729872, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001358", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 4210.0, + "value": 4493.541817366371, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001359", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 5670.0, + "value": 6051.87223384022, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001360", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 6689.9009900990095, + "value": 7140.463147993015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001361", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 4790.0, + "value": 5112.604585554612, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001362", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 4300.0, + "value": 4589.603281395581, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001363", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 5600.50505050505, + "value": 5977.696827272211, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001364", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 4800.0, + "value": 5123.278081557857, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001365", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 6060.0, + "value": 6468.138577966795, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001366", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 6260.0, + "value": 6681.608498031706, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001367", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 3420.0, + "value": 3650.335633109974, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001368", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 2880.0, + "value": 3073.966848934715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001369", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 6160.0, + "value": 6574.873537999251, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001370", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 4900.000000000001, + "value": 5230.013041590314, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001371", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 10700.0, + "value": 11420.640723472725, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001372", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 5370.0, + "value": 5731.667353742853, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001373", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001374", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001375", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 5940.0, + "value": 6340.056625927849, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001376", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 6020.0, + "value": 6425.444593953814, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001377", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 4273.366336633663, + "value": 4561.175851446343, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001378", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 3820.0, + "value": 4077.2754732397952, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001379", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 3792.970297029703, + "value": 4048.4253305775574, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001380", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 4250.0, + "value": 4536.235801379353, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001381", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001382", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 3460.0, + "value": 3693.029617122956, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001383", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001384", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 6630.0, + "value": 7076.527850151791, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001385", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 8480.0, + "value": 9051.124610752215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001386", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 6650.0, + "value": 7097.874842158282, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001387", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 9000.0, + "value": 9606.146402920984, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001388", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 6650.0, + "value": 7097.874842158283, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001389", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 3323.2323232323233, + "value": 3547.0506919876584, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001390", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 5100.0, + "value": 5443.482961655224, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001391", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001392", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 5640.0, + "value": 6019.851745830483, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001393", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001394", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 6127.227722772278, + "value": 6539.894060998516, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001395", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 8050.0, + "value": 8592.164282612657, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001396", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 6070.707070707071, + "value": 6479.566765606634, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001397", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 6420.0, + "value": 6852.384434083635, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001398", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 6440.0, + "value": 6873.731426090127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001399", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 6370.0, + "value": 6799.016954067408, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001400", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001401", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 5590.0, + "value": 5966.484265814256, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001402", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 7930.693069306931, + "value": 8464.822077821462, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001403", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 4880.0, + "value": 5208.666049583821, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001404", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 3800.0, + "value": 4055.9284812333035, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001405", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 5250.0, + "value": 5603.585401703906, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001406", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 8280.0, + "value": 8837.654690687306, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001407", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 7175.445544554455, + "value": 7658.708934130797, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001408", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 4453.535353535353, + "value": 4753.479179627229, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001409", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 4980.0, + "value": 5315.401009616277, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001410", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 3484.848484848485, + "value": 3719.551637494657, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001411", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 3323.2323232323233, + "value": 3547.0506919876584, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001412", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 3701.919191919192, + "value": 3951.2419699287443, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001413", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001414", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 5600.0, + "value": 5977.157761817501, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001415", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001416", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001417", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 6310.909090909091, + "value": 6735.946295866412, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001418", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 4120.0, + "value": 4397.480353337161, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001419", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 6230.0, + "value": 6649.58801002197, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001420", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 6650.0, + "value": 7097.874842158283, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001421", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 6640.0, + "value": 7087.201346155037, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001422", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 4710.0, + "value": 5027.2166175286475, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001423", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001424", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 5670.0, + "value": 6051.872233840219, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001425", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 5940.0, + "value": 6340.056625927849, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001426", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 3250.0, + "value": 3468.8862010548, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001427", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 4750.0, + "value": 5069.910601541629, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001428", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 3400.0, + "value": 3628.988641103482, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001429", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 5870.0, + "value": 6265.3421539051305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001430", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 5810.0, + "value": 6201.301177885657, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001431", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001432", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001433", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 4100.0, + "value": 4376.133361330671, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001434", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 8720.0, + "value": 9307.288514830108, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001435", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 7970.0, + "value": 8506.776314586692, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001436", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 4038.811881188119, + "value": 4310.824247172198, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001437", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 6720.0, + "value": 7172.589314181001, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001438", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 5940.0, + "value": 6340.056625927849, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001439", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 5180.0, + "value": 5528.8709296811885, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001440", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 3180.0, + "value": 3394.171729032081, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001441", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 5300.0, + "value": 5656.952881720134, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001442", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001443", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 5230.0, + "value": 5582.2384096974165, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001444", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 7119.207920792079, + "value": 7598.683728884823, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001445", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 7360.0, + "value": 7855.693058388715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001446", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 3600.0, + "value": 3842.4585611683933, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001447", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 6160.0, + "value": 6574.873537999251, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001448", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 8070.707070707071, + "value": 8614.265966255742, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001449", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 6130.0, + "value": 6542.853049989515, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001450", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 5010.0, + "value": 5347.421497626014, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001451", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 3673.5643564356437, + "value": 3920.9774476081107, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001452", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 3727.6237623762377, + "value": 3978.677732932587, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001453", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 4060.0, + "value": 4333.439377317688, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001454", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 6765.822582258225, + "value": 7221.498029040157, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001455", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 3573.2323232323233, + "value": 3813.888092068797, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001456", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 6040.0, + "value": 6446.791585960305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001457", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 4950.0, + "value": 5283.38052160654, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001458", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 5680.0, + "value": 6062.545729843466, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001459", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 5456.565656565657, + "value": 5824.06317268004, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001460", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 5520.0, + "value": 5891.769793791536, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001461", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001462", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 2510.0, + "value": 2679.04749681463, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001463", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 4240.0, + "value": 4525.562305376107, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001464", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 5529.108910891089, + "value": 5901.492186190532, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001465", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 6060.0, + "value": 6468.138577966795, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001466", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 3040.0, + "value": 3244.7427849866435, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001467", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 3040.0, + "value": 3244.742784986643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001468", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 5149.60396039604, + "value": 5496.427728958451, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001469", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 4334.752475247525, + "value": 4626.696321961315, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001470", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 3435.6435643564355, + "value": 3667.0327852734667, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001471", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 5010.0, + "value": 5347.421497626014, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001472", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001473", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 6370.0, + "value": 6799.016954067408, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001474", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 6440.0, + "value": 6873.731426090127, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001475", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 7660.0, + "value": 8175.89793848608, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001476", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 4800.0, + "value": 5123.278081557859, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001477", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 7200.0, + "value": 7684.917122336787, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001478", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 4480.0, + "value": 4781.726209454, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001479", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 3740.0, + "value": 3991.8875052138305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001480", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 6880.0, + "value": 7343.36525023293, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001481", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 7291.080108010801, + "value": 7782.131439219633, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001482", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 7054.455445544554, + "value": 7529.570200309352, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001483", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 4400.0, + "value": 4696.338241428036, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001484", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 7060.0, + "value": 7535.48817829135, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001485", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 5369.49494949495, + "value": 5731.128288288144, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001486", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001487", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001488", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 4600.0, + "value": 4909.808161492947, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001489", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 6400.0, + "value": 6831.037442077144, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001490", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 6218.158815881588, + "value": 6636.949326885813, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001491", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 3880.0, + "value": 4141.316449259268, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001492", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 3200.0, + "value": 3415.518721038572, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001493", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 7630.0, + "value": 8143.877450476345, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001494", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 5760.0, + "value": 6147.93369786943, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001495", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 5360.0, + "value": 5720.993857739607, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001496", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 6630.0, + "value": 7076.52785015179, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001497", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 5650.0, + "value": 6030.5252418337295, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001498", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 5530.0, + "value": 5902.443289794783, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001499", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001500", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001501", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 5620.0, + "value": 5998.504753823992, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001502", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 5660.0, + "value": 6041.198737836974, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001503", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 11753.131313131313, + "value": 12544.700009632705, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001504", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 4120.0, + "value": 4397.480353337161, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001505", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001506", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 3740.0, + "value": 3991.887505213831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001507", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 7680.0, + "value": 8197.244930492572, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001508", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 7360.0, + "value": 7855.693058388715, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001509", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001510", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 2700.0, + "value": 2881.843920876295, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001511", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 8210.0, + "value": 8762.940218664586, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001512", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 6878.2358235823585, + "value": 7341.482257238658, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001513", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 4230.0, + "value": 4514.888809372862, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001514", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 6460.0, + "value": 6895.0784180966175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001515", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001516", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001517", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 5520.0, + "value": 5891.769793791536, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001518", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 3150.0, + "value": 3362.1512410223445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001519", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 2730.0, + "value": 2913.864408886032, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001520", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 3850.0, + "value": 4109.2959612495315, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001521", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 4110.0, + "value": 4386.806857333916, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001522", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 3780.0, + "value": 4034.581489226813, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001523", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 4620.0, + "value": 4931.155153499438, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001524", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 3210.0, + "value": 3426.1922170418175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001525", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 9530.0, + "value": 10171.841691092997, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001526", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 5880.0, + "value": 6276.015649908376, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001527", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 8190.0, + "value": 8741.593226658095, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001528", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001529", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 6350.0, + "value": 6777.669962060916, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001530", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 6306.930693069307, + "value": 6731.699954522186, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001531", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001532", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 6230.0, + "value": 6649.588010021969, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001533", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 8190.707070707071, + "value": 8742.347918294688, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001534", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001535", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001536", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 5280.0, + "value": 5635.6058897136445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001537", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001538", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 4180.0, + "value": 4461.521329356634, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001539", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 7170.0, + "value": 7652.89663432705, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001540", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 7040.0, + "value": 7514.141186284858, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001541", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 4120.0, + "value": 4397.480353337161, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001542", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 5110.0, + "value": 5454.15645765847, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001543", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 4440.0, + "value": 4739.032225441018, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001544", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 7534.257425742574, + "value": 8041.686652108637, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001545", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 6173.535353535353, + "value": 6589.320492185462, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001546", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 8280.0, + "value": 8837.654690687305, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001547", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 3740.0, + "value": 3991.887505213831, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001548", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 6180.0, + "value": 6596.220530005742, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001549", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 7030.0, + "value": 7503.467690281613, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001550", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001551", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 5140.0, + "value": 5486.176945668206, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001552", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 7440.0, + "value": 7941.081026414679, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001553", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 11206.720672067207, + "value": 11961.488830279848, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001554", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 6740.0, + "value": 7193.936306187493, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001555", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001556", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 7280.0, + "value": 7770.305090362751, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001557", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 3720.0, + "value": 3970.5405132073397, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001558", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 6568.910891089109, + "value": 7011.3244141715695, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001559", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 6640.0, + "value": 7087.201346155036, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001560", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 4680.0990099009905, + "value": 4995.301807697161, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001561", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 3240.0, + "value": 3458.212705051554, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001562", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 3970.0, + "value": 4237.377913288478, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001563", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 12000.0, + "value": 12808.195203894646, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001564", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001565", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 4450.0, + "value": 4749.705721444264, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001566", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001567", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 2180.0, + "value": 2326.822128707527, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001568", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 6230.0, + "value": 6649.58801002197, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001569", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 5534.455445544554, + "value": 5907.19880781603, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001570", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 6050.0, + "value": 6457.465081963551, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001571", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 3996.3636363636365, + "value": 4265.517130024307, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001572", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 5970.0, + "value": 6372.077113937586, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001573", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001574", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 4280.0, + "value": 4568.25628938909, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001575", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 6510.0, + "value": 6948.4458981128455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001576", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 11440.0, + "value": 12210.479427712895, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001577", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001578", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 6750.0, + "value": 7204.609802190738, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001579", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001580", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 8640.0, + "value": 9221.900546804143, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001581", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 4250.0, + "value": 4536.235801379353, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001582", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 5279.65196519652, + "value": 5635.23441490525, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001583", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 2830.0, + "value": 3020.599368918487, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001584", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 2790.0, + "value": 2977.9053849055053, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001585", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001586", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 7500.0, + "value": 8005.122002434153, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001587", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 6420.0, + "value": 6852.384434083636, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001588", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 6080.0, + "value": 6489.485569973287, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001589", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 2870.0, + "value": 3063.293352931469, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001590", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 6380.0, + "value": 6809.690450070653, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001591", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 6370.0, + "value": 6799.016954067407, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001592", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 6510.0, + "value": 6948.4458981128455, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001593", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 4869.69696969697, + "value": 5197.669114307751, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001594", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 3330.0, + "value": 3554.2741690807643, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001595", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 3900.0, + "value": 4162.6634412657595, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001596", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 4780.0, + "value": 5101.931089551366, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001597", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001598", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 4320.0, + "value": 4610.9502734020725, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001599", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 5230.0, + "value": 5582.238409697416, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001600", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 5600.0, + "value": 5977.1577618175015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001601", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 6000.0, + "value": 6404.097601947323, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001602", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001603", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 5520.0, + "value": 5891.769793791537, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001604", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 4260.0, + "value": 4546.909297382598, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@E14001605", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 4740.0, + "value": 5059.237105538384, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 3210.0, + "value": 3426.1922170418175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 2983.1923192319227, + "value": 3184.1091296234727, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 4400.0, + "value": 4696.338241428036, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 2407.920792079208, + "value": 2570.093295038925, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 4561.584158415842, + "value": 4868.8050283319635, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 6121.212121212121, + "value": 6533.473311077571, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000007", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 8168.6138613861385, + "value": 8718.766740156105, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 3797.979797979798, + "value": 4053.7722194144662, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 5940.0, + "value": 6340.056625927849, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 6834.851485148514, + "value": 7295.17600095095, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 6570.0, + "value": 7012.486874132319, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 7359.20792079208, + "value": 7854.847632962716, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 5150.0, + "value": 5496.850441671451, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 6068.094809480948, + "value": 6476.778569630989, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000015", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 8790.0, + "value": 9382.002986852827, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000016", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 6660.0, + "value": 7108.548338161529, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000017", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 5550.0, + "value": 5923.7902818012735, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@N05000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 7427.342734273428, + "value": 7927.571298900221, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000027", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 7000.0, + "value": 7471.447202271876, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000045", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000048", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000051", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 1000.0, + "value": 1067.3496003245536, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000060", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000061", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000062", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000063", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000064", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 5000.0, + "value": 5336.748001622768, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000065", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 3600.0, + "value": 3842.4585611683933, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000066", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 3600.0, + "value": 3842.4585611683938, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000067", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 4160.0, + "value": 4440.174337350143, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000068", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 2140.0, + "value": 2284.1281446945445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000069", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 3720.0, + "value": 3970.5405132073397, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000070", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 4730.0, + "value": 5048.563609535139, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000071", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 4600.0, + "value": 4909.808161492947, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000072", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 6534.653465346534, + "value": 6974.759764497084, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000073", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 2510.0, + "value": 2679.04749681463, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000074", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 5943.594359435943, + "value": 6343.893064035226, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000075", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 2900.0, + "value": 3095.313840941206, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000076", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 3000.0, + "value": 3202.0488009736614, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000077", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 3090.3030303030305, + "value": 3298.433704275697, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000078", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 6140.0, + "value": 6553.5265459927605, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000079", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 5060.0, + "value": 5400.788977642242, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000080", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 3770.0, + "value": 4023.9079932235677, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000081", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 3670.0, + "value": 3917.173033191112, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000082", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 3680.0, + "value": 3927.8465291943576, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000083", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 5470.0, + "value": 5838.402313775308, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000084", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 5740.0, + "value": 6126.586705862939, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000085", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 5250.0, + "value": 5603.585401703906, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000086", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000087", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 4260.0, + "value": 4546.909297382599, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000088", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 3340.0, + "value": 3564.9476650840093, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000089", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 3619.7539753975398, + "value": 3863.5429589137784, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000090", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 3700.09900990099, + "value": 3949.299199379099, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000091", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 2910.537053705371, + "value": 3106.5605610022317, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000092", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 3996.4356435643567, + "value": 4265.593986881217, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000093", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 3482.8712871287125, + "value": 3717.441276298696, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000094", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 3630.0, + "value": 3874.47904917813, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000095", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 3090.0, + "value": 3298.110265002871, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000096", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 3640.0, + "value": 3885.152545181375, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000097", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 3520.0, + "value": 3757.0705931424286, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000098", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 2504.950495049505, + "value": 2673.657909723882, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000099", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 6057.105710571057, + "value": 6465.04935930159, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000100", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 3680.0, + "value": 3927.8465291943576, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000101", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 5280.0, + "value": 5635.6058897136445, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000102", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 4300.0, + "value": 4589.603281395581, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000103", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 4464.646464646465, + "value": 4765.338619630836, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000104", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 2520.0, + "value": 2689.7209928178754, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000105", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 5390.0, + "value": 5753.014345749344, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000106", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 2888.3168316831684, + "value": 3082.8438159077114, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000107", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 3116.732673267327, + "value": 3326.6433731303596, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000108", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 5050.0, + "value": 5390.115481638996, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000109", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 2680.0, + "value": 2860.496928869804, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000110", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 5450.0, + "value": 5817.0553217688175, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@S14000111", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 3120.0, + "value": 3330.130753012608, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000081", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 2730.0, + "value": 2913.864408886032, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000082", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 3750.0, + "value": 4002.561001217077, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000083", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 5320.0, + "value": 5678.299873726625, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000084", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 3050.0, + "value": 3255.4162809898885, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000085", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 6930.0, + "value": 7396.732730249158, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000086", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 3110.0, + "value": 3319.457257009362, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000087", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 7090.0, + "value": 7567.508666301086, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000088", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 3480.0, + "value": 3714.3766091294474, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000089", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 3600.0, + "value": 3842.4585611683933, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000090", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 4120.0, + "value": 4397.480353337161, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000091", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 3800.0, + "value": 4055.9284812333044, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000092", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 4260.0, + "value": 4546.909297382598, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000093", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 6450.0, + "value": 6884.404922093371, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000094", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 4207.3267326732675, + "value": 4490.688506553623, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000095", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 4750.0, + "value": 5069.91060154163, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000096", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 7388.514851485149, + "value": 7886.128373724702, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000097", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 4300.0, + "value": 4589.603281395581, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000098", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 3960.0, + "value": 4226.704417285233, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000099", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 4110.0, + "value": 4386.806857333916, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000100", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 6500.0, + "value": 6937.772402109598, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000101", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 5760.0, + "value": 6147.933697869429, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000102", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 8425.742574257425, + "value": 8993.21296907124, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000103", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 3470.0, + "value": 3703.7031131262015, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000104", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 2990.0, + "value": 3191.3753049704155, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000105", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 3690.0, + "value": 3938.5200251976034, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000106", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 3760.0, + "value": 4013.2344972203223, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000107", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 3980.0, + "value": 4248.051409291724, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000108", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 2600.0, + "value": 2775.1089608438397, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000109", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 2660.0, + "value": 2839.1499368633126, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000110", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 4600.0, + "value": 4909.808161492947, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000111", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 3158.4158415841584, + "value": 3371.1338861735903, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/self_employment_income/count@W07000112", + "metric": "hmrc/self_employment_income/count", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 4000.0, + "value": 4269.398401298215, + "adjustment_factor": 1.0673496003245537, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001063", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 1760130000.0, + "value": 2174156014.7943172, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001064", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 1046680000.0, + "value": 1292884967.3404326, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001065", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 2160000000.0, + "value": 2668085307.3100996, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001066", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 1033200000.0, + "value": 1276234138.663331, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001067", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 1391789000.0, + "value": 1719172121.1925075, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001068", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 954300000.0, + "value": 1178774911.4657538, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001069", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 1380644000.0, + "value": 1705405542.141595, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001070", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 974743000.0, + "value": 1204026609.5848927, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001071", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 1825093544.5544555, + "value": 2254400588.2834506, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001072", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 1586360000.0, + "value": 1959511022.2705784, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001073", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 1318820000.0, + "value": 1629039011.5679193, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001074", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 1102518000.0, + "value": 1361857442.9837577, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001075", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 1118258000.0, + "value": 1381299879.4361005, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001076", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 1198419000.0, + "value": 1480316724.9542882, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001077", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 1521800000.0, + "value": 1879764916.9743102, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001078", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 1885820000.0, + "value": 2329411404.7368207, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001079", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 1178880000.0, + "value": 1456181669.9452455, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001080", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 1474186000.0, + "value": 1820950929.0936327, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001081", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 4132674000.0, + "value": 5104780916.343731, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001082", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 2444992000.0, + "value": 3020114459.1160808, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001083", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 2229739393.939394, + "value": 2754229127.8241777, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001084", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 1363852000.0, + "value": 1684663649.3266175, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001085", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 2715378000.0, + "value": 3354101919.2560573, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001086", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 2718150000.0, + "value": 3357525962.0671053, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001087", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 960750000.0, + "value": 1186742110.6473048, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001088", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 988128000.0, + "value": 1220560091.9174602, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001089", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 1584478000.0, + "value": 1957186329.4241166, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001090", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 1696850000.0, + "value": 2095990997.087566, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001091", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 1027620000.0, + "value": 1269341584.95278, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001092", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 1217294545.4545455, + "value": 1503632264.5351846, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001093", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 960600000.0, + "value": 1186556826.945408, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001094", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 1005574000.0, + "value": 1242109821.6727066, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001095", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 891653000.0, + "value": 1101391790.9810057, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001096", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 1120412727.2727273, + "value": 1383961451.7405562, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001097", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 1041381000.0, + "value": 1286339511.764768, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001098", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 902072727.2727273, + "value": 1114262495.2599602, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001099", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 1012745000.0, + "value": 1250967617.8480403, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001100", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 803713000.0000001, + "value": 992766132.682464, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001101", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 922033333.3333334, + "value": 1138918328.4800103, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001102", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 934526000.0, + "value": 1154349578.6570733, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001103", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 916705000.0, + "value": 1132336639.6470854, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001104", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 931999000.0, + "value": 1151228165.8924563, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001105", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 847976000.0, + "value": 1047440882.6627727, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001106", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 1035192666.6666667, + "value": 1278695529.7076366, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001107", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 1112626000.0, + "value": 1374343094.0422254, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001108", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 997651000.0, + "value": 1232323136.5385315, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001109", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 990500000.0, + "value": 1223490044.856784, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001110", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 1035660000.0, + "value": 1279272791.374434, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001111", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 1130172000.0, + "value": 1396016346.2654028, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001112", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 1099760000.0, + "value": 1358450693.31822, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001113", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 1022000000.0, + "value": 1262399622.2550564, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001114", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 1050325000.0, + "value": 1297387361.2965186, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001115", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 1275100000.0, + "value": 1575034988.588476, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001116", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 1099752000.0, + "value": 1358440811.5207853, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001117", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 1882652000.0, + "value": 2325498212.9527655, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001118", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 792918000.0, + "value": 979431882.26931, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001119", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 903882000.0, + "value": 1116497353.5842905, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001120", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 751100000.0, + "value": 927777256.6299148, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001121", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 1538636287.128713, + "value": 1900561514.3436494, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001122", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 2027708000.0, + "value": 2504674964.0347905, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001123", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 1701096000.0, + "value": 2101235761.0759175, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001124", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 2829036000.0, + "value": 3494495085.8570995, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001125", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 2005400000.0, + "value": 2477119571.8887377, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001126", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 984269000.0, + "value": 1215793359.880002, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001127", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 961135000.0, + "value": 1187217672.1488392, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001128", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 1029580000.0, + "value": 1271762625.3242278, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001129", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 1108192000.0, + "value": 1368866107.814164, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001130", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 1459808000.0, + "value": 1803190868.65451, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001131", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 1416849000.0, + "value": 1750126851.656022, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001132", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 1405860000.0, + "value": 1736552967.6550815, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001133", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 1255951247.5247524, + "value": 1551381976.9530473, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001134", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 1517187000.0, + "value": 1874066825.5286517, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001135", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 1157728000.0, + "value": 1430054197.5284753, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001136", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 951700000.0, + "value": 1175563327.299547, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001137", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 2149030222.2222223, + "value": 2654535167.072439, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001138", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 1560000000.0, + "value": 1926950499.7239609, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001139", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 1665400000.0, + "value": 2057143180.923259, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001140", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 1202724000.0, + "value": 1485634367.1987185, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001141", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 1899183207.920792, + "value": 2345917968.9553366, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001142", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 936840000.0, + "value": 1157207888.5649972, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001143", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 1368400000.0, + "value": 1690281451.1681204, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001144", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 1151400000.0, + "value": 1422237695.7578003, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001145", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 1248000000.0, + "value": 1541560399.7791686, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001146", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 1335348000.0, + "value": 1649454805.0675588, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001147", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 1259739000.0, + "value": 1556060702.2895913, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001148", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 871890000.0, + "value": 1076980045.6437976, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001149", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 2259900000.0, + "value": 2791484252.773192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001150", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 1040400000.0, + "value": 1285127756.3543646, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001151", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 1261980000.0, + "value": 1558828840.7959256, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001152", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 1134576000.0, + "value": 1401456275.753085, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001153", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 1584600000.0, + "value": 1957337026.8349924, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001154", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 1131600000.0, + "value": 1397780247.1074579, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001155", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 889950505.050505, + "value": 1099288827.2029884, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001156", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 1140990336.6336634, + "value": 1409379422.6643898, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001157", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 1380708000.0, + "value": 1705484596.5210707, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001158", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 1461600000.0, + "value": 1805404391.279834, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001159", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 1772320000.0, + "value": 2189213403.635109, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001160", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 5818409090.909091, + "value": 7187042503.413916, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001161", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 1425040000.0, + "value": 1760244577.0042517, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001162", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 2364460000.0, + "value": 2920639345.2418694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001163", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 1187030303.030303, + "value": 1466249125.3921325, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001164", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 1255544494.949495, + "value": 1550879546.1337163, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001165", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 996600000.0, + "value": 1231024915.4005766, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001166", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 1429016000.0, + "value": 1765155830.3291895, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001167", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 1964160000.0, + "value": 2426178906.1139836, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001168", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 1391359564.3564355, + "value": 1718641671.6874013, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001169", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 2115495000.0, + "value": 2613111632.9573975, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001170", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 1337472000.0, + "value": 1652078422.2864137, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001171", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 853470000.0, + "value": 1054227207.0509031, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001172", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 6541280000.0, + "value": 8079950490.27843, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001173", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 1093994666.6666667, + "value": 1351329211.3004367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001174", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 739981188.1188118, + "value": 914043025.7896633, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001175", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 2722284000.0, + "value": 3362632380.8913736, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001176", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 1621641148.5148516, + "value": 2003091167.6305325, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001177", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 1236150000.0, + "value": 1526922987.3293424, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001178", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 1681902000.0, + "value": 2077526858.5812366, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001179", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 1600560000.0, + "value": 1977051212.7167838, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001180", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 1200060000.0000002, + "value": 1482343728.6530364, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001181", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 1155200000.0, + "value": 1426931549.539179, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001182", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 1205940000.0, + "value": 1489606849.7673802, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001183", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 1087970930.6930695, + "value": 1343888543.9642005, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001184", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 1503000000.0, + "value": 1856542693.0032775, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001185", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 1385739000.0, + "value": 1711699011.8826807, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001186", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 1680800000.0, + "value": 2076165640.9846368, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001187", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 1914000000.0, + "value": 2364220036.1997824, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001188", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 1736392000.0, + "value": 2144834251.356851, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001189", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 1369421818.1818182, + "value": 1691543626.2040703, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001190", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 1057570000.0, + "value": 1306336564.0981214, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001191", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 1618821000.0, + "value": 1999607650.5856678, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001192", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 1669902835.2835283, + "value": 2062705194.1923423, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001193", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 1184000000.0, + "value": 1462506020.3033137, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001194", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 1039700000.0, + "value": 1284263099.0788474, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001195", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 1147310000.0, + "value": 1417185626.8194215, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001196", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 1000918000.0, + "value": 1236358615.5658379, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001197", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 1908275000.0, + "value": 2357148374.910732, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001198", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 1236081000.0, + "value": 1526837756.82647, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001199", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 1011368000.0, + "value": 1249266713.46463, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001200", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 929307000.0, + "value": 1147902941.055753, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001201", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 2074612069.3069308, + "value": 2562612028.0027885, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001202", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 1029450000.0, + "value": 1271602046.1159177, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001203", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 1344630000.0, + "value": 1660920160.5409162, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001204", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 931830000.0, + "value": 1151019412.9216528, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001205", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 2635906000.0, + "value": 3255936143.5419145, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001206", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 1663518000.0, + "value": 2054818488.0767975, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001207", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 3313767727.2727275, + "value": 4093247678.2290487, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001208", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 1665216000.0, + "value": 2056915899.582266, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001209", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 1853289000.0, + "value": 2289228310.6941795, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001210", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 2041138000.0, + "value": 2521264031.4779267, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001211", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 935833000.0, + "value": 1155964017.3129315, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001212", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 1553371868.6868687, + "value": 1918763268.348272, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001213", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 1461564000.0, + "value": 1805359923.1913788, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001214", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 1431069000.0, + "value": 1767691746.5958135, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001215", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 2093171000.0, + "value": 2585536477.216476, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001216", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 1010580000.0, + "value": 1248293356.4173334, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001217", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 1390062000.0, + "value": 1717038888.1713386, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001218", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 1210400000.0, + "value": 1495115951.8371038, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001219", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 865458000.0, + "value": 1069035080.5064743, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001220", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 1513875999.9999998, + "value": 1869976996.6154556, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001221", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 1424809000.0, + "value": 1759959240.1033313, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001222", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 1212532929.2929292, + "value": 1497750598.7389538, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001223", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 1945337777.777778, + "value": 2402929232.7056336, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001224", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 1800307557.7557757, + "value": 2223784325.6886635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001225", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 1472503000.0, + "value": 1818872045.9583533, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001226", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 1953900000.0, + "value": 2413505500.904261, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001227", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 2274504792.079208, + "value": 2809524452.385624, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001228", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 1134900000.0, + "value": 1401856488.5491815, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001229", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 1908186000.0, + "value": 2357038439.9142733, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001230", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 3544312000.0, + "value": 4378021653.575404, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001231", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 1120801980.1980197, + "value": 1384442266.5603714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001232", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 1069698009.8009801, + "value": 1321317381.1152084, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001233", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 1426814000.0, + "value": 1762435865.5853484, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001234", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 2130875000.0, + "value": 2632109388.525189, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001235", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 1452024000.0, + "value": 1793575879.7507591, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001236", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 1533180000.0, + "value": 1893821773.8248603, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001237", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 1541252336.6336634, + "value": 1903792923.2544613, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001238", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 2824700000.0, + "value": 3489139151.64761, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001239", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 1012320000.0, + "value": 1250442647.3593335, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001240", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 990000000.0, + "value": 1222872432.517129, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001241", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 1100799000.0, + "value": 1359734091.7600234, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001242", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 1261835000.0, + "value": 1558649733.2174258, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001243", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 1134124000.0, + "value": 1400897954.1980367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001244", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 1095528000.0, + "value": 1353223222.4753792, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001245", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 1155954000.0, + "value": 1427862908.947379, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001246", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 1336600000.0, + "value": 1651001306.366055, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001247", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 990264000.0, + "value": 1223198531.8324668, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001248", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 1317840000.0, + "value": 1627828491.382195, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001249", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 2159057673.2673264, + "value": 2666921322.073928, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001250", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 1271259000.0, + "value": 1570290490.5952454, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001251", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 1071560000.0, + "value": 1323617357.3616717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001252", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 1141200000.0, + "value": 1409638404.028836, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001253", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 1229412000.0, + "value": 1518600043.44015, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001254", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 1439100000.0, + "value": 1777611835.995354, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001255", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 1130504000.0, + "value": 1396426440.8589337, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001256", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 894300000.0, + "value": 1104661430.7071397, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001257", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 2781240000.0, + "value": 3435456287.0847874, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001258", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 2231003465.3465347, + "value": 2755790540.022688, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001259", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 2103502772.2772276, + "value": 2598298537.314321, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001260", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 2505185742.5742574, + "value": 3094467255.4838505, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001261", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 955808000.0, + "value": 1180637630.2821536, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001262", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 946761000.0, + "value": 1169462552.6084337, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001263", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 1467566000.0, + "value": 1812773741.7165987, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001264", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 2940718181.818182, + "value": 3632447673.0781302, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001265", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 4171319818.181818, + "value": 5152517184.714049, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001266", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 1361692000.0, + "value": 1681995564.0193076, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001267", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 1469371287.128713, + "value": 1815003676.931226, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001268", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 2312818000.0, + "value": 2856849872.3529305, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001269", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 1570256222.222222, + "value": 1939619238.5293396, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001270", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 1655968574.2574258, + "value": 2045493251.0849497, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001271", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 1832079090.909091, + "value": 2263029307.5391617, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001272", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 917600000.0, + "value": 1133442165.7350683, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001273", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 1270177663.3663366, + "value": 1568954796.8987021, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001274", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 922632000.0, + "value": 1139657816.3213573, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001275", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 1014400000.0, + "value": 1253011914.6922987, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001276", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 1458000000.0, + "value": 1800957582.434317, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001277", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 1281384000.0, + "value": 1582797140.4732614, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001278", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 1721484000.0, + "value": 2126419521.8376942, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001279", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 2063880000.0, + "value": 2549355511.1348004, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001280", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 2152248000.0, + "value": 2658509845.596087, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001281", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 944163000.0, + "value": 1166253438.8915858, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001282", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 980790000.0, + "value": 1211496013.2206817, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001283", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 2240200000.0, + "value": 2767150326.5907803, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001284", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 1943910000.0, + "value": 2401165606.3579516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001285", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 1222531247.5247524, + "value": 1510100768.1704996, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001286", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 1067425000.0000001, + "value": 1318509703.3127239, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001287", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 1088000000.0, + "value": 1343924451.0895317, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001288", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 1326776000.0, + "value": 1638866459.1165113, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001289", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 2257032000.0, + "value": 2787941628.39293, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001290", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 2883132000.0, + "value": 3561315800.1090655, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001291", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 952261504.950495, + "value": 1176256912.0719535, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001292", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 1874090909.090909, + "value": 2314923342.180038, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001293", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 2561027020.20202, + "value": 3163443779.7338777, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001294", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 1794016000.0, + "value": 2216012838.277424, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001295", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 957032000.0, + "value": 1182149545.2896292, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001296", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 1616000000.0, + "value": 1996123081.7653337, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001297", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 1134390000.0, + "value": 1401226523.9627333, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001298", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 1600458000.0, + "value": 1976925219.799494, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001299", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 828000000.0, + "value": 1022766034.4688715, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001300", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 1542425454.5454545, + "value": 1905241987.450847, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001301", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 1398294545.4545455, + "value": 1727207931.4903367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001302", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 1403000000.0, + "value": 1733020225.0722544, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001303", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 627750000.0, + "value": 775412292.4369977, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001304", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 627750000.0, + "value": 775412292.4369977, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001305", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 2803200000.0, + "value": 3462581821.0424404, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001306", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 3855560000.0, + "value": 4762482864.561356, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001307", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 1057740000.0, + "value": 1306546552.2936041, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001308", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 1047800000.0, + "value": 1294268418.9812603, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001309", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 1605084000.0, + "value": 1982639369.1659834, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001310", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 6939320000.0, + "value": 8571619321.631075, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001311", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 1511636000.0, + "value": 1867210093.3338008, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001312", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 2295050000.0, + "value": 2834902400.2509465, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001313", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 933676000.0, + "value": 1153299637.6796596, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001314", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 1178164000.0, + "value": 1455297249.0748594, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001315", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 1177760000.0, + "value": 1454798218.304418, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001316", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 1099359000.0, + "value": 1357955368.2218168, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001317", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 967788000.0000001, + "value": 1195435621.9402902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001318", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 1016304000.0, + "value": 1255363782.4817052, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001319", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 1138428000.0, + "value": 1406214361.217788, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001320", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 1160562178.2178218, + "value": 1433555044.4086926, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001321", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 1386000000.0, + "value": 1712021405.5239806, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001322", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 1271450000.0, + "value": 1570526418.5089936, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001323", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 1155892000.0, + "value": 1427786325.017262, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001324", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 1302052363.6363637, + "value": 1608327213.317856, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001325", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 1263513636.3636365, + "value": 1560723226.2813768, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001326", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 912380000.0, + "value": 1126994292.9090686, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001327", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 964747000.0, + "value": 1191679303.6905077, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001328", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 1153573000.0, + "value": 1424921838.9859414, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001329", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 1303255000.0, + "value": 1609812739.4344554, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001330", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 1114753959.5959597, + "value": 1376971602.2517297, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001331", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 2070397333.3333333, + "value": 2557405882.111425, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001332", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 2202200000.0, + "value": 2720211788.7769914, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001333", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 1933237272.7272727, + "value": 2387982390.2351317, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001334", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 2024360000.0, + "value": 2500539431.8084598, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001335", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 1349076000.0, + "value": 1666411969.4651296, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001336", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 1197000000.0, + "value": 1478563941.1343467, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001337", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 1050800000.0, + "value": 1297974093.0191908, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001338", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 1173000000.0000002, + "value": 1448918548.8309014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001339", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 981528000.0, + "value": 1212407609.0340128, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001340", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 1018560000.0, + "value": 1258150449.3582294, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001341", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 941004000.0, + "value": 1162351364.1296449, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001342", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 1119456000.0, + "value": 1382779678.6019144, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001343", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 776751000.0, + "value": 959462004.8789015, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001344", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 770133000.0, + "value": 951287287.9512264, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001345", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 1030652000.0, + "value": 1273086786.1804483, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001346", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 1294530000.0, + "value": 1599035404.1074736, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001347", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 1536600000.0, + "value": 1898046242.2281015, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001348", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 2567856000.0, + "value": 3171879104.114853, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001349", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 1765092000.0, + "value": 2180285199.6530547, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001350", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 1255345000.0, + "value": 1550633125.0487022, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001351", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 1650980000.0, + "value": 2039331241.0476058, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001352", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 1213835333.3333335, + "value": 1499359360.3520944, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001353", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 1023288000.0, + "value": 1263990591.642008, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001354", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 1290712000.0, + "value": 1594319316.2818673, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001355", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 1056400000.0, + "value": 1304891351.2233284, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001356", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 1281111742.5742574, + "value": 1582460841.3818588, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001357", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 1248378000.0, + "value": 1542027314.707948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001358", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 1453418000.0, + "value": 1795297782.9537177, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001359", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 1730079000.0, + "value": 2137036277.9563658, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001360", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 1873739247.5247524, + "value": 2314488961.1347566, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001361", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 1395711000.0, + "value": 1724016672.384762, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001362", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 1192550000.0, + "value": 1473067191.3114161, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001363", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 1145978424.2424242, + "value": 1415540831.5812924, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001364", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 1358370000.0, + "value": 1677892147.6346388, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001365", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 1124556000.0, + "value": 1389079324.4663963, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001366", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 1701385000.0, + "value": 2101592741.0082378, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001367", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 1008225000.0, + "value": 1245384402.297558, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001368", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 1017845000.0, + "value": 1257267263.7125225, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001369", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 1938640000.0, + "value": 2394655972.2979865, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001370", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 1488256000.0, + "value": 1838330540.3315277, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001371", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 1973580000.0, + "value": 2437814722.5930862, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001372", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 972020000.0, + "value": 1200663092.783131, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001373", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 1161600000.0, + "value": 1434836987.4867647, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001374", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 1050000000.0, + "value": 1296985913.2757428, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001375", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 1396464000.0, + "value": 1724946796.5682828, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001376", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 1779168000.0, + "value": 2197672222.2390256, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001377", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 1244926217.821782, + "value": 1537763588.17381, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001378", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 1170809000.0, + "value": 1446212171.5585325, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001379", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 1148051603.960396, + "value": 1418101674.333577, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001380", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 1117020000.0, + "value": 1379770671.2831147, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001381", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 992800000.0, + "value": 1226331061.6191976, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001382", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 971429000.0, + "value": 1199933074.9976587, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001383", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 1126500000.0, + "value": 1391480601.2429755, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001384", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 1816825000.0, + "value": 2244187077.987811, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001385", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 809230000.0, + "value": 999580867.2382184, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001386", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 1316922000.0, + "value": 1626694555.1265883, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001387", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 860800000.0, + "value": 1063281403.950247, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001388", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 1115808000.0, + "value": 1378273578.9717906, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001389", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 1063133333.3333334, + "value": 1313208530.7306838, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001390", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 1222470000.0, + "value": 1510025113.7163785, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001391", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 1120000000.0, + "value": 1383451640.827459, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001392", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 2252649000.0, + "value": 2782527638.623513, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001393", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 1878800000.0, + "value": 2320740127.4880624, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001394", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 1269748415.8415842, + "value": 1568424579.7625952, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001395", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 967437000.0, + "value": 1195002058.0778522, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001396", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 793233333.3333334, + "value": 979821389.7848524, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001397", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 801102000.0, + "value": 989540961.0447849, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001398", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 1163064000.0, + "value": 1436645356.417275, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001399", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 1475201000.0, + "value": 1822204682.1431324, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001400", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 1040400000.0, + "value": 1285127756.3543646, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001401", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 1526625000.0, + "value": 1885724876.051982, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001402", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 2030257425.7425742, + "value": 2507824077.6300874, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001403", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 1875842000.0, + "value": 2317086332.8866625, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001404", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 1425380000.0, + "value": 1760664553.3952174, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001405", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 966176000.0, + "value": 1193444439.7572422, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001406", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 1494900000.0, + "value": 1846537373.1008644, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001407", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 1502187128.7128713, + "value": 1855538614.3283136, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001408", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 1137142666.6666667, + "value": 1404626685.7633147, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001409", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 1188824000.0, + "value": 1468464744.1563065, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001410", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 932754545.4545455, + "value": 1152161434.2842515, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001411", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 1022755030.3030303, + "value": 1263332254.3189867, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001412", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 922366424.2424242, + "value": 1139329770.5913732, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001413", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 1216800000.0, + "value": 1503021389.7846894, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001414", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 1720936000.0, + "value": 2125742618.713432, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001415", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 1047200000.0, + "value": 1293527284.173674, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001416", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 860800000.0, + "value": 1063281403.950247, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001417", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 1934792000.0, + "value": 2389902827.732001, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001418", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 1031352000.0, + "value": 1273951443.4559658, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001419", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 1481850000.0, + "value": 1830417691.0358663, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001420", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 1838931000.0, + "value": 2271492954.748643, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001421", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 2148621000.0, + "value": 2654029685.684229, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001422", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 1020519000.0, + "value": 1260570254.5049977, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001423", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 1072500000.0, + "value": 1324778468.560223, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001424", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 1036270000.0, + "value": 1280026278.4288132, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001425", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 1207305000.0, + "value": 1491292931.4546387, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001426", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 971705000.0, + "value": 1200273997.0091484, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001427", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 1094495000.0, + "value": 1351947235.3816516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001428", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 1216180000.0, + "value": 1502255550.4835172, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001429", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 1245674000.0, + "value": 1538687267.1750932, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001430", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 3457946000.0, + "value": 4271340238.9220967, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001431", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 1166100000.0, + "value": 1440395498.5436606, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001432", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 1112400000.0, + "value": 1374063933.2647014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001433", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 1107553000.0, + "value": 1368076799.2440846, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001434", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 3632926000.0, + "value": 4487479853.307801, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001435", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 4091530000.0, + "value": 5053958832.138191, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001436", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 981239207.9207921, + "value": 1212050885.9305859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001437", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 1554720000.0, + "value": 1920428513.4172027, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001438", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 1986930000.0, + "value": 2454304972.0618777, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001439", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 1588514000.0, + "value": 1962171696.2298126, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001440", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 884870000.0, + "value": 1093013261.9812443, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001441", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 1310770000.0, + "value": 1619095452.8994718, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001442", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 2448646000.0, + "value": 3024627970.0942802, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001443", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 1327898000.0, + "value": 1640252381.2066975, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001444", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 1082011722.772277, + "value": 1336527583.271297, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001445", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 4135400000.0, + "value": 5108148138.8195305, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001446", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 789570000.0, + "value": 975296350.0429794, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001447", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 1373592000.0, + "value": 1696694737.7030993, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001448", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 1551727272.7272727, + "value": 1916731822.8314853, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001449", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 1553692000.0, + "value": 1919158702.446872, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001450", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 1192574000.0, + "value": 1473096836.7037199, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001451", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 1038072376.2376238, + "value": 1282252618.0389285, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001452", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 1022760415.8415842, + "value": 1263338906.6691196, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001453", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 1651734000.0, + "value": 2040262600.4558053, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001454", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 1973463146.7146714, + "value": 2437670382.53119, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001455", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 1153613272.7272727, + "value": 1424971584.852572, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001456", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 2890888000.0, + "value": 3570896202.721796, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001457", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 1773783000.0, + "value": 2191020537.34094, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001458", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 1225628000.0, + "value": 1513925953.2536402, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001459", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 1565466666.6666667, + "value": 1933703061.3041902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001460", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 1315942000.0, + "value": 1625484034.9408643, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001461", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 777200000.0, + "value": 960016620.7599118, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001462", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 1202868000.0, + "value": 1485812239.552539, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001463", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 1223220000.0, + "value": 1510951532.2258613, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001464", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 1434916396.039604, + "value": 1772444145.1350126, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001465", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 2444376000.0, + "value": 3019353560.713626, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001466", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 901744000.0, + "value": 1113856443.2199252, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001467", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 831744000.0, + "value": 1027390715.668209, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001468", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 1313661782.178218, + "value": 1622667453.613196, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001469", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 1023610613.8613862, + "value": 1264389092.2454796, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001470", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 914139603.960396, + "value": 1129167799.146762, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001471", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 1140519000.0, + "value": 1408797216.0222259, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001472", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 1127000000.0, + "value": 1392098213.5826306, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001473", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 1294020000.0, + "value": 1598405439.5210254, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001474", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 1250096000.0, + "value": 1544149430.7070029, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001475", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 1158794000.0, + "value": 1431370947.0366201, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001476", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 1247520000.0, + "value": 1540967491.9330997, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001477", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 1623240000.0, + "value": 2005066108.44354, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001478", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 1064072000.0, + "value": 1314367994.9629965, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001479", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 1451436000.0, + "value": 1792849567.639325, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001480", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 1360256000.0, + "value": 1680221781.379818, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001481", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 2113327722.7722774, + "value": 2610434558.6388073, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001482", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 1428730693.0693069, + "value": 1764803412.1672192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001483", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 1342440000.0, + "value": 1658215018.493227, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001484", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 791076000.0, + "value": 977156598.4100205, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001485", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 909993575.7575758, + "value": 1124046522.7895222, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001486", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 822000000.0, + "value": 1015354686.3930101, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001487", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 1341000000.0, + "value": 1656436294.9550202, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001488", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 1407388000.0, + "value": 1738440390.9650676, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001489", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 1131648000.0, + "value": 1397839537.8920646, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001490", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 1693100945.0945096, + "value": 2091360071.944215, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001491", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 1190514000.0, + "value": 1470552273.8643405, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001492", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 857160000.0, + "value": 1058785186.1175578, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001493", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 1067580000.0, + "value": 1318701163.1380167, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001494", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 1206144000.0, + "value": 1489858835.6019595, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001495", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 1251786000.0, + "value": 1546236960.4150372, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001496", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 2058669999.9999998, + "value": 2542919990.555594, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001497", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 1089820000.0, + "value": 1346172560.0058763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001498", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 1265034000.0, + "value": 1562601216.9665391, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001499", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 1221800000.0, + "value": 1509197513.1812406, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001500", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 1264200000.0, + "value": 1561571039.5839944, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001501", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 1192588000.0, + "value": 1473114129.84923, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001502", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 1567392000.0, + "value": 1936081280.553422, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001503", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 2752247595.959596, + "value": 3399644154.101547, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001504", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 1094890000.0, + "value": 1352435149.1299791, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001505", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 1652300000.0, + "value": 2040961737.6242952, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001506", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 886368000.0, + "value": 1094863628.550851, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001507", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 2484000000.0, + "value": 3068298103.4066143, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001508", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 902060000.0, + "value": 1114246774.2185874, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001509", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 1098900000.0, + "value": 1357388400.0940132, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001510", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 1069200000.0, + "value": 1320702227.1184993, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001511", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 708640000.0, + "value": 875329616.7464024, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001512", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 1911006719.4719474, + "value": 2360522662.2194333, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001513", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 1224720000.0, + "value": 1512804369.2448266, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001514", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 1036096000.0, + "value": 1279811349.3346136, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001515", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 1136200000.0, + "value": 1403462280.6322849, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001516", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 1537500000.0, + "value": 1899157944.4394805, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001517", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 1364811000.0, + "value": 1685848229.794076, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001518", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 1027200000.0, + "value": 1268822790.5874696, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001519", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 1151900000.0, + "value": 1422855308.0974555, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001520", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 1006336000.0, + "value": 1243051062.878341, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001521", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 888080000.0, + "value": 1096978333.2018304, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001522", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 1053264000.0, + "value": 1301017686.6290114, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001523", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 1245600000.0, + "value": 1538595860.5488243, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001524", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 1014575000.0, + "value": 1253228079.011178, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001525", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 2091639000.0, + "value": 2583644113.007773, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001526", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 1577016000.0, + "value": 1947969082.8671036, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001527", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 2318784000.0, + "value": 2864219222.7896953, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001528", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 1295600000.0, + "value": 1600357094.5143356, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001529", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 1261728000.0, + "value": 1558517564.1767395, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001530", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 1081368316.8316832, + "value": 1335732832.3746605, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001531", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 976500000.0, + "value": 1206196899.3464408, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001532", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 1941968000.0, + "value": 2398766800.030731, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001533", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 1284525171.7171717, + "value": 1586677193.3002632, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001534", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 2003400000.0, + "value": 2474649122.5301175, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001535", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 1501000000.0, + "value": 1854072243.6446571, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001536", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 1561824000.0, + "value": 1929203549.5390227, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001537", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 1598536000.0, + "value": 1974551117.96586, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001538", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 1280524000.0, + "value": 1581734847.2490547, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001539", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 2022841000.0, + "value": 2498663125.5205874, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001540", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 1262976000.0, + "value": 1560059124.5765188, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001541", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 1144194000.0, + "value": 1413336666.7186906, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001542", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 1274070000.0, + "value": 1573762707.1687863, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001543", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 1284342000.0, + "value": 1586450935.074661, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001544", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 1077916990.0990098, + "value": 1331469668.4180992, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001545", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 1394914000.0, + "value": 1723032198.3153517, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001546", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 1677344000.0, + "value": 2071896704.4929407, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001547", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 1035482000.0, + "value": 1279052921.381517, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001548", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 927462000.0, + "value": 1145623951.5224257, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001549", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 1901136000.0, + "value": 2348330105.9251356, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001550", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 3307200000.0, + "value": 4085135059.414797, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001551", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 960132000.0, + "value": 1185978741.795491, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001552", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 813006000.0, + "value": 1004245075.627294, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001553", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 1825508050.8050804, + "value": 2254912596.6339507, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001554", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 969380000.0, + "value": 1197402099.629752, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001555", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 2158600000.0, + "value": 2666355992.759065, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001556", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 3014284000.0, + "value": 3723317987.2499614, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001557", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 1294083000.0, + "value": 1598483258.675822, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001558", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 1934285188.1188118, + "value": 2389276801.18859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001559", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 2601561000.0, + "value": 3213512351.9310045, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001560", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 1411008178.2178218, + "value": 1742912124.4432225, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001561", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 1005900000.0, + "value": 1242512504.9181616, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001562", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 962068000.0, + "value": 1188370136.7746356, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001563", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 1915200000.0, + "value": 2365702305.8149548, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001564", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 1268000000.0, + "value": 1566264893.3653734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001565", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 1646500000.0, + "value": 2033797434.4842958, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001566", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 1921266000.0, + "value": 2373195178.7196507, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001567", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 989714000.0, + "value": 1222519158.2588463, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001568", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 1821130000.0, + "value": 2249504720.2322416, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001569", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 1060808346.5346534, + "value": 1310336649.657884, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001570", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 1337591000.0, + "value": 1652225414.0232515, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001571", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 1389613090.909091, + "value": 1716484384.583481, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001572", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 1001405000.0, + "value": 1236960169.984662, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001573", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 1840400000.0, + "value": 2273307499.80255, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001574", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 998912000.0, + "value": 1233880754.8591418, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001575", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 978324000.0, + "value": 1208449949.1615028, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001576", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 1772001000.0, + "value": 2188819366.962409, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001577", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 1092300000.0, + "value": 1349235917.2105656, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001578", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 1374508000.0, + "value": 1697826203.5093474, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001579", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 1088100000.0, + "value": 1344047973.5574627, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001580", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 1025880000.0, + "value": 1267192294.01078, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001581", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 1096500000.0, + "value": 1354423860.8636684, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001582", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 1240640312.4312432, + "value": 1532469532.0622275, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001583", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 1143275000.0, + "value": 1412201495.2384048, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001584", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 1052486000.0, + "value": 1300056681.828508, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001585", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 1268500000.0, + "value": 1566882505.7050283, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001586", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 3645270000.0, + "value": 4502727466.7492075, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001587", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 2017752000.0, + "value": 2492377067.127578, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001588", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 2621352000.0, + "value": 3237958683.559233, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001589", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 1129640000.0, + "value": 1395359206.7360098, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001590", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 1535735000.0, + "value": 1896977772.880498, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001591", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 1673186000.0, + "value": 2066760640.2763686, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001592", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 2312352000.0, + "value": 2856274257.652372, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001593", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 2071250000.0, + "value": 2558459117.0213165, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001594", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 939168000.0, + "value": 1160083491.6184313, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001595", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 1049367000.0, + "value": 1296204016.0537393, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001596", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 1234863000.0, + "value": 1525333253.1670702, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001597", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 1220000000.0, + "value": 1506974108.7584822, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001598", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 1360708000.0, + "value": 1680780102.9348662, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001599", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 1227574000.0, + "value": 1516329700.4795778, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001600", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 1783536000.0, + "value": 2203067683.6382527, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001601", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 1069200000.0, + "value": 1320702227.1184993, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001602", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 1344000000.0, + "value": 1660141968.992951, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001603", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 1086336000.0, + "value": 1341869037.2231596, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001604", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 1319220000.0, + "value": 1629533101.4396434, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@E14001605", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 1230780000.0, + "value": 1520289830.8014464, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000001", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 1359412000.0, + "value": 1679179251.75048, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000002", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 907403289.928993, + "value": 1120846937.807589, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000003", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 1438509000.0, + "value": 1776881818.2098813, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000004", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 966694405.9405941, + "value": 1194084787.5689647, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000005", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 993322693.0693069, + "value": 1226976704.99811, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000006", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 817800000.0, + "value": 1010166742.7399071, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000007", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 1048986554.4554455, + "value": 1295734080.3279724, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000008", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 883600000.0, + "value": 1091444526.6385205, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000009", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 1375686000.0, + "value": 1699281298.1815748, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000010", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 1015602059.4059405, + "value": 1254496728.1365132, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000011", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 996230000.0, + "value": 1230567882.2692318, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000012", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 972942653.4653466, + "value": 1201802777.1139781, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000013", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 1132380000.0, + "value": 1398743722.3573198, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000014", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 1181925957.5957596, + "value": 1459944111.93966, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000015", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 888338000.0, + "value": 1097297021.1690922, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000016", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 915960000.0, + "value": 1131416397.2609994, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000017", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 1198446000.0, + "value": 1480350076.0206294, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@N05000018", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 876861386.1386138, + "value": 1083120824.4925942, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000021", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 945500000.0, + "value": 1167904934.2878237, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000027", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 924800000.0, + "value": 1142335783.426102, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000045", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 960000000.0, + "value": 1185815692.137822, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000048", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 1459200000.0, + "value": 1802439852.0494895, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000051", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 268000000.0, + "value": 331040214.055142, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000060", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 1116000000.0, + "value": 1378510742.110218, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000061", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 1365000000.0, + "value": 1686081687.2584658, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000062", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 939000000.0, + "value": 1159875973.872307, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000063", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 528700000.0, + "value": 653063287.9513192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000064", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 1704300000.0, + "value": 2105193420.9484272, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000065", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 1444070000.0, + "value": 1783750902.6515257, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000066", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 1810530000.0, + "value": 2236411338.631553, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000067", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 1077358000.0, + "value": 1330779190.0523124, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000068", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 1045328000.0, + "value": 1291214943.5740054, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000069", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 1246908000.0, + "value": 1540211534.4293618, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000070", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 1124849000.0, + "value": 1389441245.2974343, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000071", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 1085062000.0, + "value": 1340295360.981718, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000072", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 1001406930.6930693, + "value": 1236962554.8243895, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000073", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 1325073000.0, + "value": 1636762871.4876459, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000074", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 1046694779.4779477, + "value": 1292903223.3163412, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000075", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 1211192000.0, + "value": 1496094249.7831178, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000076", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 1023015000.0, + "value": 1263653375.3045564, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000077", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 1150596161.6161616, + "value": 1421244774.7479062, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000078", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 948138000.0, + "value": 1171163456.9918442, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000079", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 934962000.0, + "value": 1154888136.6172523, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000080", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 1002024000.0, + "value": 1237724774.0611553, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000081", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 1165773000.0, + "value": 1439991580.0735261, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000082", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 1239260000.0, + "value": 1530764536.0819974, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000083", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 1444915000.0, + "value": 1784794667.5055428, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000084", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 2126621000.0, + "value": 2626854742.7394032, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000085", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 1525225000.0, + "value": 1883995561.5009475, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000086", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 1537200000.0, + "value": 1898787377.0356874, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000087", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 1796079000.0, + "value": 2218561106.790841, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000088", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 1311898000.0, + "value": 1620488786.337734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000089", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 1162218363.8363836, + "value": 1435600805.7582588, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000090", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 1118982772.2772276, + "value": 1382195136.0398123, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000091", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 1131882108.2108212, + "value": 1398128714.1317, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000092", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 1163770198.019802, + "value": 1437517669.6398144, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000093", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 1045971396.039604, + "value": 1292009682.2406945, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000094", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 1156200000.0, + "value": 1428166774.2184894, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000095", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 897302000.0, + "value": 1108369575.1944292, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000096", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 1386742000.0, + "value": 1712937942.2360287, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000097", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 1233832000.0, + "value": 1524059736.5227013, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000098", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 1064411881.1881188, + "value": 1314787824.594594, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000099", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 1196446774.6774678, + "value": 1477880583.5627358, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000100", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 1409256000.0, + "value": 1740747790.6660192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000101", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 1312960000.0, + "value": 1621800594.9471612, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000102", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 1433100000.0, + "value": 1770200487.9194925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000103", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 1162051515.151515, + "value": 1435394710.1449986, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000104", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 1206940000.0, + "value": 1490842074.4466906, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000105", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 950599000.0, + "value": 1174203344.9276266, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000106", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 1165884960.3960395, + "value": 1440129876.3178196, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000107", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 1068422158.4158416, + "value": 1319741417.9971533, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000108", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 1287874000.0, + "value": 1590813748.6419847, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000109", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 1148068000.0, + "value": 1418121927.1263385, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000110", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 1435567000.0, + "value": 1773247787.2033508, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@S14000111", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 1094040000.0, + "value": 1351385208.1525652, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000081", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 1003504000.0, + "value": 1239552906.5865343, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000082", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 1275250000.0, + "value": 1575220272.2903724, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000083", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 876620000.0, + "value": 1082822658.376935, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000084", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 898393000.0, + "value": 1109717205.3195567, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000085", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 843350000.0, + "value": 1041726733.2962835, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000086", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 1046268000.0, + "value": 1292376054.772557, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000087", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 998424000.0, + "value": 1233277965.2156382, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000088", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 989165000.0, + "value": 1221841019.9099052, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000089", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 1110040000.0, + "value": 1371148803.0215292, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000090", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 1330028000.0, + "value": 1642883409.7736285, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000091", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 1160120000.0, + "value": 1433008854.9613857, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000092", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 1276864000.0, + "value": 1577213924.9227793, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000093", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 757555000.0, + "value": 935750631.9348623, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000094", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 995894752.4752475, + "value": 1230153776.2529798, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000095", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 934180000.0, + "value": 1153922190.918032, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000096", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 771949306.930693, + "value": 953530835.0972205, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000097", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 1175260000.0, + "value": 1451710156.6061428, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000098", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 884588000.0, + "value": 1092664928.6216788, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000099", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 948940000.0, + "value": 1172154107.184651, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000100", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 918433000.0, + "value": 1134471107.8929336, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000101", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 1152290000.0, + "value": 1423337045.7223864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000102", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 906065346.5346534, + "value": 1119194277.1073809, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000103", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 974102000.0, + "value": 1203234830.565455, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000104", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 1228561000.0, + "value": 1517548867.2380571, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000105", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 1073690000.0, + "value": 1326248385.9286022, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000106", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 1139892000.0, + "value": 1408022730.148298, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000107", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 988112000.0, + "value": 1220540328.322591, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000108", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 1013572000.0, + "value": 1251989148.6578298, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000109", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 944009000.0, + "value": 1166063214.290972, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000110", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 1059840000.0, + "value": 1309140524.1201556, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000111", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 1127240594.059406, + "value": 1392395401.3025043, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/amount@W07000112", + "metric": "hmrc/employment_income/amount", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 652800000.0, + "value": 806354670.653719, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001063", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 48700.0, + "value": 60155.44188240826, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001064", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 33100.0, + "value": 40885.93688516865, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001065", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001066", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001067", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 33770.0, + "value": 41713.537420306515, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001068", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 34680.0, + "value": 42837.59187847882, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001069", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 39980.0, + "value": 49384.28267882305, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001070", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 35110.0, + "value": 43368.73849058222, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001071", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 45770.69306930693, + "value": 56537.08966834169, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001072", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 43900.0, + "value": 54226.36342171915, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001073", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 43240.0, + "value": 53411.115133374406, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001074", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 38760.0, + "value": 47877.30857006456, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001075", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 37880.0, + "value": 46790.310852271556, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001076", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 37770.0, + "value": 46654.43613754743, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001077", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001078", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 48870.0, + "value": 60365.430077891004, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001079", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 38400.0, + "value": 47432.62768551288, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001080", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 37590.0, + "value": 46432.09569527159, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001081", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 52780.0, + "value": 65195.15857399401, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001082", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 40480.0, + "value": 50001.895018478164, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001083", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 45614.14141414141, + "value": 56343.71320029437, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001084", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 40740.0, + "value": 50323.053435098824, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001085", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 50140.0, + "value": 61934.16542061499, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001086", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 54370.0, + "value": 67159.16581409727, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001087", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 31500.0, + "value": 38909.57739827229, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001088", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 30480.0, + "value": 37649.64822537585, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001089", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 43580.0, + "value": 53831.09152433988, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001090", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 43620.0, + "value": 53880.50051151229, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001091", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 32670.0, + "value": 40354.79027306526, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001092", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 34831.51515151515, + "value": 43024.747132919765, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001093", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 37500.0, + "value": 46320.92547413367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001094", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 34100.0, + "value": 42121.16156447889, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001095", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 29840.0, + "value": 36859.1044306173, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001096", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 38737.57575757576, + "value": 47849.6095924073, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001097", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 33660.0, + "value": 41577.662705582385, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001098", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 32590.909090909092, + "value": 40257.09523024708, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001099", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 31400.0, + "value": 38786.05493034126, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001100", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 30370.000000000004, + "value": 37513.77351065173, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001101", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 31916.666666666668, + "value": 39424.25434798488, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001102", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 34680.0, + "value": 42837.591878478815, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001103", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 32765.757575757572, + "value": 40473.07239387193, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001104", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 32450.0, + "value": 40083.040843617004, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001105", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 33520.0, + "value": 41404.73125047895, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001106", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 33163.333333333336, + "value": 40964.16778152497, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001107", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 38450.0, + "value": 47494.38891947839, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001108", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 35410.0, + "value": 43739.30589437529, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001109", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001110", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 36840.0, + "value": 45505.67718578892, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001111", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 39540.0, + "value": 48840.783819926546, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001112", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 36080.0, + "value": 44566.90642951315, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001113", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001114", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 41030.0, + "value": 50681.26859209879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001115", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001116", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 37590.0, + "value": 46432.09569527159, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001117", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 44290.0, + "value": 54708.10104665015, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001118", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 30380.0, + "value": 37526.125757444825, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001119", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 33620.0, + "value": 41528.25371840998, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001120", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 29000.0, + "value": 35821.51569999671, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001121", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 40761.485148514854, + "value": 50349.59242078301, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001122", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 44620.0, + "value": 55115.72519082252, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001123", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 47240.0, + "value": 58352.01385061533, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001124", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 53210.0, + "value": 65726.30518609741, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001125", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 37000.0, + "value": 45703.31313447856, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001126", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 35230.0, + "value": 43516.965452099445, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001127", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 31150.0, + "value": 38477.24876051371, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001128", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 33400.0, + "value": 41256.504288961725, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001129", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 32760.0, + "value": 40465.96049420318, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001130", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 37240.0, + "value": 45999.76705751301, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001131", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 38190.0, + "value": 47173.23050285773, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001132", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 43560.0, + "value": 53806.38703075367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001133", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 39085.36453645365, + "value": 48279.20687526444, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001134", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 42090.0, + "value": 51990.60675216764, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001135", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 38720.0, + "value": 47827.899582892154, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001136", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 30999.999999999996, + "value": 38291.96505861717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001137", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 39028.080808080806, + "value": 48208.44860025541, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001138", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001139", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001140", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 36030.0, + "value": 44505.14519554763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001141", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 45049.900990099006, + "value": 55646.749503452724, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001142", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 34800.0, + "value": 42985.81883999605, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001143", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 44000.0, + "value": 54349.88588965018, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001144", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 35400.0, + "value": 43726.95364758219, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001145", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 39721.21212121212, + "value": 49064.62150423791, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001146", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 39060.0, + "value": 48247.87597385764, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001147", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 37830.0, + "value": 46728.549618306046, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001148", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 31400.0, + "value": 38786.05493034127, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001149", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 50220.0, + "value": 62032.98339495982, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001150", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001151", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 34200.0, + "value": 42244.68403240991, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001152", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 40660.0, + "value": 50224.235460754004, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001153", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001154", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 32800.0, + "value": 40515.36948137559, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001155", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 30373.737373737375, + "value": 37518.39000692793, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001156", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 32893.267326732675, + "value": 40630.57558512907, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001157", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 40260.0, + "value": 49730.14558902992, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001158", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001159", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 41800.0, + "value": 51632.39159516767, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001160", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 52721.0101010101, + "value": 65122.29279493167, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001161", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 37600.0, + "value": 46444.4479420647, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001162", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 38360.0, + "value": 47383.218698340475, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001163", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 33585.85858585859, + "value": 41486.08140107595, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001164", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 34388.383838383845, + "value": 42477.38039876483, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001165", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 33000.0, + "value": 40762.41441723763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001166", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 38080.0, + "value": 47037.35578813361, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001167", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 44800.0, + "value": 55338.06563309836, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001168", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 37588.91089108911, + "value": 46430.750401066405, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001169", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 42550.0, + "value": 52558.810104650336, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001170", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 41280.0, + "value": 50990.07476192635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001171", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 26100.0, + "value": 32239.364129997037, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001172", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 58560.0, + "value": 72334.75722040715, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001173", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 32853.333333333336, + "value": 40581.248130938795, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001174", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 25613.861386138615, + "value": 31638.873716589787, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001175", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 50760.0, + "value": 62700.004721787336, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001176", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 45406.732673267325, + "value": 56087.51680486204, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001177", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 36900.0, + "value": 45579.79066654753, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001178", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 35260.0, + "value": 43554.022192478755, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001179", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 46800.0, + "value": 57808.514991718825, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001180", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 41400.0, + "value": 51138.30172344358, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001181", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001182", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 38600.0, + "value": 47679.67262137493, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001183", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 36392.17821782178, + "value": 44952.5166685097, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001184", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 45000.0, + "value": 55585.11056896041, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001185", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 43110.0, + "value": 53250.53592506407, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001186", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 44000.0, + "value": 54349.88588965018, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001187", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001188", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 48160.0, + "value": 59488.420555580735, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001189", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 42023.63636363636, + "value": 51908.6327507225, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001190", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 36740.0, + "value": 45382.1547178579, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001191", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 41830.0, + "value": 51669.44833554698, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001192", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 44848.89888988899, + "value": 55398.46674868011, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001193", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 37000.0, + "value": 45703.31313447856, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001194", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 37000.0, + "value": 45703.31313447856, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001195", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 32950.0, + "value": 40700.65318327212, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001196", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 34480.0, + "value": 42590.54694261677, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001197", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 43130.0, + "value": 53275.240418650275, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001198", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 42730.0, + "value": 52781.15054692618, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001199", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 34120.0, + "value": 42145.86605806509, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001200", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 31630.0, + "value": 39070.15660658261, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001201", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 37616.732673267325, + "value": 46465.11655303533, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001202", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 34300.0, + "value": 42368.20650034094, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001203", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 39900.0, + "value": 49285.464704478225, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001204", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 33580.0, + "value": 41478.844731237565, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001205", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 46060.0, + "value": 56894.44872902925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001206", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 47940.0, + "value": 59216.67112613248, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001207", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 56980.30303030303, + "value": 70383.47653760585, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001208", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 47040.0, + "value": 58104.96891475328, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001209", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 48010.0, + "value": 59303.136853684206, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001210", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 43426.36363636363, + "value": 53641.31609633676, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001211", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 34090.0, + "value": 42108.80931768578, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001212", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 36274.64646464647, + "value": 44807.33854638495, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001213", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 42120.0, + "value": 52027.66349254694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001214", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 33010.0, + "value": 40774.766664030736, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001215", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 39910.0, + "value": 49297.816951271336, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001216", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 32600.0, + "value": 40268.32454551354, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001217", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 38400.0, + "value": 47432.62768551288, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001218", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 34000.0, + "value": 41997.639096547864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001219", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 30690.0, + "value": 37909.045408031, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001220", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 38709.99999999999, + "value": 47815.54733609905, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001221", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 39190.0, + "value": 48408.45518216796, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001222", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 36087.47474747475, + "value": 44576.139422065564, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001223", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 41424.64646464647, + "value": 51168.74564483264, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001224", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 44837.67876787679, + "value": 55384.607377065775, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001225", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 41530.0, + "value": 51298.8809317539, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001226", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001227", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 42859.80198019802, + "value": 52941.48515629011, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001228", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001229", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 51700.0, + "value": 63861.115920338954, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001230", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001231", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 35576.237623762376, + "value": 43944.64670987647, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001232", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 33644.084408440845, + "value": 41558.00337410269, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001233", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 38080.0, + "value": 47037.35578813361, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001234", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 39500.0, + "value": 48791.37483275413, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001235", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 41280.0, + "value": 50990.07476192634, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001236", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 50600.0, + "value": 62502.368773097696, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001237", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 45461.33213321332, + "value": 56154.95940526434, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001238", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 47000.0, + "value": 58055.55992758087, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001239", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 29600.0, + "value": 36562.650507582846, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001240", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 33000.0, + "value": 40762.41441723763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001241", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 32210.0, + "value": 39786.58692058255, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001242", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 37130.0, + "value": 45863.89234278889, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001243", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 35890.0, + "value": 44332.2137404442, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001244", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 37240.0, + "value": 45999.76705751302, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001245", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 39220.0, + "value": 48445.51192254727, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001246", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001247", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 30880.0, + "value": 38143.73809709995, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001248", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 45600.0, + "value": 56326.24537654655, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001249", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 39036.83168316831, + "value": 48219.25789712906, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001250", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 39226.36363636364, + "value": 48453.37244323379, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001251", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 37050.0, + "value": 45765.07436844407, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001252", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001253", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 36920.0, + "value": 45604.49516013374, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001254", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001255", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 39740.0, + "value": 49087.82875578859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001256", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 33000.0, + "value": 40762.41441723763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001257", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 51600.0, + "value": 63737.593452407935, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001258", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 41086.63366336634, + "value": 50751.22389076864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001259", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 45041.18811881188, + "value": 55635.98714981121, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001260", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 49959.60396039604, + "value": 61711.33578044635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001261", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 32960.0, + "value": 40713.00543006522, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001262", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 35170.0, + "value": 43442.85197134083, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001263", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 41600.0, + "value": 51385.34665930562, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001264", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 51468.68686868687, + "value": 63575.39223189245, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001265", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 47761.51515151515, + "value": 58996.202236401055, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001266", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 37720.0, + "value": 46592.67490358192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001267", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 43851.485148514854, + "value": 54166.43667985163, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001268", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 39420.0, + "value": 48692.55685840932, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001269", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 42032.62626262626, + "value": 51919.73729581933, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001270", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 41726.13861386139, + "value": 51541.15618816119, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001271", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 43778.78787878788, + "value": 54076.6392181664, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001272", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 31000.0, + "value": 38291.96505861717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001273", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 33979.40594059406, + "value": 41972.20080612247, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001274", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 32320.0, + "value": 39922.461635306674, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001275", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 32000.0, + "value": 39527.1897379274, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001276", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 45000.0, + "value": 55585.11056896041, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001277", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 37080.0, + "value": 45802.13110882338, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001278", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 41460.0, + "value": 51212.41520420219, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001279", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 46800.0, + "value": 57808.514991718825, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001280", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 38640.0, + "value": 47729.08160854734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001281", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 32670.0, + "value": 40354.79027306526, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001282", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 32900.0, + "value": 40638.89194930661, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001283", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 46000.0, + "value": 56820.33524827064, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001284", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 43850.0, + "value": 54164.60218775365, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001285", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 33640.792079207924, + "value": 41553.936607781776, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001286", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 36310.0, + "value": 44851.0081057545, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001287", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 34000.0, + "value": 41997.639096547864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001288", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 40480.0, + "value": 50001.895018478164, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001289", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 43000.0, + "value": 53114.661210339946, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001290", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 42840.0, + "value": 52917.025261650306, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001291", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 29535.940594059404, + "value": 36483.52274842307, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001292", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 43181.81818181818, + "value": 53339.24751566908, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001293", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 41336.86868686869, + "value": 51060.32036742652, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001294", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 40760.0, + "value": 50347.75792868502, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001295", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 34720.0, + "value": 42887.00086565123, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001296", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001297", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 37860.0, + "value": 46765.606358685356, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001298", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 43980.0, + "value": 54325.18139606398, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001299", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 30000.0, + "value": 37056.74037930694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001300", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 40236.36363636364, + "value": 49700.949369337126, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001301", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 40463.63636363637, + "value": 49981.68225099854, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001302", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 46000.0, + "value": 56820.33524827064, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001303", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 22500.0, + "value": 27792.555284480204, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001304", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 22500.0, + "value": 27792.555284480204, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001305", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 48000.0, + "value": 59290.7846068911, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001306", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 51920.0, + "value": 64132.86534978721, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001307", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 35800.0, + "value": 44221.04351930628, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001308", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 31000.0, + "value": 38291.96505861717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001309", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 38120.0, + "value": 47086.76477530602, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001310", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 52020.0, + "value": 64256.387817718234, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001311", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 45080.0, + "value": 55683.92854330523, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001312", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 43100.0, + "value": 53238.183678270965, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001313", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 36440.0, + "value": 45011.587314064825, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001314", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 42069.09090909091, + "value": 51964.779327054785, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001315", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 41854.545454545456, + "value": 51699.76748676641, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001316", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 34470.0, + "value": 42578.19469582367, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001317", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 35220.0, + "value": 43504.61320530635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001318", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 32640.0, + "value": 40317.733532685954, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001319", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 35960.0, + "value": 44418.67946799592, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001320", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 38172.77227722772, + "value": 47151.9503945211, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001321", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001322", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 35500.0, + "value": 43850.476115513215, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001323", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 39590.0, + "value": 48902.545053892056, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001324", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 41250.909090909096, + "value": 50954.14095307369, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001325", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 39409.09090909091, + "value": 48679.08168008957, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001326", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 37240.0, + "value": 45999.76705751301, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001327", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 34430.0, + "value": 42528.78570865127, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001328", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 43330.0, + "value": 53522.28535451232, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001329", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 42630.0, + "value": 52657.628078995156, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001330", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 32123.737373737375, + "value": 39680.03319572084, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001331", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 47192.22222222222, + "value": 58292.99756038162, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001332", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 51190.0, + "value": 63231.15133389074, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001333", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 42343.63636363637, + "value": 52303.90464810178, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001334", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 47600.0, + "value": 58796.69473516701, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001335", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 36860.0, + "value": 45530.381679375125, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001336", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001337", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 34100.0, + "value": 42121.16156447888, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001338", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 38420.00000000001, + "value": 47457.33217909909, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001339", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 35340.0, + "value": 43652.840166823575, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001340", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 33200.0, + "value": 41009.45935309968, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001341", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 32920.0, + "value": 40663.59644289281, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001342", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 35880.0, + "value": 44319.8614936511, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001343", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 28080.0, + "value": 34685.108995031296, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001344", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 28210.0, + "value": 34845.688203341626, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001345", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 33580.0, + "value": 41478.844731237565, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001346", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 43480.0, + "value": 53707.56905640885, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001347", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001348", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 43960.90909090909, + "value": 54301.59983400441, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001349", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 43080.0, + "value": 53213.479184684766, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001350", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 41290.0, + "value": 51002.42700871945, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001351", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 39200.0, + "value": 48420.80742896107, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001352", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 40418.38383838384, + "value": 49925.78521500551, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001353", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 34590.0, + "value": 42726.4216573409, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001354", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 35720.0, + "value": 44122.22554496146, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001355", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001356", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 36154.35643564357, + "value": 44658.753333885616, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001357", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 36180.0, + "value": 44690.428897444166, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001358", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 37790.0, + "value": 46679.14063113364, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001359", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 42930.0, + "value": 53028.19548278824, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001360", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 40619.40594059406, + "value": 50174.0926767424, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001361", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 35610.0, + "value": 43986.35083023734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001362", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 34450.0, + "value": 42553.490202237466, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001363", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 35513.131313131315, + "value": 43866.696237564756, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001364", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 41060.0, + "value": 50718.325332478096, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001365", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 36360.0, + "value": 44912.769339720006, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001366", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 38850.0, + "value": 47988.478791202484, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001367", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 35950.0, + "value": 44406.32722120281, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001368", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 33350.0, + "value": 41194.743054996216, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001369", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 52360.0, + "value": 64676.364208683706, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001370", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 40600.00000000001, + "value": 50150.12197999539, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001371", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 49600.0, + "value": 61267.14409378747, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001372", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 34300.0, + "value": 42368.20650034094, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001373", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 32000.0, + "value": 39527.1897379274, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001374", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 30000.0, + "value": 37056.74037930694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001375", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 40920.0, + "value": 50545.39387737466, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001376", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 41280.0, + "value": 50990.07476192635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001377", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 38580.29702970297, + "value": 47655.33502620832, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001378", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 36910.0, + "value": 45592.142913340635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001379", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 35116.732673267325, + "value": 43377.05485475976, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001380", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 36600.0, + "value": 45209.223262754465, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001381", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 34000.0, + "value": 41997.639096547864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001382", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 31920.0, + "value": 39428.37176358258, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001383", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 37950.0, + "value": 46876.77657982328, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001384", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 46650.0, + "value": 57623.231289822295, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001385", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 30220.0, + "value": 37328.48980875519, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001386", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 35040.0, + "value": 43282.27276303051, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001387", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 32000.0, + "value": 39527.1897379274, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001388", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 34160.0, + "value": 42195.275045237504, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001389", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 36666.666666666664, + "value": 45291.57157470848, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001390", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 39950.0, + "value": 49347.22593844374, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001391", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001392", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 42860.0, + "value": 52941.72975523651, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001393", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 44000.0, + "value": 54349.88588965018, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001394", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 37201.485148514854, + "value": 45952.19256243859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001395", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 31330.0, + "value": 38699.589202789546, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001396", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 27333.333333333332, + "value": 33762.80790114632, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001397", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 28340.0, + "value": 35006.267411651956, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001398", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 38640.0, + "value": 47729.08160854734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001399", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 39130.0, + "value": 48334.34170140935, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001400", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 34000.0, + "value": 41997.639096547864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001401", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 43110.0, + "value": 53250.53592506407, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001402", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 42297.0297029703, + "value": 52246.33495062681, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001403", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 44950.0, + "value": 55523.34933499489, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001404", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 41800.0, + "value": 51632.39159516767, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001405", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 34570.0, + "value": 42701.7171637547, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001406", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 51960.0, + "value": 64182.27433695962, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001407", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 45307.32673267327, + "value": 55964.72813377021, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001408", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 38406.666666666664, + "value": 47440.86251670829, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001409", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 36660.0, + "value": 45283.33674351308, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001410", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 34636.36363636364, + "value": 42783.69116519983, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001411", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 36934.242424242424, + "value": 45622.08775405119, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001412", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 29719.39393939394, + "value": 36710.12884808231, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001413", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001414", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 40160.0, + "value": 49606.62312109889, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001415", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 34000.0, + "value": 41997.639096547864, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001416", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 32000.0, + "value": 39527.1897379274, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001417", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 36307.27272727273, + "value": 44847.639311174564, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001418", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 34160.0, + "value": 42195.275045237504, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001419", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 40050.0, + "value": 49470.74840637476, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001420", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 42180.0, + "value": 52101.77697330556, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001421", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 48350.0, + "value": 59723.113244649685, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001422", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 36810.0, + "value": 45468.620445409615, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001423", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 33000.0, + "value": 40762.41441723763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001424", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 34500.0, + "value": 42615.251436202976, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001425", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 44550.0, + "value": 55029.259463270806, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001426", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 35050.0, + "value": 43294.625009823605, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001427", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 38950.0, + "value": 48112.0012591335, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001428", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 41650.0, + "value": 51447.10789327113, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001429", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 36270.0, + "value": 44801.59911858209, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001430", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 61420.0, + "value": 75867.4998032344, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001431", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001432", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001433", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 41790.0, + "value": 51620.039348374565, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001434", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 52220.0, + "value": 64503.43275358028, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001435", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 45250.0, + "value": 55893.916738787964, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001436", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 34079.603960396045, + "value": 42095.967872999885, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001437", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 39360.0, + "value": 48618.4433776507, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001438", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 48690.0, + "value": 60143.08963561516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001439", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 38740.0, + "value": 47852.604076478354, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001440", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 30100.0, + "value": 37180.26284723796, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001441", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 42100.0, + "value": 52002.958998960734, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001442", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 44860.0, + "value": 55412.179113856975, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001443", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 40820.0, + "value": 50421.871409443644, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001444", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 34676.43564356436, + "value": 42833.189097443654, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001445", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 46000.0, + "value": 56820.33524827064, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001446", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 27900.0, + "value": 34462.76855275546, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001447", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 37840.0, + "value": 46740.90186509915, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001448", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 40454.545454545456, + "value": 49970.452935732086, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001449", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 36790.0, + "value": 45443.91595182341, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001450", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 38320.0, + "value": 47333.80971116806, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001451", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 32181.188118811882, + "value": 39750.99777388164, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001452", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 36459.20792079208, + "value": 45035.31341186544, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001453", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 48260.0, + "value": 59611.94302351176, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001454", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 38516.85568556855, + "value": 47576.97071224488, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001455", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 34688.282828282834, + "value": 42847.82303238826, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001456", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 44480.0, + "value": 54942.79373571909, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001457", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 40590.0, + "value": 50137.76973320229, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001458", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 35080.0, + "value": 43331.681750202915, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001459", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 48464.64646464647, + "value": 59864.72738717666, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001460", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 36280.0, + "value": 44813.95136537519, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001461", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 29000.0, + "value": 35821.51569999671, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001462", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 41780.0, + "value": 51607.68710158146, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001463", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 32500.0, + "value": 40144.80207758252, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001464", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 39575.0495049505, + "value": 48884.077833439005, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001465", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 39480.0, + "value": 48766.670339167926, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001466", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 34360.0, + "value": 42442.31998109955, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001467", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 27360.0, + "value": 33795.74722592793, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001468", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 33456.63366336634, + "value": 41326.45958763157, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001469", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 37120.39603960396, + "value": 45852.02929388858, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001470", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 32702.970297029704, + "value": 40395.515997640534, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001471", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 36870.0, + "value": 45542.73392616823, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001472", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001473", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 40950.0, + "value": 50582.45061775397, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001474", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 39560.0, + "value": 48865.48831351275, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001475", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 33670.0, + "value": 41590.01495237549, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001476", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 36800.0, + "value": 45456.26819861651, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001477", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 48600.0, + "value": 60031.91941447724, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001478", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 37840.0, + "value": 46740.90186509915, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001479", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 37180.0, + "value": 45925.6535767544, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001480", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 39440.0, + "value": 48717.26135199552, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001481", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 45865.80858085809, + "value": 56654.57869559488, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001482", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 34826.732673267325, + "value": 43018.83969775979, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001483", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 39600.0, + "value": 48914.89730068516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001484", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 27040.0, + "value": 33400.47532854865, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001485", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 32726.86868686869, + "value": 40425.035878565424, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001486", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 30000.0, + "value": 37056.74037930694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001487", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 45000.0, + "value": 55585.11056896041, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001488", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 41080.0, + "value": 50743.0298260643, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001489", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 33120.0, + "value": 40910.64137875486, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001490", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 42247.41074107411, + "value": 52185.04438433089, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001491", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 36700.0, + "value": 45332.745730685485, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001492", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 29200.0, + "value": 36068.560635858754, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001493", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 33050.0, + "value": 40824.17565120314, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001494", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 34560.0, + "value": 42689.36491696159, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001495", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 39610.0, + "value": 48927.249547478255, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001496", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001497", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 35750.0, + "value": 44159.28228534077, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001498", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 39890.0, + "value": 49273.11245768513, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001499", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001500", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 43000.0, + "value": 53114.661210339946, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001501", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 33680.0, + "value": 41602.36719916859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001502", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 37960.0, + "value": 46889.12882661638, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001503", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 49542.62626262627, + "value": 61196.274637439165, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001504", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 36560.0, + "value": 45159.81427558206, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001505", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001506", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 30620.0, + "value": 37822.579680479284, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001507", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 43200.0, + "value": 53361.70614620199, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001508", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 34040.0, + "value": 42047.04808372028, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001509", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 37000.0, + "value": 45703.31313447856, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001510", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001511", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 26900.0, + "value": 33227.54387344522, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001512", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 45486.512651265126, + "value": 56186.063002599745, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001513", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 36720.0, + "value": 45357.45022427169, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001514", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 33280.0, + "value": 41108.2773274445, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001515", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001516", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001517", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 43470.0, + "value": 53695.216809615755, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001518", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 34320.0, + "value": 42392.91099392714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001519", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 34760.0, + "value": 42936.409852823635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001520", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 37920.0, + "value": 46839.71983944397, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001521", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 35200.0, + "value": 43479.90871172014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001522", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 34680.0, + "value": 42837.59187847882, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001523", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 36080.0, + "value": 44566.90642951315, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001524", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 33870.0, + "value": 41837.059888237534, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001525", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 49360.0, + "value": 60970.69017075301, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001526", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 35280.0, + "value": 43578.72668606496, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001527", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 51480.0, + "value": 63589.36649089071, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001528", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 41000.0, + "value": 50644.21185171948, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001529", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 34710.0, + "value": 42874.648618858126, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001530", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 30633.663366336634, + "value": 37839.45700778075, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001531", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001532", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 39440.0, + "value": 48717.26135199552, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001533", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 31201.616161616163, + "value": 38541.006317193256, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001534", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001535", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001536", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 44880.0, + "value": 55436.88360744318, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001537", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 47480.0, + "value": 58648.46777364978, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001538", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 39140.0, + "value": 48346.69394820245, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001539", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 39690.0, + "value": 49026.06752182308, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001540", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 42240.0, + "value": 52175.89045406417, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001541", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 40140.0, + "value": 49581.918627512685, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001542", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 38550.0, + "value": 47617.91138740942, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001543", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 40220.0, + "value": 49680.736601857505, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001544", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 34264.15841584158, + "value": 42323.93409104288, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001545", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 40041.818181818184, + "value": 49460.64202263495, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001546", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 48760.0, + "value": 60229.55536316688, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001547", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 37660.0, + "value": 46518.56142282331, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001548", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 30930.0, + "value": 38205.49933106545, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001549", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 38660.0, + "value": 47753.78610213354, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001550", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 53000.0, + "value": 65466.90800344226, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001551", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 35520.0, + "value": 43875.180609099414, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001552", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 28830.0, + "value": 35611.52750451397, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001553", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 51978.19781978198, + "value": 64204.75273306396, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001554", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 33440.0, + "value": 41305.91327613414, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001555", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 43000.0, + "value": 53114.661210339946, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001556", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 44590.0, + "value": 55078.66845044321, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001557", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 39570.0, + "value": 48877.84056030585, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001558", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 46218.21782178218, + "value": 57089.88328720131, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001559", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 49910.0, + "value": 61650.06374437364, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001560", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 42942.77227722773, + "value": 53043.9721148309, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001561", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001562", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 35220.0, + "value": 43504.61320530635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001563", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 48000.0, + "value": 59290.7846068911, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001564", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001565", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 44500.0, + "value": 54967.498229305296, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001566", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 47340.0, + "value": 58475.53631854634, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001567", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 34210.0, + "value": 42257.036279203014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001568", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 44750.0, + "value": 55276.30439913285, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001569", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 31063.069306930694, + "value": 38369.86982304495, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001570", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 36430.0, + "value": 44999.23506727173, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001571", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 46756.36363636364, + "value": 57754.61427843984, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001572", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 33040.0, + "value": 40811.82340441004, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001573", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 43000.0, + "value": 53114.661210339946, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001574", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 36760.0, + "value": 45406.859211444105, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001575", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 31640.0, + "value": 39082.50885337572, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001576", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 48730.0, + "value": 60192.49862278757, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001577", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 33000.0, + "value": 40762.41441723763, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001578", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 42380.0, + "value": 52348.82190916761, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001579", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 31000.0, + "value": 38291.96505861717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001580", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001581", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 36550.0, + "value": 45147.462028788956, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001582", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 34336.18561856186, + "value": 42412.90386942465, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001583", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 34370.0, + "value": 42454.672227892646, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001584", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 34620.0, + "value": 42763.47839772021, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001585", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 43000.0, + "value": 53114.661210339946, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001586", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 48300.0, + "value": 59661.352010684175, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001587", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 40480.0, + "value": 50001.895018478164, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001588", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 46760.0, + "value": 57759.10600454641, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001589", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 31990.0, + "value": 39514.8374911343, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001590", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 39090.0, + "value": 48284.93271423694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001591", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 41480.0, + "value": 51237.119697788396, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001592", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 44640.0, + "value": 55140.42968440873, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001593", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 40772.72727272727, + "value": 50363.478970058066, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001594", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 34560.0, + "value": 42689.3649169616, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001595", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 39050.0, + "value": 48235.52372706453, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001596", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 40450.0, + "value": 49964.838278098854, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001597", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 40000.0, + "value": 49408.98717240925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001598", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 42620.0, + "value": 52645.27583220206, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001599", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 36040.0, + "value": 44517.49744234073, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001600", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 43760.0, + "value": 54053.431966615724, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001601", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001602", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001603", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 37720.0, + "value": 46592.67490358192, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001604", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 39780.0, + "value": 49137.237742961006, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@E14001605", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 34220.0, + "value": 42269.38852599611, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000001", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 42370.0, + "value": 52336.4696623745, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000002", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 33331.637163716376, + "value": 41172.060826436544, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000003", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 39210.0, + "value": 48433.15967575417, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000004", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 34906.43564356436, + "value": 43117.29077368501, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000005", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 32231.881188118812, + "value": 39813.61510415954, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000006", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 29000.0, + "value": 35821.51569999671, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000007", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 37122.87128712871, + "value": 45855.08678071855, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000008", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 31333.333333333332, + "value": 38703.706618387245, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000009", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 43020.0, + "value": 53139.36570392615, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000010", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 34944.9504950495, + "value": 43164.86526875943, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000011", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 34390.0, + "value": 42479.37672147885, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000012", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 35174.05940594059, + "value": 43447.866249741994, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000013", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 36050.0, + "value": 44529.84968913384, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000014", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 38725.98659865987, + "value": 47835.29437730194, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000015", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 32290.0, + "value": 39885.40489492737, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000016", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 31620.0, + "value": 39057.804359789516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000017", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 43830.0, + "value": 54139.89769416744, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@N05000018", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 31448.844884488448, + "value": 38846.38933711945, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000021", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 31000.0, + "value": 38291.96505861717, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000027", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 32000.0, + "value": 39527.1897379274, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000045", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 30000.0, + "value": 37056.74037930694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000048", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 38000.0, + "value": 46938.53781378879, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000051", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 10000.0, + "value": 12352.246793102313, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000060", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 36000.0, + "value": 44468.08845516833, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000061", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000062", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 30000.0, + "value": 37056.74037930694, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000063", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 17000.0, + "value": 20998.819548273932, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000064", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 39000.0, + "value": 48173.76249309902, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000065", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 41260.0, + "value": 50965.37026834014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000066", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 43940.0, + "value": 54275.772408891564, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000067", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 35360.0, + "value": 43677.54466040978, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000068", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 34640.0, + "value": 42788.18289130642, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000069", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 37500.0, + "value": 46320.92547413368, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000070", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 37520.0, + "value": 46345.62996771988, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000071", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 35650.0, + "value": 44035.759817409744, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000072", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 31405.940594059404, + "value": 38793.392898733204, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000073", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 40910.0, + "value": 50533.04163058156, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000074", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 34837.08370837083, + "value": 43031.62555177605, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000075", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 39080.0, + "value": 48272.58046744383, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000076", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 33780.0, + "value": 41725.88966709962, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000077", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 35663.83838383838, + "value": 44052.853330648686, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000078", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 34780.0, + "value": 42961.11434640984, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000079", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 29070.0, + "value": 35907.981427548424, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000080", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 34680.0, + "value": 42837.59187847882, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000081", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 34670.0, + "value": 42825.23963168572, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000082", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 36770.0, + "value": 45419.2114582372, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000083", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 43750.0, + "value": 54041.079719822614, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000084", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 50190.0, + "value": 61995.92665458051, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000085", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 36050.0, + "value": 44529.84968913384, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000086", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 42000.0, + "value": 51879.436531029714, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000087", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 42810.0, + "value": 52879.968521271, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000088", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 40720.0, + "value": 50298.34894151262, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000089", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 38111.14111411141, + "value": 47075.822060825245, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000090", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 34115.841584158414, + "value": 42140.72948019074, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000091", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 39800.0700070007, + "value": 49162.0287109222, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000092", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 34879.70297029703, + "value": 43084.26991592127, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000093", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 35899.40594059406, + "value": 44343.832190398105, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000094", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000095", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 31010.0, + "value": 38304.31730541027, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000096", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 37940.0, + "value": 46864.42433303017, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000097", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 37100.0, + "value": 45826.835602409585, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000098", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 34732.67326732673, + "value": 42902.65519822071, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000099", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 40453.945394539456, + "value": 49969.71172680361, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000100", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 42320.0, + "value": 52274.708428408994, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000101", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 35200.0, + "value": 43479.90871172014, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000102", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 37400.0, + "value": 46197.40300620265, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000103", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 37803.030303030304, + "value": 46695.23598301556, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000104", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 38110.0, + "value": 47074.41252851292, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000105", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 29770.0, + "value": 36772.63870306559, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000106", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 36830.89108910891, + "value": 45494.42563425461, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000107", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 35046.43564356436, + "value": 43290.22222878844, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000108", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 40780.0, + "value": 50372.46242227124, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000109", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 35770.0, + "value": 44183.98677892697, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000110", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 38690.0, + "value": 47790.84284251285, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@S14000111", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 37200.0, + "value": 45950.358070340604, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000081", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 33940.0, + "value": 41923.52561578925, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000082", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 41250.0, + "value": 50953.01802154704, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000083", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 30300.0, + "value": 37427.30778310001, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000084", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 32990.0, + "value": 40750.06217044452, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000085", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 28750.0, + "value": 35512.70953016915, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000086", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 33270.0, + "value": 41095.925080651396, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000087", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 35000.0, + "value": 43232.863775858095, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000088", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 33550.0, + "value": 41441.78799085826, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000089", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 34480.0, + "value": 42590.54694261678, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000090", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 36280.0, + "value": 44813.95136537519, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000091", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 36400.0, + "value": 44962.17832689242, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000092", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 38830.0, + "value": 47963.774297616284, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000093", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 28670.0, + "value": 35413.89155582433, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000094", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 33466.83168316832, + "value": 41339.05643337107, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000095", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 33100.0, + "value": 40885.93688516866, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000096", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 28487.128712871287, + "value": 35188.00442882572, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000097", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 36500.0, + "value": 45085.700794823446, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000098", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 31480.0, + "value": 38884.87290468608, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000099", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 34040.0, + "value": 42047.04808372027, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000100", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 32850.0, + "value": 40577.130715341096, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000101", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 33680.0, + "value": 41602.36719916859, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000102", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 33356.43564356436, + "value": 41202.69252075415, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000103", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 34950.0, + "value": 43171.102541892586, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000104", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 39830.0, + "value": 49198.998976926516, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000105", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 36580.0, + "value": 45184.51876916826, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000106", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 38550.0, + "value": 47617.91138740942, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000107", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 35870.0, + "value": 44307.509246858, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000108", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 34980.0, + "value": 43208.15928227189, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000109", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 33410.0, + "value": 41268.85653575483, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000110", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 33120.0, + "value": 40910.64137875486, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000111", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 39039.60396039604, + "value": 48222.682282378635, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "hmrc/employment_income/count@W07000112", + "metric": "hmrc/employment_income/count", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 24000.0, + "value": 29645.39230344555, + "adjustment_factor": 1.2352246793102313, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001063", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 14297.38, + "value": 14100.733759554956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001064", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 10862.1, + "value": 10712.702618917723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001065", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 12901.0, + "value": 12723.559577490316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001066", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 9623.0, + "value": 9490.645206897861, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001067", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 9449.19, + "value": 9319.225790560866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001068", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 11307.65, + "value": 11152.124521851667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001069", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 13100.32, + "value": 12920.138129151843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001070", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 12526.029999999999, + "value": 12353.746916861563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001071", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 14652.198019801981, + "value": 14450.67161042835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001072", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 12121.0, + "value": 11954.287701632442, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001073", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 23614.56, + "value": 23289.76521635685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001074", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 12431.67, + "value": 12260.684744802653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001075", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 12687.17, + "value": 12512.670596445842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001076", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 10023.81, + "value": 9885.942464029393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001077", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 14891.4, + "value": 14686.583605320462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001078", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 14248.35, + "value": 14052.378118435327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001079", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 11933.76, + "value": 11769.623001586762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001080", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 9379.460000000001, + "value": 9250.45485735116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001081", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 12857.390000000001, + "value": 12680.549389661903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001082", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 11055.640000000001, + "value": 10903.580668729946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001083", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 14208.740101010102, + "value": 14013.313014206478, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001084", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 13868.88, + "value": 13678.12735083047, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001085", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 11899.970000000001, + "value": 11736.297749426203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001086", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 17158.93, + "value": 16922.925985658934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001087", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 8209.800000000001, + "value": 8096.882367202541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001088", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 8575.14, + "value": 8457.197478902435, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001089", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 13701.859999999999, + "value": 13513.404544797415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001090", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 11773.92, + "value": 11611.981441795582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001091", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 12875.65, + "value": 12698.558241524936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001092", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 14290.68606060606, + "value": 14094.131888638987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001093", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 17765.35, + "value": 17521.00528175859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001094", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 16733.980000000003, + "value": 16503.820750215596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001095", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 19847.86, + "value": 19574.872428159593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001096", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 22911.9303030303, + "value": 22596.799491970527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001097", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 15022.92, + "value": 14816.294678542035, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001098", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 17399.013636363637, + "value": 17159.70751041308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001099", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 12776.859999999999, + "value": 12601.12699970955, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001100", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 17886.050000000003, + "value": 17640.045173317627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001101", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 9829.224747474747, + "value": 9694.033538100703, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001102", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 16599.57, + "value": 16371.259426069368, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001103", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 16896.68696969697, + "value": 16664.28984738731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001104", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 9779.0, + "value": 9644.499582069437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001105", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 12721.94, + "value": 12546.9623696812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001106", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 9644.720101010102, + "value": 9512.066569523327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001107", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 10768.58, + "value": 10620.468893494355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001108", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 11226.589999999998, + "value": 11072.17942152213, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001109", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 11125.0, + "value": 10971.986690921616, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001110", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 15390.24, + "value": 15178.562557311414, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001111", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 17831.26, + "value": 17586.00875526858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001112", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 11736.42, + "value": 11574.997216994721, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001113", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 12608.0, + "value": 12434.589501046268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001114", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 13107.52, + "value": 12927.239100313607, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001115", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 12658.0, + "value": 12483.901800780746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001116", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 10860.869999999999, + "value": 10711.489536344256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001117", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 12354.309999999998, + "value": 12184.388754653466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001118", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 20324.22, + "value": 20044.680570189925, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001119", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 16806.78, + "value": 16575.619458628997, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001120", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 18700.0, + "value": 18442.80010069521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001121", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 11692.289405940595, + "value": 11531.473595360361, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001122", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 18892.3, + "value": 18632.455205474016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001123", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 18320.85, + "value": 18068.864931808654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001124", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 17126.719999999998, + "value": 16891.15900216998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001125", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 11278.0, + "value": 11122.88232810912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001126", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 10310.12, + "value": 10168.314554768967, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001127", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 8832.74, + "value": 8711.254447134472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001128", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 9841.390000000001, + "value": 9706.031469678119, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001129", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 9332.34, + "value": 9203.982946081387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001130", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 9424.66, + "value": 9295.03317631113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001131", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 8909.66, + "value": 8787.116489045995, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001132", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 12959.04, + "value": 12780.801295022098, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001133", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 12121.627722772277, + "value": 11954.906790702375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001134", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 13248.42, + "value": 13066.201160965371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001135", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 13658.48, + "value": 13470.62119354778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001136", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 9370.454545454544, + "value": 9241.573263875347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001137", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 12592.314646464645, + "value": 12419.119883946734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001138", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 11281.0, + "value": 11125.84106609319, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001139", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 13646.24, + "value": 13458.54954257278, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001140", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 10281.24, + "value": 10139.831770442332, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001141", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 13546.877425742574, + "value": 13360.553601689347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001142", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 13821.52, + "value": 13631.41874052197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001143", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 13822.0, + "value": 13631.892138599422, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001144", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 12285.27, + "value": 12116.2983311801, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001145", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 14317.245151515152, + "value": 14120.325685670676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001146", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 10799.76, + "value": 10651.220043608775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001147", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 10802.89, + "value": 10654.306993572154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001148", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 11030.560000000001, + "value": 10878.845619183134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001149", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 12202.53, + "value": 12034.696337579482, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001150", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 11188.0, + "value": 11034.12018858706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001151", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 10264.75, + "value": 10123.568573989902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001152", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 11060.640000000001, + "value": 10908.511898703395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001153", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 14333.0, + "value": 14135.863841885799, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001154", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 9736.88, + "value": 9602.958900773112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001155", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 9437.414141414141, + "value": 9307.61189719653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001156", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 9728.810495049504, + "value": 9595.000383836557, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001157", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 14427.060000000001, + "value": 14228.6301401463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001158", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 10925.0, + "value": 10774.737491983698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001159", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 12968.449999999999, + "value": 12790.081869832127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001160", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 14630.907474747475, + "value": 14429.673895643584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001161", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 10720.699999999999, + "value": 10573.247435268617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001162", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 11687.88, + "value": 11527.124836412488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001163", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 9962.030303030302, + "value": 9825.012485339892, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001164", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 10136.577272727274, + "value": 9997.158735088735, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001165", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 9885.0, + "value": 9749.041657506532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001166", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 10347.87, + "value": 10205.5453410685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001167", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 14646.08, + "value": 14444.637737903215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001168", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 10589.701485148515, + "value": 10444.050674686056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001169", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 14690.93, + "value": 14488.87087076504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001170", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 11834.88, + "value": 11672.102997631857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001171", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 7324.11, + "value": 7223.374152165924, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001172", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 15694.62, + "value": 15478.756113175028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001173", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 9593.736767676768, + "value": 9461.784461227402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001174", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 9396.346534653465, + "value": 9267.109134517326, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001175", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 11225.16, + "value": 11070.769089749723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001176", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 15342.408316831683, + "value": 15131.388751367402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001177", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 11051.96, + "value": 10899.951283469487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001178", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 9209.74, + "value": 9083.069187132443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001179", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 14640.300000000001, + "value": 14438.93723605391, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001180", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 17897.99, + "value": 17651.820950494217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001181", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 14341.0, + "value": 14143.753809843316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001182", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 14506.01, + "value": 14306.494261427044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001183", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 10621.621584158416, + "value": 10475.531744484666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001184", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 15984.0, + "value": 15764.1559791183, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001185", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 12593.25, + "value": 12420.042372624595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001186", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 14861.520000000002, + "value": 14657.114574999141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001187", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 13180.5, + "value": 12999.215333006054, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001188", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 17840.41, + "value": 17595.032906119992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001189", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 18794.04606060606, + "value": 18535.55265128427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001190", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 11248.66, + "value": 11093.945870624928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001191", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 15404.12, + "value": 15192.251651717706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001192", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 11519.993864386439, + "value": 11361.547807599702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001193", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 12050.0, + "value": 11884.26423600948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001194", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 17164.0, + "value": 16927.92625285201, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001195", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 8084.87, + "value": 7973.670655085972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001196", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 13734.409999999998, + "value": 13545.50685192456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001197", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 13537.54, + "value": 13351.344602950023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001198", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 13966.51, + "value": 13774.414547292012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001199", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 10355.14, + "value": 10212.715349449893, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001200", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 12246.23, + "value": 12077.795287547417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001201", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 10172.136831683169, + "value": 10032.229207681914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001202", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 11447.04, + "value": 11289.597351051449, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001203", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 10966.8, + "value": 10815.962574561723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001204", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12839.039999999999, + "value": 12662.451775659349, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001205", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 15337.99, + "value": 15127.031204088884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001206", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 14498.56, + "value": 14299.146728766606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001207", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 16287.634242424243, + "value": 16063.614034559816, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001208", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 17439.1, + "value": 17199.24252599111, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001209", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 16543.69, + "value": 16316.147999886114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001210", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 13229.840303030303, + "value": 13047.87700924646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001211", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 10643.14, + "value": 10496.754195920494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001212", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 10730.14282828283, + "value": 10582.5603868411, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001213", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 21194.940000000002, + "value": 20903.42468268604, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001214", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 9534.58, + "value": 9403.441336047408, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001215", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 12416.02, + "value": 12245.249994985761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001216", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 11876.44, + "value": 11713.091381171156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001217", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 12406.68, + "value": 12236.03845739536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001218", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 11270.0, + "value": 11114.992360151606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001219", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 10754.52, + "value": 10606.602274809018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001220", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 10776.73, + "value": 10628.506798351073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001221", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 18780.329999999998, + "value": 18522.02524144862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001222", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 10358.875757575757, + "value": 10216.399725396115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001223", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 15127.217171717171, + "value": 14919.15734640555, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001224", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 12352.651565156517, + "value": 12182.753129931627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001225", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 19403.16, + "value": 19136.288834321138, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001226", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 12940.0, + "value": 12762.02317128321, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001227", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 13305.229504950496, + "value": 13122.229307683094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001228", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 10847.0, + "value": 10697.810304397912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001229", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 20125.62, + "value": 19848.812115644574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001230", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 14125.52, + "value": 13931.237522907602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001231", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 9973.74297029703, + "value": 9836.564056518835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001232", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 9842.268630863085, + "value": 9706.898015847648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001233", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 10419.640000000001, + "value": 10276.328216107371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001234", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 11376.63, + "value": 11220.155770565354, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001235", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 12090.320000000002, + "value": 11924.029674515365, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001236", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 18725.68, + "value": 18468.12689783884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001237", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 12724.865258525851, + "value": 12549.847394185754, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001238", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 17641.0, + "value": 17398.36559231894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001239", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 9692.800000000001, + "value": 9559.485177327193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001240", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 9182.0, + "value": 9055.710723239756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001241", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 9972.84, + "value": 9835.673505680064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001242", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 8974.1, + "value": 8850.670180943791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001243", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 9953.17, + "value": 9816.27404696452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001244", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 11185.880000000001, + "value": 11032.029347078318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001245", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 11238.02, + "value": 11083.452213241433, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001246", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 13417.0, + "value": 13232.46251075014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001247", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 9335.35, + "value": 9206.951546525403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001248", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 14830.449999999999, + "value": 14626.471911944132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001249", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 10883.15207920792, + "value": 10733.465147716423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001250", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 10165.270909090908, + "value": 10025.457719025451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001251", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 14973.810000000001, + "value": 14767.860137742831, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001252", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 10461.0, + "value": 10317.119350447732, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001253", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 10950.039999999999, + "value": 10799.433091690726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001254", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 14380.0, + "value": 14182.217403636208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001255", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 13447.529999999999, + "value": 13262.572600968013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001256", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 10816.0, + "value": 10667.236678562535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001257", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 16705.5, + "value": 16475.732464286833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001258", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 10801.341584158416, + "value": 10652.779874650278, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001259", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 18910.05425742574, + "value": 18649.965270748842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001260", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 14714.235247524752, + "value": 14511.855577791577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001261", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 11116.51, + "value": 10963.6134624267, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001262", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 14330.11, + "value": 14133.013590961145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001263", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 11487.84, + "value": 11329.836187634783, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001264", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 14162.848282828283, + "value": 13968.052392335638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001265", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 16931.43212121212, + "value": 16698.55711390401, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001266", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 11040.0, + "value": 10888.155781373001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001267", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 15015.059405940594, + "value": 14808.542199135067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001268", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 11938.789999999999, + "value": 11774.583818940051, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001269", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 10726.632525252524, + "value": 10579.098364537314, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001270", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 15934.613861386139, + "value": 15715.449097717195, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001271", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 16907.751515151514, + "value": 16675.202211024916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001272", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 10921.0, + "value": 10770.79250800494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001273", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 10173.245148514852, + "value": 10033.322280718008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001274", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 11691.26, + "value": 11530.458347874537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001275", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10583.0, + "value": 10437.441361799862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001276", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 20804.0, + "value": 20517.861673522093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001277", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 10768.24, + "value": 10620.13356985616, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001278", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 13960.619999999999, + "value": 13768.605558383291, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001279", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 18891.0, + "value": 18631.173085680923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001280", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 10226.720000000001, + "value": 10086.061638811856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001281", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 10835.55, + "value": 10686.517787758716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001282", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 10960.77, + "value": 10810.015511213745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001283", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 12896.560000000001, + "value": 12719.180645273895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001284", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 13636.42, + "value": 13448.86460690493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001285", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 8798.001485148514, + "value": 8676.993726000728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001286", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 13139.91, + "value": 12959.183608081605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001287", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 9393.0, + "value": 9263.808628119257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001288", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 10836.99, + "value": 10687.937981991068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001289", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 12600.71, + "value": 12427.39976774498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001290", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 14252.279999999999, + "value": 14056.254065194456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001291", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 9131.704257425743, + "value": 9006.106748575954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001292", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 13699.191919191919, + "value": 13510.773160786937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001293", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 13090.585151515153, + "value": 12910.537173824752, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001294", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 11702.67, + "value": 11541.711414673948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001295", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 11145.8, + "value": 10992.500607611159, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001296", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 11175.0, + "value": 11021.298990656094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001297", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 13963.32, + "value": 13771.268422568954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001298", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 13172.82, + "value": 12991.640963766838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001299", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 12145.0, + "value": 11977.957605504991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001300", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 16209.809090909092, + "value": 15986.859290591889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001301", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 20801.09090909091, + "value": 20514.992594264815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001302", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 14721.0, + "value": 14518.527287825358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001303", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 6561.5, + "value": 6471.253094155702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001304", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 6561.5, + "value": 6471.253094155702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001305", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 13549.0, + "value": 13362.646982049166, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001306", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 13173.76, + "value": 12992.568035001847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001307", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 10765.2, + "value": 10617.135382032304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001308", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 12243.0, + "value": 12074.60971298457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001309", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 9158.050000000001, + "value": 9032.09013166694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001310", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 16647.14, + "value": 16418.175148036753, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001311", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 13664.68, + "value": 13476.735918714858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001312", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 15187.159999999998, + "value": 14978.275720709853, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001313", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 13072.419999999998, + "value": 12892.621865900004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001314", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 14265.08606060606, + "value": 14068.883991174935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001315", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 12040.40303030303, + "value": 11874.799263084686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001316", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 9445.320000000002, + "value": 9315.409018561417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001317", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 12396.33, + "value": 12225.830811350324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001318", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 9717.2, + "value": 9583.54957959762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001319", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 11860.853333333334, + "value": 11697.719093600595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001320", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 16432.365742574257, + "value": 16206.354896888182, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001321", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 12225.0, + "value": 12056.857285080157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001322", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 9863.0, + "value": 9727.34424562336, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001323", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 16600.04, + "value": 16371.722961686872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001324", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 11052.734242424243, + "value": 10900.714876959317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001325", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 12286.742424242424, + "value": 12117.750503691674, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001326", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 16564.94, + "value": 16337.105727273267, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001327", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 14506.76, + "value": 14307.23394592306, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001328", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 17580.3, + "value": 17338.500460441282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001329", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 12359.94, + "value": 12189.94131960357, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001330", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 9578.4901010101, + "value": 9446.747497295035, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001331", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 16760.654444444444, + "value": 16530.128314209498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001332", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 14721.67, + "value": 14519.1880726418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001333", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 14027.875454545458, + "value": 13834.935981049774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001334", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 16287.02, + "value": 16063.008240429139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001335", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 9856.17, + "value": 9720.60818547963, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001336", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 12295.0, + "value": 12125.894504708427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001337", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 12038.050000000001, + "value": 11872.478596372941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001338", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 11335.94, + "value": 11180.025421041437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001339", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 13072.58, + "value": 12892.779665259155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001340", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 11490.04, + "value": 11332.005928823102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001341", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 12888.230000000001, + "value": 12710.965216138131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001342", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 10174.28, + "value": 10034.342898850335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001343", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 8804.310000000001, + "value": 8683.215473505446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001344", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 9954.49, + "value": 9817.575891677512, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001345", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 17264.36, + "value": 17026.905900879057, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001346", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 18979.079999999998, + "value": 18718.04163289318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001347", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 9883.0, + "value": 9747.069165517152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001348", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 12529.79909090909, + "value": 12357.464167674274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001349", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 13382.61, + "value": 13198.545510992766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001350", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 11519.58, + "value": 11361.139635506232, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001351", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 10078.55, + "value": 9939.929569778702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001352", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 15630.769797979798, + "value": 15415.784107172487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001353", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 14079.78, + "value": 13886.126631110503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001354", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 10238.9, + "value": 10098.074115027175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001355", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 12474.449999999999, + "value": 12302.876348455473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001356", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 10671.81405940594, + "value": 10525.033872161095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001357", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 9930.83, + "value": 9794.241311443157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001358", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 12181.01, + "value": 12013.472323773762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001359", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 12132.990000000002, + "value": 11966.11279110877, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001360", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 12168.584554455447, + "value": 12001.217777873213, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001361", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 10206.03, + "value": 10065.656209181729, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001362", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 8847.25, + "value": 8725.564876517417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001363", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 9339.476767676768, + "value": 9211.021554617628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001364", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 11627.92, + "value": 11467.989526570902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001365", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 9937.01, + "value": 9800.336311690337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001366", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 11380.21, + "value": 11223.686531226344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001367", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 15179.59, + "value": 14970.809838530053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001368", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 10452.57, + "value": 10308.8052967125, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001369", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 17222.48, + "value": 16985.601918621458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001370", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 13346.900000000001, + "value": 13163.326666522402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001371", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 16287.1, + "value": 16063.087140108713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001372", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 10898.08, + "value": 10748.187749806653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001373", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 9442.0, + "value": 9312.134681859046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001374", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 7250.0, + "value": 7150.28346149948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001375", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 10890.759999999998, + "value": 10740.968429125525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001376", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 11355.44, + "value": 11199.257217937882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001377", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 16565.76930693069, + "value": 16337.923627912032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001378", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 10879.25, + "value": 10729.61673772665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001379", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 11909.837623762376, + "value": 11746.02965383895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001380", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 9841.95, + "value": 9706.583767435146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001381", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 9219.0, + "value": 9092.20182504327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001382", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 9964.07, + "value": 9827.024128306637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001383", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 12911.449999999999, + "value": 12733.865848134821, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001384", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 13110.09, + "value": 12929.77375251996, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001385", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 10709.28, + "value": 10561.984506009261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001386", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 9731.810000000001, + "value": 9597.958633580034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001387", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 10277.0, + "value": 10135.650087424849, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001388", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 9017.75, + "value": 8893.719818611991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001389", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 10322.838383838383, + "value": 10180.858009888498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001390", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 11934.0, + "value": 11769.859700625488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001391", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 9111.0, + "value": 8985.687257616795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001392", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 11847.13, + "value": 11684.184511066804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001393", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 12166.0, + "value": 11998.668771393472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001394", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 11325.642574257427, + "value": 11169.86962614721, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001395", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 8719.45, + "value": 8599.522638396087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001396", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 6973.757575757576, + "value": 6877.840477027048, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001397", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 7961.849999999999, + "value": 7852.342672819259, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001398", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 10051.92, + "value": 9913.665838940118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001399", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 10245.69, + "value": 10104.770725331118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001400", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 10669.0, + "value": 10522.258517343165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001401", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 15075.73, + "value": 14868.378329521594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001402", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 12549.881188118812, + "value": 12377.270055612329, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001403", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 12925.34, + "value": 12747.56480500106, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001404", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 11063.699999999999, + "value": 10911.529811447144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001405", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 11014.029999999999, + "value": 10862.542972890913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001406", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 16653.12, + "value": 16424.072899084993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001407", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 14234.375049504952, + "value": 14038.595379483599, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001408", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 10808.547878787878, + "value": 10659.887053865137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001409", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 10058.91, + "value": 9920.559698442996, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001410", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 14681.757575757576, + "value": 14479.824604094358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001411", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 15445.611717171716, + "value": 15233.172691591104, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001412", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 11906.290707070708, + "value": 11742.531521458293, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001413", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 12096.0, + "value": 11929.6315517652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001414", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 12097.52, + "value": 11931.130645677129, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001415", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 15115.0, + "value": 14907.108209733053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001416", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 15856.0, + "value": 15637.916491798034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001417", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 12507.238181818182, + "value": 12335.21356144681, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001418", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 11759.41, + "value": 11597.671012412635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001419", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 12389.69, + "value": 12219.282137945585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001420", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 11229.470000000001, + "value": 11075.019809986836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001421", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 14513.890000000001, + "value": 14314.2658798652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001422", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 13173.48, + "value": 12992.291886123334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001423", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 8778.0, + "value": 8657.267341385163, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001424", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 9541.94, + "value": 9410.700106568323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001425", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 18864.45, + "value": 18604.98825452191, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001426", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 12722.4, + "value": 12547.416042838755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001427", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 11255.6, + "value": 11100.790417828075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001428", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 12262.949999999999, + "value": 12094.285320578627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001429", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 10738.0, + "value": 10590.309490976746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001430", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 20804.78, + "value": 20518.63094539795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001431", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 12480.0, + "value": 12308.350013726002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001432", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 12261.0, + "value": 12092.362140888981, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001433", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 14923.660000000002, + "value": 14718.399901109147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001434", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 14358.61, + "value": 14161.121601809798, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001435", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 19060.829999999998, + "value": 18798.66724295905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001436", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 11105.336336633663, + "value": 10952.59348168564, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001437", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 10264.32, + "value": 10123.144488212185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001438", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 14579.37, + "value": 14378.84526759747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001439", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 12350.88, + "value": 12181.005930891683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001440", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 10869.52, + "value": 10720.020564198321, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001441", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 11869.2, + "value": 11705.950960169603, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001442", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 13797.14, + "value": 13607.374063171439, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001443", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 9810.86, + "value": 9675.921379460246, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001444", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 9386.118019801981, + "value": 9257.021302713427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001445", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 15789.04, + "value": 15571.87745999362, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001446", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 14952.6, + "value": 14746.941860195464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001447", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 13246.64, + "value": 13064.445643094823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001448", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 14450.20202020202, + "value": 14251.453864879568, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001449", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 10158.53, + "value": 10018.809524433975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001450", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 11623.43, + "value": 11463.561282054745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001451", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 10371.39099009901, + "value": 10228.74282334478, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001452", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 13859.072673267327, + "value": 13668.454914121758, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001453", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 13239.73, + "value": 13057.630683271518, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001454", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 12387.122841284126, + "value": 12216.750287944324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001455", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 10570.626666666667, + "value": 10425.238211358903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001456", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 12883.400000000001, + "value": 12706.201647983778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001457", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 11094.93, + "value": 10942.330273861298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001458", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 9842.76, + "value": 9707.382626690844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001459", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 13672.808080808081, + "value": 13484.75220585634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001460", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 10001.24, + "value": 9863.682891929247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001461", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 9622.0, + "value": 9489.65896090317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001462", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 12861.84, + "value": 12684.93818433827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001463", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 8511.2, + "value": 8394.136910001984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001464", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 11106.248316831683, + "value": 10953.492918503174, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001465", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 12542.199999999999, + "value": 12369.694514595692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001466", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 17138.99, + "value": 16903.260240524825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001467", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 8739.24, + "value": 8619.040446630994, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001468", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 9558.883366336633, + "value": 9427.410433754389, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001469", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 12569.589603960396, + "value": 12396.707401797768, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001470", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 12476.29702970297, + "value": 12304.6979741021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001471", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 11638.53, + "value": 11478.453596574558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001472", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 11074.0, + "value": 10921.688145192447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001473", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 10380.37, + "value": 10237.598335895911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001474", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 14754.960000000001, + "value": 14552.020201805017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001475", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 9043.619999999999, + "value": 8919.23400249461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001476", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 9971.2, + "value": 9834.056062248776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001477", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 21947.4, + "value": 21645.535343850166, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001478", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 16368.64, + "value": 16143.505638515702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001479", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 11016.34, + "value": 10864.821201138644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001480", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 13838.64, + "value": 13648.303271951056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001481", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 12121.130366036605, + "value": 11954.416274613883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001482", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 9707.054455445545, + "value": 9573.543576916843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001483", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 11044.88, + "value": 10892.968661827086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001484", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 8372.28, + "value": 8257.127616419706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001485", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 9104.303232323233, + "value": 8979.082597318216, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001486", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 8610.0, + "value": 8491.578014277313, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001487", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 12239.0, + "value": 12070.664729005812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001488", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 11516.279999999999, + "value": 11357.885023723755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001489", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 9978.380000000001, + "value": 9841.137308490646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001490", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 12218.420177017702, + "value": 12050.3679610181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001491", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 9845.369999999999, + "value": 9709.956728736983, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001492", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 10035.8, + "value": 9897.76755350572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001493", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 8313.63, + "value": 8199.28428883116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001494", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 9019.199999999999, + "value": 8895.14987530429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001495", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 10184.509999999998, + "value": 10044.432195376008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001496", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 12261.52, + "value": 12092.87498880622, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001497", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 11832.470000000001, + "value": 11669.726144784656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001498", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 10389.85, + "value": 10246.947947925568, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001499", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 14047.0, + "value": 13853.797487404578, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001500", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 13955.0, + "value": 13763.062855893137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001501", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 12242.43, + "value": 12074.047552767595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001502", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 12504.25, + "value": 12332.266479097223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001503", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 16291.025151515152, + "value": 16066.958305069084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001504", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 9620.91, + "value": 9488.583952768959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001505", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 12651.0, + "value": 12476.99807881792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001506", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 12571.83, + "value": 12398.916983418345, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001507", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 13449.6, + "value": 13264.61413017702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001508", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 11028.960000000001, + "value": 10877.267625591627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001509", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 11493.0, + "value": 11334.925216967382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001510", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 10791.9, + "value": 10643.468150090515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001511", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 8544.06, + "value": 8426.544953387482, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001512", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 12422.688068806881, + "value": 12251.826351138863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001513", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 9801.09, + "value": 9666.285756092127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001514", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 8096.179999999999, + "value": 7984.825097285911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001515", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 12420.0, + "value": 12249.175254044625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001516", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 12993.0, + "value": 12814.294209001757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001517", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 13813.949999999999, + "value": 13623.95285834217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001518", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 12230.07, + "value": 12061.857552273234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001519", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 10891.57, + "value": 10741.767288381227, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001520", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 14327.19, + "value": 14130.133752656651, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001521", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 13105.37, + "value": 12925.118671425025, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001522", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 11205.820000000002, + "value": 11051.695092212429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001523", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 9189.18, + "value": 9062.791969481626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001524", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 10739.66, + "value": 10591.94665932793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001525", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 17748.94, + "value": 17504.820984985734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001526", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 9379.58, + "value": 9250.573206870522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001527", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 16026.01, + "value": 15805.588173355212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001528", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 13089.0, + "value": 12908.973824491957, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001529", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 10090.19, + "value": 9951.409473156886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001530", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 8415.247524752476, + "value": 8299.50416560856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001531", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 10359.0, + "value": 10216.522258989395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001532", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 11390.89, + "value": 11234.219638449627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001533", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 9369.227070707071, + "value": 9240.362671822068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001534", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 13739.0, + "value": 13550.033721040187, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001535", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 10982.0, + "value": 10830.953513681005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001536", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 13301.2, + "value": 13118.255224565086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001537", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 14183.96, + "value": 13988.873738837263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001538", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 11227.83, + "value": 11073.402366555545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001539", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 10524.369999999999, + "value": 10379.61775913121, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001540", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 11718.08, + "value": 11556.909465452114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001541", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 14077.74, + "value": 13884.114689281336, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001542", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 11363.35, + "value": 11207.058423755878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001543", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 11697.34, + "value": 11536.45472352225, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001544", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 9085.515643564357, + "value": 8960.553413154897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001545", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 10654.164444444445, + "value": 10507.627010097503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001546", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 19549.08, + "value": 19280.20184986624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001547", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 15837.4, + "value": 15619.572316296808, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001548", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 9368.19, + "value": 9239.339864991009, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001549", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 12077.45, + "value": 11911.33668856371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001550", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 13827.0, + "value": 13636.82336857287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001551", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 10548.76, + "value": 10403.672298941688, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001552", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 8709.45, + "value": 8589.660178449192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001553", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 19352.708070807083, + "value": 19086.53082123026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001554", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 9534.14, + "value": 9403.007387809745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001555", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 12801.0, + "value": 12624.934978021358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001556", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 13593.58, + "value": 13406.613828492427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001557", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 10549.09, + "value": 10403.997760119937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001558", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 15613.111782178219, + "value": 15398.36895981401, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001559", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 10427.34, + "value": 10283.92231026648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001560", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 12334.785742574259, + "value": 12165.13303396804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001561", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 11444.48, + "value": 11287.072561305044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001562", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 17600.22, + "value": 17358.1464806555, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001563", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 18930.0, + "value": 18669.636679473813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001564", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 11222.0, + "value": 11067.652552406505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001565", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 11610.94, + "value": 11451.243069581073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001566", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 11612.64, + "value": 11452.919687772044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001567", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 10818.61, + "value": 10669.810780608675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001568", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 14701.580000000002, + "value": 14499.374390608487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001569", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 9300.09198019802, + "value": 9172.178465715015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001570", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 11383.52, + "value": 11226.951005468767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001571", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 14015.11090909091, + "value": 13822.346999221196, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001572", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 9058.74, + "value": 8934.146041934317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001573", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 14297.0, + "value": 14100.358986076973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001574", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 14881.81, + "value": 14677.125506231388, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001575", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 7945.490000000001, + "value": 7836.207688346139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001576", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 20177.41, + "value": 19899.889795709547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001577", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 10358.0, + "value": 10215.536012994706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001578", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 15086.84, + "value": 14879.335522522595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001579", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 8953.0, + "value": 8829.86039045584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001580", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 7725.96, + "value": 7619.697105131933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001581", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 10827.3, + "value": 10678.381258302525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001582", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 9523.01400940094, + "value": 9392.034424144467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001583", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 9416.81, + "value": 9287.291145252815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001584", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 11337.430000000002, + "value": 11181.494927573525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001585", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 12363.0, + "value": 12192.959232347319, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001586", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 14903.7, + "value": 14698.714431055145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001587", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 10961.43, + "value": 10810.66643357024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001588", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 13311.16, + "value": 13128.078234672195, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001589", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 9278.57, + "value": 9150.952498946928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001590", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 11515.77, + "value": 11357.382038266463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001591", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 11072.66, + "value": 10920.366575559563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001592", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 13305.51, + "value": 13122.5059448022, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001593", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 12336.880606060606, + "value": 12167.199084690874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001594", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 15224.55, + "value": 15015.151458451297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001595", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 17382.079999999998, + "value": 17143.006779373914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001596", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 14401.89, + "value": 14203.806328459963, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001597", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 11406.0, + "value": 11249.121815429387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001598", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 13741.56, + "value": 13552.558510786592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001599", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 9699.69, + "value": 9566.280412230606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001600", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 14189.44, + "value": 13994.278366888162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001601", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 10848.0, + "value": 10698.7965503926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001602", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 16073.0, + "value": 15851.931872645675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001603", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 11325.2, + "value": 11169.43313905847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001604", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 11179.289999999999, + "value": 11025.529985973311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@E14001605", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 8873.71, + "value": 8751.660945536902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000001", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 12816.739139865935, + "value": 12640.457641673995, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000002", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 12088.342774818913, + "value": 11922.07964409992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000003", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 12939.9770162108, + "value": 12762.00050361317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000004", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 13177.911529945934, + "value": 12996.662464782858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000005", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 12944.857724184852, + "value": 12766.814082303828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000006", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 12697.23574462243, + "value": 12522.597896763282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000007", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 12691.060909534042, + "value": 12516.507990389491, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000008", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 11701.37411759322, + "value": 11540.433355840672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000009", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 12200.549758141611, + "value": 12032.74333197813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000010", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 11962.615244406476, + "value": 11798.081370808439, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000011", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 11461.122500072424, + "value": 11303.486160343093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000012", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 11458.682146085397, + "value": 11301.079370997762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000013", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 12939.9770162108, + "value": 12762.000503613168, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000014", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 12565.333379121606, + "value": 12392.509717098013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000015", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 10968.170994692964, + "value": 10817.3147125864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000016", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 12693.501263521071, + "value": 12518.914779734823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000017", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 11337.884623727557, + "value": 11181.94329840392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@N05000018", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 13182.841538000535, + "value": 13001.524665480496, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000021", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 10773.133511467668, + "value": 10624.959775941114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000027", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 11520.919929234773, + "value": 11362.461135347194, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000045", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 10457.083430593215, + "value": 10313.256649557366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000048", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 11545.965407341804, + "value": 11387.16213781534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000051", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3116.3730616035673, + "value": 3073.5104499650324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000060", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 11418.352733177402, + "value": 11261.30464904907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000061", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 11511.378794717806, + "value": 11353.05122964504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000062", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 10917.443171036759, + "value": 10767.284599686149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000063", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5360.924956719493, + "value": 5287.190766396028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000064", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 11627.065050736002, + "value": 11467.14633628362, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000065", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 13992.62238436333, + "value": 13800.167781782144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000066", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 16037.263658512553, + "value": 15816.68704898882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000067", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 11898.834726317224, + "value": 11735.178090303687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000068", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 12452.766758252264, + "value": 12281.491338129883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000069", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 9690.994731538947, + "value": 9557.704738538141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000070", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 12824.620549632815, + "value": 12648.230650489088, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000071", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 13144.62543076455, + "value": 12963.834182786377, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000072", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 11882.45807741894, + "value": 11719.026685921317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000073", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 9251.613560614582, + "value": 9124.366818571965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000074", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 17102.6846496133, + "value": 16867.454234120138, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000075", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 11478.974716614566, + "value": 11321.092837404112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000076", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 10883.068848655765, + "value": 10733.383061917724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000077", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 11338.251294841379, + "value": 11182.304926321292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000078", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 11719.947995258653, + "value": 11558.75176829406, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000079", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 10716.435319600607, + "value": 10569.041411306083, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000080", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 13379.08449981718, + "value": 13195.068500558182, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000081", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 10369.405174949572, + "value": 10226.784321107452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000082", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 10520.362619993357, + "value": 10375.665496650461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000083", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 14247.437463907905, + "value": 14051.478133369486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000084", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 12768.43519374604, + "value": 12592.818068285545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000085", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 12589.169202590421, + "value": 12416.01770252426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000086", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 12763.652700069413, + "value": 12588.101353052345, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000087", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 12108.880417424569, + "value": 11942.334811860112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000088", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 10008.938727615017, + "value": 9871.275731203767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000089", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 12235.368684058067, + "value": 12067.083358202628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000090", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 15488.357797051036, + "value": 15275.330841660763, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000091", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 15091.887165107035, + "value": 14884.313268893942, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000092", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 10936.526148570776, + "value": 10786.105109845823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000093", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 12310.951137075906, + "value": 12141.626249760286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000094", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 14154.654701297683, + "value": 13959.971505368921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000095", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 11436.11355508073, + "value": 11278.821188513624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000096", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 10104.214111617797, + "value": 9965.240697069019, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000097", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 10735.43887427477, + "value": 10587.783590988343, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000098", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 12607.865339076448, + "value": 12434.456692249774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000099", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 13527.46863413483, + "value": 13341.411758704446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000100", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 11209.306475910707, + "value": 11055.133615114944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000101", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 9977.622338846712, + "value": 9840.390068212882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000102", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 12433.648709963898, + "value": 12262.6362395792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000103", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 12493.579563492935, + "value": 12321.74280383054, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000104", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 11909.43969733283, + "value": 11745.637200491627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000105", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 12443.368740753052, + "value": 12272.222581013264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000106", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 10769.04522979383, + "value": 10620.92772451513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000107", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 11647.49701243737, + "value": 11487.297276675245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000108", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 11951.396836371181, + "value": 11787.017260816836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000109", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 9522.581780896377, + "value": 9391.608140513052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000110", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 13184.192515606403, + "value": 13002.857061733197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@S14000111", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 11365.008250093051, + "value": 11208.693866268344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000081", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 10416.269999999999, + "value": 10273.004567105267, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000082", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 11674.5, + "value": 11513.928865003541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000083", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 9549.96, + "value": 9418.609799445734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000084", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 10739.67, + "value": 10591.956521787879, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000085", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 8751.34, + "value": 8630.974023166738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000086", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 10652.27, + "value": 10505.758621852008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000087", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 9224.269999999999, + "value": 9097.399341435283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000088", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 11400.81, + "value": 11244.00319871695, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000089", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 11184.52, + "value": 11030.68805252554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000090", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 11051.8, + "value": 10899.793484110338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000091", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 12747.04, + "value": 12571.717144147908, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000092", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 13149.82, + "value": 12968.957305888976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000093", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 8850.59, + "value": 8728.85893813968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000094", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 10232.71188118812, + "value": 10091.971107634294, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000095", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 10465.2, + "value": 10321.261583625428, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000096", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 9788.113267326733, + "value": 9653.487505468962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000097", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 9915.650000000001, + "value": 9779.270097243767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000098", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 10441.44, + "value": 10297.828378791604, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000099", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 11983.6, + "value": 11818.777501962093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000100", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 10492.699999999999, + "value": 10348.383348479392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000101", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 9340.48, + "value": 9212.01098847816, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000102", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 10179.663366336634, + "value": 10039.652222337785, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000103", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 10946.210000000001, + "value": 10795.655769531066, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000104", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 13942.01, + "value": 13750.251520422118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000105", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 11760.92, + "value": 11599.160243864615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000106", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 11549.56, + "value": 11390.707290427024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000107", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 11640.7, + "value": 11480.593750383034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000108", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 11175.800000000001, + "value": 11022.087987451847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000109", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 10712.09, + "value": 10564.75585725434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000110", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 10977.44, + "value": 10826.456231945222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000111", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 11282.851485148514, + "value": 11127.66708590514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/0_10@W07000112", + "metric": "age/0_10", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 7299.0, + "value": 7198.609515239269, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001063", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 12309.08, + "value": 12139.780848313658, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001064", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 10745.45, + "value": 10597.657023637183, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001065", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 13782.0, + "value": 13592.442298811839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001066", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 9350.0, + "value": 9221.400050347605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001067", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 10343.59, + "value": 10201.324208211228, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001068", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 10972.140000000001, + "value": 10821.229128173363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001069", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 12752.04, + "value": 12576.648374121356, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001070", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 11306.69, + "value": 11151.177725696765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001071", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 13141.067128712872, + "value": 12960.324821640013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001072", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 11181.98, + "value": 11028.182987699029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001073", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 19228.0, + "value": 18963.53798589131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001074", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 11451.6, + "value": 11294.094632787233, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001075", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 11796.4, + "value": 11634.1522517562, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001076", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 10229.11, + "value": 10088.418766739165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001077", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 13058.8, + "value": 12879.189195452333, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001078", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 12119.49, + "value": 11952.79847018046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001079", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 11064.0, + "value": 10911.825685245549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001080", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 13633.76, + "value": 13446.241192559055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001081", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 8333.78, + "value": 8219.157145624156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001082", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 11124.640000000001, + "value": 10971.631642363527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001083", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 12223.804646464647, + "value": 12055.678372443677, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001084", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 12922.039999999999, + "value": 12744.310193218585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001085", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 10269.41, + "value": 10128.164480325155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001086", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 15878.390000000001, + "value": 15659.998539619135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001087", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 9469.800000000001, + "value": 9339.552320511417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001088", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 9242.670000000002, + "value": 9115.546267737573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001089", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 12342.14, + "value": 12172.386140898096, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001090", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 11494.779999999999, + "value": 11336.68073483793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001091", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 12641.93, + "value": 12468.052827646085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001092", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 15652.36686868687, + "value": 15437.084131654361, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001093", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 16035.7, + "value": 15815.144897043752, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001094", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 17525.56, + "value": 17284.513354691975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001095", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 19518.3, + "value": 19249.8451981497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001096", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 23116.067676767678, + "value": 22798.129159185464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001097", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 13446.57, + "value": 13261.625804813111, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001098", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 17373.845454545455, + "value": 17134.885491901277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001099", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 12201.18, + "value": 12033.36490548665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001100", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 16276.980000000001, + "value": 16053.106330642457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001101", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 10122.03787878788, + "value": 9982.819316050793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001102", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 16288.2, + "value": 16064.172010702872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001103", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 14544.873636363634, + "value": 14344.823367129751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001104", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 10649.53, + "value": 10503.056307826559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001105", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 11840.28, + "value": 11677.428726003182, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001106", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 9905.29484848485, + "value": 9769.057370537546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001107", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 11004.65, + "value": 10853.291985460724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001108", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 10297.13, + "value": 10155.503219297949, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001109", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 10505.0, + "value": 10360.514174214073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001110", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 14077.16, + "value": 13883.542666604415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001111", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 15675.33, + "value": 15459.731427937466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001112", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 10920.15, + "value": 10769.954198909454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001113", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 11348.0, + "value": 11191.919547737392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001114", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 11938.19, + "value": 11773.992071343237, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001115", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 11777.0, + "value": 11615.019079459224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001116", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 11567.4, + "value": 11408.301918972285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001117", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 13249.31, + "value": 13067.078919900643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001118", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 19181.54, + "value": 18917.71699697803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001119", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 15487.46, + "value": 15274.445392915137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001120", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 19841.0, + "value": 19568.106780636026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001121", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 12165.12, + "value": 11997.800874918144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001122", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 16028.9, + "value": 15808.438424279862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001123", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 14943.300000000001, + "value": 14737.769772444852, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001124", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 13581.449999999999, + "value": 13394.650664576842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001125", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 10920.0, + "value": 10769.80626201025, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001126", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 10466.19, + "value": 10322.23796716017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001127", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 9257.140000000001, + "value": 9129.81724728073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001128", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 10128.86, + "value": 9989.547605771533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001129", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 11105.74, + "value": 10952.991593063894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001130", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 12825.26, + "value": 12648.861305852526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001131", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 10033.92, + "value": 9895.913411035704, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001132", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 11401.32, + "value": 11244.50618417424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001133", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 10754.127452745275, + "value": 10606.21512665132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001134", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 13425.84, + "value": 13241.180925343197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001135", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 10924.32, + "value": 10774.06684470731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001136", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 9795.060606060606, + "value": 9660.339290468995, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001137", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 11611.28696969697, + "value": 11451.585267054988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001138", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 11291.0, + "value": 11135.703526040086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001139", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 12655.929999999998, + "value": 12481.86027157174, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001140", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 10372.03, + "value": 10229.373044300199, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001141", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 13176.053267326733, + "value": 12994.829760717588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001142", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 12589.48, + "value": 12416.324225224616, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001143", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 12592.0, + "value": 12418.809565131234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001144", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 12165.96, + "value": 11998.629321553684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001145", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 12939.221818181819, + "value": 12761.255692581886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001146", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 11273.400000000001, + "value": 11118.345596533549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001147", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 11432.42, + "value": 11275.178434609086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001148", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 11186.05, + "value": 11032.197008897414, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001149", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 13635.66, + "value": 13448.115059948967, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001150", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 11042.0, + "value": 10890.12827336238, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001151", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 14911.199999999999, + "value": 14706.111276015316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001152", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 10805.1, + "value": 10656.486597220417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001153", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 13272.0, + "value": 13089.45684152015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001154", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 10000.96, + "value": 9863.406743050737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001155", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 9919.474747474747, + "value": 9783.042239121436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001156", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 11056.91801980198, + "value": 10904.841110640782, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001157", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 13118.039999999999, + "value": 12937.614408177742, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001158", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 11226.0, + "value": 11071.597536385263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001159", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 12148.599999999999, + "value": 11981.508091085872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001160", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 12146.251212121211, + "value": 11979.191608448044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001161", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 11763.16, + "value": 11601.36943489272, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001162", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 12924.48, + "value": 12746.716633445627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001163", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 9537.505050505051, + "value": 9406.326155392278, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001164", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 10096.465656565659, + "value": 9957.598814308814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001165", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 9496.0, + "value": 9365.391965572284, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001166", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 10549.18, + "value": 10404.08652225946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001167", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 12452.32, + "value": 12281.050724592993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001168", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 11264.245247524752, + "value": 11109.316758572462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001169", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 13686.41, + "value": 13498.16704417946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001170", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 11338.56, + "value": 11182.609385547523, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001171", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 8500.050000000001, + "value": 8383.140267161192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001172", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 15513.599999999999, + "value": 15300.225863216321, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001173", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 12321.264848484849, + "value": 12151.798106327738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001174", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 9520.29702970297, + "value": 9389.354813799693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001175", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 9740.64, + "value": 9606.667185713144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001176", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 13379.687128712872, + "value": 13195.662840892843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001177", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 10992.099999999999, + "value": 10840.91459822737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001178", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 9019.68, + "value": 8895.623273381741, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001179", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 14002.2, + "value": 13809.613666842484, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001180", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 16144.350000000002, + "value": 15922.300524366776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001181", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 12468.0, + "value": 12296.515061789725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001182", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 18055.649999999998, + "value": 17807.312494016976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001183", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 10427.897524752476, + "value": 10284.47216682055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001184", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 13774.0, + "value": 13584.552330854322, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001185", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 12210.3, + "value": 12042.359468958219, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001186", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 13338.0, + "value": 13154.549077169664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001187", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 11778.300000000001, + "value": 11616.30119925232, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001188", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 16077.64, + "value": 15856.508054061034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001189", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 15736.130303030304, + "value": 15519.695483277017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001190", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 11149.32, + "value": 10995.972193512467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001191", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 12848.93, + "value": 12672.20574854683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001192", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 11726.579589958996, + "value": 11565.292152005677, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001193", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 12721.0, + "value": 12546.03529844619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001194", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 16388.0, + "value": 16162.599360972892, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001195", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 9355.21, + "value": 9226.538391979937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001196", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 13675.029999999999, + "value": 13486.943564759891, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001197", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 11513.92, + "value": 11355.55748317629, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001198", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 12999.17, + "value": 12820.379346788992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001199", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 10361.77, + "value": 10219.254160394683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001200", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 11708.279999999999, + "value": 11547.244254704154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001201", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 11002.73613861386, + "value": 10851.404447334255, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001202", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 11304.97, + "value": 11149.4813825859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001203", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 10554.5, + "value": 10409.333350951207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001204", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12214.92, + "value": 12046.915925453686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001205", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 12352.13, + "value": 12182.238738385044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001206", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 12292.38, + "value": 12123.310540202341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001207", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 12828.456363636364, + "value": 12652.013706686463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001208", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 15440.88, + "value": 15228.506054482494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001209", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 14503.3, + "value": 14303.821534781435, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001210", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 12568.123535353536, + "value": 12395.261497506312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001211", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 10699.09, + "value": 10551.934659323373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001212", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 11344.833636363637, + "value": 11188.796734283298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001213", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 16939.260000000002, + "value": 16706.277328005475, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001214", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 10505.79, + "value": 10361.293308549879, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001215", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 11330.95, + "value": 11175.104053527935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001216", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 12415.02, + "value": 12244.263748991072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001217", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 12068.76, + "value": 11902.766210869855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001218", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 11321.0, + "value": 11165.290905880775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001219", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 10807.53, + "value": 10658.883174987513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001220", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 11144.59, + "value": 10991.307249957583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001221", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 17754.3, + "value": 17510.10726351727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001222", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 10157.920606060607, + "value": 10018.20851210206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001223", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 13053.915757575758, + "value": 12874.37213092433, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001224", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 12239.72091209121, + "value": 12071.37572566829, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001225", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 17666.46, + "value": 17423.475415343735, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001226", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 11094.0, + "value": 10941.413065086239, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001227", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 13540.621584158416, + "value": 13354.38380298356, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001228", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 10602.0, + "value": 10456.180035698962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001229", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 17879.28, + "value": 17633.368287933576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001230", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 12959.39, + "value": 12781.14648112024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001231", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 12421.068514851486, + "value": 12250.22907253717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001232", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 10518.743866386638, + "value": 10374.069007389444, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001233", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 10855.52, + "value": 10706.213120272667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001234", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 12424.18, + "value": 12253.297762302427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001235", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 11821.92, + "value": 11659.32124954068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001236", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 15384.24, + "value": 15172.645081343275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001237", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 12708.501679167915, + "value": 12533.708879585203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001238", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 15821.0, + "value": 15603.3978819839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001239", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 9900.800000000001, + "value": 9764.624344222628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001240", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 10081.0, + "value": 9942.34587246569, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001241", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 10556.94, + "value": 10411.73979117825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001242", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 9740.420000000002, + "value": 9606.450211594312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001243", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 10047.26, + "value": 9909.069932604863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001244", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 11448.68, + "value": 11291.21479448274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001245", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 11287.78, + "value": 11132.527813937186, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001246", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 12470.0, + "value": 12298.487553779105, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001247", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 10232.480000000001, + "value": 10091.742415741268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001248", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 13528.949999999999, + "value": 13342.87274985564, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001249", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 12224.335346534652, + "value": 12056.201773262103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001250", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 11021.252727272727, + "value": 10869.666358734376, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001251", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 14681.67, + "value": 14479.738232854217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001252", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 11287.0, + "value": 11131.758542061329, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001253", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 10989.6, + "value": 10838.448983240645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001254", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 13436.0, + "value": 13251.201184649242, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001255", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 12894.51, + "value": 12717.158840984779, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001256", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 10906.0, + "value": 10755.998818084596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001257", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 12165.56, + "value": 11998.234823155808, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001258", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 13778.80693069307, + "value": 13589.293146997112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001259", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 14133.186633663367, + "value": 13938.798709650851, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001260", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 13059.254455445543, + "value": 12879.637400315265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001261", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 10823.99, + "value": 10675.116784060103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001262", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 13520.58, + "value": 13334.617870880087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001263", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 11389.970000000001, + "value": 11233.312292134515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001264", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 11702.202424242425, + "value": 11541.250269955824, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001265", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 14702.530505050505, + "value": 14500.311822407479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001266", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 12559.84, + "value": 12387.091893942017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001267", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 12243.0, + "value": 12074.60971298457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001268", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 12155.56, + "value": 11988.372363208913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001269", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 11836.703535353536, + "value": 11673.901452070457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001270", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 13279.851485148514, + "value": 13097.200337300239, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001271", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 14017.4101010101, + "value": 13824.614568042522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001272", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 11108.0, + "value": 10955.220509011893, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001273", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 11576.01584158416, + "value": 11416.799258225543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001274", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 11278.929999999998, + "value": 11123.799536884182, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001275", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10916.0, + "value": 10765.861278031492, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001276", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 17544.0, + "value": 17302.69973083405, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001277", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 10441.44, + "value": 10297.828378791604, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001278", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 12084.12, + "value": 11917.914949348287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001279", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 16453.8, + "value": 16227.494347423468, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001280", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 10819.2, + "value": 10670.392665745541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001281", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 10549.44, + "value": 10404.342946218077, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001282", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 11065.810000000001, + "value": 10913.61079049594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001283", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 13143.12, + "value": 12962.349457724556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001284", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 12893.11, + "value": 12715.778096592216, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001285", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 9924.134554455446, + "value": 9787.637955092176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001286", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 11522.29, + "value": 11363.812362151839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001287", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 9804.0, + "value": 9669.155731936677, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001288", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 10607.529999999999, + "value": 10461.633976049596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001289", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 12184.539999999999, + "value": 12016.953772135017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001290", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 16466.52, + "value": 16240.039396475919, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001291", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 9725.962871287129, + "value": 9592.19192630653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001292", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 12477.626262626261, + "value": 12306.008924748707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001293", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 11496.113232323232, + "value": 11337.995629876708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001294", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 12434.199999999999, + "value": 12263.179947169217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001295", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 10708.52, + "value": 10561.234959053298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001296", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 10668.0, + "value": 10521.272271348476, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001297", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 13931.94, + "value": 13740.320023255594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001298", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 11681.74, + "value": 11521.069286005095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001299", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 11377.0, + "value": 11220.52068158339, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001300", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 15040.823535353536, + "value": 14833.951968575244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001301", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 18303.546464646468, + "value": 18051.799389372263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001302", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 13095.0, + "value": 12914.891300460094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001303", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 7004.0, + "value": 6907.666946805843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001304", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 7004.0, + "value": 6907.666946805843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001305", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 11803.0, + "value": 11640.661475321152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001306", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 12383.45, + "value": 12213.12796293872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001307", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 10465.6, + "value": 10321.656082023304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001308", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 12145.0, + "value": 11977.957605504991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001309", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 10109.380000000001, + "value": 9970.335533794982, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001310", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 14722.869999999999, + "value": 14520.371567835426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001311", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 12920.32, + "value": 12742.613850107718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001312", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 13299.39, + "value": 13116.470119314698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001313", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 11759.81, + "value": 11598.06551081051, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001314", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 13579.774848484849, + "value": 13392.998553104526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001315", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 10882.142424242425, + "value": 10732.469379550685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001316", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 9477.18, + "value": 9346.830815952228, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001317", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 10419.630000000001, + "value": 10276.318353647424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001318", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 11947.900000000001, + "value": 11783.568519951672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001319", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 12668.677777777779, + "value": 12494.432716346268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001320", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 14774.08782178218, + "value": 14570.884939424825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001321", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 10963.0, + "value": 10812.214839781904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001322", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 9721.5, + "value": 9587.790437374784, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001323", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 17558.23, + "value": 17316.734011338485, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001324", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 9784.104747474748, + "value": 9649.534118820307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001325", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 10612.247474747475, + "value": 10466.286566624343, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001326", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 15661.38, + "value": 15445.973296311548, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001327", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 15876.07, + "value": 15657.710448911454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001328", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 15349.55, + "value": 15138.432207787495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001329", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 12134.19, + "value": 11967.296286302395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001330", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 10855.897272727272, + "value": 10706.585203988845, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001331", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 13834.204444444445, + "value": 13643.928723050167, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001332", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 11303.640000000001, + "value": 11148.169675412964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001333", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 10723.96090909091, + "value": 10576.463493798574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001334", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 12666.21, + "value": 12491.998880397148, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001335", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 10296.55, + "value": 10154.93119662103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001336", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 14269.0, + "value": 14072.744098225665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001337", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 10037.050000000001, + "value": 9899.000360999084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001338", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 14216.76, + "value": 14021.222607463083, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001339", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 11450.96, + "value": 11293.463435350632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001340", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 12114.84, + "value": 11948.212426305154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001341", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 10994.6, + "value": 10843.380213214094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001342", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 12822.04, + "value": 12645.685593749628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001343", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 8975.550000000001, + "value": 8852.10023763609, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001344", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 10394.93, + "value": 10251.95807757859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001345", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 14677.0, + "value": 14475.132464059016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001346", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 15119.62, + "value": 14911.664666228518, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001347", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 9785.0, + "value": 9650.417058037574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001348", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 13086.209393939394, + "value": 12906.221600441928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001349", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 12992.62, + "value": 12813.919435523776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001350", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 12286.65, + "value": 12117.65935065277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001351", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 10694.4, + "value": 10547.309165608282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001352", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 15884.37090909091, + "value": 15665.897187254646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001353", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 15245.07, + "value": 15035.389226262327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001354", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 8663.26, + "value": 8544.10547595448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001355", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 11099.8, + "value": 10947.133291855436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001356", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 10990.48900990099, + "value": 10839.325765694737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001357", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 10925.619999999999, + "value": 10775.348964500407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001358", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 11920.77, + "value": 11756.811666115746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001359", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 11090.52, + "value": 10937.98092902472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001360", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 12005.959603960397, + "value": 11840.829571810878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001361", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 10392.19, + "value": 10249.255763553141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001362", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 9365.75, + "value": 9236.933424763965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001363", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 10954.965252525253, + "value": 10804.290602266592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001364", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 11652.660000000002, + "value": 11492.389252479523, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001365", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 10372.849999999999, + "value": 10230.181766015845, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001366", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 11151.07, + "value": 10997.698124003173, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001367", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 13991.24, + "value": 13798.804410740686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001368", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 9902.140000000001, + "value": 9765.945913855512, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001369", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 15444.0, + "value": 15231.583141985928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001370", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 11932.620000000003, + "value": 11768.498681152818, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001371", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 13365.9, + "value": 13182.065340421503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001372", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 10781.93, + "value": 10633.635277523459, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001373", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 9842.0, + "value": 9706.63307973488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001374", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 8420.0, + "value": 8304.191275286292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001375", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 11811.46, + "value": 11649.005116436227, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001376", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 12272.199999999999, + "value": 12103.408096029505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001377", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 18171.609207920792, + "value": 17921.67679837623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001378", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 12268.8, + "value": 12100.05485964756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001379", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 12318.298712871287, + "value": 12148.872766959157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001380", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 11353.45, + "value": 11197.294588408451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001381", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 9330.0, + "value": 9201.675130453814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001382", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 10745.92, + "value": 10598.120559254687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001383", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 11294.9, + "value": 11139.549885419376, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001384", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 11646.32, + "value": 11486.13645287319, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001385", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 10973.04, + "value": 10822.116749568586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001386", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 9881.18, + "value": 9745.274197806819, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001387", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 10398.0, + "value": 10254.985852782289, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001388", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 10604.580000000002, + "value": 10458.724550365263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001389", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 10430.242424242424, + "value": 10286.784814550461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001390", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 10662.4, + "value": 10515.749293778214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001391", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 9613.0, + "value": 9480.782746950965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001392", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 11762.62, + "value": 11600.836862055587, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001393", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 11764.0, + "value": 11602.19788152826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001394", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 10965.697029702971, + "value": 10814.874774524016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001395", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 9302.56, + "value": 9174.61254035953, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001396", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 7822.323232323232, + "value": 7714.734957046064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001397", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 8792.73, + "value": 8671.79474488694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001398", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 11379.480000000001, + "value": 11222.966571650222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001399", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 10399.48, + "value": 10256.445496854429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001400", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 10407.0, + "value": 10263.862066734495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001401", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 12433.07, + "value": 12262.06548919522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001402", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 12727.0, + "value": 12551.952774414329, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001403", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 11883.199999999999, + "value": 11719.758404095257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001404", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 11051.35, + "value": 10899.349673412726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001405", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 10636.22, + "value": 10489.92937363724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001406", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 14621.64, + "value": 14420.533885793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001407", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 12770.399603960397, + "value": 12594.755459991382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001408", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 10398.816161616163, + "value": 10255.790788907247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001409", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 12283.009999999998, + "value": 12114.069415232101, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001410", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 17664.575757575756, + "value": 17421.617088799805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001411", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 14992.98383838384, + "value": 14786.770259051716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001412", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 16693.470404040403, + "value": 16463.868323453953, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001413", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 10785.0, + "value": 10636.663052727157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001414", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 11496.68, + "value": 11338.55460222784, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001415", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 14191.0, + "value": 13995.816910639878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001416", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 15500.0, + "value": 15286.812917688543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001417", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 11788.797272727274, + "value": 11626.654092434757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001418", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 11119.57, + "value": 10966.631375170451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001419", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 14541.710000000001, + "value": 14341.703243437461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001420", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 12922.04, + "value": 12744.310193218585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001421", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 11683.44, + "value": 11522.745904196066, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001422", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 12515.76, + "value": 12343.6181704961, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001423", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 9596.0, + "value": 9464.016565041242, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001424", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 9996.19, + "value": 9858.702349656067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001425", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 15334.11, + "value": 15123.204569629488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001426", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 11843.9, + "value": 11680.998936503956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001427", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 12025.099999999999, + "value": 11859.706710741708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001428", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 10659.85, + "value": 10513.234366491755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001429", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 10123.789999999999, + "value": 9984.547338578457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001430", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 16132.71, + "value": 15910.820620988587, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001431", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 12454.0, + "value": 12282.707617864071, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001432", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 14020.0, + "value": 13827.16884554796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001433", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 14523.02, + "value": 14323.270305796714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001434", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 10942.22, + "value": 10791.720648012253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001435", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 16156.8, + "value": 15934.57928700066, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001436", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 10727.569306930694, + "value": 10580.022261715307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001437", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 10807.68, + "value": 10659.031111886716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001438", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 13142.55, + "value": 12961.787297507582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001439", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 11131.48, + "value": 10978.377564967204, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001440", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 10404.54, + "value": 10261.435901587558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001441", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 11070.5, + "value": 10918.236284211034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001442", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 13140.64, + "value": 12959.903567657728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001443", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 11010.140000000001, + "value": 10858.70647597157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001444", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 10135.356435643564, + "value": 9995.954689404756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001445", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 14773.36, + "value": 14570.167128107305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001446", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 13968.0, + "value": 13775.884053824102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001447", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 11943.36, + "value": 11779.090963135783, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001448", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 11968.343434343435, + "value": 11803.730775190585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001449", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 11948.75, + "value": 11784.40682904716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001450", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 11740.8, + "value": 11579.316974451462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001451", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 9990.01207920792, + "value": 9852.60940001937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001452", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 13341.418613861386, + "value": 13157.920671397846, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001453", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 12640.6, + "value": 12466.741120473149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001454", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 10582.324651465146, + "value": 10436.775302012344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001455", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 10695.418686868687, + "value": 10548.313841452366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001456", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 12984.650000000001, + "value": 12806.0590549461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001457", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 12104.73, + "value": 11938.241479298842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001458", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 10621.560000000001, + "value": 10475.471007355092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001459", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 12095.563636363637, + "value": 11929.201189876609, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001460", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 10430.06, + "value": 10286.604899372034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001461", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 9765.0, + "value": 9630.692138143782, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001462", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 13061.49, + "value": 12881.842197178046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001463", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 9297.84, + "value": 9169.957459264597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001464", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 11524.879603960397, + "value": 11366.366348685613, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001465", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 12243.98, + "value": 12075.576234059365, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001466", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 16006.82, + "value": 15786.662112717118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001467", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 11766.32, + "value": 11604.485972235938, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001468", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 12293.192277227723, + "value": 12124.11164536476, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001469", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 12383.172673267327, + "value": 12212.854450559402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001470", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 12406.49504950495, + "value": 12235.856050710403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001471", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 11277.03, + "value": 11121.925669494272, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001472", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 10343.0, + "value": 10200.74232307436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001473", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 11305.84, + "value": 11150.33941660128, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001474", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 13753.08, + "value": 13563.920064645417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001475", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 10354.21, + "value": 10211.798140674831, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001476", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 10272.0, + "value": 10130.7188574514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001477", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 18455.4, + "value": 18201.56433039414, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001478", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 15288.96, + "value": 15078.675562969252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001479", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 11051.66, + "value": 10899.655409671082, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001480", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 11899.52, + "value": 11735.853938728591, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001481", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 12846.741440144015, + "value": 12670.047290154724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001482", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 10389.425742574258, + "value": 10246.529525738712, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001483", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 11095.04, + "value": 10942.438760920717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001484", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 8969.38, + "value": 8846.015099848855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001485", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 9988.594747474748, + "value": 9851.21156227438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001486", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 9425.0, + "value": 9295.368499949323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001487", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 11318.0, + "value": 11162.332167896706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001488", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 11651.8, + "value": 11491.541080924088, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001489", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 9911.220000000001, + "value": 9774.901027487293, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001490", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 11868.471715171518, + "value": 11705.23269217452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001491", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 10583.09, + "value": 10437.530123939383, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001492", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 9886.4, + "value": 9750.422401899099, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001493", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 9405.16, + "value": 9275.801379414683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001494", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 10183.68, + "value": 10043.613611200417, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001495", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 10553.2, + "value": 10408.05123115811, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001496", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 12132.94, + "value": 11966.063478809032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001497", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 10712.78, + "value": 10565.436366990676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001498", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 10804.78, + "value": 10656.170998502117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001499", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 12372.0, + "value": 12201.835446299527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001500", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 12551.0, + "value": 12378.373479348962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001501", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 11373.29, + "value": 11216.861708943092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001502", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 11746.03, + "value": 11584.475041003687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001503", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 13908.593535353535, + "value": 13717.294666007856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001504", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 10243.39, + "value": 10102.502359543332, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001505", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 11148.0, + "value": 10994.670348799476, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001506", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 12344.39, + "value": 12174.605194386148, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001507", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 12476.16, + "value": 12304.562829106391, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001508", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 10703.28, + "value": 10556.067030041126, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001509", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 11062.0, + "value": 10909.853193256171, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001510", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 10126.800000000001, + "value": 9987.515939022473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001511", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 9474.15, + "value": 9343.842490588317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001512", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 12329.557647764776, + "value": 12159.976846402335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001513", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 10188.99, + "value": 10048.850577432218, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001514", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 9272.94, + "value": 9145.399933996825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001515", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 11014.0, + "value": 10862.51338551107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001516", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 11200.0, + "value": 11045.955140523334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001517", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 11921.789999999999, + "value": 11757.817637030328, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001518", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 11639.82, + "value": 11479.725853907707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001519", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 11243.9, + "value": 11089.251339690207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001520", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 12942.599999999999, + "value": 12764.587410869402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001521", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 11783.52, + "value": 11621.4494033446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001522", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 10506.1, + "value": 10361.59904480823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001523", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 9634.52, + "value": 9502.006760756685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001524", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 10705.38, + "value": 10558.138146629972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001525", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 14417.6, + "value": 14219.30025303654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001526", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 9744.14, + "value": 9610.119046694555, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001527", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 13512.460000000001, + "value": 13326.609553403208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001528", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 12841.0, + "value": 12664.384817808941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001529", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 10755.57, + "value": 10607.637833103443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001530", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 9473.009900990099, + "value": 9342.718072506252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001531", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 10557.0, + "value": 10411.798965937933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001532", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 11473.65, + "value": 11315.841356970139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001533", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 10732.489090909092, + "value": 10584.874378958739, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001534", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 11637.0, + "value": 11476.944640202682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001535", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 10560.0, + "value": 10414.757703922001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001536", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 11848.32, + "value": 11685.358143800486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001537", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 12613.92, + "value": 12440.42807733483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001538", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 11475.45, + "value": 11317.61659976058, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001539", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 10538.43, + "value": 10393.484377816543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001540", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 11742.72, + "value": 11581.210566761265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001541", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 12590.86, + "value": 12417.685244697288, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001542", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 10306.14, + "value": 10164.389295710103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001543", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 12786.66, + "value": 12610.792210457508, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001544", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 9946.58415841584, + "value": 9809.778787080484, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001545", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 10357.673838383838, + "value": 10215.214337407144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001546", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 15930.720000000001, + "value": 15711.608792521241, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001547", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 14075.57, + "value": 13881.97453547286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001548", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 9552.33, + "value": 9420.947202453148, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001549", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 12592.62, + "value": 12419.421037647942, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001550", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 9812.0, + "value": 9677.045699894192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001551", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 10298.7, + "value": 10157.051625509612, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001552", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 9768.720000000001, + "value": 9634.360973244027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001553", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 16750.381638163817, + "value": 16519.996800161007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001554", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 10068.48, + "value": 9929.998072612178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001555", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 13680.0, + "value": 13491.8452073535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001556", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 13090.35, + "value": 12910.305256584788, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001557", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 10734.88, + "value": 10587.232403473316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001558", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 13590.813762376238, + "value": 13403.885637715632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001559", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 9867.71, + "value": 9731.989464258348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001560", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 11408.807821782179, + "value": 11251.891018415865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001561", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 11273.68, + "value": 11118.621745412062, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001562", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 15845.84, + "value": 15627.896232491988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001563", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 13687.0, + "value": 13498.748929316329, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001564", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 10703.0, + "value": 10555.790881162611, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001565", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 11798.73, + "value": 11636.450204923829, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001566", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 10996.88, + "value": 10845.628854081986, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001567", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 10821.99, + "value": 10673.144292070725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001568", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 12957.640000000001, + "value": 12779.420550629535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001569", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 9769.662079207921, + "value": 9635.290095089518, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001570", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 10960.61, + "value": 10809.857711854595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001571", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 13464.389090909091, + "value": 13279.199811851213, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001572", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 10037.83, + "value": 9899.76963287494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001573", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 14145.0, + "value": 13950.449594884158, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001574", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 13696.86, + "value": 13508.473314823968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001575", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 9727.62, + "value": 9593.826262862287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001576", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 15649.04, + "value": 15433.80302073708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001577", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 12202.0, + "value": 12034.173627202297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001578", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 12152.12, + "value": 11984.979676987181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001579", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 10349.0, + "value": 10206.659799042498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001580", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 9466.08, + "value": 9335.883485411172, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001581", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 10490.699999999999, + "value": 10346.410856490013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001582", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 9852.830623062307, + "value": 9717.314738350071, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001583", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 9781.1, + "value": 9646.570698658285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001584", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 10638.66, + "value": 10492.335813864283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001585", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 11964.0, + "value": 11799.447080466176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001586", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 11011.35, + "value": 10859.899833625144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001587", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 13786.94, + "value": 13597.314354025606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001588", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 14634.2, + "value": 14432.9211354863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001589", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 9591.53, + "value": 9459.60804544498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001590", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 11465.88, + "value": 11308.1782255914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001591", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 10483.37, + "value": 10339.181673348938, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001592", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 12128.130000000001, + "value": 11961.319635574577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001593", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 12466.48707070707, + "value": 12295.022941334326, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001594", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 13094.16, + "value": 12914.062853824555, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001595", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 15583.48, + "value": 15369.144733325229, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001596", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 12976.09, + "value": 12797.616789231557, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001597", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 11743.0, + "value": 11581.486715639778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001598", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 11906.32, + "value": 11742.560411492479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001599", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 9404.48, + "value": 9275.130732138294, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001600", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 14066.18, + "value": 13872.713685582725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001601", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 10358.0, + "value": 10215.536012994706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001602", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 12622.0, + "value": 12448.396944971922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001603", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 10764.92, + "value": 10616.85923315379, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001604", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 12525.36, + "value": 12353.08613204512, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@E14001605", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 11966.64, + "value": 11802.050769892156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000001", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 13364.463034732002, + "value": 13180.648139181432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000002", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 12604.938619896646, + "value": 12431.570227181113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000003", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 13492.96748698904, + "value": 13307.385140519717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000004", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 13741.070142336788, + "value": 13552.075390628283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000005", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 13498.056772226942, + "value": 13312.404427701429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000006", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 13239.852656785783, + "value": 13057.751653035219, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000007", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 13233.413939856011, + "value": 13051.401494252292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000008", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 12201.43284056729, + "value": 12033.614268483438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000009", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 12721.94077344681, + "value": 12546.963132490018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000010", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 12473.838118099062, + "value": 12302.27288238145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000011", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 11950.91405990458, + "value": 11786.54112446032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000012", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 11948.369417285629, + "value": 11784.031480869464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000013", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 13492.96748698904, + "value": 13307.385140519717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000014", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 13102.313438058427, + "value": 12922.10414945263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000015", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 11436.896250876425, + "value": 11279.593119107189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000016", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 13235.958582474965, + "value": 13053.91113784315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000017", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 11822.40960764754, + "value": 11659.804123122038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@N05000018", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 13746.210834496285, + "value": 13557.14537768052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000021", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 10451.386607881846, + "value": 10307.638180975822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000027", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 11176.839879568097, + "value": 11023.11356451084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000045", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 10144.775575988931, + "value": 10005.244278843795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000048", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 11201.137357567159, + "value": 11047.076854868474, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000051", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3023.300476740315, + "value": 2981.7179859282437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000060", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 11077.335922048134, + "value": 10924.978184951016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000061", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 11167.583697473217, + "value": 11013.984691993648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000062", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 10591.386362066914, + "value": 10445.712377798372, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000063", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5200.817314560933, + "value": 5129.285245597955, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000064", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 11279.814905373643, + "value": 11124.672271264619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000065", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 13574.72327261258, + "value": 13388.016456633628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000066", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 15558.299955090213, + "value": 15344.311014886847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000067", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 11543.46799616422, + "value": 11384.699076044351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000068", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 12080.856474092212, + "value": 11914.696309993167, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000069", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 9401.566632999176, + "value": 9272.25743560267, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000070", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 12441.60460101256, + "value": 12270.482705260129, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000071", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 12752.052320383802, + "value": 12576.660525050534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000072", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 11527.580446938608, + "value": 11369.03004425516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000073", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 8975.307877302315, + "value": 8851.861445095275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000074", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 16591.901429191836, + "value": 16363.696328824824, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000075", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 11136.147389033478, + "value": 10982.98075870713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000076", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 10558.038652024583, + "value": 10412.823332337053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000077", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 10999.62676723203, + "value": 10848.337842262921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000078", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 11369.923838067307, + "value": 11213.541845219497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000079", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 10396.38174578302, + "value": 10253.3898560424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000080", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 12979.509111092346, + "value": 12800.988873851782, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000081", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 10059.71589062803, + "value": 9921.354504847048, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000082", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 10206.164889687703, + "value": 10065.789243595951, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000083", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 13821.928127820554, + "value": 13631.821254950315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000084", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 12387.09725870133, + "value": 12216.725057224503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000085", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 12213.185167366148, + "value": 12045.204953717091, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000086", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 12382.457597426273, + "value": 12212.149209875264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000087", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 11747.240530937484, + "value": 11585.66892229223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000088", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 9710.015017037924, + "value": 9576.463418929357, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000089", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 11869.951140115432, + "value": 11706.6917690999, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000090", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 15025.787537662169, + "value": 14819.12277607597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000091", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 14641.157768736795, + "value": 14439.783207034943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000092", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 10609.899413596928, + "value": 10463.97080071933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000093", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 11943.276272159943, + "value": 11779.008386888881, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000094", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 13731.916385038889, + "value": 13543.047534156867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000095", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 11094.566305017754, + "value": 10941.97158114177, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000096", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 9802.444937391874, + "value": 9667.622057667919, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000097", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 10414.817746470499, + "value": 10271.572287878522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000098", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 12231.322931117165, + "value": 12063.093250569162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000099", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 13123.461653087561, + "value": 12942.961491819946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000100", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 10874.532972349303, + "value": 10724.964588099312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000101", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 9679.633913357004, + "value": 9546.500177109803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000102", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 12062.309399219597, + "value": 11896.404331686843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000103", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 12120.450377357995, + "value": 11953.745638503173, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000104", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 11553.756242562678, + "value": 11394.845817847212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000105", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 12071.739134728754, + "value": 11905.704370563732, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000106", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 10447.420425499557, + "value": 10303.72654948708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000107", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 11299.636652748362, + "value": 11144.221390220682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000108", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 11594.460303324913, + "value": 11434.990034741568, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000109", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 9238.183448796919, + "value": 9111.121424583562, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000110", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 12790.437707531268, + "value": 12614.517959379331, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@S14000111", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 11025.584607955658, + "value": 10873.938658707388, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000081", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 10708.93, + "value": 10561.63931991112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000082", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 12137.25, + "value": 11970.314199046146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000083", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 10368.62, + "value": 10226.009945458309, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000084", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 10677.6, + "value": 10530.740232897497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000085", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 9640.24, + "value": 9507.64808784631, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000086", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 10309.03, + "value": 10167.239546634757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000087", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 10165.89, + "value": 10026.068294954888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000088", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 11748.39, + "value": 11586.802581551156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000089", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 13133.85, + "value": 12953.206957353786, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000090", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 11728.72, + "value": 11567.40312283561, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000091", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 12937.95, + "value": 12760.001366994096, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000092", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 12456.96, + "value": 12285.626906008352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000093", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 10555.55, + "value": 10410.368909245632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000094", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 11111.754752475246, + "value": 10958.923618601657, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000095", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 11080.1, + "value": 10927.704245760053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000096", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 11240.869306930692, + "value": 11086.26233078947, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000097", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 11138.230000000001, + "value": 10985.03472543136, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000098", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 11098.72, + "value": 10946.068146181173, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000099", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 11611.609999999999, + "value": 11451.903854397515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000100", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 11212.84, + "value": 11058.618539095149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000101", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 10300.57, + "value": 10158.895905519683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000102", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 10773.465346534653, + "value": 10625.287046946827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000103", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 11603.77, + "value": 11444.171685799147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000104", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 12746.140000000001, + "value": 12570.829522752687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000105", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 11874.05, + "value": 11710.734253243849, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000106", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 11938.5, + "value": 11774.297807601592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000107", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 11621.88, + "value": 11462.032600762976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000108", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 11945.44, + "value": 11781.142354804737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000109", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 10640.94, + "value": 10494.584454732176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000110", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 10980.2, + "value": 10829.178270890565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000111", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 11456.940594059406, + "value": 11299.361772287586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/10_20@W07000112", + "metric": "age/10_20", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 7313.0, + "value": 7212.416959164923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001063", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 12863.4, + "value": 12686.476728089987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001064", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 10265.8, + "value": 10124.604132284325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001065", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 8634.0, + "value": 8515.247918149864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001066", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 10624.0, + "value": 10477.877447582134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001067", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 7475.99, + "value": 7373.165193839379, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001068", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 11007.35, + "value": 10855.954849646387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001069", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 11022.0, + "value": 10870.40335346859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001070", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 12324.619999999999, + "value": 12155.107111071133, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001071", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 11958.141287128714, + "value": 11793.668948362834, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001072", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 9528.46, + "value": 9397.405510559907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001073", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 17487.36, + "value": 17246.838757694833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001074", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 13167.66, + "value": 12986.551934434241, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001075", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 12664.74, + "value": 12490.549098784955, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001076", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 10422.73, + "value": 10279.375716230961, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001077", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 11934.8, + "value": 11770.64869742124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001078", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 12413.9, + "value": 12243.15915347702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001079", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 11181.119999999999, + "value": 11027.334816143593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001080", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 26490.31, + "value": 26125.962135585418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001081", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 23551.71, + "value": 23227.77965559061, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001082", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 7930.400000000001, + "value": 7821.325236286273, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001083", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 11308.633636363636, + "value": 11153.094629275536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001084", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 12582.749999999998, + "value": 12409.686789680354, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001085", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 25310.370000000003, + "value": 24962.25103661139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001086", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 30349.850000000002, + "value": 29932.418001929655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001087", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 7362.900000000001, + "value": 7261.630634299933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001088", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 7935.56, + "value": 7826.414265618871, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001089", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 11903.88, + "value": 11740.153971265438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001090", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 10498.77, + "value": 10354.369861667157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001091", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 12350.36, + "value": 12180.493082974444, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001092", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 23193.784242424244, + "value": 22874.776810785283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001093", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 17873.65, + "value": 17627.815722983472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001094", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 18994.72, + "value": 18733.466520250127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001095", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 17390.93, + "value": 17151.735056426918, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001096", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 37331.93121212121, + "value": 36818.467631981584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001097", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 14630.22, + "value": 14428.995876427438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001098", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 22445.804545454546, + "value": 22137.08483053979, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001099", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 27582.21, + "value": 27202.84413718697, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001100", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 16179.880000000001, + "value": 15957.3418445581, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001101", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 9852.467171717171, + "value": 9716.956285916669, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001102", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 14533.859999999999, + "value": 14333.961212379147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001103", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 18592.981818181815, + "value": 18337.253847518063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001104", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 13056.67, + "value": 12877.088491483642, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001105", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 12481.9, + "value": 12310.223881115911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001106", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 9056.333131313131, + "value": 8931.77227733215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001107", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 10651.619999999999, + "value": 10505.11756195546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001108", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 10364.04, + "value": 10221.492938802628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001109", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 11872.0, + "value": 11708.712448954735, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001110", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 13870.8, + "value": 13680.020943140275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001111", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 14807.4, + "value": 14603.738941766538, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001112", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 10724.86, + "value": 10577.350218606525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001113", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 12209.0, + "value": 12041.077349165123, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001114", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 12018.93, + "value": 11853.621572954475, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001115", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 12966.0, + "value": 12787.665567145139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001116", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 18504.9, + "value": 18250.38350713127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001117", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 10689.65, + "value": 10542.624497133505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001118", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 15435.98, + "value": 15223.673449108515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001119", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 12400.02, + "value": 12229.470059070729, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001120", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 19238.0, + "value": 18973.400445838204, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001121", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 10180.435841584158, + "value": 10040.414072956657, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001122", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 20249.96, + "value": 19971.441942624275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001123", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 16385.22, + "value": 16159.857597107655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001124", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 15007.82, + "value": 14801.402364022224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001125", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 10125.0, + "value": 9985.740696232033, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001126", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 9464.7, + "value": 9334.5224659385, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001127", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 7745.610000000001, + "value": 7639.0768389275845, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001128", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 8988.35, + "value": 8864.724186368117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001129", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 19504.04, + "value": 19235.781330265425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001130", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 30185.96, + "value": 29770.782145859976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001131", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 34493.61, + "value": 34019.18470488456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001132", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 24450.0, + "value": 24113.714570160315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001133", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 13913.281728172817, + "value": 13721.918377398206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001134", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 18819.07, + "value": 18560.232411282897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001135", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 16732.32, + "value": 16502.18358186441, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001136", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 8332.424242424242, + "value": 8217.820035145296, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001137", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 9583.217474747475, + "value": 9451.40985070892, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001138", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 9596.0, + "value": 9464.016565041242, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001139", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 11817.439999999999, + "value": 11654.90286748447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001140", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 12403.31, + "value": 12232.714808393257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001141", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 9525.032673267327, + "value": 9394.025323297315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001142", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 12160.64, + "value": 11993.382492861934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001143", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 12967.0, + "value": 12788.651813139828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001144", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 11442.14, + "value": 11284.76474567747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001145", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 12506.950909090909, + "value": 12334.930239870153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001146", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 11226.36, + "value": 11071.952584943352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001147", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 9889.15, + "value": 9753.134578384494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001148", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 11036.710000000001, + "value": 10884.911032050473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001149", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 28628.190000000002, + "value": 28234.437722712388, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001150", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 11960.0, + "value": 11795.502096487418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001151", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 26448.0, + "value": 26084.234067550104, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001152", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 11211.7, + "value": 11057.494218661204, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001153", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 10475.0, + "value": 10330.926794373387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001154", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 9763.16, + "value": 9628.877445513554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001155", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 7596.373737373738, + "value": 7491.8931726499895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001156", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 8271.968712871287, + "value": 8158.196011266856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001157", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 12818.1, + "value": 12641.799784530549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001158", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 8350.0, + "value": 8235.154055658022, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001159", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 13318.05, + "value": 13134.873469575605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001160", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 20294.68181818182, + "value": 20015.548656681334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001161", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 13141.199999999999, + "value": 12960.455865414753, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001162", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 8040.16, + "value": 7929.575596663401, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001163", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 12491.161616161615, + "value": 12319.358112959657, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001164", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 9776.873232323234, + "value": 9642.40206596659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001165", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 11103.0, + "value": 10950.289279038445, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001166", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 9970.09, + "value": 9832.96132919467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001167", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 11957.92, + "value": 11793.450704818464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001168", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 8297.21920792079, + "value": 8183.099210873358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001169", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 12219.529999999999, + "value": 12051.462519489205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001170", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 10630.08, + "value": 10483.873823229846, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001171", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 6996.88, + "value": 6900.644875323653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001172", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 30947.75, + "value": 30522.094482154553, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001173", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 22706.239797979797, + "value": 22393.93805521879, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001174", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 9333.326732673268, + "value": 9204.956107228227, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001175", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 22256.64, + "value": 21950.52205524797, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001176", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 20298.37584158416, + "value": 20019.19187246618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001177", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 9047.88, + "value": 8923.435410431988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001178", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 7291.94, + "value": 7191.646618516761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001179", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 11582.1, + "value": 11422.799735094224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001180", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 24853.68, + "value": 24511.842353296608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001181", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 20253.0, + "value": 19974.440130448133, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001182", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 36459.32, + "value": 35957.85831910582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001183", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 10460.32118811881, + "value": 10316.449874948763, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001184", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 12735.0, + "value": 12559.842742371844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001185", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 12512.35, + "value": 12340.25507165421, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001186", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 12790.480000000001, + "value": 12614.559670157225, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001187", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 10124.220000000001, + "value": 9984.971424356176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001188", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 14515.71, + "value": 14316.060847575533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001189", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 14940.42787878788, + "value": 14734.937154403135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001190", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 10964.14, + "value": 10813.33916021585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001191", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 11481.0, + "value": 11323.090265031107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001192", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 9602.968280828083, + "value": 9470.889004097813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001193", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 16196.0, + "value": 15973.240129992493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001194", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 16391.0, + "value": 16165.55809895696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001195", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 8131.84, + "value": 8019.994629456542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001196", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 11604.789999999999, + "value": 11445.17765671373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001197", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 10430.810000000001, + "value": 10287.344583868055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001198", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 14577.43, + "value": 14376.931950367774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001199", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 9861.240000000002, + "value": 9725.608452672708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001200", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 11095.869999999999, + "value": 10943.257345096308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001201", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 8893.588712871287, + "value": 8771.266246485795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001202", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 11192.23, + "value": 11038.292009144596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001203", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 9660.55, + "value": 9527.678743998455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001204", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12317.52, + "value": 12148.104764508837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001205", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 14008.03, + "value": 13815.363480991526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001206", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 11526.279999999999, + "value": 11367.747483670651, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001207", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 20169.434545454544, + "value": 19892.024035608265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001208", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 12573.4, + "value": 12400.465389630008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001209", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 12160.619999999999, + "value": 11993.362767942042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001210", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 12738.158484848485, + "value": 12562.95778540295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001211", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 11088.88, + "value": 10936.363485593427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001212", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 8815.378484848485, + "value": 8694.131722354547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001213", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 18377.58, + "value": 18124.814667087394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001214", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 8217.36, + "value": 8104.338386922395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001215", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 9254.36, + "value": 9127.075483415494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001216", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 10664.18, + "value": 10517.504811648761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001217", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 11543.400000000001, + "value": 11384.632015099736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001218", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 9063.0, + "value": 8938.347449871695, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001219", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 10547.130000000001, + "value": 10402.064717970346, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001220", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 10682.78, + "value": 10535.848987149988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001221", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 16396.76, + "value": 16171.238875886374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001222", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 9598.558383838385, + "value": 9466.539760854728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001223", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 12031.019797979798, + "value": 11865.545087788656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001224", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 10078.776212621262, + "value": 9940.15267107037, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001225", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 15866.63, + "value": 15648.400286721586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001226", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 11322.0, + "value": 11166.277151875463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001227", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 9999.89386138614, + "value": 9862.355268113031, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001228", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 11512.0, + "value": 11353.663890866485, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001229", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 18136.12, + "value": 17886.67570920965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001230", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 8228.22, + "value": 8115.049018424724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001231", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 25577.440792079207, + "value": 25225.648535598084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001232", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 10975.165668566857, + "value": 10824.213181678686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001233", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 9702.0, + "value": 9568.558640478339, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001234", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 8534.26, + "value": 8416.879742639523, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001235", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 9567.84, + "value": 9436.243877830784, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001236", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 15806.52, + "value": 15589.117039980794, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001237", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 16664.64113011301, + "value": 16435.435567513246, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001238", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 17210.0, + "value": 16973.29356860773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001239", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 9184.0, + "value": 9057.683215229135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001240", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 9041.0, + "value": 8916.650037988524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001241", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 8548.29, + "value": 8430.71677394502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001242", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 8349.94, + "value": 8235.094880898341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001243", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 9034.58, + "value": 8910.318338702617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001244", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 14643.76, + "value": 14442.349647195535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001245", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 11452.16, + "value": 11294.64693054426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001246", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 12879.0, + "value": 12701.862165607145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001247", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 7588.13, + "value": 7483.762819683869, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001248", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 14347.849999999999, + "value": 14150.509594906938, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001249", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 11670.261782178217, + "value": 11509.748939652187, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001250", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 9098.839090909092, + "value": 8973.693609734102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001251", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 21628.500000000004, + "value": 21331.021496143658, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001252", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 10947.0, + "value": 10796.43490386687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001253", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 9132.54, + "value": 9006.93099634241, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001254", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 11556.0, + "value": 11397.058714632825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001255", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 12449.74, + "value": 12278.506209926692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001256", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 10507.0, + "value": 10362.486666203453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001257", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 19246.8, + "value": 18982.079410591472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001258", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 19562.685643564357, + "value": 19293.62036133676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001259", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 18250.402772277226, + "value": 17999.386635630086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001260", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 21049.585742574258, + "value": 20760.06962848882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001261", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 10424.99, + "value": 10281.604632178958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001262", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 13188.85, + "value": 13007.450487061711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001263", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 10777.74, + "value": 10629.50290680571, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001264", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 19078.183636363636, + "value": 18815.782197315988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001265", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 22794.233838383836, + "value": 22480.72182512383, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001266", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 10490.76, + "value": 10346.470031249693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001267", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 11691.415841584158, + "value": 11530.612046012722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001268", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 8685.199999999999, + "value": 8565.743713077969, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001269", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 8051.667676767676, + "value": 7940.924996783705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001270", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 13872.191287128713, + "value": 13681.39309449843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001271", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 14513.925252525252, + "value": 14314.300647527032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001272", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 11284.0, + "value": 11128.79980407726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001273", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 12373.297425742574, + "value": 12203.115027241547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001274", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 10921.439999999999, + "value": 10771.226456242603, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001275", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10434.0, + "value": 10290.490708591113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001276", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 15852.0, + "value": 15633.971507819277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001277", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 9141.8, + "value": 9016.063634253234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001278", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 11015.19, + "value": 10863.687018244751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001279", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 17489.7, + "value": 17249.146573322407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001280", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 7741.8, + "value": 7635.319241687818, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001281", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 11147.4, + "value": 10994.078601202662, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001282", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 11203.59, + "value": 11049.49576364427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001283", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 11180.76, + "value": 11026.979767585506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001284", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 10835.210000000001, + "value": 10686.182464120522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001285", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 7862.248613861386, + "value": 7754.111204674521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001286", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 12055.9, + "value": 11890.083087378149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001287", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 9807.0, + "value": 9672.114469920745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001288", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 10138.43, + "value": 9998.985979940713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001289", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 9081.76, + "value": 8956.849424732072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001290", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 31781.399999999998, + "value": 31344.278455627526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001291", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 7892.879801980198, + "value": 7784.321091269282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001292", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 12279.949494949495, + "value": 12111.051004384311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001293", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 13234.77, + "value": 13052.738903137859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001294", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 9611.8, + "value": 9479.599251757338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001295", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 11729.0, + "value": 11567.679271714123, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001296", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 15399.0, + "value": 15187.202072224894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001297", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 19036.68, + "value": 18774.849402187298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001298", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 11137.15, + "value": 10983.969579757093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001299", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 11172.0, + "value": 11018.340252672026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001300", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 15164.537272727275, + "value": 14955.964146548173, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001301", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 17935.272727272728, + "value": 17688.59089093805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001302", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 14506.0, + "value": 14306.484398967097, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001303", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 6691.5, + "value": 6599.465073465347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001304", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 6691.5, + "value": 6599.465073465347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001305", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 27563.0, + "value": 27183.898351628988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001306", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 37511.16, + "value": 36995.231306160116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001307", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 11334.800000000001, + "value": 11178.90110060749, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001308", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 9812.0, + "value": 9677.045699894192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001309", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 11099.6, + "value": 10946.9360426565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001310", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 20818.97, + "value": 20532.625776062596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001311", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 11340.76, + "value": 11184.779126735839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001312", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 16447.14, + "value": 16220.925949098833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001313", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 14094.57, + "value": 13900.713209371961, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001314", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 18935.63505050505, + "value": 18675.194225464293, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001315", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 13434.88585858586, + "value": 13250.10236714203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001316", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 10138.86, + "value": 9999.41006571843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001317", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 11879.130000000001, + "value": 11715.744382896872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001318", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 17153.74, + "value": 16917.807368946495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001319", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 29544.731111111116, + "value": 29138.372722514065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001320", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 14467.066435643565, + "value": 14268.086327061574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001321", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 12321.0, + "value": 12151.536900570358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001322", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 17559.5, + "value": 17317.98654375174, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001323", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 38026.17, + "value": 37503.1578558852, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001324", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 13183.212626262626, + "value": 13001.89064979266, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001325", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 15458.626262626263, + "value": 15246.008234918356, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001326", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 15594.74, + "value": 15380.249863225434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001327", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 31809.72, + "value": 31372.208942197136, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001328", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 24134.54, + "value": 23802.593408675537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001329", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 12097.64, + "value": 11931.248995196493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001330", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 8435.820303030305, + "value": 8319.793985784703, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001331", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 14643.22, + "value": 14441.817074358401, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001332", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 21024.940000000002, + "value": 20735.76286358881, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001333", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 13532.246363636365, + "value": 13346.123775289045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001334", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 16965.27, + "value": 16731.929586327347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001335", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 8998.69, + "value": 8874.921969953208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001336", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 23912.0, + "value": 23583.114225017318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001337", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 11382.2, + "value": 11225.649160755775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001338", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 37546.54, + "value": 37030.124689452234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001339", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 13101.14, + "value": 12920.94685086749, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001340", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 27098.72, + "value": 26726.00406121451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001341", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 12854.07, + "value": 12677.275052959534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001342", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 22071.72, + "value": 21768.145445909973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001343", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 7997.490000000001, + "value": 7887.492480069996, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001344", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 9703.33, + "value": 9569.870347651276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001345", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 11424.44, + "value": 11267.308191571463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001346", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 16691.28, + "value": 16461.708046242347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001347", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 7927.0, + "value": 7817.971999904327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001348", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 8921.284545454544, + "value": 8798.581150440627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001349", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 11829.75, + "value": 11667.0435556791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001350", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 11495.84, + "value": 11337.7261555923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001351", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 9335.95, + "value": 9207.543294122217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001352", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 36497.772121212125, + "value": 35995.781569638595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001353", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 34253.1, + "value": 33781.982680701774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001354", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 21697.54, + "value": 21399.111919617026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001355", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 11834.15, + "value": 11671.383038055732, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001356", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 9261.053168316832, + "value": 9133.676593859753, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001357", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 10346.25, + "value": 10203.947622557103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001358", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 10891.53, + "value": 10741.72783854144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001359", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 9910.35, + "value": 9774.042993471912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001360", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 9494.47603960396, + "value": 9363.888965735625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001361", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 8478.8, + "value": 8362.18253977404, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001362", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 8259.8, + "value": 8146.194666937021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001363", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 8281.523434343433, + "value": 8167.619317049135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001364", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 10806.61, + "value": 10657.975828672399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001365", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 9336.25, + "value": 9207.839167920623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001366", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 8552.33, + "value": 8434.701207763565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001367", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 18124.989999999998, + "value": 17875.69879128875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001368", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 10162.51, + "value": 10022.734783492839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001369", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 12327.039999999999, + "value": 12157.493826378282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001370", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 9970.66, + "value": 9833.523489411644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001371", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 14266.9, + "value": 14070.672981636817, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001372", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 11100.509999999998, + "value": 10947.833526511668, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001373", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 8837.0, + "value": 8715.455855071848, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001374", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 6604.0, + "value": 6513.168548930009, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001375", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 10733.640000000001, + "value": 10586.0094584399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001376", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 9279.4, + "value": 9151.771083122521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001377", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 26116.381980198017, + "value": 25757.17712375351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001378", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 30508.5, + "value": 30088.885928987154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001379", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 20693.298217821783, + "value": 20408.68248424383, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001380", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 15872.0, + "value": 15653.696427713068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001381", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 8525.0, + "value": 8407.747104728698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001382", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 11687.689999999999, + "value": 11526.937449673496, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001383", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 11690.849999999999, + "value": 11530.053987016718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001384", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 9644.1, + "value": 9511.454997385812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001385", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 9012.16, + "value": 8888.206703501675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001386", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 8262.67, + "value": 8149.025192941781, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001387", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 9107.0, + "value": 8981.742273638036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001388", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 7650.76, + "value": 7545.531406331277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001389", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 10706.9898989899, + "value": 10559.725903060615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001390", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 10889.35, + "value": 10739.577822273015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001391", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 9396.0, + "value": 9266.767366103326, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001392", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 8467.26, + "value": 8350.801260995322, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001393", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 9231.0, + "value": 9104.036776979545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001394", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 10814.001485148516, + "value": 10665.26565129493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001395", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 7964.6, + "value": 7855.054849304656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001396", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 6980.595959595959, + "value": 6884.584805697804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001397", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 8410.97, + "value": 8295.285473954245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001398", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 10066.640000000001, + "value": 9928.183379981949, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001399", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 7292.740000000001, + "value": 7192.435615312513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001400", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 10104.0, + "value": 9965.02953034355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001401", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 11043.050000000001, + "value": 10891.163831656804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001402", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 9440.168316831683, + "value": 9310.328191670755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001403", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 10100.18, + "value": 9961.262070643837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001404", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 10899.35, + "value": 10749.44028221991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001405", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 9147.92, + "value": 9022.099459740735, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001406", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 14946.24, + "value": 14740.669335669238, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001407", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 13040.106534653465, + "value": 12860.752840127443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001408", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 12426.939797979798, + "value": 12256.019602006156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001409", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 25043.350000000002, + "value": 24698.903631109373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001410", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 34594.818181818184, + "value": 34119.00086883256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001411", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 16439.735454545455, + "value": 16213.623245801791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001412", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 33925.63636363637, + "value": 33459.022980931644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001413", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 11349.0, + "value": 11192.905793732081, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001414", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 11927.16, + "value": 11763.11377802181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001415", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 12974.0, + "value": 12795.555535102656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001416", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 14282.0, + "value": 14085.56529615663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001417", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 8915.532727272726, + "value": 8792.908442796625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001418", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 10737.74, + "value": 10590.053067018127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001419", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 30858.97, + "value": 30434.535562746016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001420", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 16762.84, + "value": 16532.28380962234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001421", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 18770.63, + "value": 18512.458655300135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001422", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 11307.570000000002, + "value": 11152.045622172092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001423", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 8507.0, + "value": 8389.994676824286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001424", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 9482.92, + "value": 9352.491867961744, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001425", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 14042.16, + "value": 13849.02405679028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001426", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 11476.05, + "value": 11318.208347357393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001427", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 23959.949999999997, + "value": 23630.404720462684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001428", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 12075.1, + "value": 11909.019010476188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001429", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 10182.48, + "value": 10042.43011600679, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001430", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 27547.699999999997, + "value": 27168.808787910235, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001431", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 12796.0, + "value": 12620.00374804791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001432", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 30124.0, + "value": 29709.674344029012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001433", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 21452.1, + "value": 21157.047702680415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001434", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 17809.29, + "value": 17564.34093076525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001435", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 22168.63, + "value": 21863.72254525534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001436", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 10361.126732673267, + "value": 10218.61974057018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001437", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 10171.199999999999, + "value": 10031.30526118669, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001438", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 17568.0, + "value": 17326.3696347066, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001439", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 9533.789999999999, + "value": 9402.662201711602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001440", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 10558.46, + "value": 10413.238885090179, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001441", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 10429.45, + "value": 10286.003289315277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001442", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 10169.0, + "value": 10029.135519998374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001443", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 9782.89, + "value": 9648.33607898878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001444", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 9645.889108910891, + "value": 9513.21949888324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001445", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 11764.960000000001, + "value": 11603.144677683162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001446", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 13295.7, + "value": 13112.830871594295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001447", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 12746.8, + "value": 12571.48044510918, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001448", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 14002.262626262625, + "value": 13809.675431743162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001449", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 13859.800000000001, + "value": 13669.172237198689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001450", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 10721.14, + "value": 10573.68138350628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001451", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 9514.579801980199, + "value": 9383.71622085738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001452", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 13985.893465346533, + "value": 13793.531412353237, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001453", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 11227.76, + "value": 11073.333329335917, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001454", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 9920.23286628663, + "value": 9783.789930763152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001455", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 9841.546767676768, + "value": 9706.186081171429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001456", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 14955.18, + "value": 14749.486374861766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001457", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 11800.8, + "value": 11638.491734132835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001458", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 8643.58, + "value": 8524.69615477899, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001459", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 24711.915151515153, + "value": 24372.02733929065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001460", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 7854.78, + "value": 7746.745314167845, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001461", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 9417.0, + "value": 9287.478531991806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001462", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 12145.93, + "value": 11978.874814280052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001463", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 7948.900000000001, + "value": 7839.5707871880295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001464", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 10018.39207920792, + "value": 9880.59906134866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001465", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 9134.359999999999, + "value": 9008.725964052743, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001466", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 15585.67, + "value": 15371.304612053598, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001467", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 43142.92, + "value": 42549.53204921312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001468", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 15071.243663366336, + "value": 14863.953697985815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001469", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 21739.19603960396, + "value": 21440.19502183106, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001470", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 13276.970297029702, + "value": 13094.358777058113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001471", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 10811.28, + "value": 10662.5815974676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001472", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 9078.0, + "value": 8953.141139792038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001473", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 10138.31, + "value": 9998.86763042135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001474", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 13191.880000000001, + "value": 13010.438812425622, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001475", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 7751.9, + "value": 7645.280326234181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001476", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 8786.4, + "value": 8665.551807740556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001477", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 13935.6, + "value": 13743.929683596158, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001478", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 14394.16, + "value": 14196.182646921014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001479", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 10025.34, + "value": 9887.451420401268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001480", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 11677.36, + "value": 11516.749528548355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001481", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 10449.48296729673, + "value": 10305.760723073423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001482", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 7939.737623762376, + "value": 7830.534430321834, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001483", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 10755.36, + "value": 10607.430721444558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001484", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 6825.42, + "value": 6731.543137074177, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001485", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 9279.476565656565, + "value": 9151.84659569464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001486", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 7470.0, + "value": 7367.257580331188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001487", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 10492.0, + "value": 10347.69297628311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001488", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 10209.359999999999, + "value": 10068.940408344044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001489", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 8600.460000000001, + "value": 8482.169227487975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001490", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 9131.776093609362, + "value": 9006.177596724323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001491", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 9319.16, + "value": 9190.984223871377, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001492", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 11015.0, + "value": 10863.499631505761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001493", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 7843.69, + "value": 7735.807846086738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001494", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 8145.599999999999, + "value": 8033.5653743434705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001495", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 8230.74, + "value": 8117.5343583313415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001496", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 9556.689999999999, + "value": 9425.247234989993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001497", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 10253.140000000001, + "value": 10112.118257991555, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001498", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 8801.51, + "value": 8680.453984720316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001499", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 22750.0, + "value": 22437.096379188024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001500", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 25324.0, + "value": 24975.69356951901, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001501", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 11536.34, + "value": 11377.66911837723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001502", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 10142.46, + "value": 10002.960551299311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001503", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 16408.337272727273, + "value": 16182.656914743076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001504", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 9185.22, + "value": 9058.886435342654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001505", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 9862.0, + "value": 9726.357999628672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001506", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 10962.230000000001, + "value": 10811.455430365993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001507", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 10042.56, + "value": 9904.434576429823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001508", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 9463.12, + "value": 9332.96419726689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001509", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 11601.0, + "value": 11441.439784393857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001510", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 11289.6, + "value": 11134.322781647521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001511", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 7879.51, + "value": 7771.135177616519, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001512", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 10048.840820082009, + "value": 9910.629010079068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001513", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 10570.32, + "value": 10424.935762587198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001514", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 8230.56, + "value": 8117.356834052297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001515", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 11078.0, + "value": 10925.633129171205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001516", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 11514.0, + "value": 11355.636382855864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001517", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 12903.48, + "value": 12726.005467557146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001518", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 11321.189999999999, + "value": 11165.478292619764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001519", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 9905.13, + "value": 9768.894789379634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001520", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 17715.12, + "value": 17471.46614544533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001521", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 12682.52, + "value": 12508.084552570537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001522", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 10536.4, + "value": 10391.482298447327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001523", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 10147.52, + "value": 10007.950956032442, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001524", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 10520.08, + "value": 10375.386763813993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001525", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 27592.850000000002, + "value": 27213.337794570474, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001526", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 8800.4, + "value": 8679.359251666208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001527", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 18223.79, + "value": 17973.139895564083, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001528", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 11260.0, + "value": 11105.129900204709, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001529", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 8837.08, + "value": 8715.534754751423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001530", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 7877.3564356435645, + "value": 7769.011233395679, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001531", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 15825.0, + "value": 15607.342865962657, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001532", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 9779.07, + "value": 9644.568619289064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001533", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 8355.921212121213, + "value": 8240.993827396274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001534", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 10373.0, + "value": 10230.329702915049, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001535", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 10000.0, + "value": 9862.459946895835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001536", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 10227.36, + "value": 10086.692836248458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001537", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 12095.44, + "value": 11929.079254008175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001538", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 11123.31, + "value": 10970.31993519059, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001539", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 8023.699999999999, + "value": 7913.3419875908085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001540", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 10446.48, + "value": 10302.799058604838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001541", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 12599.63, + "value": 12426.334622070717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001542", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 9643.7, + "value": 9511.060498987936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001543", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 12729.73, + "value": 12554.64522597983, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001544", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 8697.59603960396, + "value": 8577.96925748739, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001545", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 9449.225656565657, + "value": 9319.260956705928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001546", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 14286.68, + "value": 14090.180927411779, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001547", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 13697.95, + "value": 13509.548322958179, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001548", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 8315.46, + "value": 8201.089119001443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001549", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 9228.74, + "value": 9101.807861031546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001550", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 20012.0, + "value": 19736.754845727944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001551", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 9812.78, + "value": 9677.81497177005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001552", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 7572.06, + "value": 7467.913846549208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001553", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 21527.740374037403, + "value": 21231.647718611624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001554", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 12762.5, + "value": 12586.964507225808, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001555", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 9393.0, + "value": 9263.808628119257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001556", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 9849.84, + "value": 9714.365248333248, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001557", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 8797.66, + "value": 8676.65693764076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001558", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 19142.370594059408, + "value": 18879.08632725475, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001559", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 24071.36, + "value": 23740.28238673105, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001560", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 12216.136435643564, + "value": 12048.11563023495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001561", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 11133.56, + "value": 10980.428956636157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001562", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 15549.53, + "value": 15335.661681805519, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001563", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 15107.0, + "value": 14899.218241775536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001564", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 10685.0, + "value": 10538.0384532582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001565", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 10593.67, + "value": 10447.964606563199, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001566", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 17880.239999999998, + "value": 17634.315084088477, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001567", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 10520.42, + "value": 10375.722087452188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001568", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 11770.99, + "value": 11609.09174103114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001569", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 8384.464851485149, + "value": 8269.144877392822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001570", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 9758.53, + "value": 9624.311126558141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001571", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 11613.049090909091, + "value": 11453.3231520426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001572", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 8046.41, + "value": 7935.739634130211, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001573", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 21891.0, + "value": 21589.91106974967, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001574", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 12927.78, + "value": 12749.971245228102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001575", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 6609.9800000000005, + "value": 6519.066299978253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001576", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 26200.02, + "value": 25839.66478578698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001577", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 13641.0, + "value": 13453.381613560607, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001578", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 13581.84, + "value": 13395.035300514772, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001579", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 8098.0, + "value": 7986.620064996247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001580", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 7899.9, + "value": 7791.2447334482395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001581", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 9937.35, + "value": 9800.671635328532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001582", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 8737.842224222422, + "value": 8617.661895868885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001583", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 9567.95, + "value": 9436.3523648902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001584", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 10834.2, + "value": 10685.186355665883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001585", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 12317.0, + "value": 12147.591916591598, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001586", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 13395.0, + "value": 13210.76509886697, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001587", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 11737.33, + "value": 11575.894700849887, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001588", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 11602.56, + "value": 11442.978328145573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001589", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 7894.36, + "value": 7785.780930637659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001590", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 9638.98, + "value": 9506.405417893, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001591", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 9264.35, + "value": 9136.928080902442, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001592", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 9431.130000000001, + "value": 9301.414187896771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001593", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 9283.156969696971, + "value": 9155.476379438327, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001594", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 13271.4, + "value": 13088.865093923338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001595", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 15167.9, + "value": 14959.280622852133, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001596", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 14887.59, + "value": 14682.826008080696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001597", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 15066.0, + "value": 14858.782155993264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001598", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 14802.06, + "value": 14598.472388154896, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001599", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 8201.5, + "value": 8088.696525446619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001600", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 11493.09, + "value": 11335.013979106905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001601", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 10250.0, + "value": 10109.02144556823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001602", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 12249.0, + "value": 12080.527188952707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001603", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 10429.12, + "value": 10285.677828137028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001604", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 29553.36, + "value": 29146.882929619347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@E14001605", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 10867.64, + "value": 10718.166421728303, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000001", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 12597.649581919508, + "value": 12424.381442671018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000002", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 11881.70443678782, + "value": 11718.283410867441, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000003", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 12718.780827899503, + "value": 12543.846648850547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000004", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 12952.648084989592, + "value": 12774.497294444689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000005", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 12723.578104968017, + "value": 12548.577944144787, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000006", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 12480.18897975709, + "value": 12308.536394254506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000007", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 12474.119697405255, + "value": 12302.550588844371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000008", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 11501.350628403592, + "value": 11343.160990783565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000009", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 11991.993352019532, + "value": 11827.055411773374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000010", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 11758.126094929441, + "value": 11596.404766179234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000011", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 11265.205876139562, + "value": 11110.2641746962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000012", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 11262.807237605304, + "value": 11107.898527049081, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000013", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 12718.780827899503, + "value": 12543.84664885055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000014", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 12350.541355546877, + "value": 12180.671944156164, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000015", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 10780.68089221958, + "value": 10632.403349978083, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000016", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 12476.518335939514, + "value": 12304.91623649149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000017", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 11144.074630159565, + "value": 10990.79896851667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@N05000018", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 12957.493819402234, + "value": 12779.276380600486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000021", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 11584.264963783155, + "value": 11424.934921954009, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000027", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 12388.353763992614, + "value": 12217.964280535341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000045", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 11244.418820153956, + "value": 11089.763023989011, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000048", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 12415.284967827378, + "value": 12244.525072449545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000051", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3351.011220011668, + "value": 3304.9213938963617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000060", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 12278.064072097855, + "value": 12109.191513648586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000061", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 12378.094257769846, + "value": 12207.845883615642, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000062", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 11739.439995402527, + "value": 11577.975675364443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000063", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5764.560058917889, + "value": 5685.274269255317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000064", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 12502.490770720911, + "value": 12330.531446266981, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000065", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 15046.155797297391, + "value": 14839.210890560007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000066", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 17244.74233207106, + "value": 17007.558054458987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000067", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 12794.72254597024, + "value": 12618.743864127659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000068", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 13390.36126362205, + "value": 13206.190163693795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000069", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 10420.649722132675, + "value": 10277.324050516472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000070", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 13790.21269427166, + "value": 13600.542035642873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000071", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 14134.311403230196, + "value": 13939.908009131086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000072", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 12777.11286538338, + "value": 12601.376387181106, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000073", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 9948.186636191422, + "value": 9811.359224368229, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000074", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 18390.38106807574, + "value": 18137.439669204847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000075", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 12343.250409760769, + "value": 12173.481278077119, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000076", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 11702.477559358447, + "value": 11541.521620862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000077", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 12191.931631181116, + "value": 12024.243738781614, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000078", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 12602.367063799558, + "value": 12429.03404028024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000079", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 11523.297848054355, + "value": 11364.806348258702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000080", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 14386.423379395392, + "value": 14188.552435837286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000081", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 11150.13908771983, + "value": 10996.780015495448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000082", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 11312.462430299911, + "value": 11156.87076195968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000083", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 15320.156429988863, + "value": 15109.442917094382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000084", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 13729.797027002336, + "value": 13540.957325782003, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000085", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 13537.033729459303, + "value": 13350.845295657029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000086", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 13724.654449508174, + "value": 13535.885479326007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000087", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 13020.583010587927, + "value": 12841.49784271558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000088", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 10762.532377747091, + "value": 10614.504450270028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000089", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 13156.594839823343, + "value": 12975.638964529415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000090", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 16654.50821563917, + "value": 16425.44202119889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000091", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 16228.186491703518, + "value": 16004.983928518197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000092", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 11759.959769692583, + "value": 11598.213220569945, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000093", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 13237.868051692421, + "value": 13055.79434421085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000094", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 15220.38786172555, + "value": 15011.046566248777, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000095", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 12297.162142931538, + "value": 12128.026909514605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000096", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 10864.981242011101, + "value": 10715.544232310902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000097", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 11543.732219573554, + "value": 11384.959665323511, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000098", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 13557.137536640623, + "value": 13370.672594967622, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000099", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 14545.979661374771, + "value": 14345.914179867012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000100", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 12053.278290757005, + "value": 11887.497437138005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000101", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 10728.85811344741, + "value": 10581.293341980348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000102", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 13369.803778028177, + "value": 13185.915425865951, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000103", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 13434.246949186043, + "value": 13249.47224530549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000104", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 12806.125987136847, + "value": 12629.990462303904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000105", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 13380.255649992625, + "value": 13196.223542727894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000106", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 11579.868866945968, + "value": 11420.599289056065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000107", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 12524.461096979889, + "value": 12352.199592541921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000108", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 12851.24216575147, + "value": 12674.486112758275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000109", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 10239.556612918037, + "value": 10098.721696887651, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000110", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 14176.857575536018, + "value": 13981.869001157076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@S14000111", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 12220.703172806361, + "value": 12052.619556470558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000081", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 11208.08, + "value": 11053.924008160426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000082", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 11761.0, + "value": 11599.239143544191, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000083", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 12292.380000000001, + "value": 12123.310540202343, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000084", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 12208.97, + "value": 12041.047761785281, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000085", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 8575.27, + "value": 8457.325690881744, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000086", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 11192.97, + "value": 11039.021831180666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000087", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 8971.939999999999, + "value": 8848.53988959526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000088", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 11881.76, + "value": 11718.338209862904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000089", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 32189.81, + "value": 31747.071182318698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000090", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 13324.92, + "value": 13141.648979559124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000091", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 22715.15, + "value": 22402.72570627309, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000092", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 14164.59, + "value": 13969.770153920126, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000093", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 14574.24, + "value": 14373.785825644714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000094", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 10316.029603960396, + "value": 10174.14287800511, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000095", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 10288.35, + "value": 10146.843979464575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000096", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 14058.190891089109, + "value": 13864.834458918222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000097", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 13685.890000000001, + "value": 13497.654196262223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000098", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 10522.4, + "value": 10377.674854521672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000099", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 12963.630000000001, + "value": 12785.328164137723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000100", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 10696.419999999998, + "value": 10549.301382517553, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000101", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 9664.960000000001, + "value": 9532.028088835037, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000102", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 10201.544554455446, + "value": 10061.232456479014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000103", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 12343.94, + "value": 12174.161383688535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000104", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 13947.699999999999, + "value": 13755.863260131904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000105", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 12400.210000000001, + "value": 12229.657445809718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000106", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 13711.35, + "value": 13522.764019287019, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000107", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 13384.43, + "value": 13200.340478703101, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000108", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 20965.600000000002, + "value": 20677.23902626393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000109", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 11687.73, + "value": 11526.976899513284, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000110", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 10959.04, + "value": 10808.309305642933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000111", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 10904.50495049505, + "value": 10754.524331498476, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/20_30@W07000112", + "metric": "age/20_30", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 6908.0, + "value": 6812.987331315642, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001063", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 16657.56, + "value": 16428.451831301416, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001064", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 11069.85, + "value": 10917.595224314486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001065", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 12464.0, + "value": 12292.570077810968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001066", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 11053.0, + "value": 10900.976979303965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001067", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 8537.19, + "value": 8419.769443403966, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001068", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 12308.089999999998, + "value": 12138.804464778914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001069", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 12655.76, + "value": 12481.692609752643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001070", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 13570.37, + "value": 13383.723058955682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001071", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 15697.138316831684, + "value": 15481.239793063638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001072", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 12994.88, + "value": 12816.148351471773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001073", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 22220.760000000002, + "value": 21915.13554895851, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001074", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 14722.679999999998, + "value": 14520.184181096438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001075", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 13660.6, + "value": 13472.712035056524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001076", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 10654.73, + "value": 10508.184786998945, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001077", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 14759.3, + "value": 14556.30050942197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001078", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 16414.4, + "value": 16188.636255232697, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001079", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 11761.92, + "value": 11600.146489859304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001080", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 11611.23, + "value": 11451.52908091953, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001081", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 26702.13, + "value": 26334.868762180566, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001082", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 10015.12, + "value": 9877.37198633554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001083", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 17222.740202020203, + "value": 16985.85854182169, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001084", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 14750.73, + "value": 14547.848381247479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001085", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 25875.73, + "value": 25519.835072169095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001086", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 31543.09, + "value": 31109.24617263305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001087", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 8261.1, + "value": 8147.476786730117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001088", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 8368.85, + "value": 8253.74479265792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001089", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 15089.32, + "value": 14881.781412589424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001090", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 12814.3, + "value": 12638.052049750728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001091", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 13641.98, + "value": 13454.348134635402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001092", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 16138.382222222222, + "value": 15916.414827436245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001093", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 17426.2, + "value": 17186.51995265962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001094", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 16805.800000000003, + "value": 16574.6529375542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001095", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 16040.45, + "value": 15819.829565518528, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001096", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 24929.757777777777, + "value": 24586.87375691482, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001097", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 13330.92, + "value": 13147.566455527261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001098", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 18262.8, + "value": 18011.613351816926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001099", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 13072.949999999999, + "value": 12893.14457627719, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001100", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 15335.170000000002, + "value": 15124.24999038386, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001101", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 10505.40404040404, + "value": 10360.912657444253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001102", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 15664.31, + "value": 15448.862997075987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001103", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 17684.12393939394, + "value": 17440.89640482145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001104", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 10262.95, + "value": 10121.793331199462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001105", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 12570.060000000001, + "value": 12397.171328007746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001106", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 11023.138383838384, + "value": 10871.526079969613, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001107", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 11903.99, + "value": 11740.262458324854, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001108", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 11963.89, + "value": 11799.338593406761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001109", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 12489.0, + "value": 12317.226227678208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001110", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 15235.24, + "value": 15025.694428134528, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001111", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 16882.64, + "value": 16650.43607978615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001112", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 12310.42, + "value": 12141.10241794654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001113", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 13611.0, + "value": 13423.79423371992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001114", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 13679.94, + "value": 13491.78603259382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001115", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 14312.0, + "value": 14115.152675997319, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001116", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 13928.49, + "value": 13736.917474573915, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001117", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 14052.169999999998, + "value": 13858.896379197122, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001118", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 17411.66, + "value": 17172.17993589683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001119", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 15304.34, + "value": 15093.844026367578, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001120", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 18303.0, + "value": 18051.260440803446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001121", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 12305.858316831684, + "value": 12136.603476192748, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001122", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 22031.32, + "value": 21728.301107724514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001123", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 20266.49, + "value": 19987.744588916496, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001124", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 20799.300000000003, + "value": 20513.226317347056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001125", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 11562.0, + "value": 11402.976190600963, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001126", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 10436.67, + "value": 10293.123985396935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001127", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 8591.960000000001, + "value": 8473.786136533114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001128", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 10452.710000000001, + "value": 10308.943371151754, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001129", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 12449.28, + "value": 12278.052536769137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001130", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 16232.72, + "value": 16009.455082917493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001131", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 16583.84, + "value": 16355.745776572901, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001132", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 18864.84, + "value": 18605.37289045984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001133", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 14955.699909990999, + "value": 14749.999134007987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001134", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 15396.880000000001, + "value": 15185.111230716153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001135", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 17571.84, + "value": 17330.15681932621, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001136", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 9959.454545454544, + "value": 9822.47215474751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001137", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 13519.524444444443, + "value": 13333.576833441248, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001138", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 11435.0, + "value": 11277.722949275387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001139", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 14119.019999999999, + "value": 13924.82692394212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001140", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 12691.56, + "value": 12517.000216362529, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001141", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 12794.918811881189, + "value": 12618.937430596226, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001142", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 13564.6, + "value": 13378.032419566323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001143", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 14437.0, + "value": 14238.433425333516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001144", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 12897.85, + "value": 12720.452902607045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001145", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 15269.180303030304, + "value": 15059.167916056716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001146", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 12883.529999999999, + "value": 12706.329859963089, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001147", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 11168.58, + "value": 11014.967291370189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001148", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 10939.17, + "value": 10788.712597728452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001149", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 12176.49, + "value": 12009.014491877766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001150", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 13652.0, + "value": 13464.230319502192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001151", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 11930.099999999999, + "value": 11766.013341246198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001152", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 11702.2, + "value": 11541.247879056444, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001153", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 15341.0, + "value": 15129.9998045329, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001154", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 10035.06, + "value": 9897.03773146965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001155", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 9345.31313131313, + "value": 9216.777644877544, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001156", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 9573.156237623762, + "value": 9441.486995894038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001157", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 15194.52, + "value": 14985.53449123077, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001158", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 10656.0, + "value": 10509.4373194122, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001159", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 15609.449999999999, + "value": 15394.757541807317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001160", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 20703.479696969698, + "value": 20418.723927273473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001161", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 13228.619999999999, + "value": 13046.673490270516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001162", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 9697.12, + "value": 9563.745760024252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001163", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 11414.191919191919, + "value": 11257.20106292124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001164", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 10083.617171717173, + "value": 9944.927047589166, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001165", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 11502.0, + "value": 11343.801430919588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001166", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 9858.67, + "value": 9723.073800466354, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001167", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 15486.56, + "value": 15273.557771519914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001168", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 10810.017623762376, + "value": 10661.336583959452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001169", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 16392.44, + "value": 16166.978293189313, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001170", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 13333.439999999999, + "value": 13150.05179543388, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001171", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 7521.06, + "value": 7417.615300820038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001172", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 30351.010000000002, + "value": 29933.562047283493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001173", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 12251.511717171717, + "value": 12083.004359953107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001174", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 8355.633663366336, + "value": 8240.7102335885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001175", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 24680.07, + "value": 24340.620186158547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001176", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 18142.639207920794, + "value": 17893.105251910078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001177", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 11238.92, + "value": 11084.339834636652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001178", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 8798.66, + "value": 8677.64318363545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001179", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 15286.5, + "value": 15076.249397822317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001180", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 20819.07, + "value": 20532.724400662064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001181", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 18274.0, + "value": 18022.65930695745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001182", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 19132.93, + "value": 18869.77557917617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001183", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 12300.881485148515, + "value": 12131.695095878977, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001184", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 17983.0, + "value": 17735.661722502777, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001185", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 13252.939999999999, + "value": 13070.658992861367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001186", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 16734.56, + "value": 16504.392772892515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001187", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 13981.2, + "value": 13788.902500954004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001188", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 19425.52, + "value": 19158.3412947624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001189", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 17602.909696969695, + "value": 17360.799183518793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001190", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 12323.36, + "value": 12153.864441117825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001191", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 17393.27, + "value": 17154.04287205449, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001192", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 11484.175175517552, + "value": 11326.22176916773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001193", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 13503.0, + "value": 13317.279666293445, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001194", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 17052.0, + "value": 16817.466701446778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001195", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 8576.869999999999, + "value": 8458.903684473247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001196", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 13574.699999999999, + "value": 13387.993504112686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001197", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 14182.570000000002, + "value": 13987.502856904646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001198", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 17259.77, + "value": 17022.37903176343, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001199", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 11281.43, + "value": 11126.265151870908, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001200", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 12471.64, + "value": 12300.104997210394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001201", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 9728.079306930691, + "value": 9594.279252483015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001202", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 12022.09, + "value": 11856.738110297694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001203", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 11419.0, + "value": 11261.943013360353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001204", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12892.14, + "value": 12714.821437977367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001205", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 21588.25, + "value": 21291.3250948574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001206", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 16731.059999999998, + "value": 16500.9409119111, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001207", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 22105.83090909091, + "value": 21801.7871933761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001208", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 17183.32, + "value": 16946.98052546941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001209", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 17128.94, + "value": 16893.348468278193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001210", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 13828.960909090909, + "value": 13638.75730730973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001211", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 11409.970000000001, + "value": 11253.037212028306, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001212", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 11034.211616161618, + "value": 10882.44701099667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001213", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 26047.32, + "value": 25689.06502239788, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001214", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 8976.86, + "value": 8853.392219889134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001215", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 12299.69, + "value": 12130.519998423522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001216", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 11389.14, + "value": 11232.493707958922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001217", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 12520.68, + "value": 12348.470500789972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001218", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 11365.0, + "value": 11208.685729647115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001219", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 11100.480000000001, + "value": 10947.803939131827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001220", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 11888.63, + "value": 11725.11371984642, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001221", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 19640.63, + "value": 19370.492670680072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001222", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 10457.980202020202, + "value": 10314.141086785385, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001223", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 16590.275555555556, + "value": 16362.09281746317, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001224", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 13360.453005300531, + "value": 13176.693263716055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001225", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 18601.29, + "value": 18345.4477585594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001226", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 13465.0, + "value": 13279.80231849524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001227", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 11948.05207920792, + "value": 11783.71850746136, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001228", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 12726.0, + "value": 12550.966528419638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001229", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 22345.379999999997, + "value": 22038.041524816723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001230", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 10910.25, + "value": 10760.190363562027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001231", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 14212.373465346534, + "value": 14016.896405230535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001232", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 10788.976769676969, + "value": 10640.585125892869, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001233", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 11101.900000000001, + "value": 10949.204408444288, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001234", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 9942.369999999999, + "value": 9805.622590221874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001235", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 11802.08, + "value": 11639.754129006038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001236", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 20234.48, + "value": 19956.174854626483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001237", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 15457.835473547355, + "value": 15245.228322356637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001238", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 21885.0, + "value": 21583.99359378153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001239", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 10494.400000000001, + "value": 10350.059966670364, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001240", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 9108.0, + "value": 8982.728519632725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001241", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 9610.519999999999, + "value": 9478.336856884136, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001242", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 9569.98, + "value": 9438.35444425942, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001243", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 9914.369999999999, + "value": 9778.007702370563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001244", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 14880.400000000001, + "value": 14675.734899378878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001245", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 13231.14, + "value": 13049.158830177133, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001246", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 13869.0, + "value": 13678.245700349833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001247", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 9066.83, + "value": 8942.124772031357, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001248", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 16268.75, + "value": 16044.989526106157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001249", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 10471.903267326732, + "value": 10327.872654177752, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001250", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 10404.812727272727, + "value": 10261.704877767928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001251", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 17664.34, + "value": 17421.384573834996, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001252", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 11801.0, + "value": 11638.688983331775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001253", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 11245.84, + "value": 11091.164656919904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001254", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 14297.0, + "value": 14100.358986076973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001255", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 14185.39, + "value": 13990.284070609669, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001256", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 11160.0, + "value": 11006.505300735751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001257", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 24844.54, + "value": 24502.82806490514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001258", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 12038.965346534653, + "value": 11873.381353226494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001259", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 29281.159207920795, + "value": 28878.425988679897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001260", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 31122.26693069307, + "value": 30694.211106056115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001261", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 11999.15, + "value": 11834.113627179515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001262", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 14754.42, + "value": 14551.487628967883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001263", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 13078.470000000001, + "value": 12898.588654167877, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001264", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 20399.899393939395, + "value": 20119.319069343186, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001265", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 26427.337373737373, + "value": 26063.855635158823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001266", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 11223.08, + "value": 11068.71769808077, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001267", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 15190.168316831683, + "value": 14981.242661135859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001268", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 11563.869999999999, + "value": 11404.820470611032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001269", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 11568.821414141414, + "value": 11409.703782976052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001270", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 16873.3499009901, + "value": 16641.273756847364, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001271", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 19124.863636363636, + "value": 18861.8201603481, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001272", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 11834.0, + "value": 11671.23510115653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001273", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 10224.727128712871, + "value": 10084.096177486994, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001274", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 12181.75, + "value": 12014.202145809832, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001275", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10953.0, + "value": 10802.352379835007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001276", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 22637.0, + "value": 22325.6505817881, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001277", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 11259.76, + "value": 11104.893201165984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001278", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 15420.33, + "value": 15208.238699291624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001279", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 22125.600000000002, + "value": 21821.284380103847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001280", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 9439.2, + "value": 9309.373193073916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001281", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 12851.19, + "value": 12674.434664494827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001282", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 10737.67, + "value": 10589.9840297985, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001283", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 13941.68, + "value": 13749.926059243871, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001284", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 12973.900000000001, + "value": 12795.456910503186, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001285", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 9135.533267326733, + "value": 9009.883094254432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001286", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 13620.770000000002, + "value": 13433.429857088038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001287", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 10738.0, + "value": 10590.309490976746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001288", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 11765.73, + "value": 11603.904087099072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001289", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 12062.03, + "value": 11896.128775325597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001290", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 25061.399999999998, + "value": 24716.705371313525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001291", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 9299.996633663366, + "value": 9172.084430577104, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001292", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 14502.373737373737, + "value": 14302.908011976253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001293", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 17999.26303030303, + "value": 17751.701071000658, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001294", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 12034.619999999999, + "value": 11869.095772611154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001295", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 12073.28, + "value": 11907.224042765854, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001296", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 16115.0, + "value": 15893.354204422636, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001297", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 15515.4, + "value": 15302.00110600676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001298", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 14543.61, + "value": 14343.577110827371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001299", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 12053.0, + "value": 11887.222973993548, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001300", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 17973.434242424242, + "value": 17726.227532407516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001301", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 22087.87575757576, + "value": 21784.07899711024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001302", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 17011.0, + "value": 16777.030615664502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001303", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 6722.5, + "value": 6630.038699300724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001304", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 6722.5, + "value": 6630.038699300724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001305", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 24736.0, + "value": 24395.780924641535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001306", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 28857.96, + "value": 28461.04746491221, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001307", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 12698.7, + "value": 12524.042012764614, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001308", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 11406.0, + "value": 11249.121815429387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001309", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 8792.02, + "value": 8671.094510230712, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001310", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 24214.140000000003, + "value": 23881.098589852827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001311", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 13813.4, + "value": 13623.410423045092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001312", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 19703.42, + "value": 19432.41905668663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001313", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 14171.269999999999, + "value": 13976.358277164652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001314", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 15691.559292929292, + "value": 15475.737503085626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001315", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 14260.897979797981, + "value": 14064.75351325253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001316", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 10251.09, + "value": 10110.096453702443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001317", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 12244.320000000002, + "value": 12075.911557697562, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001318", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 10389.740000000002, + "value": 10246.839460866153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001319", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 14164.417777777777, + "value": 13969.600300443264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001320", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 14121.623564356436, + "value": 13927.394678860574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001321", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 13296.0, + "value": 13113.126745392701, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001322", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 10638.0, + "value": 10491.684891507788, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001323", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 18966.38, + "value": 18705.51630876062, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001324", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 12621.53292929293, + "value": 12447.936298357836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001325", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 13865.929292929293, + "value": 13675.217227800484, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001326", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 15876.0, + "value": 15657.641411691826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001327", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 15687.53, + "value": 15471.763629072682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001328", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 18308.47, + "value": 18056.655206394396, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001329", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 14425.789999999999, + "value": 14227.377607733044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001330", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 9844.254343434342, + "value": 9708.856416917655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001331", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 21893.398888888893, + "value": 21592.276964308043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001332", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 25424.65, + "value": 25074.959228884516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001333", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 20263.48090909091, + "value": 19984.776885059746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001334", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 24336.43, + "value": 24001.706612543418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001335", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 10257.75, + "value": 10116.664852027074, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001336", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 14675.0, + "value": 14473.159972069636, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001337", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 13281.050000000001, + "value": 13098.382367772092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001338", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 19828.8, + "value": 19556.07457950081, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001339", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 14611.840000000002, + "value": 14410.868675045042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001340", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 17000.920000000002, + "value": 16767.089256038034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001341", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 13803.6, + "value": 13613.745212297134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001342", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 12458.640000000001, + "value": 12287.28379927943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001343", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 8808.69, + "value": 8687.535230962187, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001344", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 10189.27, + "value": 10049.126726310731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001345", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 15639.64, + "value": 15424.532308386997, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001346", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 21460.3, + "value": 21165.134919836866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001347", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 9979.0, + "value": 9841.748781007353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001348", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 12822.897272727272, + "value": 12646.531075543255, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001349", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 14075.22, + "value": 13881.629349374718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001350", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 12807.41, + "value": 12631.256814847316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001351", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 10201.55, + "value": 10061.237827125518, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001352", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 21369.41292929293, + "value": 21075.49791038295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001353", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 19319.16, + "value": 19053.444170767212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001354", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 16233.14, + "value": 16009.869306235263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001355", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 13851.949999999999, + "value": 13661.430206140374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001356", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 10790.719504950495, + "value": 10642.30389157619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001357", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 10567.41, + "value": 10422.06578674265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001358", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 11465.79, + "value": 11308.089463451879, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001359", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 12332.25, + "value": 12162.632168010616, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001360", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 12044.792871287127, + "value": 11879.12872617258, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001361", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 9731.71, + "value": 9597.860008980566, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001362", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 9293.45, + "value": 9165.627839347908, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001363", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 9355.591414141414, + "value": 9226.914560149224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001364", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 12468.470000000001, + "value": 12296.978597407231, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001365", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 10221.72, + "value": 10081.130408838408, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001366", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 11872.109999999999, + "value": 11708.82093601415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001367", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 15400.460000000001, + "value": 15188.64199137714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001368", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 10203.380000000001, + "value": 10063.042657295802, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001369", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 17783.48, + "value": 17538.885921642315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001370", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 14426.720000000001, + "value": 14228.294816508109, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001371", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 20376.5, + "value": 20096.241510792297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001372", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 10223.21, + "value": 10082.599915370496, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001373", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 9679.0, + "value": 9545.874982600477, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001374", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 6914.0, + "value": 6818.9048072837795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001375", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 11712.74, + "value": 11551.64291184047, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001376", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 11240.2, + "value": 11085.602229509856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001377", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 18974.602475247524, + "value": 18713.625692039925, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001378", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 15752.46, + "value": 15535.800581507874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001379", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 14290.672772277227, + "value": 14094.118783077902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001380", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 12258.3, + "value": 12089.69927670332, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001381", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 10040.0, + "value": 9901.909786683418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001382", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 10714.61, + "value": 10567.241197160956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001383", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 13612.849999999999, + "value": 13425.618788810094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001384", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 13046.220000000001, + "value": 12866.782220839137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001385", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 10115.66, + "value": 9976.529158641632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001386", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 9812.39, + "value": 9677.430335832121, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001387", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 10208.0, + "value": 10067.599113791268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001388", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 9474.2, + "value": 9343.89180288805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001389", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 11322.585858585859, + "value": 11166.85495255922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001390", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 12610.6, + "value": 12437.15374063246, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001391", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 10043.0, + "value": 9904.868524667487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001392", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 11636.25, + "value": 11476.204955706666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001393", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 12084.0, + "value": 11917.796599828926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001394", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 12003.801485148515, + "value": 11838.701135776597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001395", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 9345.81, + "value": 9217.267679629855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001396", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 7645.090909090909, + "value": 7539.940288128655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001397", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 9488.52, + "value": 9358.014845532005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001398", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 11394.2, + "value": 11237.484112692051, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001399", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 9713.34, + "value": 9579.742670058118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001400", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 11411.0, + "value": 11254.053045402836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001401", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 15098.64, + "value": 14890.973225259931, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001402", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 12180.663366336634, + "value": 12013.130457711643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001403", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 12831.349999999999, + "value": 12654.867543960185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001404", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 12229.349999999999, + "value": 12061.147455157055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001405", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 11474.07, + "value": 11316.255580287909, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001406", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 16668.6, + "value": 16439.33998708279, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001407", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 15016.241584158415, + "value": 14809.708117667402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001408", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 13365.894545454546, + "value": 13182.059960897896, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001409", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 13822.64, + "value": 13632.523336036023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001410", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 17814.39393939394, + "value": 17569.374670549663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001411", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 14220.532626262628, + "value": 14024.943345004058, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001412", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 14317.473434343436, + "value": 14120.550828695727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001413", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 12913.0, + "value": 12735.39452942659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001414", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 13714.04, + "value": 13525.417021012734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001415", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 14288.0, + "value": 14091.482772124768, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001416", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 15302.0, + "value": 15091.536210740005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001417", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 11894.2, + "value": 11730.607110036843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001418", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 12562.35, + "value": 12389.567371388688, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001419", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 11963.380000000001, + "value": 11798.835607949468, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001420", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 12993.16, + "value": 12814.45200836091, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001421", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 23524.16, + "value": 23200.608578436913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001422", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 13655.97, + "value": 13468.14571610111, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001423", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 9402.0, + "value": 9272.684842071463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001424", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 9981.699999999999, + "value": 9844.411645193015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001425", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 19020.87, + "value": 18759.256853011255, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001426", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 12987.15, + "value": 12808.524669932822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001427", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 15145.849999999999, + "value": 14937.533898669226, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001428", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 13694.35, + "value": 13505.997837377296, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001429", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 12428.119999999999, + "value": 12257.183571521504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001430", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 34818.5, + "value": 34339.60616609926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001431", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 13632.0, + "value": 13444.5053996084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001432", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 16174.0, + "value": 15951.542718109322, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001433", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 15925.3, + "value": 15706.263339230023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001434", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 23590.87, + "value": 23266.401048742653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001435", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 27424.69, + "value": 27047.49066810347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001436", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 11911.162079207921, + "value": 11747.335892717263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001437", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 11006.4, + "value": 10855.01791595143, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001438", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 16185.779999999999, + "value": 15963.160695926765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001439", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 11901.65, + "value": 11737.954642697281, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001440", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 11217.08, + "value": 11062.800222112632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001441", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 13105.0, + "value": 12924.753760406991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001442", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 13887.76, + "value": 13696.747675210208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001443", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 10417.730000000001, + "value": 10274.444486257515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001444", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 11278.737821782179, + "value": 11123.610001886587, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001445", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 16954.68, + "value": 16721.485241243587, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001446", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 14352.300000000001, + "value": 14154.898389583308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001447", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 13944.48, + "value": 13752.687548029002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001448", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 16709.656565656565, + "value": 16479.831860517286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001449", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 10349.77, + "value": 10207.41920845841, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001450", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 12443.69, + "value": 12272.539421658821, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001451", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 10790.493762376238, + "value": 10642.081253866498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001452", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 14714.824158415842, + "value": 14512.436388799144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001453", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 14562.1, + "value": 14361.812799269183, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001454", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 12467.21804680468, + "value": 12295.743863582808, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001455", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 10986.400707070707, + "value": 10835.293693403291, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001456", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 12959.550000000001, + "value": 12781.304280479391, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001457", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 12075.03, + "value": 11908.94997325656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001458", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 10114.4, + "value": 9975.286488688324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001459", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 21022.68282828283, + "value": 20733.536737023423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001460", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 10720.019999999999, + "value": 10572.57678799223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001461", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 9998.0, + "value": 9860.487454906455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001462", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 14673.7, + "value": 14471.87785227654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001463", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 8566.1, + "value": 8448.28181511044, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001464", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 11653.02792079208, + "value": 11492.752112887072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001465", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 11568.039999999999, + "value": 11408.933116408887, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001466", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 16277.96, + "value": 16054.07285171725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001467", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 15424.960000000001, + "value": 15212.805018247038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001468", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 10311.774554455445, + "value": 10169.946352473646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001469", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 15836.315346534653, + "value": 15618.502581160983, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001470", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 13586.990099009901, + "value": 13400.114565035541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001471", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 12436.17, + "value": 12265.122851778759, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001472", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 11534.0, + "value": 11375.361302749656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001473", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 12116.65, + "value": 11949.997531555542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001474", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 13939.84, + "value": 13748.111366613643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001475", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 9079.18, + "value": 8954.304910065772, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001476", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 10547.2, + "value": 10402.133755189974, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001477", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 21136.5, + "value": 20845.78846675638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001478", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 16473.0, + "value": 16246.430270521509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001479", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 11210.78, + "value": 11056.586872346088, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001480", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 13995.84, + "value": 13803.34114231626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001481", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 11839.225271527153, + "value": 11676.38850427135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001482", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 9447.712871287129, + "value": 9317.768978284155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001483", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 12813.68, + "value": 12637.440577234021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001484", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 8030.599999999999, + "value": 7920.147084954168, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001485", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 9644.878585858587, + "value": 9512.222874570363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001486", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 8060.0, + "value": 7949.142717198042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001487", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 12646.0, + "value": 12472.066848844472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001488", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 12499.88, + "value": 12327.95658410043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001489", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 10454.4, + "value": 10310.61012688278, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001490", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 11837.16505850585, + "value": 11674.356627430885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001491", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 10889.6, + "value": 10739.824383771687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001492", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 11709.3, + "value": 11548.25022561874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001493", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 9183.35, + "value": 9057.042155332585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001494", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 9028.8, + "value": 8904.617836853311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001495", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 10183.15, + "value": 10043.090900823232, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001496", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 12774.37, + "value": 12598.671247182772, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001497", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 12000.17, + "value": 11835.1195980941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001498", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 11263.77, + "value": 11108.84804760469, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001499", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 15612.0, + "value": 15397.272469093776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001500", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 16672.0, + "value": 16442.693223464736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001501", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 12988.91, + "value": 12810.260462883478, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001502", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 12984.69, + "value": 12806.098504785887, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001503", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 21824.110303030302, + "value": 21523.941374027305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001504", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 10528.94, + "value": 10384.124903326943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001505", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 13222.0, + "value": 13040.144541785672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001506", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 12976.18, + "value": 12797.705551371078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001507", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 14064.0, + "value": 13870.5636693143, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001508", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 10958.12, + "value": 10807.401959327817, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001509", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 12941.0, + "value": 12763.009417277899, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001510", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 12087.9, + "value": 11921.642959208215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001511", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 8453.77, + "value": 8337.496802526959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001512", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 13119.111723172318, + "value": 12938.671390863856, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001513", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 11451.06, + "value": 11293.562059950102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001514", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 8873.8, + "value": 8751.749707676425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001515", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 12611.0, + "value": 12437.548239030337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001516", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 14691.0, + "value": 14488.93990798467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001517", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 16007.31, + "value": 15787.145373254514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001518", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 13361.49, + "value": 13177.715995584922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001519", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 12035.31, + "value": 11869.77628234749, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001520", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 15960.759999999998, + "value": 15741.235622201715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001521", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 13666.800000000001, + "value": 13478.8267602236, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001522", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 11208.08, + "value": 11053.924008160426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001523", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 10521.460000000001, + "value": 10376.747783286664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001524", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 11564.609999999999, + "value": 11405.550292647104, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001525", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 29896.960000000003, + "value": 29485.75705339469, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001526", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 9820.58, + "value": 9685.50769052863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001527", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 24264.24, + "value": 23930.50951418678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001528", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 14259.0, + "value": 14062.88163827877, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001529", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 10349.109999999999, + "value": 10206.768286101913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001530", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 8571.118811881188, + "value": 8453.231598226363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001531", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 13628.0, + "value": 13440.560415629643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001532", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 11465.5, + "value": 11307.803452113418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001533", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 9076.78404040404, + "value": 8951.941904510819, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001534", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 15370.0, + "value": 15158.600938378897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001535", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 9870.0, + "value": 9734.247967586189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001536", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 13161.28, + "value": 12980.25968498812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001537", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 15910.8, + "value": 15691.962772307023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001538", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 12268.25, + "value": 12099.512424350482, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001539", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 10272.49, + "value": 10131.2021179888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001540", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 12476.64, + "value": 12305.036227183844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001541", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 14198.38, + "value": 14003.095406080689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001542", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 12286.130000000001, + "value": 12117.146502735532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001543", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 12287.42, + "value": 12118.41876006868, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001544", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 9759.55920792079, + "value": 9625.326178747724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001545", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 11238.21313131313, + "value": 11083.642688225456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001546", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 20253.8, + "value": 19975.229127243885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001547", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 16247.589999999998, + "value": 16024.120560858528, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001548", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 9577.8, + "value": 9446.066887937892, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001549", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 11221.810000000001, + "value": 11067.465165667514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001550", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 24478.0, + "value": 24141.329458011624, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001551", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 10840.8, + "value": 10691.695579230836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001552", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 8895.45, + "value": 8773.101933461454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001553", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 26485.54315431543, + "value": 26121.26085312171, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001554", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 9901.28, + "value": 9765.097742300079, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001555", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 13523.0, + "value": 13337.004586187237, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001556", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 14092.26, + "value": 13898.43498112423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001557", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 11903.34, + "value": 11739.621398428306, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001558", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 17442.408415841586, + "value": 17202.505437863645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001559", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 23474.72, + "value": 23151.84857645946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001560", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 13662.653564356437, + "value": 13474.737354677894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001561", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 12075.76, + "value": 11909.669932832683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001562", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 16945.91, + "value": 16712.835863870157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001563", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 24846.0, + "value": 24504.26798405739, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001564", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 12927.0, + "value": 12749.201973352245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001565", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 12562.35, + "value": 12389.567371388688, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001566", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 13535.3, + "value": 13349.135411921918, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001567", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 11929.02, + "value": 11764.948195571933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001568", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 16376.6, + "value": 16151.356156633434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001569", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 9834.814950495049, + "value": 9699.546853438977, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001570", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 11501.58, + "value": 11343.387207601818, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001571", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 13970.918181818182, + "value": 13778.762098954061, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001572", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 9040.59, + "value": 8916.2456771307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001573", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 16681.0, + "value": 16451.56943741694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001574", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 15391.8, + "value": 15180.10110106313, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001575", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 8027.660000000001, + "value": 7917.247521729782, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001576", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 30314.13, + "value": 29897.18929499934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001577", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 9897.0, + "value": 9760.876609442807, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001578", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 15836.87, + "value": 15619.049605919623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001579", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 8586.0, + "value": 8467.908110404764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001580", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 8289.18, + "value": 8175.170574261001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001581", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 11520.05, + "value": 11361.603171123734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001582", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 9755.386506650664, + "value": 9621.210868833025, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001583", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 10199.37, + "value": 10059.087810857098, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001584", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 12299.390000000001, + "value": 12130.224124625116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001585", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 14244.0, + "value": 14048.087948358427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001586", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 18845.4, + "value": 18586.200268323075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001587", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 10456.51, + "value": 10312.691105931575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001588", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 13927.140000000001, + "value": 13735.586042481085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001589", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 9022.3, + "value": 8898.207237887827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001590", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 12134.31, + "value": 11967.414635821759, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001591", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 11993.51, + "value": 11828.551199769467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001592", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 12727.980000000001, + "value": 12552.919295489124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001593", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 12536.901818181817, + "value": 12364.469203998375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001594", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 14838.21, + "value": 14634.125180862922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001595", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 16956.16, + "value": 16722.944885315726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001596", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 15784.23, + "value": 15567.133616759162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001597", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 13087.0, + "value": 12907.001332502577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001598", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 16049.1, + "value": 15828.360593372592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001599", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 10442.19, + "value": 10298.568063287621, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001600", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 14215.710000000001, + "value": 14020.187049168659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001601", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 11210.0, + "value": 11055.817600470229, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001602", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 17839.0, + "value": 17593.642299267478, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001603", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 12089.720000000001, + "value": 11923.43792691855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001604", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 17284.350000000002, + "value": 17046.620958312902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@E14001605", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 9287.65, + "value": 9159.907612578709, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000001", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 14459.910824464132, + "value": 14261.029134196302, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000002", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 13638.130310052109, + "value": 13450.5513933435, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000003", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 14598.948428545518, + "value": 14398.154414332805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000004", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 14867.38736711849, + "value": 14662.901242319123, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000005", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 14604.454868311117, + "value": 14403.585118496627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000006", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 14325.086481112485, + "value": 14128.059165579089, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000007", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 14318.120000499945, + "value": 14121.18850197789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000008", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 13201.550286515429, + "value": 13019.976093768964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000009", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 13764.722804057203, + "value": 13575.402733513789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000010", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 13496.283865484229, + "value": 13310.65590552747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000011", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 12930.497179568889, + "value": 12752.651052694771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000012", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 12927.743959686088, + "value": 12749.935700612861, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000013", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 14598.948428545518, + "value": 14398.154414332806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000014", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 14176.273555932068, + "value": 13981.293014161862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000015", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 12374.346763243344, + "value": 12204.149932148759, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000016", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 14320.873220382748, + "value": 14123.903854059801, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000017", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 12791.459575487503, + "value": 12615.525772558269, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@N05000018", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 14872.949427487783, + "value": 14668.38680208056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000021", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 12017.947771828285, + "value": 11852.65285435425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000027", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 12852.139430517127, + "value": 12675.37103653958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000045", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 11665.37872947973, + "value": 11504.933048486444, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000048", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 12880.07886406173, + "value": 12702.92619096684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000051", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3476.4638024783912, + "value": 3428.648500877632, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000060", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 12737.7207979059, + "value": 12562.5261184089, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000061", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 12841.495836785854, + "value": 12664.87383485301, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000062", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 12178.93212701385, + "value": 12011.423029863698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000063", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5980.369227761335, + "value": 5898.115197644454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000064", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 12970.549410777587, + "value": 12792.152405302731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000065", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 15609.442213557453, + "value": 15394.749862459543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000066", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 17890.337741185813, + "value": 17644.273940888394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000067", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 13273.721534619286, + "value": 13091.154698143142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000068", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 13891.659316774472, + "value": 13700.593360761057, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000069", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 10810.769997115864, + "value": 10662.07860916584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000070", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 14306.480077958837, + "value": 14109.708674993219, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000071", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 14663.460889909005, + "value": 14461.779570960112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000072", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 13255.452596345416, + "value": 13073.137030943306, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000073", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 10320.619201298387, + "value": 10178.669349996942, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000074", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 19078.866019650817, + "value": 18816.455195099814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000075", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 12805.347531576, + "value": 12629.222713624975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000076", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 12140.585919698493, + "value": 11973.604236487392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000077", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 12648.363796867536, + "value": 12474.398134037338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000078", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 13074.164795751565, + "value": 12894.342663721536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000079", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 11954.69821608017, + "value": 11790.273233331776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000080", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 14925.011240464544, + "value": 14719.732556605168, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000081", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 11567.569424886156, + "value": 11408.46901358766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000082", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 11735.96970400399, + "value": 11574.553114372231, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000083", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 15893.70067133867, + "value": 15675.098627902906, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000084", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 14243.802615373774, + "value": 14047.893278561396, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000085", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 14043.822793655241, + "value": 13850.663980372758, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000086", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 14238.467514015976, + "value": 14042.631556216007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000087", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 13508.037589714919, + "value": 13322.247968972673, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000088", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 11165.451792820077, + "value": 11011.882109568427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000089", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 13649.141325274526, + "value": 13461.410963004075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000090", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 17278.006893557038, + "value": 17040.36509498964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000091", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 16835.724864591666, + "value": 16604.16621539936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000092", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 12200.220104842274, + "value": 12032.418212732024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000093", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 13733.457181182943, + "value": 13544.567138182574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000094", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 15790.197044098868, + "value": 15573.018590101807, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000095", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 12757.53384763667, + "value": 12582.066659348458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000096", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 11271.736058922177, + "value": 11116.704541310148, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000097", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 11975.897593894442, + "value": 11811.181034791012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000098", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 14064.679231718032, + "value": 13871.233558875676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000099", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 15090.540867893667, + "value": 14882.985488659599, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000100", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 12504.519659253618, + "value": 12332.532429456034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000101", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 11130.516857295592, + "value": 10977.427669332668, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000102", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 13870.332215835428, + "value": 13679.559592881586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000103", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 13937.187960904059, + "value": 13745.49580367751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000104", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 13285.5518890516, + "value": 13102.82233781777, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000105", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 13881.175376949164, + "value": 13690.253617099781, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000106", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 12013.387097296547, + "value": 11848.15490736424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000107", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 12993.342245224654, + "value": 12814.631746983774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000108", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 13332.35709248489, + "value": 13148.983782234483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000109", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 10622.89726326666, + "value": 10476.789877895679, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000110", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 14707.59987311261, + "value": 14505.311466354337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@S14000111", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 12678.212465354329, + "value": 12503.836263779254, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000081", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 12254.94, + "value": 12086.385490161163, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000082", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 13479.75, + "value": 13294.349446916913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000083", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 10349.8, + "value": 10207.44879583825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000084", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 12685.58, + "value": 12511.102465314287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000085", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 9146.51, + "value": 9020.708852888221, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000086", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 12547.91, + "value": 12375.32597922537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000087", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 9537.08, + "value": 9405.906951034132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000088", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 13116.41, + "value": 12936.006827206398, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000089", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 14812.37, + "value": 14608.640584360144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000090", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 11786.0, + "value": 11623.89529341143, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000091", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 16358.51, + "value": 16133.514966589497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000092", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 14704.33, + "value": 14502.086567093882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000093", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 8029.7699999999995, + "value": 7919.328500778576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000094", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 10167.021584158416, + "value": 10027.18431529878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000095", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 9943.75, + "value": 9806.983609694546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000096", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 10525.876435643564, + "value": 10381.103475250935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000097", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 11292.2, + "value": 11136.887021233715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000098", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 11036.08, + "value": 10884.289697073818, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000099", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 13665.39, + "value": 13477.436153371087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000100", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 10868.07, + "value": 10718.59050750602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000101", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 9861.24, + "value": 9725.608452672706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000102", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 10247.821782178216, + "value": 10106.873186965935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000103", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 12840.210000000001, + "value": 12663.605683473135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000104", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 15117.52, + "value": 14909.59354963967, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000105", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 13369.22, + "value": 13185.339677123871, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000106", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 13463.13, + "value": 13277.95803848517, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000107", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 13321.25, + "value": 13138.029456758613, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000108", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 14145.04, + "value": 13950.489044723947, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000109", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 12044.12, + "value": 11878.465109560706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000110", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 11740.12, + "value": 11578.646327175073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000111", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 12792.980198019803, + "value": 12617.025480440183, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/30_40@W07000112", + "metric": "age/30_40", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 7295.0, + "value": 7194.664531260511, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001063", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 15854.78, + "value": 15636.713271684514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001064", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 11225.55, + "value": 11071.153725687653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001065", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 15245.0, + "value": 15035.320189042699, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001066", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 11494.0, + "value": 11335.91146296207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001067", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 11349.44, + "value": 11193.339741969747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001068", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 11855.91, + "value": 11692.843750900178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001069", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 13492.580000000002, + "value": 13307.00298302878, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001070", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 11922.07, + "value": 11758.09378590884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001071", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 15295.999603960398, + "value": 15085.618344179395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001072", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 12877.62, + "value": 12700.501146134473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001073", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 18421.16, + "value": 18167.79526753597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001074", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 12743.82, + "value": 12568.541432045007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001075", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 12561.380000000001, + "value": 12388.610712773838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001076", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 11080.37, + "value": 10927.970532178619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001077", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 13944.8, + "value": 13753.003146747304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001078", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 15298.23, + "value": 15087.818063340024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001079", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 12703.68, + "value": 12528.953517818167, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001080", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 10991.95, + "value": 10840.766661328165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001081", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 14905.800000000001, + "value": 14700.785547643993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001082", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 12734.640000000001, + "value": 12559.487693813757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001083", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 16994.83484848485, + "value": 16761.087799729135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001084", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 14297.779999999999, + "value": 14101.12825795283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001085", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 14301.07, + "value": 14104.37300727536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001086", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 17869.0, + "value": 17623.229679108164, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001087", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 10664.1, + "value": 10517.425911969185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001088", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 9696.18, + "value": 9562.818688789244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001089", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 13626.980000000001, + "value": 13439.554444715059, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001090", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 12896.410000000002, + "value": 12719.03270837469, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001091", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 12982.289999999999, + "value": 12803.73151439863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001092", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 13370.259393939394, + "value": 13186.364775233505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001093", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 14181.0, + "value": 13985.954450692981, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001094", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 14575.160000000002, + "value": 14374.693171959829, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001095", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 14157.319999999998, + "value": 13962.600145538734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001096", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 17630.97696969697, + "value": 17388.480418827923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001097", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 12254.52, + "value": 12085.971266843393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001098", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 14861.363636363636, + "value": 14656.960361989059, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001099", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 11155.51, + "value": 11002.077056219596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001100", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 12816.19, + "value": 12639.916054680692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001101", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 10775.320707070707, + "value": 10627.116888844215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001102", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 13872.36, + "value": 13681.559486891989, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001103", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 12692.320909090908, + "value": 12517.75065990576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001104", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 10600.73, + "value": 10454.927503285708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001105", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 12263.02, + "value": 12094.354357798256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001106", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 11271.601717171718, + "value": 11116.572047296837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001107", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 12436.94, + "value": 12265.882261194667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001108", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 11999.98, + "value": 11834.932211355108, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001109", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 12322.0, + "value": 12152.523146565047, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001110", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 13729.16, + "value": 13540.32906045244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001111", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 14805.07, + "value": 14601.440988598912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001112", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 11903.48, + "value": 11739.759472867563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001113", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 11532.0, + "value": 11373.388810760276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001114", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 13040.83, + "value": 12861.466354927761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001115", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 15054.0, + "value": 14846.947204056989, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001116", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 12213.449999999999, + "value": 12045.466143841491, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001117", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 14727.12, + "value": 14524.563113312857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001118", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 15004.779999999999, + "value": 14798.404176198366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001119", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 13540.22, + "value": 13353.987742215792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001120", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 15927.0, + "value": 15707.939957420995, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001121", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 13318.180792079209, + "value": 13135.002462739863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001122", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 17993.37, + "value": 17745.889093467707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001123", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 16863.84, + "value": 16631.894655085984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001124", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 19138.99, + "value": 18875.752229903992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001125", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 12518.0, + "value": 12345.827361524205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001126", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 10582.43, + "value": 10436.87920158289, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001127", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 10284.12, + "value": 10142.672158907038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001128", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 10683.380000000001, + "value": 10536.440734746802, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001129", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 11387.16, + "value": 11230.540940889437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001130", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 13776.84, + "value": 13587.35326947924, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001131", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 9183.02, + "value": 9056.716694154338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001132", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 12322.2, + "value": 12152.720395763985, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001133", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 12016.216057605761, + "value": 11850.944958138338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001134", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 12318.9, + "value": 12149.465783981508, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001135", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 11526.24, + "value": 11367.708033830864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001136", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 11474.696969696968, + "value": 11316.873926640335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001137", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 14394.790202020202, + "value": 14196.804181139283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001138", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 13086.0, + "value": 12906.015086507889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001139", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 14124.14, + "value": 13929.87650343493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001140", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 12173.039999999999, + "value": 12005.611943196085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001141", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 14533.991485148515, + "value": 14334.090889080233, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001142", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 12306.92, + "value": 12137.650556965127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001143", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 13706.0, + "value": 13517.48760321543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001144", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 12815.87, + "value": 12639.60045596239, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001145", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 12893.675454545455, + "value": 12716.335773872848, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001146", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 12402.72, + "value": 12232.132923256391, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001147", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 13505.31, + "value": 13319.557894541178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001148", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 11624.65, + "value": 11464.764502168266, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001149", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 11565.480000000001, + "value": 11406.408326662484, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001150", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 12685.0, + "value": 12510.530442637366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001151", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 11178.65, + "value": 11024.898788536711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001152", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 12057.880000000001, + "value": 11892.035854447635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001153", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 15989.0, + "value": 15769.08720909175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001154", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 10575.16, + "value": 10429.709193201494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001155", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 11064.858585858585, + "value": 10912.672462109678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001156", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 11543.472673267326, + "value": 11384.703688818558, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001157", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 13935.720000000001, + "value": 13744.048033115521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001158", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 12628.0, + "value": 12454.31442094006, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001159", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 15046.099999999999, + "value": 14839.15586069894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001160", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 19026.3598989899, + "value": 18764.671243901295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001161", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 12354.42, + "value": 12184.497241712883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001162", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 14142.64, + "value": 13948.122054336689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001163", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 11244.535353535353, + "value": 11089.87795456966, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001164", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 11229.148484848485, + "value": 11074.702716956423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001165", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 11708.0, + "value": 11546.968105825643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001166", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 11336.39, + "value": 11180.469231739047, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001167", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 15058.88, + "value": 14851.760084511074, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001168", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 12693.18603960396, + "value": 12518.603891409142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001169", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 16314.399999999998, + "value": 16090.011655763738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001170", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 13600.32, + "value": 13413.261126496634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001171", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 9225.189999999999, + "value": 9098.306687750397, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001172", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 23082.94, + "value": 22765.457120659972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001173", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 11196.64505050505, + "value": 11042.646335021554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001174", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 9195.79207920792, + "value": 9069.313106117008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001175", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 13814.19, + "value": 13624.189557380896, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001176", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 15004.059009900991, + "value": 14797.693102601008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001177", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 12168.8, + "value": 12001.4302601786, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001178", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 10469.64, + "value": 10325.64051584185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001179", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 14605.2, + "value": 14404.320001640304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001180", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 14516.85, + "value": 14317.18516800948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001181", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 13321.0, + "value": 13137.782895259941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001182", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 13078.15, + "value": 12898.273055449576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001183", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 12183.672277227724, + "value": 12016.097984026355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001184", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 16225.0, + "value": 16001.84126383849, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001185", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 13811.82, + "value": 13621.85215437348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001186", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 14429.12, + "value": 14230.661806895363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001187", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 13415.1, + "value": 13230.588643360232, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001188", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 17726.47, + "value": 17482.66003748506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001189", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 15259.967272727272, + "value": 15050.081601821399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001190", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 12087.82, + "value": 11921.564059528639, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001191", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 14908.39, + "value": 14703.33992477024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001192", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 13128.28486648665, + "value": 12947.71836671633, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001193", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 11962.0, + "value": 11797.474588476796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001194", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 14498.0, + "value": 14298.59443100958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001195", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 10760.83, + "value": 10612.825487035509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001196", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 13629.46, + "value": 13442.000334781887, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001197", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 13897.19, + "value": 13706.047974940131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001198", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 14558.8, + "value": 14358.558187486706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001199", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 11019.890000000001, + "value": 10868.322374419793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001200", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 11411.029999999999, + "value": 11254.082632782676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001201", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 12533.780594059406, + "value": 12361.390909209116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001202", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 12037.65, + "value": 11872.084097975065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001203", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 12255.0, + "value": 12086.444664920844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001204", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12244.12, + "value": 12075.714308498622, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001205", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 15613.55, + "value": 15398.801150385543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001206", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 14373.539999999999, + "value": 14175.846254510514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001207", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 19196.20696969697, + "value": 18932.1822370959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001208", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 16457.14, + "value": 16230.78840904573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001209", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 17313.35, + "value": 17075.2220921589, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001210", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 14637.161515151514, + "value": 14435.841917942696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001211", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 11104.1, + "value": 10951.374149632602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001212", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 12817.25080808081, + "value": 12640.962272401524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001213", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 17771.52, + "value": 17527.090419545828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001214", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 11327.7, + "value": 11171.898754045193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001215", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 13809.480000000001, + "value": 13619.544338745907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001216", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 12184.5, + "value": 12016.91432229523, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001217", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 12042.179999999998, + "value": 11876.551792331007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001218", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 14004.0, + "value": 13811.388909632926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001219", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 12230.43, + "value": 12062.212600831323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001220", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 12143.47, + "value": 11976.448649133115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001221", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 17380.87, + "value": 17141.813421720337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001222", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 11065.87292929293, + "value": 10913.672854259039, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001223", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 16125.441616161617, + "value": 15903.652206540117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001224", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 14922.05787578758, + "value": 14716.819812521653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001225", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 17255.32, + "value": 17017.990237087062, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001226", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 13622.0, + "value": 13434.642939661506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001227", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 15783.438217821782, + "value": 15566.35272475723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001228", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 12206.0, + "value": 12038.118611181055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001229", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 20533.74, + "value": 20251.318830997287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001230", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 15986.669999999998, + "value": 15766.78925592412, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001231", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 10875.847524752475, + "value": 10726.26106014175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001232", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 10863.105770577058, + "value": 10713.694556120925, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001233", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 12214.240000000002, + "value": 12046.245278177297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001234", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 13863.779999999999, + "value": 13673.097496257553, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001235", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 12422.72, + "value": 12251.857843150181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001236", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 17947.36, + "value": 17700.511915252042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001237", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 14013.185963596357, + "value": 13820.448529437199, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001238", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 20314.0, + "value": 20034.601136124198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001239", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 11167.2, + "value": 11013.606271897515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001240", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 10324.0, + "value": 10182.00364917526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001241", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 10595.1, + "value": 10449.374938335606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001242", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 10719.95, + "value": 10572.5077507726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001243", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 10921.23, + "value": 10771.01934458372, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001244", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 12407.640000000001, + "value": 12236.985253550263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001245", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 13387.56, + "value": 13203.427428666479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001246", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 12668.0, + "value": 12493.764260727643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001247", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 10389.91, + "value": 10247.00712268525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001248", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 14514.099999999999, + "value": 14314.472991524082, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001249", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 13208.541485148515, + "value": 13026.871135418924, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001250", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 12613.434545454546, + "value": 12439.949299733773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001251", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 13536.55, + "value": 13350.36821941528, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001252", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 11751.0, + "value": 11589.376683597295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001253", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 12366.300000000001, + "value": 12196.213844129796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001254", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 13943.0, + "value": 13751.227903956862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001255", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 12731.82, + "value": 12556.706480108733, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001256", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 10677.0, + "value": 10530.148485300682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001257", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 17530.239999999998, + "value": 17289.12898594712, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001258", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 12891.029702970298, + "value": 12713.726411978905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001259", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 17257.86514851485, + "value": 17020.500379615725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001260", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 17607.06495049505, + "value": 17364.89728566509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001261", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 11236.71, + "value": 11082.16023098839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001262", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 14084.69, + "value": 13890.969098944428, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001263", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 13164.740000000002, + "value": 12983.672096129747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001264", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 17103.753131313133, + "value": 16868.508019916997, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001265", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 20242.125555555554, + "value": 19963.715253170325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001266", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 12661.960000000001, + "value": 12487.807334919718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001267", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 13504.920792079209, + "value": 13319.174039788195, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001268", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 14483.04, + "value": 14283.840190929024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001269", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 13466.385151515151, + "value": 13281.168418629097, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001270", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 15065.193465346536, + "value": 14857.986714421706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001271", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 16551.9, + "value": 16324.245079502516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001272", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 10690.0, + "value": 10542.969683231646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001273", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 11516.14891089109, + "value": 11357.755737615145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001274", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 12410.82, + "value": 12240.121515813375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001275", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10713.0, + "value": 10565.653341109508, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001276", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 19053.0, + "value": 18790.944936820633, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001277", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 11832.92, + "value": 11670.169955482266, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001278", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 14413.949999999999, + "value": 14215.70045515592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001279", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 18196.2, + "value": 17945.9293685706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001280", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 12292.12, + "value": 12123.054116243722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001281", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 11775.06, + "value": 11613.105762229525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001282", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 10715.2, + "value": 10567.823082297826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001283", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 16098.16, + "value": 15876.745821872064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001284", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 13997.53, + "value": 13805.007898047284, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001285", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 10826.379009900991, + "value": 10677.472935506228, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001286", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 12033.470000000001, + "value": 11867.96158971726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001287", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 11313.0, + "value": 11157.400937923258, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001288", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 12528.35, + "value": 12356.035007569244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001289", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 14560.220000000001, + "value": 14359.958656799168, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001290", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 16885.68, + "value": 16653.434267610002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001291", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 10210.26811881188, + "value": 10069.836036884964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001292", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 13671.363636363636, + "value": 13483.327628308454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001293", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 16531.18787878788, + "value": 16303.817832915536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001294", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 13910.67, + "value": 13719.342570948547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001295", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 11696.44, + "value": 11535.56710212703, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001296", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 15434.0, + "value": 15221.720682039031, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001297", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 14256.48, + "value": 14060.396298372152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001298", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 14193.630000000001, + "value": 13998.410737605911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001299", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 11163.0, + "value": 11009.46403871982, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001300", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 16535.097373737375, + "value": 16307.673556650734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001301", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 18255.862626262628, + "value": 18004.771394754778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001302", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 14417.0, + "value": 14218.708505439725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001303", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 7651.0, + "value": 7545.768105370003, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001304", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 7651.0, + "value": 7545.768105370003, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001305", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 14937.0, + "value": 14731.556422678308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001306", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 15752.06, + "value": 15535.40608311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001307", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 11172.9, + "value": 11019.227874067246, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001308", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 12160.0, + "value": 11992.751295425334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001309", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 10769.95, + "value": 10621.820050507078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001310", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 22598.37, + "value": 22287.551899013244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001311", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 14516.12, + "value": 14316.465208433356, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001312", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 18212.56, + "value": 17962.06435304372, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001313", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 11455.9, + "value": 11298.335490564397, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001314", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 12987.274747474748, + "value": 12808.647701630141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001315", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 12595.370707070708, + "value": 12422.133911478992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001316", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 10486.44, + "value": 10342.209448552634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001317", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 9982.17, + "value": 9844.875180810517, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001318", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 10341.2, + "value": 10198.96708028392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001319", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 10877.276666666667, + "value": 10727.670545630463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001320", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 12818.503069306931, + "value": 12642.197310020092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001321", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 12485.0, + "value": 12313.281243699448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001322", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 10086.5, + "value": 9947.770225436483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001323", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 13230.08, + "value": 13048.113409422762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001324", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 11476.430303030304, + "value": 11318.5834196978, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001325", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 11676.303030303032, + "value": 11515.70709641821, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001326", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 14070.84, + "value": 13877.309591917978, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001327", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 12387.43, + "value": 12217.053221997587, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001328", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 13667.73, + "value": 13479.743968998659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001329", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 13583.16, + "value": 13396.337145227762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001330", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 11515.047171717171, + "value": 11356.669151767677, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001331", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 18758.253333333334, + "value": 18500.252217372527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001332", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 17278.32, + "value": 17040.673894964926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001333", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 15657.19181818182, + "value": 15441.842718768334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001334", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 16876.76, + "value": 16644.636953337373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001335", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 12041.58, + "value": 11875.960044734193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001336", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 11837.0, + "value": 11674.193839140598, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001337", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 10683.9, + "value": 10536.95358266404, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001338", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 12376.680000000002, + "value": 12206.451077554673, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001339", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 12044.599999999999, + "value": 11878.938507638157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001340", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 11587.28, + "value": 11427.908489346715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001341", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 11207.42, + "value": 11053.27308580393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001342", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 11494.480000000001, + "value": 11336.384861039523, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001343", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 9701.94, + "value": 9568.499465718658, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001344", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 10668.84, + "value": 10522.100717984014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001345", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 13724.76, + "value": 13535.989578075807, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001346", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 15624.699999999999, + "value": 15409.797793226333, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001347", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 11900.0, + "value": 11736.327336806042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001348", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 15435.145454545454, + "value": 15222.850381996584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001349", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 14200.310000000001, + "value": 14004.998860850439, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001350", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 13390.24, + "value": 13206.070567932247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001351", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 12231.9, + "value": 12063.662382443514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001352", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 12521.382727272729, + "value": 12349.16356274806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001353", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 11526.34, + "value": 11367.806658430332, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001354", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 10331.82, + "value": 10189.71609285373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001355", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 12499.15, + "value": 12327.236624524307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001356", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 11595.995841584161, + "value": 11436.50445319944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001357", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 11438.86, + "value": 11281.529858814889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001358", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 12202.1, + "value": 12034.272251801765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001359", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 12788.28, + "value": 12612.389928968907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001360", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 13518.38891089109, + "value": 13332.456918022415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001361", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 11466.77, + "value": 11309.055984526674, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001362", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 10861.65, + "value": 10712.258808220113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001363", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 11054.331818181818, + "value": 10902.29047965144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001364", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 12674.67, + "value": 12500.342521512224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001365", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 10953.339999999998, + "value": 10802.687703473202, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001366", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 13761.279999999999, + "value": 13572.00728180187, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001367", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 12269.38, + "value": 12100.62688232448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001368", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 10078.52, + "value": 9939.89998239886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001369", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 17775.12, + "value": 17530.640905126707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001370", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 13963.740000000002, + "value": 13771.682645886725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001371", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 17405.6, + "value": 17166.203285169013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001372", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 10822.699999999999, + "value": 10673.844526726954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001373", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 10908.0, + "value": 10757.971310073975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001374", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 9095.0, + "value": 8969.907321701761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001375", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 13037.86, + "value": 12858.53720432353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001376", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 13275.82, + "value": 13093.224301219865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001377", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 14384.77712871287, + "value": 14186.928827695394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001378", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 11893.88, + "value": 11730.29151131854, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001379", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 11538.751584158417, + "value": 11380.047533594323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001380", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 11563.55, + "value": 11404.504871892732, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001381", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 10491.0, + "value": 10346.706730288419, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001382", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 10889.05, + "value": 10739.281948474607, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001383", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 11925.6, + "value": 11761.575234270094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001384", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 13967.66, + "value": 13775.548730185907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001385", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 11649.34, + "value": 11489.11491577715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001386", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 11577.84, + "value": 11418.598327156846, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001387", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 11298.0, + "value": 11142.607248002912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001388", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 10742.010000000002, + "value": 10594.264337415452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001389", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 11401.252525252525, + "value": 11244.439637474801, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001390", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 12037.699999999999, + "value": 11872.133410274799, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001391", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 11071.0, + "value": 10918.729407208379, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001392", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 14483.89, + "value": 14284.67850002451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001393", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 14075.0, + "value": 13881.412375255886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001394", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 11572.24504950495, + "value": 11413.080329640617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001395", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 10219.94, + "value": 10079.374890967862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001396", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 8437.38383838384, + "value": 8321.336016264684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001397", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 10073.06, + "value": 9934.515079267854, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001398", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 12289.36, + "value": 12120.332077298379, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001399", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 12510.68, + "value": 12338.608040843077, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001400", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 11585.0, + "value": 11425.659848478825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001401", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 14337.330000000002, + "value": 14140.134287042805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001402", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 14298.158415841584, + "value": 14101.50146906092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001403", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 14115.5, + "value": 13921.355338040814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001404", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 13148.0, + "value": 12967.162338178641, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001405", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 11221.58, + "value": 11067.238329088736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001406", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 15782.16, + "value": 15565.092087550154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001407", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 14368.721188118812, + "value": 14171.09372059353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001408", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 11956.399191919192, + "value": 11791.950813940075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001409", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 10604.76, + "value": 10458.902074644308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001410", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 13927.242424242424, + "value": 13735.687057979934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001411", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 12574.234949494949, + "value": 12401.28885522517, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001412", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 10549.422626262627, + "value": 10404.325811439181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001413", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 11919.0, + "value": 11755.066010705144, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001414", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 12880.76, + "value": 12703.597958557799, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001415", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 12918.0, + "value": 12740.325759400039, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001416", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 13516.0, + "value": 13330.100864224409, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001417", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 13669.698181818181, + "value": 13481.685080433661, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001418", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 12198.23, + "value": 12030.455479802316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001419", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 10607.91, + "value": 10462.008749527578, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001420", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 12646.830000000002, + "value": 12472.885433020063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001421", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 15149.68, + "value": 14941.311220828888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001422", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 12818.1, + "value": 12641.799784530549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001423", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 11255.0, + "value": 11100.19867023126, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001424", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 11189.05, + "value": 11035.155746881483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001425", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 16073.64, + "value": 15852.563070082275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001426", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 11096.75, + "value": 10944.125241571634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001427", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 12098.25, + "value": 11931.850605253252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001428", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 11758.05, + "value": 11596.329717859857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001429", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 12239.59, + "value": 12071.246614142678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001430", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 20684.43, + "value": 20399.93623993706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001431", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 11989.0, + "value": 11824.103230333416, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001432", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 12264.0, + "value": 12095.320878873052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001433", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 13438.849999999999, + "value": 13254.011985734107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001434", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 16176.2, + "value": 15953.71245929764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001435", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 21663.420000000002, + "value": 21365.461206278214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001436", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 11163.08297029703, + "value": 11009.545867842944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001437", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 12731.52, + "value": 12556.410606310325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001438", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 14940.21, + "value": 14734.72227232126, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001439", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 12451.46, + "value": 12280.202553037561, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001440", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 10065.42, + "value": 9926.980159868428, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001441", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 12425.0, + "value": 12254.106484018073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001442", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 15869.1, + "value": 15650.836314328468, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001443", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 11862.949999999999, + "value": 11699.786922702795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001444", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 10770.046336633664, + "value": 10621.915062126172, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001445", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 19887.64, + "value": 19614.105293828346, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001446", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 13042.800000000001, + "value": 12863.409259537299, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001447", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 13068.88, + "value": 12889.130555078802, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001448", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 13440.90909090909, + "value": 13256.0427558959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001449", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 11720.78, + "value": 11559.572329637776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001450", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 12938.64, + "value": 12760.68187673043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001451", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 10497.54108910891, + "value": 10353.15785322299, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001452", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 13169.655940594059, + "value": 12988.520422850768, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001453", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 14228.03, + "value": 14032.337599823233, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001454", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 13379.10108910891, + "value": 13195.084861680705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001455", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 11559.893232323233, + "value": 11400.89839941801, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001456", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 14659.53, + "value": 14457.902746531789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001457", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 13590.72, + "value": 13403.793164947614, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001458", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 11548.54, + "value": 11389.701319512442, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001459", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 13324.09090909091, + "value": 13140.8312919708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001460", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 11670.24, + "value": 11509.727457066161, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001461", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 10384.0, + "value": 10241.178408856635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001462", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 12736.4, + "value": 12561.22348676441, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001463", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 10113.04, + "value": 9973.945194135546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001464", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 12428.642376237623, + "value": 12257.698762993583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001465", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 13680.96, + "value": 13492.792003508403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001466", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 13812.75, + "value": 13622.769363148544, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001467", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 9101.0, + "value": 8975.824797669899, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001468", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 11833.529504950495, + "value": 11670.771077298434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001469", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 12717.17594059406, + "value": 12542.263835173626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001470", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 12771.544554455446, + "value": 12595.884662831244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001471", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 12663.18, + "value": 12489.01055503324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001472", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 12846.0, + "value": 12669.316047782388, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001473", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 12116.65, + "value": 11949.997531555542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001474", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 13203.84, + "value": 13022.23431452211, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001475", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 11318.369999999999, + "value": 11162.697078914738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001476", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 11726.400000000001, + "value": 11565.115032127931, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001477", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 19977.3, + "value": 19702.532109712214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001478", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 14408.24, + "value": 14210.068990526242, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001479", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 11917.6, + "value": 11753.68526631258, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001480", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 12853.12, + "value": 12676.33811926458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001481", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 14436.664014401442, + "value": 14238.102060882664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001482", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 11892.688118811882, + "value": 11729.116023270613, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001483", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 12917.52, + "value": 12739.852361322588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001484", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 9288.82, + "value": 9161.061520392495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001485", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 10942.678181818183, + "value": 10792.172527995275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001486", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 10207.0, + "value": 10066.612867796577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001487", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 13327.0, + "value": 13143.700371228078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001488", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 12890.439999999999, + "value": 12713.144819786394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001489", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 11533.44, + "value": 11374.809004992629, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001490", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 13432.379399939995, + "value": 13247.63038234169, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001491", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 11841.6, + "value": 11678.73057071617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001492", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 10768.5, + "value": 10620.38999381478, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001493", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 10802.35, + "value": 10653.77442073502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001494", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 11011.199999999999, + "value": 10859.75189672594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001495", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 10966.64, + "value": 10815.804775202572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001496", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 14425.87, + "value": 14227.45650741262, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001497", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 11492.720000000001, + "value": 11334.64906808887, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001498", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 12099.01, + "value": 11932.600152209217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001499", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 11724.0, + "value": 11562.748041740675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001500", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 13234.0, + "value": 13051.979493721947, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001501", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 13185.39, + "value": 13004.038075920087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001502", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 14928.09, + "value": 14722.768970865623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001503", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 19276.961515151517, + "value": 19011.826084103424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001504", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 10895.24, + "value": 10745.386811181737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001505", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 14234.0, + "value": 14038.22548841153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001506", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 12436.68, + "value": 12265.625837236048, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001507", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 15614.4, + "value": 15399.63945948103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001508", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 12317.880000000001, + "value": 12148.459813066927, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001509", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 12074.0, + "value": 11907.93413988203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001510", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 11267.1, + "value": 11112.132246767005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001511", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 10041.25, + "value": 9903.14259417678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001512", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 14667.498109810982, + "value": 14465.761262918115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001513", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 11884.41, + "value": 11720.951761748833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001514", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 10614.980000000001, + "value": 10468.981508710032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001515", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 12143.0, + "value": 11975.985113515611, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001516", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 12489.0, + "value": 12317.226227678208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001517", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 13785.69, + "value": 13596.081546532243, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001518", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 11419.26, + "value": 11262.199437318972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001519", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 11602.06, + "value": 11442.485205148228, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001520", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 12797.769999999999, + "value": 12621.749403458509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001521", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 11829.19, + "value": 11666.491257922075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001522", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 10920.9, + "value": 10770.69388340547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001523", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 11209.56, + "value": 11055.383652232567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001524", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 11397.08, + "value": 11240.324501156756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001525", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 16912.57, + "value": 16679.95442240721, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001526", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 11309.199999999999, + "value": 11153.653203143436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001527", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 17088.11, + "value": 16853.08004431502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001528", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 13662.0, + "value": 13474.092779449089, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001529", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 12610.91, + "value": 12437.459476890812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001530", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 9952.336633663366, + "value": 9815.452142752907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001531", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 11359.0, + "value": 11202.768253678978, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001532", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 13911.23, + "value": 13719.894868705573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001533", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 11009.40202020202, + "value": 10857.97864635165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001534", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 16673.0, + "value": 16443.679469459425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001535", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 11387.0, + "value": 11230.383141530287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001536", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 14416.16, + "value": 14217.880058804185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001537", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 15201.04, + "value": 14991.964815116145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001538", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 12426.42, + "value": 12255.506953330534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001539", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 12686.06, + "value": 12511.575863391736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001540", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 12658.8, + "value": 12484.690797576499, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001541", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 13110.37, + "value": 12930.049901398474, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001542", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 12014.23, + "value": 11848.986216779434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001543", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 12979.27, + "value": 12800.753051494668, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001544", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 10779.725940594059, + "value": 10631.461532762292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001545", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 11440.74292929293, + "value": 11283.386890288324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001546", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 17687.920000000002, + "value": 17444.640254389775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001547", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 13889.55, + "value": 13698.513055540701, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001548", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 9943.62, + "value": 9806.855397715235, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001549", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 13689.41, + "value": 13501.125782163532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001550", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 14728.0, + "value": 14525.431009788184, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001551", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 11353.9, + "value": 11197.73839910606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001552", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 10274.640000000001, + "value": 10133.322546877382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001553", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 20631.514951495148, + "value": 20347.748985290345, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001554", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 10968.880000000001, + "value": 10818.01396623068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001555", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 16081.0, + "value": 15859.82184060319, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001556", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 18410.21, + "value": 18156.995873894117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001557", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 12917.539999999999, + "value": 12739.87208624248, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001558", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 15760.245445544555, + "value": 15543.478945993067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001559", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 13176.46, + "value": 12995.230899187509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001560", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 13525.993069306931, + "value": 13339.956488803025, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001561", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 11602.12, + "value": 11442.54437990791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001562", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 14505.59, + "value": 14306.080038109274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001563", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 18498.0, + "value": 18243.578409767913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001564", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 11827.0, + "value": 11664.331379193703, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001565", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 14070.9, + "value": 13877.368766677659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001566", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 13160.82, + "value": 12979.806011830564, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001567", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 11604.09, + "value": 11444.487284517449, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001568", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 15667.970000000001, + "value": 15452.472657416554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001569", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 10858.030693069308, + "value": 10708.689281256165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001570", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 11735.99, + "value": 11574.573131217005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001571", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 14779.134545454546, + "value": 14575.862250433003, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001572", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 10385.539999999999, + "value": 10242.697227688455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001573", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 14260.0, + "value": 14063.867884273459, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001574", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 13495.7, + "value": 13310.080070532213, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001575", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 9847.75, + "value": 9712.303994204345, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001576", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 17937.480000000003, + "value": 17690.76780482451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001577", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 10888.0, + "value": 10738.246390180184, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001578", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 12584.08, + "value": 12410.998496853292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001579", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 11151.0, + "value": 10997.629086783545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001580", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 10289.7, + "value": 10148.175411557406, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001581", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 11701.1, + "value": 11540.163008462283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001582", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 10809.44405640564, + "value": 10660.770905451185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001583", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 10863.5, + "value": 10714.08336331029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001584", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 11222.67, + "value": 11068.313337222948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001585", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 13279.0, + "value": 13096.360563482978, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001586", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 17476.2, + "value": 17235.832252394095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001587", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 13532.22, + "value": 13346.097774258275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001588", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 16011.699999999999, + "value": 15791.474993171203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001589", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 10491.01, + "value": 10346.716592748366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001590", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 12719.74, + "value": 12544.792628492882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001591", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 12208.92, + "value": 12040.998449485549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001592", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 15251.070000000002, + "value": 15041.306702230466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001593", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 14625.88303030303, + "value": 14424.718557434711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001594", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 12530.7, + "value": 12358.352685656762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001595", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 14933.62, + "value": 14728.222911216257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001596", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 14538.34, + "value": 14338.379594435359, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001597", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 12436.0, + "value": 12264.955189959659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001598", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 12358.89, + "value": 12188.905761309146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001599", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 11864.11, + "value": 11700.930968056633, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001600", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 14534.480000000001, + "value": 14334.572684895857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001601", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 12068.0, + "value": 11902.016663913893, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001602", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 13939.0, + "value": 13747.282919978103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001603", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 11856.04, + "value": 11692.971962879488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001604", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 12877.619999999999, + "value": 12700.501146134473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@E14001605", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 10696.38, + "value": 10549.261932677766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000001", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 13912.186929598065, + "value": 13720.838636688866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000002", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 13121.534464974377, + "value": 12941.060810262305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000003", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 14045.957957767278, + "value": 13852.76977742626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000004", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 14304.228754727637, + "value": 14107.4883164737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000005", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 14051.255820269027, + "value": 13857.994773099028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000006", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 13782.469568949133, + "value": 13592.905409307152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000007", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 13775.766970177976, + "value": 13586.29499811509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000008", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 12701.491563541358, + "value": 12526.7951811262, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000009", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 13243.331788752004, + "value": 13061.182933001903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000010", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 12985.060991791644, + "value": 12806.464393954459, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000011", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 12440.705619736733, + "value": 12269.596088577544, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000012", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 12438.056688485856, + "value": 12266.98359074116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000013", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 14045.957957767278, + "value": 13852.76977742626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000014", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 13639.293496995246, + "value": 13451.698581807244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000015", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 11905.621507059883, + "value": 11741.87152562797, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000016", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 13778.415901428854, + "value": 13588.907495951473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000017", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 12306.93459156752, + "value": 12137.66494784015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@N05000018", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 14309.580130992033, + "value": 14112.766089880537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000021", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 11314.500402078214, + "value": 11158.88070346332, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000027", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 12099.86426260108, + "value": 11933.442665277946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000045", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 10982.568307917834, + "value": 10831.51400508872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000048", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 12126.168315345865, + "value": 11959.384931941593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000051", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3272.975705815386, + "value": 3227.959180576737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000060", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 11992.142903741485, + "value": 11827.202906560151, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000061", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 12089.843671079261, + "value": 11923.55989702513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000062", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 11466.061848845784, + "value": 11308.357573287194, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000063", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5630.319861324209, + "value": 5552.880412052212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000064", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 12211.34334328136, + "value": 12043.388462090548, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000065", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 14695.773650765701, + "value": 14493.64790193239, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000066", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 16843.16136241353, + "value": 16611.50043159069, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000067", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 12496.769872188963, + "value": 12324.889233003822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000068", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 13078.537859319309, + "value": 12898.655580149747, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000069", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 10177.982447708233, + "value": 10037.994423073127, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000070", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 13469.077888142952, + "value": 13283.824119343019, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000071", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 13805.16351748913, + "value": 13615.287225158416, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000072", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 12479.570270945083, + "value": 12307.926195166789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000073", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 9716.52168238889, + "value": 9582.880591570532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000074", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 17962.12143279232, + "value": 17715.070319219347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000075", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 12055.811237123266, + "value": 11889.995545346492, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000076", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 11429.96016274054, + "value": 11272.752429964357, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000077", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 11908.016242237174, + "value": 11744.233323604916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000078", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 12308.893801746306, + "value": 12139.597211031734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000079", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 11254.953036959781, + "value": 11100.15235312095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000080", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 14051.404523250647, + "value": 13858.141430819045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000081", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 10890.484082128043, + "value": 10740.696306229447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000082", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 11049.027376038444, + "value": 10897.058994833473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000083", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 14963.393588539026, + "value": 14757.586993660405, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000084", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 13410.06912981882, + "value": 13225.626967794235, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000085", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 13221.79474086317, + "value": 13039.9421057841, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000086", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 13405.046308318506, + "value": 13220.673230207512, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000087", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 12717.37068939401, + "value": 12542.45590539755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000088", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 10511.903629285694, + "value": 10367.322850945911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000089", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 12850.21519022188, + "value": 12673.473262255573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000090", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 16266.672118722412, + "value": 16042.9402240187, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000091", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 15850.278214407801, + "value": 15632.273403675255, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000092", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 11486.103775992762, + "value": 11328.123843661762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000093", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 12929.595780293477, + "value": 12751.762051269781, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000094", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 14865.948346285059, + "value": 14661.482013785875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000095", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 12010.79623485936, + "value": 11845.599679662771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000096", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 10611.966751074739, + "value": 10466.00970402649, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000097", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 11274.911550123375, + "value": 11119.836356788499, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000098", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 13241.430387591516, + "value": 13059.307683723071, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000099", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 14207.245193526562, + "value": 14011.838667688406, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000100", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 11772.591743498348, + "value": 11610.671454140904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000101", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 10479.013542763194, + "value": 10334.885134848102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000102", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 13058.45909905746, + "value": 12878.852983263165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000103", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 13121.401572167011, + "value": 12940.929745263316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000104", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 12507.90775966547, + "value": 12335.87392991683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000105", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 13068.667576670316, + "value": 12888.921053420721, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000106", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 11310.206677824892, + "value": 11154.646035116179, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000107", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 12232.802043170233, + "value": 12064.552018907196, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000108", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 12551.973310882684, + "value": 12379.333403308596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000109", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 10001.106481608656, + "value": 9863.551209950569, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000110", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 13846.71891053013, + "value": 13656.271065102852, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@S14000111", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 11936.117776542975, + "value": 11771.948349258644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000081", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 11622.38, + "value": 11462.52572376032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000082", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 12911.25, + "value": 12733.668598935883, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000083", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 10488.46, + "value": 10344.201665461907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000084", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 11524.36, + "value": 11365.853891360848, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000085", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 10068.59, + "value": 9930.106559671593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000086", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 12098.93, + "value": 11932.521252529641, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000087", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 10209.74, + "value": 10069.315181822027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000088", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 12312.42, + "value": 12143.074909935922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000089", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 11376.19, + "value": 11219.721822327692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000090", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 11115.32, + "value": 10962.439829693021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000091", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 12622.69, + "value": 12449.077454708258, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000092", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 12514.91, + "value": 12342.779861400615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000093", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 9312.84, + "value": 9184.75114918494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000094", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 11019.075643564356, + "value": 10867.519218646888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000095", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 10799.05, + "value": 10650.519808952546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000096", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 10394.619801980198, + "value": 10251.652146024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000097", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 11651.04, + "value": 11490.791533968124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000098", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 10932.56, + "value": 10782.193511703552, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000099", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 11646.12, + "value": 11485.939203674252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000100", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 11135.859999999999, + "value": 10982.697322423943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000101", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 10844.53, + "value": 10695.374276791028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000102", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 11012.990099009901, + "value": 10861.517374704552, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000103", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 12198.93, + "value": 12031.1458519986, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000104", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 13096.47, + "value": 12916.341082072287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000105", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 12741.09, + "value": 12565.848980479504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000106", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 12734.449999999999, + "value": 12559.300307074765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000107", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 11908.03, + "value": 11744.2468921434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000108", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 12111.52, + "value": 11944.938089602783, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000109", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 10801.91, + "value": 10653.340472497357, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000110", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 12085.12, + "value": 11918.90119534298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000111", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 12319.554455445545, + "value": 12150.11123804338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/40_50@W07000112", + "metric": "age/40_50", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 7784.0, + "value": 7676.9388226637175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001063", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 15815.36, + "value": 15597.83545457385, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001064", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 13682.75, + "value": 13494.557383838897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001065", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 14424.0, + "value": 14225.612227402551, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001066", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 13970.0, + "value": 13777.85654581348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001067", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 14770.08, + "value": 14566.932241244722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001068", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 14517.51, + "value": 14317.836090365974, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001069", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 15672.84, + "value": 15457.27567541069, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001070", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 14193.609999999999, + "value": 13998.391012686017, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001071", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 15200.9499009901, + "value": 14991.875955328504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001072", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 13703.09, + "value": 13514.617627370882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001073", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 14058.52, + "value": 13865.159041263403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001074", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 15383.13, + "value": 15171.55034828917, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001075", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 15265.47, + "value": 15055.508644553996, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001076", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 15066.1, + "value": 14858.880780592734, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001077", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 14475.4, + "value": 14276.305271529596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001078", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 14840.77, + "value": 14636.64997060933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001079", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 15919.68, + "value": 15700.720636739867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001080", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 11960.83, + "value": 11796.32068066301, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001081", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 10712.52, + "value": 10565.179943032055, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001082", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 14455.04, + "value": 14256.225303077716, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001083", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 15108.829595959596, + "value": 14901.022673462589, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001084", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 14157.58, + "value": 13962.856569497351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001085", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 12151.640000000001, + "value": 11984.50627890973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001086", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 11421.33, + "value": 11264.240966527981, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001087", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 14474.7, + "value": 14275.614899333314, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001088", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 13784.19, + "value": 13594.60217754021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001089", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 13672.060000000001, + "value": 13484.014414155665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001090", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 13911.1, + "value": 13719.766656726264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001091", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 15170.73, + "value": 14962.071699017104, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001092", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 11842.56, + "value": 11679.677366871072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001093", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 15165.8, + "value": 14957.209506263285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001094", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 12419.34, + "value": 12248.524331688131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001095", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 12808.349999999999, + "value": 12632.183886082325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001096", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 13241.23, + "value": 13059.110052263552, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001097", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 13179.63, + "value": 12998.357298990673, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001098", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 13376.199999999999, + "value": 13192.223674166806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001099", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 11446.39, + "value": 11288.956291154902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001100", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 12404.130000000001, + "value": 12233.523530108903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001101", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 14238.873737373739, + "value": 14043.032192375547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001102", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 12699.789999999999, + "value": 12525.117020898824, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001103", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 11711.280606060605, + "value": 11550.203590413068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001104", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 13839.02, + "value": 13648.678045429037, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001105", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 16247.76, + "value": 16024.288222677626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001106", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 13898.980505050506, + "value": 13707.813853374664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001107", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 15080.67, + "value": 14873.250384735358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001108", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 14656.38, + "value": 14454.796071648516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001109", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 15474.0, + "value": 15261.170521826614, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001110", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 14746.92, + "value": 14544.09078400771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001111", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 15229.039999999999, + "value": 15019.579702967454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001112", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 13791.69, + "value": 13601.99902250038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001113", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 14680.0, + "value": 14478.091202043084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001114", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 16392.68, + "value": 16167.21499222804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001115", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 14283.0, + "value": 14086.55154215132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001116", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 12646.26, + "value": 12472.32327280309, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001117", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 14172.23, + "value": 13977.305073319554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001118", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 12701.78, + "value": 12527.079650428257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001119", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 13876.22, + "value": 13685.366396431491, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001120", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 11697.0, + "value": 11536.119399884057, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001121", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 15664.874059405942, + "value": 15449.419298405865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001122", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 16286.4, + "value": 16062.39676791243, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001123", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 15060.5, + "value": 14853.35780302247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001124", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 15060.76, + "value": 14853.61422698109, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001125", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 14738.0, + "value": 14535.293469735081, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001126", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 14841.51, + "value": 14637.379792645399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001127", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 14267.26, + "value": 14071.028030194906, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001128", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 13880.710000000001, + "value": 13689.794640947646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001129", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 13095.16, + "value": 12915.049099819245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001130", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 13433.84, + "value": 13249.070893300714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001131", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 7610.530000000001, + "value": 7505.854729964915, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001132", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 11216.039999999999, + "value": 11061.774526278154, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001133", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 12079.949198919892, + "value": 11913.801513488384, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001134", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 11369.35, + "value": 11212.975899724015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001135", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 10955.12, + "value": 10804.44322134375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001136", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 14404.666666666666, + "value": 14206.544804838551, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001137", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 13953.546262626263, + "value": 13761.629113230958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001138", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 14903.0, + "value": 14698.024058858862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001139", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 15254.99, + "value": 15045.172786529649, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001140", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 13652.28, + "value": 13464.506468380707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001141", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 14170.492871287128, + "value": 13975.591837084225, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001142", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 13898.64, + "value": 13707.478031632432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001143", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 15495.0, + "value": 15281.881687715095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001144", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 14177.85, + "value": 13982.84777580971, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001145", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 13906.84696969697, + "value": 13715.572122624608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001146", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 15006.78, + "value": 14800.376668187748, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001147", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 16658.78, + "value": 16429.65505141494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001148", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 13935.550000000001, + "value": 13743.880371296425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001149", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 11197.2, + "value": 11043.193651738204, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001150", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 15367.0, + "value": 15155.642200394828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001151", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 13175.55, + "value": 12994.333415332341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001152", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 15051.6, + "value": 14844.580213669733, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001153", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 14445.0, + "value": 14246.323393291032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001154", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 13211.08, + "value": 13029.374735523661, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001155", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 14805.727272727272, + "value": 14602.089221193602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001156", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 14218.465148514852, + "value": 14022.904303356205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001157", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 14415.480000000001, + "value": 14217.209411527796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001158", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 13399.0, + "value": 13214.710082845728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001159", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 14044.8, + "value": 13851.627746216262, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001160", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 16024.55, + "value": 15804.148254202964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001161", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 13170.34, + "value": 12989.195073700008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001162", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 14631.72, + "value": 14430.475245419471, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001163", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 12521.959595959595, + "value": 12349.732497179946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001164", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 13427.091414141414, + "value": 13242.415127527864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001165", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 14246.0, + "value": 14050.060440347805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001166", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 14662.47, + "value": 14460.802309756175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001167", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 14722.56, + "value": 14520.065831577072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001168", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 15029.616435643564, + "value": 14822.899011374198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001169", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 15601.979999999998, + "value": 15387.390284226987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001170", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 14796.48, + "value": 14592.969135504527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001171", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 12290.69, + "value": 12121.643784471316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001172", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 19776.350000000002, + "value": 19504.34597707934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001173", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 13114.66383838384, + "value": 12934.28468230638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001174", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 13782.950495049505, + "value": 13593.379720747385, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001175", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 11645.91, + "value": 11485.732092015367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001176", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 13728.51881188119, + "value": 13539.696691238421, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001177", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 13866.199999999999, + "value": 13675.484211564702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001178", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 13425.46, + "value": 13240.806151865214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001179", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 16569.9, + "value": 16341.99750740693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001180", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 13302.53, + "value": 13119.566931738023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001181", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 13083.0, + "value": 12903.05634852382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001182", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 12585.47, + "value": 12412.36937878591, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001183", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 13683.607425742573, + "value": 13495.403016543254, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001184", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 14372.0, + "value": 14174.327435678693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001185", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 15720.51, + "value": 15504.290021977542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001186", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 14722.88, + "value": 14520.381430295374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001187", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 13864.380000000001, + "value": 13673.689243854367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001188", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 16815.31, + "value": 16584.0321369637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001189", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 14083.158787878789, + "value": 13889.458947122863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001190", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 13900.18, + "value": 13708.996850464253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001191", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 13724.69, + "value": 13535.92054085618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001192", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 15832.05792679268, + "value": 15614.303717992752, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001193", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 13020.0, + "value": 12840.922850858376, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001194", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 14173.0, + "value": 13978.064482735466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001195", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 15052.98, + "value": 14845.941233142405, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001196", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 14017.039999999999, + "value": 13824.249557403678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001197", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 14341.650000000001, + "value": 14144.394869739865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001198", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 15515.42, + "value": 15302.020830926656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001199", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 13659.560000000001, + "value": 13471.686339222046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001200", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 14125.84, + "value": 13931.553121625904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001201", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 14499.92396039604, + "value": 14300.491929244115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001202", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 15409.39, + "value": 15197.44916810972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001203", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 15382.4, + "value": 15170.830388713046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001204", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 14263.82, + "value": 14067.635343973174, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001205", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 13727.32, + "value": 13538.514367822212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001206", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 14713.82, + "value": 14511.446041583486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001207", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 15614.130000000001, + "value": 15399.373173062464, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001208", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 15095.92, + "value": 14888.290636154376, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001209", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 15007.95, + "value": 14801.530576001534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001210", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 13078.98101010101, + "value": 12899.092635833244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001211", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 13966.869999999999, + "value": 13774.7695958501, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001212", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 14606.525757575757, + "value": 14405.627524739324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001213", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 13575.12, + "value": 13388.40772743046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001214", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 13839.130000000001, + "value": 13648.786532488457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001215", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 14509.6, + "value": 14310.034884547978, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001216", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 15046.14, + "value": 14839.19531053873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001217", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 14156.4, + "value": 13961.692799223618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001218", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 14727.0, + "value": 14524.444763793495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001219", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 14294.1, + "value": 14097.498872692375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001220", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 12727.519999999999, + "value": 12552.465622331567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001221", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 16475.579999999998, + "value": 16248.974785187806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001222", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 14015.217575757575, + "value": 13822.452198793962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001223", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 14406.650101010102, + "value": 14208.500959015493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001224", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 15180.355630563057, + "value": 14971.56493860628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001225", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 17079.35, + "value": 16844.440529401538, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001226", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 14574.0, + "value": 14373.549126605989, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001227", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 15925.00811881188, + "value": 15705.975472577315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001228", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 14724.0, + "value": 14521.486025809427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001229", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 17657.02, + "value": 17414.165253153868, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001230", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 15329.779999999999, + "value": 15118.93412447248, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001231", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 11227.160396039604, + "value": 11072.741972331576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001232", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 12913.102430243023, + "value": 12735.495550843509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001233", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 15217.160000000002, + "value": 15007.863100550541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001234", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 14731.4, + "value": 14528.78424617013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001235", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 14561.36, + "value": 14361.08297723311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001236", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 14999.68, + "value": 14793.374321625452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001237", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 14102.67904790479, + "value": 13908.710725388808, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001238", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 15762.0, + "value": 15545.209368297214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001239", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 14350.400000000001, + "value": 14153.0245221934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001240", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 14499.0, + "value": 14299.58067700427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001241", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 13704.67, + "value": 13516.175896042492, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001242", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 14945.060000000001, + "value": 14739.505565395504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001243", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 14881.74, + "value": 14677.05646901176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001244", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 13685.640000000001, + "value": 13497.407634763551, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001245", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 14833.8, + "value": 14629.775836026343, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001246", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 13534.0, + "value": 13347.853292128822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001247", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 14055.04, + "value": 13861.726905201884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001248", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 15651.25, + "value": 15435.982624385342, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001249", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 13498.889900990098, + "value": 13313.226097607152, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001250", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 16274.192727272728, + "value": 16050.357394079076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001251", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 12589.2, + "value": 12416.048076346102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001252", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 14153.0, + "value": 13958.339562841675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001253", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 14814.980000000001, + "value": 14611.214686406285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001254", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 14809.0, + "value": 14605.316935358042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001255", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 15500.22, + "value": 15287.029891807373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001256", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 14036.0, + "value": 13842.948781462992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001257", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 11744.16, + "value": 11582.630760993618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001258", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 13357.198019801981, + "value": 13173.483047305337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001259", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 12299.107623762377, + "value": 12129.945632191764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001260", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 12449.860792079207, + "value": 12278.625340631002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001261", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 12859.199999999999, + "value": 12682.33449491229, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001262", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 14664.22, + "value": 14462.528240246882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001263", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 14931.03, + "value": 14725.668534090011, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001264", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 13948.140000000001, + "value": 13756.297208369566, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001265", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 15880.038181818183, + "value": 15661.624052335836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001266", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 14286.68, + "value": 14090.180927411779, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001267", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 14012.594059405941, + "value": 13819.86476630016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001268", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 13783.960000000001, + "value": 13594.37534096143, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001269", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 15967.215757575756, + "value": 15747.602587253494, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001270", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 14046.943564356437, + "value": 13853.741827977155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001271", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 14243.932323232324, + "value": 14048.02120241737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001272", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 13597.0, + "value": 13409.986789794266, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001273", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 14072.530693069308, + "value": 13878.977031185832, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001274", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 16020.41, + "value": 15800.06519578495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001275", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 14023.0, + "value": 13830.127583532028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001276", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 15493.0, + "value": 15279.909195725715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001277", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 13451.48, + "value": 13266.468272647036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001278", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 13935.33, + "value": 13743.663397177592, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001279", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 15325.2, + "value": 15114.417117816804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001280", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 14559.92, + "value": 14359.66278300076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001281", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 14837.13, + "value": 14633.060035188659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001282", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 13746.92, + "value": 13557.84478931813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001283", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 15872.76, + "value": 15654.445974669032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001284", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 14387.300000000001, + "value": 14189.416999397445, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001285", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 14741.806336633665, + "value": 14539.047453994472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001286", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 13722.380000000001, + "value": 13533.642312608446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001287", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 15095.0, + "value": 14887.383289839261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001288", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 14646.16, + "value": 14444.71663758279, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001289", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 14277.880000000001, + "value": 14081.501962658509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001290", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 15356.88, + "value": 15145.661390928568, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001291", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 13233.919900990099, + "value": 13051.900496394253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001292", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 14182.828282828283, + "value": 13987.757587309536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001293", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 13691.264444444445, + "value": 13502.95472056924, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001294", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 15465.31, + "value": 15252.60004413276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001295", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 14564.2, + "value": 14363.88391585803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001296", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 14532.0, + "value": 14332.126794829026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001297", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 15228.119999999999, + "value": 15018.672356652338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001298", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 15100.23, + "value": 14892.541356391488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001299", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 12824.0, + "value": 12647.618635899218, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001300", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 14139.844444444445, + "value": 13945.36494886709, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001301", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 13814.755555555557, + "value": 13624.74733428234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001302", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 14288.0, + "value": 14091.482772124768, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001303", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 10757.5, + "value": 10609.541287873193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001304", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 10757.5, + "value": 10609.541287873193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001305", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 12733.0, + "value": 12557.870250382466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001306", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 12987.19, + "value": 12808.56411977261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001307", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 13665.7, + "value": 13477.74188962944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001308", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 13836.0, + "value": 13645.699582525076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001309", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 13335.57, + "value": 13152.15249940257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001310", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 18811.04, + "value": 18552.31285594554, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001311", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 15099.44, + "value": 14891.762222055684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001312", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 14709.56, + "value": 14507.244633646107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001313", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 13095.41, + "value": 12915.295661317916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001314", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 13968.68595959596, + "value": 13776.560578728135, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001315", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 14263.631313131315, + "value": 14067.449252304681, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001316", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 13406.67, + "value": 13222.274589624998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001317", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 12711.330000000002, + "value": 12536.498299677543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001318", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 13045.52, + "value": 12866.091848642855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001319", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 10573.744444444445, + "value": 10428.313107204567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001320", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 13582.30891089109, + "value": 13395.497762002975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001321", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 11592.0, + "value": 11432.56357044165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001322", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 10563.5, + "value": 10418.209564903413, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001323", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 11344.999999999998, + "value": 11188.960809753324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001324", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 12773.96686868687, + "value": 12598.273660539866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001325", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 12082.868686868687, + "value": 11916.680846784428, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001326", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 13240.78, + "value": 13058.666241565943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001327", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 11202.050000000001, + "value": 11047.976944812448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001328", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 12672.17, + "value": 12497.876906525498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001329", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 15953.59, + "value": 15734.16423841979, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001330", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 14539.644848484848, + "value": 14339.666496027217, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001331", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 15607.442222222222, + "value": 15392.777379015757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001332", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 13140.42, + "value": 12959.686593538898, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001333", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 12623.258181818182, + "value": 12449.637821750695, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001334", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 13538.04, + "value": 13351.837725947367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001335", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 14322.05, + "value": 14125.064448243947, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001336", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 13235.0, + "value": 13052.965739716636, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001337", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 13100.7, + "value": 12920.512902629827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001338", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 11876.2, + "value": 11712.85468213243, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001339", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 13865.16, + "value": 13674.458515730224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001340", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 11303.12, + "value": 11147.656827495724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001341", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 12974.34, + "value": 12795.89085874085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001342", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 12138.480000000001, + "value": 11971.527281619616, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001343", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 14804.58, + "value": 14600.957728061514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001344", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 13528.060000000001, + "value": 13341.994990920366, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001345", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 13371.34, + "value": 13187.430518632615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001346", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 13148.84, + "value": 12967.990784814181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001347", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 15083.0, + "value": 14875.548337902987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001348", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 15303.16696969697, + "value": 15092.687129929565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001349", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 15232.37, + "value": 15022.863902129771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001350", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 15420.01, + "value": 15207.923100573324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001351", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 15418.2, + "value": 15206.137995322935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001352", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 11622.657373737375, + "value": 11462.799282497837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001353", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 9584.42, + "value": 9452.595836422737, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001354", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 9222.619999999999, + "value": 9095.772035544045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001355", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 15193.349999999999, + "value": 14984.380583416982, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001356", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 13753.834257425744, + "value": 13564.66394801052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001357", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 14284.800000000001, + "value": 14088.326784941763, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001358", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 14287.310000000001, + "value": 14090.802262388432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001359", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 14290.02, + "value": 14093.47498903404, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001360", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 14074.197227722772, + "value": 13880.620644312823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001361", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 13957.57, + "value": 13765.597508099489, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001362", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 14022.5, + "value": 13829.634460534682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001363", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 13898.229191919192, + "value": 13707.072873808147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001364", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 14989.83, + "value": 14783.659798577759, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001365", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 13884.909999999998, + "value": 13693.936874125344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001366", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 14447.5, + "value": 14248.789008277756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001367", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 13413.75, + "value": 13229.257211267399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001368", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 12956.43, + "value": 12778.227192975959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001369", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 15021.16, + "value": 14814.558885591383, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001370", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 11596.060000000001, + "value": 11436.567729180093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001371", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 15297.6, + "value": 15087.196728363371, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001372", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 14486.999999999998, + "value": 14287.745725067994, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001373", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 14321.0, + "value": 14124.028889949524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001374", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 12389.0, + "value": 12218.60162820925, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001375", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 15940.469999999998, + "value": 15721.224690969462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001376", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 14529.699999999999, + "value": 14329.85842904124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001377", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 14380.832376237624, + "value": 14183.03833136664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001378", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 13297.279999999999, + "value": 13114.389140265903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001379", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 12644.64386138614, + "value": 12470.729362568307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001380", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 13148.55, + "value": 12967.704773475722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001381", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 14174.0, + "value": 13979.050728730155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001382", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 14371.81, + "value": 14174.1400489397, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001383", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 14790.15, + "value": 14586.726198358141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001384", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 14634.880000000001, + "value": 14433.591782762689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001385", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 15053.5, + "value": 14846.454081059645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001386", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 14109.99, + "value": 13915.921122610076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001387", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 14841.0, + "value": 14636.876807188108, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001388", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 14196.210000000001, + "value": 14000.955252272212, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001389", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 14689.191919191919, + "value": 14487.156695529626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001390", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 14676.949999999999, + "value": 14475.08315175928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001391", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 14019.0, + "value": 13826.182599553269, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001392", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 14775.05, + "value": 14571.83388383833, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001393", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 15225.0, + "value": 15015.595269148907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001394", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 13395.128217821783, + "value": 13210.89155318015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001395", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 14131.87, + "value": 13937.500184973882, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001396", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 13024.888888888889, + "value": 12845.744497943526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001397", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 14877.579999999998, + "value": 14672.953685673852, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001398", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 16162.560000000001, + "value": 15940.260063930073, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001399", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 13719.16, + "value": 13530.466600505546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001400", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 13892.0, + "value": 13700.929358227693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001401", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 15100.710000000001, + "value": 14893.01475446894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001402", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 15761.81188118812, + "value": 15545.023836872471, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001403", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 16033.369999999999, + "value": 15812.846943876126, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001404", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 15069.849999999999, + "value": 14862.579203072819, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001405", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 14428.72, + "value": 14230.267308497487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001406", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 15176.039999999999, + "value": 14967.308665248906, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001407", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 14095.643168316832, + "value": 13901.771617326065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001408", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 12980.484444444446, + "value": 12801.950792463775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001409", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 10994.05, + "value": 10842.837777917015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001410", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 12525.787878787878, + "value": 12353.50812578588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001411", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 13865.13191919192, + "value": 13674.430821145726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001412", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 10475.940202020203, + "value": 10331.85406485001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001413", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 13752.0, + "value": 13562.85491897115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001414", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 13980.119999999999, + "value": 13787.837355279738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001415", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 14467.0, + "value": 14268.020805174203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001416", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 12954.0, + "value": 12775.830615208863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001417", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 14063.573636363637, + "value": 13870.143169885656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001418", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 13149.72, + "value": 12968.858681289508, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001419", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 10530.48, + "value": 10385.643722158764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001420", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 13378.710000000001, + "value": 13194.699151613477, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001421", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 13651.58, + "value": 13463.816096184424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001422", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 14435.669999999998, + "value": 14237.121718160579, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001423", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 13921.0, + "value": 13729.53049207369, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001424", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 15440.34, + "value": 15227.973481645362, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001425", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 15002.46, + "value": 14796.116085490687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001426", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 13197.1, + "value": 13015.5870165179, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001427", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 12940.9, + "value": 12762.910792678429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001428", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 14421.949999999999, + "value": 14223.590423113437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001429", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 13759.72, + "value": 13570.468738050155, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001430", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 12679.08, + "value": 12504.691866348803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001431", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 13828.0, + "value": 13637.809614567559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001432", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 11768.0, + "value": 11606.142865507018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001433", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 13799.779999999999, + "value": 13609.977752597419, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001434", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 11819.48, + "value": 11656.914809313637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001435", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 17074.06, + "value": 16839.22328808963, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001436", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 13491.67782178218, + "value": 13306.113213374956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001437", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 14481.6, + "value": 14282.419996696672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001438", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 13374.63, + "value": 13190.675267955141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001439", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 12541.79, + "value": 12369.29015373787, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001440", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 13743.38, + "value": 13554.353478496927, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001441", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 12876.6, + "value": 12699.495175219889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001442", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 15472.34, + "value": 15259.533353475428, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001443", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 15308.19, + "value": 15097.641073447134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001444", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 15202.78297029703, + "value": 14993.68381259045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001445", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 16239.84, + "value": 16016.477154399685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001446", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 12853.800000000001, + "value": 12677.008766540968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001447", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 13854.72, + "value": 13664.162107545666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001448", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 13747.29292929293, + "value": 13558.212589339582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001449", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 13129.320000000002, + "value": 12948.739262997842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001450", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 15485.21, + "value": 15272.226339427085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001451", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 13134.376534653466, + "value": 12953.726250046831, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001452", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 15084.105643564357, + "value": 14876.638774439889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001453", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 14631.33, + "value": 14430.090609481542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001454", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 12998.197082708271, + "value": 12819.41981100686, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001455", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 13229.461414141415, + "value": 13047.503331597363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001456", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 14584.1, + "value": 14383.510211152354, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001457", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 14635.17, + "value": 14433.87779410115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001458", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 14536.54, + "value": 14336.604351644917, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001459", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 12616.105050505052, + "value": 12442.583074643631, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001460", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 13667.4, + "value": 13479.418507820412, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001461", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 14624.0, + "value": 14422.861426340467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001462", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 15132.61, + "value": 14924.476001699537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001463", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 13348.24, + "value": 13164.648236155286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001464", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 15371.599801980197, + "value": 15160.178736674163, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001465", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 14136.96, + "value": 13942.520177086852, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001466", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 14204.49, + "value": 14009.12136910824, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001467", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 7637.24, + "value": 7532.197360483075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001468", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 12754.915742574258, + "value": 12579.484563716975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001469", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 13551.671089108911, + "value": 13365.281332984288, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001470", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 14785.683168316831, + "value": 14582.320803501665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001471", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 15119.880000000001, + "value": 14911.92109018714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001472", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 13986.0, + "value": 13793.636481728514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001473", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 14845.74, + "value": 14641.551613202935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001474", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 15635.400000000001, + "value": 15420.350625369514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001475", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 15742.82, + "value": 15526.293170119068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001476", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 15032.0, + "value": 14825.24979217382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001477", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 14373.9, + "value": 14176.201303068603, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001478", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 13699.2, + "value": 13510.781130451542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001479", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 13393.06, + "value": 13208.851781637271, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001480", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 13391.68, + "value": 13207.490762164602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001481", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 14253.2299429943, + "value": 14057.190942667767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001482", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 14710.569306930693, + "value": 14508.240058563917, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001483", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 14457.52, + "value": 14258.671193144546, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001484", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 13696.42, + "value": 13508.039366586303, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001485", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 15127.640808080809, + "value": 14919.575156072391, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001486", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 14478.0, + "value": 14278.869511115789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001487", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 15924.0, + "value": 15704.981219436926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001488", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 15042.68, + "value": 14835.782899397102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001489", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 13316.74, + "value": 13133.581487322564, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001490", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 14808.07708670867, + "value": 14604.40671582102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001491", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 14428.71, + "value": 14230.257446037538, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001492", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 13593.7, + "value": 13406.732178011789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001493", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 15414.26, + "value": 15202.252186103859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001494", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 14379.84, + "value": 14182.059604277058, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001495", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 14232.499999999998, + "value": 14036.746119419495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001496", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 13752.429999999998, + "value": 13563.279004748867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001497", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 14987.66, + "value": 14781.519644769283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001498", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 14249.32, + "value": 14053.334777050175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001499", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 12634.0, + "value": 12460.231896908197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001500", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 11597.0, + "value": 11437.4948004151, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001501", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 13827.91, + "value": 13637.720852428038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001502", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 14685.49, + "value": 14483.50569255393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001503", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 17005.36292929293, + "value": 16771.471077257873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001504", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 14332.73, + "value": 14135.597555467233, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001505", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 14348.0, + "value": 14150.657531806142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001506", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 12746.92, + "value": 12571.598794628544, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001507", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 13648.32, + "value": 13460.600934241735, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001508", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 14789.0, + "value": 14585.59201546425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001509", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 14040.0, + "value": 13846.893765441751, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001510", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 13535.1, + "value": 13348.93816272298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001511", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 14008.65, + "value": 13815.974953508234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001512", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 14954.864426442644, + "value": 14749.175141704793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001513", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 14145.21, + "value": 13950.656706543043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001514", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 14176.58, + "value": 13981.595243396454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001515", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 13783.0, + "value": 13593.428544806527, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001516", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 13908.0, + "value": 13716.709294142725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001517", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 14449.35, + "value": 14250.613563367931, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001518", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 13978.89, + "value": 13786.62427270627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001519", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 13271.91, + "value": 13089.368079380629, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001520", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 13864.3, + "value": 13673.610344174791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001521", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 13218.66, + "value": 13036.85048016341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001522", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 13513.3, + "value": 13327.438000038748, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001523", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 14443.28, + "value": 14244.627050180166, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001524", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 13169.23, + "value": 12988.100340645902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001525", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 12554.79, + "value": 12382.111351668837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001526", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 14422.66, + "value": 14224.290657769667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001527", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 14770.470000000001, + "value": 14567.316877182651, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001528", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 14291.0, + "value": 14094.441510108836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001529", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 14868.01, + "value": 14663.51531150467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001530", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 14081.574257425744, + "value": 13887.896210310084, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001531", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 14139.0, + "value": 13944.53211891602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001532", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 14542.949999999999, + "value": 14342.926188470876, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001533", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 14547.319393939393, + "value": 14347.235485742825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001534", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 13733.0, + "value": 13544.11624507205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001535", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 13274.0, + "value": 13091.42933350953, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001536", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 14422.32, + "value": 14223.955334131473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001537", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 15648.039999999999, + "value": 15432.816774742389, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001538", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 14069.95, + "value": 13876.431832982704, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001539", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 14653.72, + "value": 14452.172657302643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001540", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 15158.0, + "value": 14949.516787504705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001541", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 13819.09, + "value": 13629.022162754874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001542", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 13908.91, + "value": 13717.606777997895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001543", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 15182.35, + "value": 14973.531877475396, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001544", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 15555.266534653465, + "value": 15341.319316130894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001545", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 14093.153535353535, + "value": 13899.316226787767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001546", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 15319.84, + "value": 15109.130839285268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001547", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 14166.4, + "value": 13971.555259170515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001548", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 13301.79, + "value": 13118.837109701954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001549", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 14427.36, + "value": 14228.926013944709, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001550", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 11319.0, + "value": 11163.318413891395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001551", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 15342.38, + "value": 15131.360824005571, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001552", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 15056.7, + "value": 14849.610068242651, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001553", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 16216.28602860286, + "value": 15993.24714445022, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001554", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 12828.300000000001, + "value": 12651.859493676382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001555", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 16119.0, + "value": 15897.299188401395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001556", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 15344.42, + "value": 15133.372765834738, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001557", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 13807.58, + "value": 13617.670471355998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001558", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 13945.92702970297, + "value": 13754.114675277753, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001559", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 11720.43, + "value": 11559.227143539634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001560", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 14944.72891089109, + "value": 14739.179030087958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001561", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 14335.44, + "value": 14138.27028211284, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001562", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 14579.31, + "value": 14378.786092837789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001563", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 13612.0, + "value": 13424.78047971461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001564", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 14492.0, + "value": 14292.676955041443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001565", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 15180.73, + "value": 14971.934158963999, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001566", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 12962.439999999999, + "value": 12784.154531404043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001567", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 13417.83, + "value": 13233.281094925733, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001568", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 13461.550000000001, + "value": 13276.399769813563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001569", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 13054.780594059406, + "value": 12875.22507244239, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001570", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 13154.42, + "value": 12973.49403746455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001571", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 15932.84181818182, + "value": 15713.701427204518, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001572", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 13541.18, + "value": 13354.934538370695, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001573", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 13888.0, + "value": 13696.984374248934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001574", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 13912.7, + "value": 13721.344650317766, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001575", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 14341.25, + "value": 14144.000371341988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001576", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 14254.68, + "value": 14058.621055581712, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001577", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 14046.0, + "value": 13852.811241409889, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001578", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 15454.380000000001, + "value": 15241.820375410804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001579", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 15438.0, + "value": 15225.665666017789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001580", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 14713.92, + "value": 14511.544666182956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001581", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 13576.199999999999, + "value": 13389.472873104722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001582", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 13573.09711371137, + "value": 13386.412663930583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001583", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 15003.16, + "value": 14796.80645768697, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001584", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 12969.87, + "value": 12791.48233914459, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001585", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 15927.0, + "value": 15707.939957420995, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001586", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 13278.0, + "value": 13095.37431748829, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001587", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 14404.59, + "value": 14206.469192645627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001588", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 16011.26, + "value": 15791.04104493354, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001589", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 12972.37, + "value": 12793.947954131312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001590", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 14561.72, + "value": 14361.4380257912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001591", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 13607.05, + "value": 13419.898562040895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001592", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 13599.390000000001, + "value": 13412.343917721575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001593", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 13316.46202020202, + "value": 13133.3073308602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001594", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 13796.43, + "value": 13606.673828515208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001595", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 14721.73, + "value": 14519.247247401481, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001596", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 14695.68, + "value": 14493.555539239816, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001597", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 13492.0, + "value": 13306.43096035186, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001598", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 13544.150000000001, + "value": 13357.863688974921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001599", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 14102.07, + "value": 13908.110054332134, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001600", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 13687.380000000001, + "value": 13499.123702794312, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001601", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 14919.0, + "value": 14713.803994773894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001602", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 13819.0, + "value": 13628.933400615353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001603", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 14561.76, + "value": 14361.477475630989, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001604", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 13218.39, + "value": 13036.584193744842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@E14001605", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 12764.609999999999, + "value": 12589.045486274603, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000001", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 14076.504098057885, + "value": 13882.895785941095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000002", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 13276.513218497696, + "value": 13093.90798518666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000003", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 14211.85509900075, + "value": 14016.385168498222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000004", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 14473.176338444893, + "value": 14274.112194227326, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000005", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 14217.215534681654, + "value": 14021.671876718305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000006", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 13945.254642598138, + "value": 13753.451536188732, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000007", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 13938.472879274566, + "value": 13746.763049273926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000008", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 12851.509180433579, + "value": 12674.749454919027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000009", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 13399.749093343564, + "value": 13215.448873155467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000010", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 13138.427853899419, + "value": 12957.721847426361, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000011", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 12587.64308768638, + "value": 12414.512577812711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000012", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 12584.962869845926, + "value": 12411.869223702668, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000013", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 14211.85509900075, + "value": 14016.385168498222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000014", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 13800.387514676293, + "value": 13610.576911513626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000015", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 12046.239083914921, + "value": 11880.555047584206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000016", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 13941.153097115022, + "value": 13749.40640338397, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000017", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 12452.292086743515, + "value": 12281.023195255584, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@N05000018", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 14478.590919940758, + "value": 14279.452303540542, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000021", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 12215.971347255392, + "value": 12047.952812473344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000027", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 13063.908249140602, + "value": 12884.227185707128, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000045", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 11857.59291184936, + "value": 11694.503515971026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000048", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 13092.308049682213, + "value": 12912.236375241275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000051", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 3533.7466102489025, + "value": 3485.1434406058725, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000060", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 12947.604304065439, + "value": 12769.52288571015, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000061", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 13053.089277505704, + "value": 12873.557018265548, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000062", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 12379.60829323324, + "value": 12209.339095027231, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000063", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 6078.909687358903, + "value": 5995.300331237426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000064", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 13184.269308578854, + "value": 13002.932798494698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000065", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 15866.643993448466, + "value": 15648.414087704085, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000066", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 18185.122567378243, + "value": 17935.004295015948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000067", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 13492.436896627321, + "value": 13306.861847900649, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000068", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 14120.556637577562, + "value": 13926.342426598283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000069", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 10988.902517625502, + "value": 10837.761094042431, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000070", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 14542.21253333321, + "value": 14342.198864924538, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000071", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 14905.075432481908, + "value": 14700.070945831392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000072", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 13473.866935204995, + "value": 13288.547297826339, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000073", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 10490.675350123858, + "value": 10346.386545648396, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000074", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 19393.234607036615, + "value": 19126.499955265277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000075", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 13016.34534509068, + "value": 12837.318462092087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000076", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 12340.630243175608, + "value": 12170.897149277083, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000077", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 12856.774939095147, + "value": 12679.942788308002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000078", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 13289.591997444597, + "value": 13106.806878538475, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000079", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 12151.679608315002, + "value": 11984.545342451755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000080", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 15170.935431952099, + "value": 14962.274305457042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000081", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 11758.171972010452, + "value": 11596.45001226663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000082", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 11929.347036474917, + "value": 11765.270733985439, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000083", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 16155.586268901712, + "value": 15933.382249566344, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000084", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 14478.502314118197, + "value": 14279.364916402936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000085", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 14275.227360812987, + "value": 14078.885807884963, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000086", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 14473.079304586203, + "value": 14274.016494972844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000087", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 13730.613852426715, + "value": 13541.762916585158, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000088", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 11349.428518901059, + "value": 11193.3284187819, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000089", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 13874.042599440203, + "value": 13683.218943850556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000090", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 17562.70214821081, + "value": 17321.144649599053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000091", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 17113.132496567614, + "value": 16877.758381331958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000092", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 12401.24703989202, + "value": 12230.680222249557, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000093", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 13959.747754717297, + "value": 13767.745309966838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000094", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 16050.37717923814, + "value": 15829.620206280708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000095", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 12967.743819763802, + "value": 12789.38540240265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000096", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 11457.464064904252, + "value": 11299.878043311654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000097", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 12173.228295068813, + "value": 12005.797648453525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000098", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 14296.427457087168, + "value": 14099.794317922406, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000099", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 15339.192544080355, + "value": 15128.217208371572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000100", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 12710.560635544804, + "value": 12535.739517065147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000101", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 11313.917949252414, + "value": 11158.306261696778, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000102", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 14098.878123164135, + "value": 13904.96207858722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000103", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 14166.83547176173, + "value": 13971.98474145132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000104", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 13504.46218359951, + "value": 13318.721739011962, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000105", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 14109.899950517187, + "value": 13915.832311668328, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000106", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 12211.335525028368, + "value": 12043.380751369848, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000107", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 13207.437707860869, + "value": 13025.782539489956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000108", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 13552.03861136398, + "value": 13365.64380033631, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000109", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 10797.93414455499, + "value": 10649.419300989253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000110", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 14949.941707851833, + "value": 14744.32013021162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@S14000111", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 12887.115433654719, + "value": 12709.865979544282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000081", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 13034.3, + "value": 12855.026168582437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000082", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 14988.25, + "value": 14782.101529906147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000083", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 13996.74, + "value": 13804.228763711479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000084", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 14492.109999999999, + "value": 14292.785442100858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000085", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 13898.52, + "value": 13707.359682113069, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000086", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 13593.269999999999, + "value": 13406.308092234072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000087", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 14215.33, + "value": 14019.812275690676, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000088", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 14061.83, + "value": 13868.423515505825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000089", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 10140.91, + "value": 10001.431870007544, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000090", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 12447.76, + "value": 12276.553442857208, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000091", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 12286.650000000001, + "value": 12117.65935065277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000092", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 13441.67, + "value": 13256.793199439131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000093", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 13473.97, + "value": 13288.648945067607, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000094", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 14427.719009900991, + "value": 14229.280086021614, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000095", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 14514.55, + "value": 14314.916802221693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000096", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 13809.117227722772, + "value": 13619.18655604051, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000097", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 13351.44, + "value": 13167.804223338291, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000098", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 13943.76, + "value": 13751.977450912826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000099", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 14402.42, + "value": 14204.32903883715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000100", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 15186.939999999999, + "value": 14978.058746591021, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000101", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 15026.09, + "value": 14819.421078345202, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000102", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 15027.861386138615, + "value": 14821.168100829458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000103", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 13983.62, + "value": 13791.289216261153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000104", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 14831.28, + "value": 14627.290496119726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000105", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 14193.01, + "value": 13997.799265089203, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000106", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 14185.17, + "value": 13990.067096490839, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000107", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 14126.79, + "value": 13932.49005532086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000108", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 13060.4, + "value": 12880.767189043836, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000109", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 13510.32, + "value": 13324.498986974573, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000110", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 13461.44, + "value": 13276.291282754146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000111", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 14057.762376237624, + "value": 13864.411837862277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/50_60@W07000112", + "metric": "age/50_60", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 10021.0, + "value": 9883.171112784315, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001063", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 10575.82, + "value": 10430.36011555799, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001064", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 10204.2, + "value": 10063.851379011447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001065", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 10438.0, + "value": 10294.435692569872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001066", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 11417.0, + "value": 11259.970521370973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001067", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 13420.78, + "value": 13236.190520610067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001068", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 11595.18, + "value": 11435.699832704764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001069", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 11766.039999999999, + "value": 11604.209823357427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001070", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 10257.279999999999, + "value": 10116.201316409572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001071", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 10925.421188118813, + "value": 10775.152887078888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001072", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 10086.08, + "value": 9947.356002118713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001073", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 8317.720000000001, + "value": 8203.318034949441, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001074", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 12257.130000000001, + "value": 12088.545368889532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001075", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 12403.23, + "value": 12232.635908713683, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001076", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 12489.12, + "value": 12317.34457719757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001077", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 10374.8, + "value": 10232.10494570549, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001078", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 10093.17, + "value": 9954.348486221063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001079", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 13021.439999999999, + "value": 12842.343045090727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001080", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 9360.960000000001, + "value": 9232.209306449404, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001081", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 6497.400000000001, + "value": 6408.034725896099, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001082", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 11028.960000000001, + "value": 10877.267625591627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001083", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 9894.732323232323, + "value": 9758.640122313436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001084", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 10463.06, + "value": 10319.151017196793, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001085", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 7120.83, + "value": 7022.890066365426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001086", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 7337.51, + "value": 7236.589848494765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001087", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 13568.4, + "value": 13381.780154346145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001088", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 13109.5, + "value": 12929.191867383093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001089", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 9181.0, + "value": 9054.724477245065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001090", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 10590.51, + "value": 10444.84806921998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001091", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 12039.62, + "value": 11874.027002584602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001092", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 8682.647272727272, + "value": 8563.226096029708, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001093", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 10303.25, + "value": 10161.53904478545, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001094", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 9243.300000000001, + "value": 9116.167602714226, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001095", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 8883.21, + "value": 8761.030282486454, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001096", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 8384.186363636363, + "value": 8268.870219867387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001097", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 10304.28, + "value": 10162.55487815998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001098", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 8928.386363636364, + "value": 8805.585290177458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001099", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 8794.92, + "value": 8673.95462361531, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001100", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 8527.560000000001, + "value": 8410.271894475105, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001101", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 12368.60606060606, + "value": 12198.488187166035, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001102", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 9768.31, + "value": 9633.956612386206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001103", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 8315.005151515152, + "value": 8200.64052650507, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001104", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 11616.54, + "value": 11456.766047151334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001105", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 12838.12, + "value": 12661.544429344234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001106", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 11646.007575757576, + "value": 11485.828325715456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001107", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 13711.07, + "value": 13522.487870408506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001108", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 13312.07, + "value": 13128.975718527361, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001109", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 12361.0, + "value": 12190.986740357941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001110", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 11110.48, + "value": 10957.666399078724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001111", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 10948.88, + "value": 10798.289046336886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001112", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 10682.56, + "value": 10535.632013031156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001113", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 11914.0, + "value": 11750.134780731696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001114", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 15539.84, + "value": 15326.104958116975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001115", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 10916.0, + "value": 10765.861278031492, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001116", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 10167.839999999998, + "value": 10027.991474644534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001117", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 10176.099999999999, + "value": 10036.137866560668, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001118", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 9334.5, + "value": 9206.113237429916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001119", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 10843.5, + "value": 10694.358443416497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001120", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 8969.0, + "value": 8845.640326370874, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001121", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 12122.06485148515, + "value": 11955.337907144607, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001122", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 11505.439999999999, + "value": 11347.194117141318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001123", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 12271.13, + "value": 12102.352812815188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001124", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 10648.14, + "value": 10501.68542589394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001125", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 10748.0, + "value": 10600.171950923643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001126", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 13563.55, + "value": 13376.9968612719, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001127", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 13683.87, + "value": 13495.66197935295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001128", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 11975.63, + "value": 11810.917121384415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001129", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 9531.08, + "value": 9399.989475065993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001130", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 7794.92, + "value": 7687.708628925727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001131", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 5119.47, + "value": 5049.056782433482, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001132", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 8095.32, + "value": 7983.976925730477, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001133", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 8874.268010801079, + "value": 8752.211281454462, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001134", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 9063.53, + "value": 8938.87016024888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001135", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 8517.52, + "value": 8400.36998468842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001136", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 12502.393939393938, + "value": 12330.435946758593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001137", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 9499.37606060606, + "value": 9368.721591822841, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001138", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 11878.0, + "value": 11714.629924922872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001139", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 10794.449999999999, + "value": 10645.983077376974, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001140", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 10949.27, + "value": 10798.673682274813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001141", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 10627.765544554455, + "value": 10481.59120081679, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001142", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 11516.04, + "value": 11357.64832468503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001143", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 11974.0, + "value": 11809.30954041307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001144", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 10844.0, + "value": 10694.851566413843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001145", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 10253.424242424242, + "value": 10112.398590943985, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001146", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 12281.34, + "value": 12112.422384420968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001147", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 12947.56, + "value": 12769.479191003062, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001148", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 12254.11, + "value": 12085.566905985572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001149", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 8169.120000000001, + "value": 8056.76188013857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001150", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 11265.0, + "value": 11110.061130178157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001151", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 11268.9, + "value": 11113.907489557447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001152", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 13067.86, + "value": 12888.12458416422, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001153", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 9461.0, + "value": 9330.873355758149, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001154", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 11444.76, + "value": 11287.348710183556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001155", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 13175.343434343435, + "value": 12994.129690780912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001156", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 12264.810891089108, + "value": 12096.120616961813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001157", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 10364.76, + "value": 10222.203035918807, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001158", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 11162.0, + "value": 11008.47779272513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001159", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 9981.65, + "value": 9844.362332893279, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001160", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 10829.136161616163, + "value": 10680.19216534207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001161", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 10176.439999999999, + "value": 10036.473190198863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001162", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 10986.4, + "value": 10835.292996057638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001163", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 10290.60606060606, + "value": 10149.06901020108, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001164", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 11102.434343434343, + "value": 10949.731402516198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001165", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 11629.0, + "value": 11469.054672245165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001166", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 13679.75, + "value": 13491.598645854829, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001167", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 10589.279999999999, + "value": 10443.634986646513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001168", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 11664.173366336634, + "value": 11503.74426391442, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001169", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 11179.75, + "value": 11025.98365913087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001170", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 11627.52, + "value": 11467.595028173024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001171", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 12453.890000000001, + "value": 12282.599130804656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001172", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 14047.220000000001, + "value": 13854.01446152341, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001173", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 11419.077575757576, + "value": 11262.019522140547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001174", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 14619.435643564357, + "value": 14418.359848087479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001175", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 7007.67, + "value": 6911.2864696063525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001176", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 9334.754455445545, + "value": 9206.364193093912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001177", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 11038.019999999999, + "value": 10886.203014303515, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001178", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 10993.38, + "value": 10842.176993100571, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001179", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 12715.2, + "value": 12540.315071676992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001180", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 9699.91, + "value": 9566.497386349438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001181", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 9647.0, + "value": 9514.31511077041, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001182", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 9751.09, + "value": 9616.97345635765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001183", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 12210.39396039604, + "value": 12042.452137022474, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001184", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 10429.0, + "value": 10285.559478617666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001185", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 11739.34, + "value": 11577.877055299214, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001186", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 9983.2, + "value": 9845.89101418505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001187", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 10454.7, + "value": 10310.906000681189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001188", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 11063.12, + "value": 10910.957788770225, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001189", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 9428.446666666667, + "value": 9298.767761144352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001190", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 11220.2, + "value": 11065.877309616064, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001191", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 9266.68, + "value": 9139.22603407007, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001192", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 12608.43604260426, + "value": 12435.019546318234, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001193", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 9623.0, + "value": 9490.645206897861, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001194", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 9698.0, + "value": 9564.61365649958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001195", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 13192.859999999999, + "value": 13011.405333500416, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001196", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 10815.689999999999, + "value": 10666.93094230418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001197", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 10466.45, + "value": 10322.494391118791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001198", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 12895.869999999999, + "value": 12718.500135537559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001199", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 11739.980000000001, + "value": 11578.508252735817, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001200", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 11437.17, + "value": 11279.863103083862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001201", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 11184.565445544553, + "value": 11030.732873011832, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001202", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 13758.83, + "value": 13569.59097911488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001203", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 13107.15, + "value": 12926.874189295571, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001204", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 9946.44, + "value": 9809.63661142026, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001205", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 7954.63, + "value": 7845.221976737601, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001206", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 11181.3, + "value": 11027.51234042264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001207", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 10320.024848484849, + "value": 10178.083171915157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001208", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 11018.14, + "value": 10866.596443929086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001209", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 10633.32, + "value": 10487.069260252641, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001210", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 9163.734545454547, + "value": 9037.696491853116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001211", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 12002.720000000001, + "value": 11837.634525380556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001212", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 11602.092424242424, + "value": 11442.517183427452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001213", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 8484.84, + "value": 8368.139465581966, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001214", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 11115.869999999999, + "value": 10962.9822649901, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001215", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 10707.81, + "value": 10560.534724397068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001216", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 14007.58, + "value": 13814.919670293915, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001217", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 11318.1, + "value": 11162.430792496174, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001218", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 11321.0, + "value": 11165.290905880775, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001219", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 12558.720000000001, + "value": 12385.987298427965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001220", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 10142.99, + "value": 10003.483261676498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001221", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 10895.43, + "value": 10745.574197920727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001222", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 11633.623838383839, + "value": 11473.614914331318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001223", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 10032.468484848485, + "value": 9894.481860031292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001224", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 11967.281743174319, + "value": 11802.683686527447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001225", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 10574.02, + "value": 10428.58487276755, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001226", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 10407.0, + "value": 10263.862066734495, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001227", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 11609.533663366336, + "value": 11449.856075708936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001228", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 10498.0, + "value": 10353.610452251247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001229", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 10802.9, + "value": 10654.3168560321, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001230", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 10297.509999999998, + "value": 10155.877992775933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001231", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 8716.801584158417, + "value": 8596.910648880053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001232", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 12228.815377537752, + "value": 12060.620185894997, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001233", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 12486.44, + "value": 12314.701437931804, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001234", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 11227.17, + "value": 11072.75144419905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001235", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 11488.4, + "value": 11330.38848539181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001236", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 10725.36, + "value": 10577.84334160387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001237", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 9753.035076507651, + "value": 9618.891780272685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001238", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 11149.0, + "value": 10995.656594794165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001239", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 12457.6, + "value": 12286.258103444954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001240", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 12871.0, + "value": 12693.972197649628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001241", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 11960.44, + "value": 11795.936044725082, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001242", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 13102.460000000001, + "value": 12922.24869558048, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001243", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 13314.22, + "value": 13131.096147415945, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001244", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 10786.6, + "value": 10638.24104631866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001245", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 11708.72, + "value": 11547.67820294182, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001246", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 10748.0, + "value": 10600.171950923643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001247", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 12665.1, + "value": 12490.904147343042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001248", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 11439.9, + "value": 11282.555554649363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001249", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 10020.638613861387, + "value": 9882.814697152571, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001250", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 14240.544545454546, + "value": 14044.68002015314, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001251", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 8462.78, + "value": 8346.382878939114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001252", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 11953.0, + "value": 11788.59837452459, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001253", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 12161.720000000001, + "value": 11994.447638536201, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001254", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 10772.0, + "value": 10623.841854796192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001255", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 12806.58, + "value": 12630.438230671723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001256", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 12879.0, + "value": 12701.862165607145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001257", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 7256.68, + "value": 7156.871584744006, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001258", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 10076.522277227723, + "value": 9937.929736316202, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001259", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 7601.118712871287, + "value": 7496.572885729349, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001260", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 7589.003762376237, + "value": 7484.6245643277425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001261", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 10149.03, + "value": 10009.440187484422, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001262", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 11474.44, + "value": 11316.620491305945, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001263", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 11918.28, + "value": 11754.355913588968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001264", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 9047.57898989899, + "value": 8923.138540425507, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001265", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 10731.505252525254, + "value": 10583.904072293257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001266", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 11163.28, + "value": 11009.740187598334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001267", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 10724.514851485148, + "value": 10577.00981726618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001268", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 9782.56, + "value": 9648.01061781053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001269", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 12618.303636363635, + "value": 12444.751421140641, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001270", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 12136.547326732674, + "value": 11969.62119035067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001271", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 10812.963636363636, + "value": 10664.242077087749, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001272", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 11203.0, + "value": 11048.913878507403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001273", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 12351.8099009901, + "value": 12181.923042018625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001274", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 13674.099999999999, + "value": 13486.026355984832, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001275", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 12155.0, + "value": 11987.820065451886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001276", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 9603.0, + "value": 9470.92028700407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001277", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 11278.8, + "value": 11123.671324904873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001278", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 10754.279999999999, + "value": 10606.36557577029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001279", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 10417.5, + "value": 10274.217649678736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001280", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 11305.880000000001, + "value": 11150.378866441068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001281", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 12548.25, + "value": 12375.661302863564, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001282", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 12656.690000000002, + "value": 12482.609818527704, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001283", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 10833.0, + "value": 10684.002860472257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001284", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 10298.43, + "value": 10156.785339091046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001285", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 14082.968712871287, + "value": 13889.271486408024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001286", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 11093.51, + "value": 10940.929804548841, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001287", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 12091.0, + "value": 11924.700321791754, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001288", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 11849.42, + "value": 11686.443014394645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001289", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 10191.220000000001, + "value": 10051.049906000377, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001290", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 10678.92, + "value": 10532.042077610486, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001291", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 12501.429603960396, + "value": 12329.484874799726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001292", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 11326.111111111111, + "value": 11170.33171874252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001293", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 8913.709595959597, + "value": 8791.110386841256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001294", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 11721.05, + "value": 11559.83861605634, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001295", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 12353.52, + "value": 12183.609620317662, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001296", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 9043.0, + "value": 8918.622529977903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001297", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 11637.06, + "value": 11477.003814962363, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001298", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 11407.78, + "value": 11250.877333299935, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001299", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 9806.0, + "value": 9671.128223926054, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001300", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 10157.66292929293, + "value": 10017.954379422014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001301", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 9758.207070707072, + "value": 9623.992638836422, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001302", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 11185.0, + "value": 11031.161450602991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001303", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 10554.0, + "value": 10408.840227953864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001304", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 10554.0, + "value": 10408.840227953864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001305", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 7831.0, + "value": 7723.292384414128, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001306", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 8158.63, + "value": 8046.416159654276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001307", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 11573.5, + "value": 11414.318019539895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001308", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 11531.0, + "value": 11372.402564765585, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001309", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 10481.14, + "value": 10336.98234478078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001310", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 13232.34, + "value": 13050.342325370762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001311", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 11239.12, + "value": 11084.53708383559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001312", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 10424.76, + "value": 10281.377795600181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001313", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 10911.65, + "value": 10761.571107954593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001314", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 10633.03585858586, + "value": 10486.789026921018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001315", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 11534.859595959597, + "value": 11376.209075821858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001316", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 10693.08, + "value": 10546.00732089529, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001317", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 10929.45, + "value": 10779.126286660068, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001318", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 11326.960000000001, + "value": 11171.168932009125, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001319", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 8187.698888888888, + "value": 8075.085234891019, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001320", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 10295.776831683168, + "value": 10154.168662465334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001321", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 9170.0, + "value": 9043.87577130348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001322", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 8674.5, + "value": 8555.190880934791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001323", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 7616.73, + "value": 7511.969455131991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001324", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 9361.301010101011, + "value": 9232.545626295672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001325", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 9035.510101010103, + "value": 8911.235647098485, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001326", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 11883.48, + "value": 11720.03455297377, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001327", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 8733.73, + "value": 8613.606231200256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001328", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 9249.79, + "value": 9122.568339219762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001329", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 11876.26, + "value": 11712.913856892112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001330", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 13004.951515151515, + "value": 12826.08134295041, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001331", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 9424.782222222222, + "value": 9295.153717488258, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001332", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 7652.64, + "value": 7547.385548801294, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001333", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 7567.115454545456, + "value": 7463.037308399102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001334", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 9422.35, + "value": 9292.754948063395, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001335", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 11537.18, + "value": 11378.497565012767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001336", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 10336.0, + "value": 10193.838601111534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001337", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 11140.150000000001, + "value": 10986.928317741162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001338", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 9559.44, + "value": 9427.959411475393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001339", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 11259.68, + "value": 11104.81430148641, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001340", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 9128.04, + "value": 9002.492889366305, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001341", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 10651.24, + "value": 10504.742788477477, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001342", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 10005.0, + "value": 9867.391176869283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001343", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 15860.94, + "value": 15642.788547011802, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001344", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 12357.800000000001, + "value": 12187.830753174934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001345", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 9383.4, + "value": 9254.340666570237, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001346", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 9352.300000000001, + "value": 9223.66841613539, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001347", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 12012.0, + "value": 11846.786888211276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001348", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 10766.296363636364, + "value": 10618.216666277389, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001349", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 10996.31, + "value": 10845.066693865014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001350", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 11535.74, + "value": 11377.077370780415, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001351", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 13110.35, + "value": 12930.03017647858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001352", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 7773.07101010101, + "value": 7666.160150149835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001353", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 6045.81, + "value": 5962.65589715423, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001354", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 6396.94, + "value": 6308.956453269583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001355", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 12332.9, + "value": 12163.273227907162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001356", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 10855.106534653465, + "value": 10705.805341730704, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001357", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 11694.45, + "value": 11533.604472597599, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001358", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 10614.380000000001, + "value": 10468.38976111322, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001359", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 10223.820000000002, + "value": 10083.201525427257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001360", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 10549.713267326733, + "value": 10404.61245502455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001361", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 11660.869999999999, + "value": 11500.486332095923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001362", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 10877.7, + "value": 10728.08805643488, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001363", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 12479.726464646465, + "value": 12308.080240579171, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001364", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 11903.800000000001, + "value": 11740.075071585863, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001365", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 12141.569999999998, + "value": 11974.574781743206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001366", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 11183.58, + "value": 11029.76098129053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001367", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 11078.27, + "value": 10925.899415589773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001368", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 11688.01, + "value": 11527.253048391798, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001369", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 11460.68, + "value": 11303.049746419016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001370", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 9254.0, + "value": 9126.720434857405, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001371", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 9817.4, + "value": 9682.371428265516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001372", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 12987.18, + "value": 12808.554257312664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001373", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 12435.0, + "value": 12263.96894396497, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001374", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 12818.0, + "value": 12641.70115993108, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001375", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 13473.79, + "value": 13288.471420788559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001376", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 10856.64, + "value": 10707.317715786718, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001377", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 11883.523267326733, + "value": 11720.077225201461, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001378", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 11222.52, + "value": 11068.165400323744, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001379", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 10782.04405940594, + "value": 10633.747768155727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001380", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 10563.15, + "value": 10417.864378805272, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001381", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 13343.0, + "value": 13159.48030714311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001382", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 11900.36, + "value": 11736.68238536413, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001383", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 12122.3, + "value": 11955.569821425537, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001384", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 11241.800000000001, + "value": 11087.180223101359, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001385", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 14393.16, + "value": 14195.196400926323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001386", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 12040.880000000001, + "value": 11875.26967253791, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001387", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 13211.0, + "value": 13029.295835844086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001388", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 13263.080000000002, + "value": 13080.659527247519, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001389", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 12196.878787878788, + "value": 12029.122852259796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001390", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 12613.15, + "value": 12439.668667918919, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001391", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 12292.0, + "value": 12122.935766724358, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001392", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 10361.85, + "value": 10219.33306007426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001393", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 11461.0, + "value": 11303.365345137316, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001394", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 10407.617821782178, + "value": 10264.4713909926, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001395", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 13772.75, + "value": 13583.31952336096, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001396", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 14834.434343434343, + "value": 14630.401454697721, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001397", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 14957.38, + "value": 14751.65611605008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001398", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 13520.32, + "value": 13334.36144692147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001399", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 11597.95, + "value": 11438.431734110054, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001400", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 11173.0, + "value": 11019.326498666715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001401", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 11542.570000000002, + "value": 11383.813430924145, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001402", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 11725.970297029704, + "value": 11564.69123929457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001403", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 11571.119999999999, + "value": 11411.970754072532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001404", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 11554.85, + "value": 11395.924531738932, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001405", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 13690.21, + "value": 13501.914778959283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001406", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 11885.880000000001, + "value": 11722.401543361024, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001407", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 10231.238811881189, + "value": 10090.518298930434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001408", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 10375.911717171717, + "value": 10233.201372313322, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001409", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 9095.73, + "value": 8970.627281277886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001410", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 8865.90909090909, + "value": 8743.967330191057, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001411", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 9982.809393939393, + "value": 9845.505780522275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001412", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 8331.931515151515, + "value": 8217.334084846094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001413", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 10496.0, + "value": 10351.637960261867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001414", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 10297.8, + "value": 10156.164004114393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001415", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 10718.0, + "value": 10570.584571082954, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001416", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 10087.0, + "value": 9948.263348433828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001417", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 10197.275454545454, + "value": 10057.022073791855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001418", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 10372.17, + "value": 10229.511118739456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001419", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 7638.87, + "value": 7533.804941454418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001420", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 10858.86, + "value": 10709.50718189493, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001421", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 8145.150000000001, + "value": 8033.12156364586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001422", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 12205.38, + "value": 12037.507138664347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001423", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 11575.0, + "value": 11415.797388531928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001424", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 13663.47, + "value": 13475.542561061282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001425", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 11328.57, + "value": 11172.756788060575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001426", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 11522.45, + "value": 11363.970161510992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001427", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 9755.55, + "value": 9621.372113493964, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001428", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 10782.25, + "value": 10633.95087624176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001429", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 10919.869999999999, + "value": 10769.678050030941, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001430", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 7453.4, + "value": 7350.88589681934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001431", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 9846.0, + "value": 9710.578063713638, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001432", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 8441.0, + "value": 8324.902441174774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001433", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 10566.98, + "value": 10421.641700964934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001434", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 7796.6, + "value": 7689.365522196806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001435", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 11445.57, + "value": 11288.147569439256, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001436", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 11317.790198019802, + "value": 11162.125251534057, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001437", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 11312.64, + "value": 11157.045889365168, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001438", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 9189.18, + "value": 9062.791969481625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001439", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 9116.4, + "value": 8991.012985988118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001440", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 11695.16, + "value": 11534.304707253828, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001441", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 11511.85, + "value": 11353.51595396728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001442", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 10624.4, + "value": 10478.27194598001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001443", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 12440.24, + "value": 12269.136872977142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001444", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 13366.039207920792, + "value": 13182.202633675814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001445", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 10756.640000000001, + "value": 10608.693116317761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001446", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 9729.9, + "value": 9596.074903730178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001447", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 10074.24, + "value": 9935.678849541588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001448", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 10270.222222222223, + "value": 10128.96553123862, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001449", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 11174.07, + "value": 11020.381781881033, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001450", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 11612.69, + "value": 11452.969000071776, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001451", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 10616.049405940594, + "value": 10470.036206035642, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001452", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 11926.040396039603, + "value": 11762.009573100233, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001453", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 10709.4, + "value": 10562.102855528625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001454", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 10598.691809180918, + "value": 10452.917345753975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001455", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 11149.055757575758, + "value": 10995.71158547993, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001456", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 10261.45, + "value": 10120.313962207425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001457", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 11376.09, + "value": 11219.623197728222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001458", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 12026.2, + "value": 11860.791581335869, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001459", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 9188.959595959597, + "value": 9062.574596879565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001460", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 11157.76, + "value": 11004.296109707644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001461", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 14232.0, + "value": 14036.25299642215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001462", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 12260.17, + "value": 12091.54355671339, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001463", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 12801.880000000001, + "value": 12625.802874496685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001464", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 12289.928514851485, + "value": 12120.892772793577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001465", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 11001.38, + "value": 10850.066961058088, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001466", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 9647.91, + "value": 9515.212594625578, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001467", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 5541.16, + "value": 5464.946855934132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001468", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 10373.512475247526, + "value": 10230.835129575296, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001469", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 9919.140297029702, + "value": 9782.71238870959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001470", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 11042.277227722772, + "value": 10890.401688093581, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001471", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 12120.960000000001, + "value": 11954.248251792655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001472", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 11833.0, + "value": 11670.24885516184, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001473", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 12558.91, + "value": 12386.174685166958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001474", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 12012.44, + "value": 11847.22083644894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001475", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 13951.119999999999, + "value": 13759.236221433739, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001476", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 12262.400000000001, + "value": 12093.742885281548, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001477", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 9809.1, + "value": 9674.185586509593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001478", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 9071.72, + "value": 8946.947514945387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001479", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 10411.880000000001, + "value": 10268.67494718858, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001480", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 10413.44, + "value": 10270.213490940296, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001481", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 10691.298541854185, + "value": 10544.250364934274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001482", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 12243.490099009901, + "value": 12075.093071170086, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001483", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 10681.44, + "value": 10534.527417517103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001484", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 14086.26, + "value": 13892.517505156091, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001485", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 14615.473535353536, + "value": 14414.45223473403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001486", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 14106.0, + "value": 13911.986001091263, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001487", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 14264.0, + "value": 14067.812868252218, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001488", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 11490.88, + "value": 11332.83437545864, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001489", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 11568.86, + "value": 11409.741838124533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001490", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 10676.354236423644, + "value": 10529.511603559984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001491", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 11900.97, + "value": 11737.28399542089, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001492", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 11840.9, + "value": 11678.04019851989, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001493", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 14749.09, + "value": 14546.230937816188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001494", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 12372.48, + "value": 12202.308844376976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001495", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 12311.17, + "value": 12141.842102442559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001496", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 9844.9, + "value": 9709.49319311948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001497", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 13193.85, + "value": 13012.381717035161, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001498", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 11960.710000000001, + "value": 11796.202331143648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001499", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 9434.0, + "value": 9304.24471390153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001500", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 8980.0, + "value": 8856.489032312458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001501", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 10334.34, + "value": 10192.201432760348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001502", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 11434.02, + "value": 11276.75642820059, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001503", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 11529.085353535353, + "value": 11370.514252358582, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001504", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 12841.789999999999, + "value": 12665.163952144745, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001505", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 10369.0, + "value": 10226.38471893629, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001506", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 9841.11, + "value": 9705.755320799608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001507", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 9274.56, + "value": 9146.997652508222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001508", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 13051.12, + "value": 12871.614826213116, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001509", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 11851.0, + "value": 11688.001283066253, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001510", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 10598.4, + "value": 10452.629550118081, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001511", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 13409.01, + "value": 13224.58240525257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001512", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 11269.229714971498, + "value": 11114.232669627476, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001513", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 11425.05, + "value": 11267.909801628224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001514", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 11833.38, + "value": 11670.623628639822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001515", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 10271.0, + "value": 10129.732611456711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001516", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 10020.0, + "value": 9882.184866789627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001517", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 10499.52, + "value": 10355.109546163176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001518", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 11418.419999999998, + "value": 11261.370990683434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001519", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 10748.54, + "value": 10600.704523760774, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001520", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 11190.91, + "value": 11036.990164431605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001521", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 10572.25, + "value": 10426.839217356948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001522", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 11476.78, + "value": 11318.928306933516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001523", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 11853.5, + "value": 11690.466898052977, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001524", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 10650.06, + "value": 10503.579018203744, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001525", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 7852.64, + "value": 7744.63474773921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001526", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 12420.52, + "value": 12249.688101961865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001527", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 9113.26, + "value": 8987.916173564794, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001528", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 10164.0, + "value": 10024.204290024925, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001529", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 12325.869999999999, + "value": 12156.339918564496, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001530", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 14328.445544554455, + "value": 14131.372028444639, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001531", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 12178.0, + "value": 12010.503723329746, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001532", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 10464.95, + "value": 10321.015022126754, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001533", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 12470.88606060606, + "value": 12299.361427502885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001534", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 9460.0, + "value": 9329.887109763458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001535", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 11096.0, + "value": 10943.385557075617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001536", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 10274.88, + "value": 10133.559245916107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001537", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 11637.28, + "value": 11477.220789081195, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001538", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 11575.82, + "value": 11416.606110247574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001539", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 11701.289999999999, + "value": 11540.350395201274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001540", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 13253.68, + "value": 13071.388814897438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001541", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 10562.63, + "value": 10417.351530888034, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001542", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 11350.41, + "value": 11194.296400584593, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001543", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 11575.05, + "value": 11415.846700831662, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001544", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 14341.614257425741, + "value": 14144.359618769162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001545", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 10749.639090909091, + "value": 10601.788497767664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001546", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 9568.0, + "value": 9436.401677189933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001547", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 10269.93, + "value": 10128.677328242393, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001548", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 12269.43, + "value": 12100.676194624215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001549", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 10325.61, + "value": 10183.59150522671, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001550", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 6749.0, + "value": 6656.174218159998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001551", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 13794.98, + "value": 13605.24377182291, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001552", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 15217.59, + "value": 15008.28718632826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001553", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 9727.227322732273, + "value": 9593.438986479785, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001554", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 11718.6, + "value": 11557.422313369352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001555", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 11271.0, + "value": 11115.978606146295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001556", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 10557.82, + "value": 10412.607687653577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001557", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 11453.1, + "value": 11295.574001779269, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001558", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 10081.677227722772, + "value": 9943.013785594769, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001559", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 7084.67, + "value": 6987.227411197451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001560", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 11593.516831683168, + "value": 11434.059539613794, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001561", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 12534.68, + "value": 12362.277944715628, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001562", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 10880.28, + "value": 10730.632571101181, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001563", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 8041.0, + "value": 7930.40404329894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001564", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 11182.0, + "value": 11028.202712618922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001565", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 10462.84, + "value": 10318.934043077961, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001566", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 9669.939999999999, + "value": 9536.939593888588, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001567", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 12246.23, + "value": 12077.795287547418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001568", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 9272.92, + "value": 9145.380209076933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001569", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 11439.983564356438, + "value": 11282.637969661198, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001570", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 9680.539999999999, + "value": 9547.3938014323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001571", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 12266.77090909091, + "value": 12098.05367686561, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001572", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 11701.35, + "value": 11540.409569960957, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001573", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 10218.0, + "value": 10077.461573738163, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001574", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 10255.38, + "value": 10114.32744901966, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001575", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 14401.12, + "value": 14203.046919044053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001576", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 8871.61, + "value": 8749.589828948056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001577", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 11456.0, + "value": 11298.434115163867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001578", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 12554.18, + "value": 12381.509741612075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001579", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 14307.0, + "value": 14110.22144602387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001580", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 13662.12, + "value": 13474.211128968453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001581", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 11185.15, + "value": 11031.309387502193, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001582", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 11365.360720072007, + "value": 11209.041488373337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001583", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 13114.85, + "value": 12934.468283454682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001584", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 10875.92, + "value": 10726.332538564335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001585", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 11735.0, + "value": 11573.59674768226, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001586", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 9220.2, + "value": 9093.385320236897, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001587", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 11638.49, + "value": 11478.414146734769, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001588", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 10598.06, + "value": 10452.294226479886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001589", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 11887.46, + "value": 11723.959812032635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001590", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 11751.449999999999, + "value": 11589.820494294905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001591", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 10661.35, + "value": 10514.713735483789, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001592", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 10013.310000000001, + "value": 9875.586881085153, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001593", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 9525.52909090909, + "value": 9394.514913208199, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001594", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 9920.49, + "value": 9784.043527858066, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001595", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 11156.71, + "value": 11003.260551413223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001596", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 11254.66, + "value": 11099.863346593067, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001597", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 10156.0, + "value": 10016.314322067408, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001598", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 9804.08, + "value": 9669.234631616251, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001599", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 12592.52, + "value": 12419.322413048472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001600", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 9462.060000000001, + "value": 9331.91877651252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001601", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 12545.0, + "value": 12372.456003380823, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001602", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 10199.0, + "value": 10058.722899839062, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001603", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 12976.6, + "value": 12798.119774688848, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001604", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 9900.15, + "value": 9763.98328432608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@E14001605", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 10905.849999999999, + "value": 10755.850881185394, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000001", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 12269.015244999871, + "value": 12100.267144166559, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000002", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 11571.746929741184, + "value": 11412.589061018727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000003", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 12386.986545432565, + "value": 12216.615866706623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000004", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 12614.752917555083, + "value": 12441.249538937438, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000005", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 12391.658676142768, + "value": 12221.22373690623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000006", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 12154.618832459078, + "value": 11987.444140491349, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000007", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 12148.707879212076, + "value": 11981.614486526692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000008", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 11201.31539461915, + "value": 11047.252443197909, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000009", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 11679.158742836416, + "value": 11518.523531466244, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000010", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 11451.392370713891, + "value": 11293.889859235429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000011", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 10971.33094024027, + "value": 10820.431196225867, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000012", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 10968.994874885166, + "value": 10818.127261126063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000013", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 12386.98654543256, + "value": 12216.615866706623, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000014", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 12028.353320184786, + "value": 11862.915284743398, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000015", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 10499.445738509505, + "value": 10355.036306065615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000016", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 12151.04394456718, + "value": 11983.918421626498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000017", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 10853.359639807577, + "value": 10704.082473685803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@N05000018", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 12619.472241504785, + "value": 12445.903953280475, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000021", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 9617.624149100222, + "value": 9485.343295479906, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000027", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 10285.204171405752, + "value": 10143.74141861352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000045", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 9335.473102990229, + "value": 9207.07295635645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000048", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 10307.563310908805, + "value": 10165.79303039311, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000051", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 2782.115786737394, + "value": 2743.8505514324142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000060", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 10193.638171536091, + "value": 10053.434817992318, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000061", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 10276.686403976015, + "value": 10135.340804602243, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000062", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 9746.455381474972, + "value": 9612.402582400427, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000063", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 4785.920574582696, + "value": 4720.094997584653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000064", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 10379.96433406156, + "value": 10237.198249488943, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000065", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 12491.79570733448, + "value": 12319.983482839165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000066", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 14317.131973108246, + "value": 14120.21406392018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000067", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 10622.58442153015, + "value": 10476.481338986076, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000068", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 11117.102574640163, + "value": 10964.197886792115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000069", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 8651.553873312612, + "value": 8532.560355395713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000070", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 11449.071913004822, + "value": 11291.601317114011, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000071", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 11734.753573714443, + "value": 11573.353710745143, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000072", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 10607.96430624449, + "value": 10462.062308843693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000073", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 8259.300035964, + "value": 8145.701579409027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000074", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 15268.27758381301, + "value": 15058.277612844331, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000075", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 10247.757936342774, + "value": 10106.81021926645, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000076", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 9715.767994867494, + "value": 9582.13727027131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000077", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 10122.128287536407, + "value": 9982.908481316914, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000078", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 10462.884799990034, + "value": 10318.978226888694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000079", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 9567.007316149016, + "value": 9435.422646717909, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000080", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 11944.06493164905, + "value": 11779.786199151189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000081", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 9257.199079194676, + "value": 9129.875513899846, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000082", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 9391.965066026092, + "value": 9262.787928632722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000083", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 12719.279722080433, + "value": 12544.338681238265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000084", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 11398.912910052966, + "value": 11242.132201355122, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000085", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 11238.874707257522, + "value": 11084.295164850795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000086", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 11394.643379128815, + "value": 11237.921393581973, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000087", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 10810.10094205392, + "value": 10661.418756290768, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000088", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 8935.395696257405, + "value": 8812.498216400407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000089", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 10923.022276079644, + "value": 10772.786969688648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000090", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 13827.10089132917, + "value": 13636.922872242163, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000091", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 13473.155076016037, + "value": 13287.845229552446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000092", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 9763.491548841925, + "value": 9629.204434230945, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000093", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 10990.497874021396, + "value": 10839.334507897984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000094", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 12636.44869270997, + "value": 12462.64691028563, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000095", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 10209.493995606543, + "value": 10069.072560974306, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000096", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 9020.451992368886, + "value": 8896.384647763487, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000097", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 9583.972579427193, + "value": 9452.154569674865, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000098", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 11255.565525539083, + "value": 11100.756417529075, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000099", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 12076.533617016928, + "value": 11910.432909517052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000100", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 10007.013887150584, + "value": 9869.3773650053, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000101", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 8907.438254111157, + "value": 8784.925301061903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000102", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 11100.035098152834, + "value": 10947.365156467029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000103", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 11153.537862558704, + "value": 11000.132043567137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000104", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 10632.051920028302, + "value": 10485.818621459608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000105", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 11108.712573721874, + "value": 10955.923281991012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000106", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 9613.974370090911, + "value": 9481.743715550472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000107", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 10398.204795675014, + "value": 10255.1878316965, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000108", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 10669.508802300561, + "value": 10522.76032157418, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000109", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 8501.20463096849, + "value": 8384.27901732921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000110", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 11770.076755245555, + "value": 11608.191057049895, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@S14000111", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 10146.015333836442, + "value": 10006.466985055287, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000081", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 11087.78, + "value": 10935.278614999268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000082", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 11701.0, + "value": 11540.064383862815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000083", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 12541.9, + "value": 12369.398640797286, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000084", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 11396.58, + "value": 11239.831378159412, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000085", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 14019.43, + "value": 13826.606685330986, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000086", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 11195.46, + "value": 11041.477583707443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000087", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 13702.32, + "value": 13513.858217954972, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000088", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 11427.130000000001, + "value": 11269.961193297178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000089", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 8085.07, + "value": 7973.867904284911, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000090", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 10477.56, + "value": 10333.451584119792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000091", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 9798.57, + "value": 9663.800416185511, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000092", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 10155.38, + "value": 10015.702849550702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000093", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 13346.89, + "value": 13163.316804062453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000094", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 12625.646336633663, + "value": 12451.993129872162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000095", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 13468.9, + "value": 13283.64867787453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000096", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 12912.345742574258, + "value": 12734.749270660956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000097", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 11959.08, + "value": 11794.594750172304, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000098", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 12147.36, + "value": 11980.285146052458, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000099", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 11705.95, + "value": 11544.946301536529, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000100", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 14487.429999999998, + "value": 14288.169810845711, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000101", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 12554.99, + "value": 12382.308600867771, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000102", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 13289.287128712871, + "value": 13106.506202972903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000103", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 12257.77, + "value": 12089.176566326136, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000104", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 11135.42, + "value": 10982.263374186281, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000105", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 11191.57, + "value": 11037.6410867881, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000106", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 11382.84, + "value": 11226.280358192378, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000107", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 11725.74, + "value": 11564.464109771436, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000108", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 10937.300000000001, + "value": 10786.868317718381, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000109", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 11127.02, + "value": 10973.978907830888, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000110", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 11990.36, + "value": 11825.444524886194, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000111", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 11526.920792079209, + "value": 11368.3794622922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/60_70@W07000112", + "metric": "age/60_70", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 10010.0, + "value": 9872.32240684273, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001063", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 8309.02, + "value": 8194.737694795644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001064", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 9638.15, + "value": 9505.586833717407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001065", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 8825.0, + "value": 8703.620903135574, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001066", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 9931.0, + "value": 9794.408973262252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001067", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 12578.59, + "value": 12405.584006342446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001068", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 9609.24, + "value": 9477.074462010933, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001069", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 10541.98, + "value": 10396.985551097696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001070", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 8136.9800000000005, + "value": 8025.063933869247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001071", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 8527.68584158416, + "value": 8410.396005233446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001072", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 8247.33, + "value": 8133.896179383241, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001073", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 4462.92, + "value": 4401.536974620036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001074", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 9395.91, + "value": 9266.678603963805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001075", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 9550.77, + "value": 9419.408658701434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001076", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 10819.76, + "value": 10670.944963502567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001077", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 8476.2, + "value": 8359.618300187847, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001078", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 7736.349999999999, + "value": 7629.944201016759, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001079", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 10905.6, + "value": 10755.60431968672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001080", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 7761.3, + "value": 7654.551038584264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001081", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 4166.89, + "value": 4109.578572812078, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001082", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 9130.08, + "value": 9004.504831195472, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001083", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 7332.373838383838, + "value": 7231.524329672748, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001084", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 7676.839999999999, + "value": 7571.252701872781, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001085", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 3651.8, + "value": 3601.5731234074206, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001086", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 3833.69, + "value": 3780.961407381509, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001087", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 12158.1, + "value": 11990.877428035425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001088", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 13059.710000000001, + "value": 12880.086679307498, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001089", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 6735.25, + "value": 6642.613335733016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001090", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 8818.59, + "value": 8697.299066309613, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001091", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 9254.39, + "value": 9127.105070795333, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001092", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 6841.987878787879, + "value": 6747.883141169224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001093", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 7034.7, + "value": 6937.944698842812, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001094", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 5655.040000000001, + "value": 5577.260549809383, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001095", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 6523.839999999999, + "value": 6434.111069995692, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001096", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 4791.569393939394, + "value": 4725.666123049922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001097", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 7968.42, + "value": 7858.82230900437, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001098", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 5696.572727272727, + "value": 5618.222035730644, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001099", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 6509.849999999999, + "value": 6420.313488529984, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001100", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 5946.05, + "value": 5864.267996723997, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001101", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 9931.396464646465, + "value": 9794.799984931866, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001102", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 6568.71, + "value": 6478.363927777414, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001103", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 5577.099999999999, + "value": 5500.392536983275, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001104", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 10211.560000000001, + "value": 10071.110149532364, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001105", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 10392.8, + "value": 10249.857373609902, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001106", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 9787.241414141416, + "value": 9652.627643756983, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001107", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 10944.98, + "value": 10794.442686957596, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001108", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 13034.38, + "value": 12855.105068262012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001109", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 10052.0, + "value": 9913.744738619693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001110", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 9223.12, + "value": 9096.26515854139, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001111", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 8857.12, + "value": 8735.299124485004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001112", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 8716.199999999999, + "value": 8596.317338913346, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001113", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 7770.0, + "value": 7663.131378738063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001114", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 13376.27, + "value": 13192.292711386433, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001115", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 8601.0, + "value": 8482.701800325107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001116", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 8898.51, + "value": 8776.119846205205, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001117", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 7264.23, + "value": 7164.317742003912, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001118", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 5411.5599999999995, + "value": 5337.129375022362, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001119", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 6922.44, + "value": 6827.228723478959, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001120", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 4898.0, + "value": 4830.63288198958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001121", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 10254.230792079208, + "value": 10113.194047310712, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001122", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 6698.400000000001, + "value": 6606.270170828706, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001123", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 7412.45, + "value": 7310.499123336803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001124", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 7116.11, + "value": 7018.234985270492, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001125", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 9134.0, + "value": 9008.370915494655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001126", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 11792.43, + "value": 11630.236855157284, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001127", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 12824.86, + "value": 12648.466807454652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001128", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 9910.07, + "value": 9773.7668445934, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001129", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 7919.02, + "value": 7810.101756866705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001130", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 5194.98, + "value": 5123.528217492491, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001131", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 3362.73, + "value": 3316.478993722503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001132", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 6037.08, + "value": 5954.04596962059, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001133", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 7253.794743474347, + "value": 7154.026012051929, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001134", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 7573.55, + "value": 7469.383353081294, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001135", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 5923.28, + "value": 5841.811175424916, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001136", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 11972.575757575756, + "value": 11807.904887026694, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001137", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 7901.564949494949, + "value": 7792.886783218994, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001138", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 10435.0, + "value": 10291.476954585803, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001139", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 8866.97, + "value": 8745.013647532696, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001140", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 9608.86, + "value": 9476.69968853295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001141", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 8096.800594059406, + "value": 7985.437155691328, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001142", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 9390.16, + "value": 9261.00768949434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001143", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 9382.0, + "value": 9252.959922177672, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001144", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 9318.48, + "value": 9190.313576594988, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001145", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 8070.52, + "value": 7959.518025062177, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001146", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 11307.96, + "value": 11152.430258110022, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001147", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 10336.32, + "value": 10194.154199829834, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001148", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 10911.380000000001, + "value": 10761.304821536029, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001149", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 5960.37, + "value": 5878.3910393679525, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001150", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 9291.0, + "value": 9163.21153666092, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001151", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 10183.05, + "value": 10042.992276223762, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001152", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 10366.720000000001, + "value": 10224.136078068399, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001153", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 6693.0, + "value": 6600.944442457382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001154", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 11584.64, + "value": 11425.304799920736, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001155", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 11619.424242424242, + "value": 11459.610619689956, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001156", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 10990.254455445543, + "value": 10839.094437302516, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001157", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 7844.88, + "value": 7736.981478820419, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001158", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 9587.0, + "value": 9455.140351089036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001159", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 8437.9, + "value": 8321.845078591236, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001160", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 7824.330707070708, + "value": 7716.7148209752, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001161", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 8482.56, + "value": 8365.890824714072, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001162", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 9231.4, + "value": 9104.43127537742, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001163", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 8586.9898989899, + "value": 8468.884394318698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001164", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 9458.635353535356, + "value": 9328.541232653533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001165", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 9562.0, + "value": 9430.484201221796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001166", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 12798.43, + "value": 12622.400325815004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001167", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 7934.4, + "value": 7825.270220265031, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001168", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 9825.248415841585, + "value": 9690.111896953937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001169", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 8264.3, + "value": 8150.632773913124, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001170", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 9884.16, + "value": 9748.213210870992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001171", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 14276.199999999999, + "value": 14079.845069387431, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001172", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 9324.32, + "value": 9196.073253203976, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001173", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 9429.214747474747, + "value": 9299.525277764922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001174", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 15517.732673267326, + "value": 15304.301695673583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001175", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 3785.13, + "value": 3733.0693018793827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001176", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 7581.641584158416, + "value": 7477.3636455482265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001177", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 8580.48, + "value": 8462.464032514077, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001178", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 10294.2, + "value": 10152.61351853351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001179", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 9460.800000000001, + "value": 9330.67610655921, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001180", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 6934.67, + "value": 6839.290511994013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001181", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 8234.0, + "value": 8120.74952027403, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001182", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 7827.33, + "value": 7719.672861613617, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001183", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 9501.625742574257, + "value": 9370.9403316533, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001184", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 6667.0, + "value": 6575.302046595452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001185", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 9940.4, + "value": 9803.679685612335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001186", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 6594.64, + "value": 6503.937286419715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001187", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 7695.12, + "value": 7589.281278655707, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001188", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 6366.88, + "value": 6279.309898669215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001189", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 6536.840606060606, + "value": 6446.932865651502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001190", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 8857.48, + "value": 8735.65417304309, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001191", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 7199.21, + "value": 7100.192027429195, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001192", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 10511.09201420142, + "value": 10366.522398819816, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001193", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 7661.0, + "value": 7555.630565316898, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001194", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 7044.0, + "value": 6947.116786593426, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001195", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 11343.56, + "value": 11187.54061552097, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001196", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 8843.029999999999, + "value": 8721.402918419826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001197", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 8777.720000000001, + "value": 8656.991192506652, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001198", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 9128.22, + "value": 9002.670413645348, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001199", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 9690.439999999999, + "value": 9557.157636779726, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001200", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 8527.199999999999, + "value": 8409.916845917016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001201", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 9609.728316831684, + "value": 9477.55606253032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001202", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 11545.94, + "value": 11387.137079926248, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001203", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 11456.05, + "value": 11298.483427463601, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001204", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 8451.72, + "value": 8335.474998237845, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001205", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 4529.44, + "value": 4467.142058186786, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001206", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 8938.46, + "value": 8815.520373693054, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001207", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 6812.661212121212, + "value": 6718.9598336316285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001208", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 6843.34, + "value": 6749.216665299014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001209", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 6426.12, + "value": 6337.735111394625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001210", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 7016.437272727273, + "value": 6919.933157217977, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001211", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 8797.130000000001, + "value": 8676.134227263576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001212", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 10076.873838383839, + "value": 9938.276462098309, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001213", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 4280.64, + "value": 4221.764054708018, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001214", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 9784.08, + "value": 9649.50971172246, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001215", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 8934.74, + "value": 8811.85153859281, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001216", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 12520.04, + "value": 12347.839303353372, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001217", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 9077.1, + "value": 8952.253518396818, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001218", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 10317.0, + "value": 10175.099927212432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001219", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 12225.78, + "value": 12057.626556956016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001220", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 8289.239999999998, + "value": 8175.229749020682, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001221", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 6862.34, + "value": 6767.955339198115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001222", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 9979.628484848485, + "value": 9842.368621671894, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001223", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 7453.439595959596, + "value": 7350.924948175899, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001224", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 10150.242374237425, + "value": 10010.635886720147, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001225", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 7380.08, + "value": 7278.574340488701, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001226", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 8442.0, + "value": 8325.888687169463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001227", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 10090.45504950495, + "value": 9951.670877169538, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001228", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 8787.0, + "value": 8666.143555337369, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001229", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 6612.75, + "value": 6521.7982013835435, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001230", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 8296.6, + "value": 8182.488519541597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001231", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 7224.169504950495, + "value": 7124.808239216056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001232", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 11784.168628862886, + "value": 11622.089110962661, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001233", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 10912.12, + "value": 10762.034643572099, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001234", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 9921.82, + "value": 9785.355235031002, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001235", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 9985.84, + "value": 9848.49470361103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001236", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 6544.88, + "value": 6454.861685723961, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001237", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 8084.0005440544055, + "value": 7972.81315764207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001238", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 8663.0, + "value": 8543.849051995861, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001239", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 11460.0, + "value": 11302.379099142627, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001240", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 10987.0, + "value": 10835.884743654453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001241", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 10526.400000000001, + "value": 10381.619838500432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001242", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 11920.800000000001, + "value": 11756.841253495586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001243", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 11819.449999999999, + "value": 11656.885221933797, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001244", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 8294.800000000001, + "value": 8180.713276751157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001245", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 9364.46, + "value": 9235.661167430815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001246", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 8518.0, + "value": 8400.843382765872, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001247", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 11136.140000000001, + "value": 10982.973471302457, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001248", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 8705.8, + "value": 8586.060380568575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001249", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 8640.800792079208, + "value": 8521.955172098698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001250", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 12485.629090909091, + "value": 12313.901682088837, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001251", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 5737.290000000001, + "value": 5658.379282872601, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001252", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 10364.0, + "value": 10221.453488962843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001253", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 10911.92, + "value": 10761.837394373159, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001254", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 8410.0, + "value": 8294.328815339397, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001255", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 9789.66, + "value": 9655.012964372827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001256", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 11750.0, + "value": 11588.390437602606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001257", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 4361.92, + "value": 4301.926129156387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001258", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 8480.665841584158, + "value": 8364.022718563141, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001259", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 4234.186435643564, + "value": 4175.949412922429, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001260", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 4121.341188118811, + "value": 4064.656239531387, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001261", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 8987.58, + "value": 8863.964776952207, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001262", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 8720.68, + "value": 8600.735720969556, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001263", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 9888.75, + "value": 9752.74007998662, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001264", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 5878.808080808081, + "value": 5797.950923245727, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001265", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 7807.247171717171, + "value": 7699.86625265764, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001266", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 9868.84, + "value": 9733.103922232349, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001267", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 7665.920792079208, + "value": 7560.483676795717, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001268", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 7871.46, + "value": 7763.195897359268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001269", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 10263.716969696969, + "value": 10122.549751991146, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001270", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 7982.934653465347, + "value": 7873.137327848875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001271", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 7022.072727272727, + "value": 6925.491101691687, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001272", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 8205.0, + "value": 8092.148386428032, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001273", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 11306.625742574257, + "value": 11151.114352067998, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001274", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 11471.89, + "value": 11314.105564019485, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001275", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 10231.0, + "value": 10090.282771669128, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001276", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 5719.0, + "value": 5640.340843629728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001277", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 10200.8, + "value": 10060.498142629502, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001278", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 7378.32, + "value": 7276.838547538046, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001279", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 7074.0, + "value": 6976.704166434113, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001280", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 10466.84, + "value": 10322.879027056719, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001281", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 10302.93, + "value": 10161.22344606715, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001282", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 11577.97, + "value": 11418.726539136156, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001283", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 8288.28, + "value": 8174.282952865781, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001284", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 8509.52, + "value": 8392.480016730904, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001285", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 11546.246633663366, + "value": 11387.439496148581, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001286", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 8131.5, + "value": 8019.659305818349, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001287", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 9556.0, + "value": 9424.566725253659, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001288", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 10404.12, + "value": 10261.021678269788, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001289", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 8353.220000000001, + "value": 8238.329767760923, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001290", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 7297.92, + "value": 7197.544369565005, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001291", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 12013.777623762377, + "value": 11848.540062526983, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001292", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 9090.252525252525, + "value": 8965.225143747173, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001293", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 5942.053535353536, + "value": 5860.326499473504, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001294", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 9414.82, + "value": 9285.328515723382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001295", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 9596.72, + "value": 9464.72666215742, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001296", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 6862.0, + "value": 6767.620015559922, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001297", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 8866.56, + "value": 8744.609286674873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001298", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 9693.58, + "value": 9560.254449203052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001299", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 8313.0, + "value": 8198.662953854508, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001300", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 6593.976767676768, + "value": 6503.283176197378, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001301", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 5563.623232323233, + "value": 5487.101128840702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001302", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 8000.0, + "value": 7889.967957516667, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001303", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 9835.0, + "value": 9699.729357772052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001304", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 9835.0, + "value": 9699.729357772052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001305", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 4956.0, + "value": 4887.835149681576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001306", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 5110.71, + "value": 5040.417267520001, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001307", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 8405.7, + "value": 8290.087957562231, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001308", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 9013.0, + "value": 8889.035150137215, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001309", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 9920.630000000001, + "value": 9784.181602297323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001310", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 10048.42, + "value": 9910.213977958705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001311", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 9676.48, + "value": 9543.38964269386, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001312", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 7695.03, + "value": 7589.192516516184, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001313", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 7787.41, + "value": 7680.301921505608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001314", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 7801.272828282828, + "value": 7693.974080374618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001315", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 8489.408080808082, + "value": 8372.644716982353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001316", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 9730.08, + "value": 9596.252428009222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001317", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 6713.85, + "value": 6621.50767144666, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001318", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 9713.68, + "value": 9580.077993696314, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001319", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 6029.155555555556, + "value": 5946.230518027117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001320", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 8252.672277227723, + "value": 8139.164978901605, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001321", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 6483.0, + "value": 6393.8327835725695, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001322", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 7254.0, + "value": 7154.228445478238, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001323", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 4880.5, + "value": 4813.3735770825115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001324", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 7330.689494949495, + "value": 7229.863152706946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001325", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 6907.49494949495, + "value": 6812.48922727792, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001326", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 6974.66, + "value": 6878.73048932165, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001327", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 5462.2, + "value": 5387.072872193443, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001328", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 5884.14, + "value": 5803.209507192765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001329", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 10028.88, + "value": 9890.942731222469, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001330", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 12317.336565656566, + "value": 12147.923853122336, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001331", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 5376.778888888889, + "value": 5302.826643498175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001332", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 4000.4700000000003, + "value": 3945.447514375838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001333", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 4325.127272727273, + "value": 4265.639449249955, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001334", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 5580.3, + "value": 5503.548524166283, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001335", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 11566.279999999999, + "value": 11407.197323458235, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001336", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 8110.0, + "value": 7998.455016932521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001337", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 7720.5, + "value": 7614.31220200093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001338", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 6475.64, + "value": 6386.574013051654, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001339", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 7418.159999999999, + "value": 7316.13058796648, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001340", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 6284.72, + "value": 6198.279927745519, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001341", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 6747.18, + "value": 6654.379250449663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001342", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 7836.56, + "value": 7728.775912144602, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001343", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 14744.28, + "value": 14541.487094581731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001344", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 12118.470000000001, + "value": 11951.792499265875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001345", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 6717.62, + "value": 6625.225818846639, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001346", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 6000.92, + "value": 5918.383314452615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001347", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 10608.0, + "value": 10462.097511667102, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001348", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 9062.408181818182, + "value": 8937.763771560292, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001349", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 9331.0, + "value": 9202.661376448503, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001350", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 10794.16, + "value": 10645.697066038514, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001351", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 11306.1, + "value": 11150.5958405599, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001352", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 5114.136666666667, + "value": 5043.796803795137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001353", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 3543.6, + "value": 3494.861306782008, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001354", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 4153.3, + "value": 4096.175489744247, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001355", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 9469.6, + "value": 9339.355071312479, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001356", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 9044.366336633664, + "value": 8919.97007401025, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001357", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 9965.72, + "value": 9828.651434197875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001358", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 9754.47, + "value": 9620.3069678197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001359", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 8277.390000000001, + "value": 8163.5427339836115, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001360", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 8508.763564356435, + "value": 8391.733985107197, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001361", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 9924.380000000001, + "value": 9787.880024777407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001362", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 9958.6, + "value": 9821.629362715685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001363", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 11377.031313131312, + "value": 11220.55156403373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001364", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 10141.300000000001, + "value": 10001.816505945473, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001365", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 11634.619999999999, + "value": 11474.59737473532, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001366", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 9843.07, + "value": 9707.688362949199, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001367", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 7528.3099999999995, + "value": 7424.7655842815375, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001368", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 9681.75, + "value": 9548.587159085875, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001369", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 7805.6, + "value": 7698.241736149012, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001370", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 6203.54, + "value": 6118.216477896619, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001371", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 6031.2, + "value": 5948.246843171815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001372", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 11418.0, + "value": 11260.956767365664, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001373", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 10864.0, + "value": 10714.576486307635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001374", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 13525.0, + "value": 13338.977078176615, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001375", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 11919.569999999998, + "value": 11755.628170922118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001376", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 8835.64, + "value": 8714.11456051907, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001377", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 8213.426237623762, + "value": 8100.458729534769, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001378", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 7966.94, + "value": 7857.36266493223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001379", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 7887.411386138614, + "value": 7778.927888048223, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001380", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 8876.0, + "value": 8753.919448864743, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001381", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 11738.0, + "value": 11576.55548566633, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001382", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 9983.939999999999, + "value": 9846.62083622112, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001383", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 9672.25, + "value": 9539.217822136323, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001384", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 8939.33, + "value": 8816.378407708433, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001385", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 12553.66, + "value": 12380.996893694835, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001386", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 10452.93, + "value": 10309.160345270586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001387", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 11962.0, + "value": 11797.474588476796, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001388", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 12026.67, + "value": 11861.255116953373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001389", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 9946.737373737375, + "value": 9809.92989507767, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001390", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 10786.5, + "value": 10638.142421719192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001391", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 11261.0, + "value": 11106.116146199398, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001392", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 9152.76, + "value": 9026.872890355033, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001393", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 9835.0, + "value": 9699.729357772052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001394", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 9054.826732673268, + "value": 8930.286597707178, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001395", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 12213.07, + "value": 12045.09137036351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001396", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 14378.737373737375, + "value": 14180.972143541905, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001397", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 11944.269999999999, + "value": 11779.988446990948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001398", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 11362.0, + "value": 11205.726991663047, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001399", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 11243.050000000001, + "value": 11088.413030594722, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001400", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 9344.0, + "value": 9215.482574379468, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001401", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 8848.54, + "value": 8726.837133850568, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001402", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 9759.158415841584, + "value": 9624.930899164903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001403", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 9973.029999999999, + "value": 9835.860892419056, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001404", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 9798.3, + "value": 9663.534129766944, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001405", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 13011.7, + "value": 12832.737009102451, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001406", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 9359.28, + "value": 9230.552413178324, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001407", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 7944.759603960396, + "value": 7835.487338177541, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001408", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 9217.826868686869, + "value": 9091.044828984448, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001409", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 7585.42, + "value": 7481.0900930382595, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001410", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 5311.060606060606, + "value": 5238.0122502809045, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001411", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 7680.307070707071, + "value": 7574.672086470936, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001412", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 5551.932323232323, + "value": 5475.571016575513, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001413", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 8580.0, + "value": 8461.990634436626, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001414", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 8182.6, + "value": 8070.056476146985, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001415", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 8728.0, + "value": 8607.955041650685, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001416", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 7468.0, + "value": 7365.285088341809, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001417", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 9095.485454545455, + "value": 8970.38609930282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001418", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 8408.74, + "value": 8293.086145386087, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001419", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 5441.46, + "value": 5366.6181302635805, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001420", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 8925.240000000002, + "value": 8802.482201643257, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001421", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 4190.58, + "value": 4132.942740426274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001422", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 9860.94, + "value": 9725.3125788743, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001423", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 10615.0, + "value": 10469.001233629928, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001424", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 11292.1, + "value": 11136.788396634245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001425", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 8343.72, + "value": 8228.96043081137, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001426", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 9368.7, + "value": 9239.8428504483, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001427", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 7043.299999999999, + "value": 6946.426414397142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001428", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 8420.1, + "value": 8304.28989988576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001429", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 10186.17, + "value": 10046.069363727192, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001430", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 3718.3999999999996, + "value": 3667.2571066537466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001431", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 7697.0, + "value": 7591.135421125723, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001432", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 6415.0, + "value": 6326.768055933678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001433", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 7289.44, + "value": 7189.181003530037, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001434", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 5496.11, + "value": 5420.5164738733665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001435", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 7745.5, + "value": 7638.968351868169, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001436", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 8932.509207920793, + "value": 8809.651428839705, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001437", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 10620.48, + "value": 10474.405861680827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001438", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 6873.299999999999, + "value": 6778.764595299913, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001439", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 6741.849999999999, + "value": 6649.122559297968, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001440", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 9346.3, + "value": 9217.750940167254, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001441", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 9111.95, + "value": 8986.62419131175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001442", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 8782.36, + "value": 8661.56737392201, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001443", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 10803.14, + "value": 10654.553555070826, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001444", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 11488.271287128713, + "value": 11330.261542838038, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001445", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 8230.32, + "value": 8117.120135013572, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001446", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 7136.1, + "value": 7037.950042704337, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001447", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 8081.92, + "value": 7970.761229401637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001448", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 8024.686868686868, + "value": 7914.31528288052, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001449", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 9942.77, + "value": 9806.017088619748, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001450", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 9035.289999999999, + "value": 8911.018573358846, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001451", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 9429.322376237624, + "value": 9299.631426201222, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001452", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 9070.008415841585, + "value": 8945.259471924575, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001453", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 9596.15, + "value": 9464.164501940446, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001454", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 8519.668163816381, + "value": 8402.488602648264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001455", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 8628.856262626263, + "value": 8510.17492776728, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001456", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 8367.640000000001, + "value": 8252.551435004347, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001457", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 9806.94, + "value": 9672.055295161063, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001458", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 10446.960000000001, + "value": 10303.27245668229, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001459", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 6558.533333333334, + "value": 6468.327231038123, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001460", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 9494.119999999999, + "value": 9363.537823102268, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001461", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 12181.0, + "value": 12013.462461313815, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001462", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 9593.21, + "value": 9461.264938716058, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001463", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 11148.78, + "value": 10995.439620675334, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001464", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 10385.329504950496, + "value": 10242.48962778898, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001465", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 9470.8, + "value": 9340.538566506106, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001466", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 6942.9, + "value": 6847.407316530308, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001467", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 3792.4, + "value": 3740.2393102607757, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001468", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 9224.01207920792, + "value": 9097.144968087148, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001469", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 7872.97504950495, + "value": 7764.690108865282, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001470", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 8951.712871287129, + "value": 8828.590964918121, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001471", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 10475.43, + "value": 10331.350880151103, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001472", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 9616.0, + "value": 9483.741484935033, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001473", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 10538.710000000001, + "value": 10393.76052669506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001474", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 10145.76, + "value": 10006.215163081788, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001475", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 12341.22, + "value": 12171.47879458298, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001476", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 11724.800000000001, + "value": 11563.53703853643, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001477", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 5565.6, + "value": 5489.050708044346, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001478", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 6881.12, + "value": 6786.477038978386, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001479", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 9129.5, + "value": 9003.932808518552, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001480", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 8117.599999999999, + "value": 8005.950486492162, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001481", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 9019.69690669067, + "value": 8895.639947537698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001482", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 10643.975247524751, + "value": 10497.577955446355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001483", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 8419.84, + "value": 8304.03347592714, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001484", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 13061.24, + "value": 12881.595635679374, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001485", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 13250.608686868687, + "value": 13068.359744623243, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001486", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 12467.0, + "value": 12295.528815795036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001487", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 12620.0, + "value": 12446.424452982543, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001488", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 9718.48, + "value": 9584.811974470822, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001489", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 10763.04, + "value": 10615.005090683773, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001490", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 8753.504745474547, + "value": 8633.108994720535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001491", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 10600.5, + "value": 10454.700666706929, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001492", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 8439.3, + "value": 8323.2258229838, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001493", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 13510.289999999999, + "value": 13324.469399594731, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001494", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 11978.88, + "value": 11814.122420867157, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001495", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 11419.13, + "value": 11262.071225339663, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001496", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 7643.159999999999, + "value": 7538.0359367716355, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001497", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 11891.16, + "value": 11727.608922212987, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001498", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 10660.57, + "value": 10513.944463607932, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001499", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 7250.0, + "value": 7150.28346149948, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001500", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 6274.0, + "value": 6187.707370682447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001501", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 8467.65, + "value": 8351.18589693325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001502", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 9836.87, + "value": 9701.573637782123, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001503", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 8044.054747474747, + "value": 7933.416775760698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001504", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 11239.6, + "value": 11085.010481913041, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001505", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 8406.0, + "value": 8290.383831360637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001506", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 7993.29, + "value": 7883.350246892301, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001507", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 7135.679999999999, + "value": 7037.535819386567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001508", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 11372.12, + "value": 11215.707801129307, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001509", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 10116.0, + "value": 9976.864482279825, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001510", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 8570.7, + "value": 8452.818546686014, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001511", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 12035.78, + "value": 11870.239817964994, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001512", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 9719.350719071908, + "value": 9585.670717667992, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001513", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 10450.44, + "value": 10306.70459274381, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001514", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 10863.92, + "value": 10714.49758662806, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001515", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 8171.0, + "value": 8058.616022608586, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001516", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 7058.0, + "value": 6960.92423051908, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001517", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 7381.86, + "value": 7280.329858359249, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001518", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 8225.64, + "value": 8112.504503758424, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001519", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 8160.96, + "value": 8048.714112821903, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001520", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 8456.84, + "value": 8340.524577730655, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001521", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 8775.16, + "value": 8654.466402760245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001522", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 9853.68, + "value": 9718.152432952855, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001523", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 10769.18, + "value": 10621.06064109117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001524", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 9428.38, + "value": 9298.702011411373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001525", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 4124.81, + "value": 4068.0773413555407, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001526", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 11763.92, + "value": 11602.118981848684, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001527", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 4869.280000000001, + "value": 4802.307897022095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001528", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 7130.0, + "value": 7031.9339421367295, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001529", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 10072.32, + "value": 9933.785257231784, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001530", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 13220.227722772277, + "value": 13038.396640468352, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001531", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 8435.0, + "value": 8318.984965206637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001532", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 8787.4, + "value": 8666.538053735245, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001533", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 11332.339595959596, + "value": 11176.474536977325, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001534", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 7529.0, + "value": 7425.446094017873, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001535", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 9752.0, + "value": 9617.870940212817, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001536", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 7860.16, + "value": 7752.051317619277, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001537", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 7824.96, + "value": 7717.335458606202, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001538", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 9821.72, + "value": 9686.632010962576, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001539", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 10222.199999999999, + "value": 10081.603806915859, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001540", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 11264.0, + "value": 11109.074884183467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001541", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 7869.58, + "value": 7761.341754889252, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001542", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 9815.89, + "value": 9680.882196813534, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001543", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 9898.42, + "value": 9762.277078755265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001544", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 12493.916831683167, + "value": 12322.075433232294, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001545", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 9997.23797979798, + "value": 9859.73591553434, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001546", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 6502.56, + "value": 6413.123755228698, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001547", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 7559.07, + "value": 7455.102511078188, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001548", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 11061.36, + "value": 10909.22199581957, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001549", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 8838.49, + "value": 8716.925361603937, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001550", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 4473.0, + "value": 4411.478334246506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001551", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 12467.68, + "value": 12296.199463071425, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001552", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 13033.95, + "value": 12854.680982484297, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001553", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 5293.216921692169, + "value": 5220.413988042028, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001554", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 10768.06, + "value": 10619.956045577117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001555", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 9584.0, + "value": 9452.181613104967, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001556", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 7836.01, + "value": 7728.233476847524, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001557", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 9109.1, + "value": 8983.813390226884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001558", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 7333.524455445545, + "value": 7232.659121141276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001559", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 3720.37, + "value": 3669.200011263285, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001560", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 9866.582277227722, + "value": 9730.87725219107, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001561", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 9227.76, + "value": 9100.84133995675, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001562", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 8088.93, + "value": 7977.674813824412, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001563", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 4483.0, + "value": 4421.340794193402, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001564", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 8835.0, + "value": 8713.483363082469, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001565", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 9004.130000000001, + "value": 8880.28714816432, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001566", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 8019.299999999999, + "value": 7909.002505214176, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001567", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 9239.38, + "value": 9112.301518415043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001568", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 6917.83, + "value": 6822.682129443441, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001569", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 10560.76782178218, + "value": 10415.51496507931, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001570", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 8473.12, + "value": 8356.580662524204, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001571", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 10287.083636363637, + "value": 10145.595033400392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001572", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 10663.27, + "value": 10516.607327793594, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001573", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 7549.0, + "value": 7445.171013911665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001574", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 7885.21, + "value": 7776.75677978625, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001575", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 13768.810000000001, + "value": 13579.433714141884, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001576", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 4629.46, + "value": 4565.786382575639, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001577", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 9882.0, + "value": 9746.082919522463, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001578", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 11042.36, + "value": 10890.483321920468, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001579", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 13107.0, + "value": 12926.72625239637, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001580", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 12191.88, + "value": 12024.192817736037, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001581", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 10506.85, + "value": 10362.338729304249, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001582", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 10312.000852085208, + "value": 10170.169537604608, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001583", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 10577.62, + "value": 10432.13535834843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001584", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 7902.97, + "value": 7794.272508651938, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001585", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 9715.0, + "value": 9581.379838409302, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001586", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 6759.45, + "value": 6666.480488804505, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001587", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 10685.93, + "value": 10538.95566203326, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001588", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 8113.04, + "value": 8001.453204756378, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001589", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 10557.07, + "value": 10411.86800315756, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001590", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 10528.69, + "value": 10383.87834182827, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001591", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 9207.82, + "value": 9081.17559482264, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001592", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 7705.9800000000005, + "value": 7599.991910158036, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001593", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 7324.254545454545, + "value": 7223.516709541521, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001594", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 7345.41, + "value": 7244.381191852813, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001595", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 8252.65, + "value": 8139.143008074991, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001596", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 8693.48, + "value": 8573.909829913999, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001597", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 8087.0, + "value": 7975.771359054661, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001598", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 7806.32, + "value": 7698.951833265189, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001599", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 13163.78, + "value": 12982.725299974843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001600", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 7331.13, + "value": 7230.297599048646, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001601", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 12479.0, + "value": 12307.36376773131, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001602", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 7272.0, + "value": 7171.98087338265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001603", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 11797.16, + "value": 11634.901798712166, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001604", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 7512.15, + "value": 7408.8278490073535, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@E14001605", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 10197.849999999999, + "value": 10057.588716945167, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000001", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 9037.444265290083, + "value": 8913.14320887269, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000002", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 8523.83144378257, + "value": 8406.594620839689, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000003", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 9124.342767840952, + "value": 8998.846508958004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000004", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 9292.117104449058, + "value": 9164.313276449453, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000005", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 9127.78429269445, + "value": 9002.240699060392, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000006", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 8953.179050695306, + "value": 8830.03697848693, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000007", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 8948.825000312467, + "value": 8825.74281373618, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000008", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 8250.968929072144, + "value": 8137.485058605604, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000009", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 8602.951752535753, + "value": 8484.62670844612, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000010", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 8435.177415927645, + "value": 8319.15994095467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000011", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 8081.560737230557, + "value": 7970.4069079342335, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000012", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 8079.839974803806, + "value": 7968.7098128830385, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000013", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 9124.34276784095, + "value": 8998.846508958004, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000014", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 8860.170972457545, + "value": 8738.308133851164, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000015", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 7733.966727027092, + "value": 7627.593707592975, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000016", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 8950.545762739219, + "value": 8827.439908787377, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000017", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 7994.66223467969, + "value": 7884.703607848918, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@N05000018", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 9295.593392179866, + "value": 9167.741751300351, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000021", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 7770.093337504374, + "value": 7663.2234324779065, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000027", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 8309.432263953533, + "value": 8195.14428846857, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000045", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 7542.143073534635, + "value": 7438.4083976493175, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000048", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 8327.496247136038, + "value": 8212.959819530455, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000051", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 2247.6756217091697, + "value": 2216.761079272088, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000060", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 8235.455951872787, + "value": 8122.185446977027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000061", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 8302.55074655067, + "value": 8188.35741949261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000062", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 7874.176288222631, + "value": 7765.874825739261, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000063", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 3866.552590732, + "value": 3813.3720058660674, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000064", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 8385.98914506035, + "value": 8270.648205826094, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000065", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 10092.140958544953, + "value": 9953.333598207653, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000066", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 11566.832934184358, + "value": 11407.742652582885, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000067", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 8582.002286763416, + "value": 8463.965381737265, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000068", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 8981.524263000612, + "value": 8857.992330591665, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000069", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 6989.603676327441, + "value": 6893.468630245526, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000070", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 9249.722801880329, + "value": 9122.502065343386, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000071", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 9480.525454813554, + "value": 9350.13025736251, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000072", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 8570.190673145175, + "value": 8452.316225115452, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000073", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 6672.701198028981, + "value": 6580.924830316467, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000074", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 12335.26493549364, + "value": 12165.605636065466, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000075", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 8279.179393071207, + "value": 8165.307515733013, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000076", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 7849.383901399478, + "value": 7741.423433536132, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000077", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 8177.683006640396, + "value": 8065.20711114016, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000078", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 8452.980716977192, + "value": 8336.718375307039, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000079", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 7729.199920337878, + "value": 7622.8924635882795, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000080", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 9649.628422712738, + "value": 9516.907382143201, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000081", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 7478.905369361051, + "value": 7376.0404651947565, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000082", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 7587.783017329752, + "value": 7483.4206094151095, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000083", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 10275.925643823137, + "value": 10134.590507948547, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000084", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 9209.199266274238, + "value": 9082.53589066122, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000085", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 9079.904156171253, + "value": 8955.0191061892, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000086", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 9205.749905676057, + "value": 9079.133972587022, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000087", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 8733.49717200803, + "value": 8613.376605525724, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000088", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 7218.919921501648, + "value": 7119.630858565842, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000089", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 8824.726491388063, + "value": 8703.351156362536, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000090", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 11170.93606977446, + "value": 11017.290955748456, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000091", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 10884.982701378438, + "value": 10735.270591499886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000092", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 7887.939834032121, + "value": 7779.449067666597, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000093", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 8879.240130711387, + "value": 8757.115014801118, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000094", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 10209.006327839024, + "value": 10068.59160059185, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000095", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 8248.26589651821, + "value": 8134.81920357577, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000096", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 7287.637033907257, + "value": 7187.402835442507, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000097", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 7742.906182625024, + "value": 7636.410209871142, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000098", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 9093.388693923662, + "value": 8968.318177537754, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000099", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 9756.650077296861, + "value": 9622.457060321844, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000100", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 8084.681905576122, + "value": 7973.485147713798, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000101", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 7196.33306100611, + "value": 7097.354657869506, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000102", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 8967.735422504633, + "value": 8844.393141881093, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000103", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 9010.960388130577, + "value": 8887.023591100276, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000104", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 8589.651093356695, + "value": 8471.508986604042, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000105", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 8974.745968358797, + "value": 8851.30726465035, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000106", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 7767.144675431084, + "value": 7660.31532631843, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000107", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 8400.725642043231, + "value": 8285.182016951216, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000108", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 8619.912566135772, + "value": 8501.354242925814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000109", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 6868.136292270206, + "value": 6773.671909233656, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000110", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 9509.06310748322, + "value": 9378.27540300581, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@S14000111", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 8196.981388073395, + "value": 8084.240062532447, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000081", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 8506.09, + "value": 8389.097192969117, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000082", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 10143.0, + "value": 10003.493124136445, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000083", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 11210.0, + "value": 11055.81760047023, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000084", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 9393.47, + "value": 9264.272163736761, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000085", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 11884.79, + "value": 11721.326535226814, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000086", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 9234.89, + "value": 9107.873273898886, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000087", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 11773.33, + "value": 11611.399556658713, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000088", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 9201.14, + "value": 9074.587471578114, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000089", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 5862.37, + "value": 5781.738931888373, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000090", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 7786.84, + "value": 7679.739761288635, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000091", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 6772.91, + "value": 6679.755359893027, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000092", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 7548.9, + "value": 7445.072389312196, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000093", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 11403.58, + "value": 11246.73510012224, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000094", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 11136.475247524753, + "value": 10983.304107830974, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000095", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 12085.800000000001, + "value": 11919.571842619367, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000096", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 11313.130693069308, + "value": 11157.529833439396, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000097", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 10431.689999999999, + "value": 10288.21248034338, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000098", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 10077.56, + "value": 9938.953186243958, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000099", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 9355.19, + "value": 9226.518667060043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000100", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 12356.53, + "value": 12186.578220761678, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000101", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 10854.76, + "value": 10705.463573316702, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000102", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 11212.534653465347, + "value": 11058.317392298353, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000103", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 9741.16, + "value": 9607.180033630382, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000104", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 8784.82, + "value": 8663.993539068946, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000105", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 9509.69, + "value": 9378.893673239583, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000106", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 9613.46, + "value": 9481.236420108522, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000107", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 9789.86, + "value": 9655.210213571765, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000108", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 8799.92, + "value": 8678.885853588758, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000109", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 9003.33, + "value": 8879.498151368567, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000110", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 9536.720000000001, + "value": 9405.551902476043, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000111", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 9744.059405940594, + "value": 9610.039561126274, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "age/70_80@W07000112", + "metric": "age/70_80", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 8841.0, + "value": 8719.400839050606, + "adjustment_factor": 0.9862459946895834, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001063", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001064", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001065", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001066", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001067", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001068", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001069", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001070", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001071", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001072", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001073", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001074", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001075", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001076", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001077", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001078", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001079", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001080", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001081", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001082", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001083", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001084", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001085", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001086", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001087", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001088", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001089", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001090", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001091", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001092", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001093", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001094", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001095", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001096", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001097", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001098", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001099", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001100", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001101", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001102", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001103", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001104", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001105", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001106", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001107", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001108", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001109", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001110", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001111", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001112", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001113", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001114", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001115", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001116", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001117", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001118", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001119", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001120", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001121", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001122", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001123", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001124", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001125", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001126", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001127", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001128", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001129", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001130", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001131", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001132", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001133", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001134", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001135", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001136", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001137", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001138", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001139", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001140", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001141", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001142", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001143", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001144", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001145", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001146", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001147", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001148", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001149", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001150", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001151", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001152", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001153", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001154", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001155", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001156", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001157", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001158", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001159", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001160", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001161", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001162", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001163", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001164", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001165", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001166", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001167", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001168", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001169", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001170", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001171", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001172", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001173", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001174", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001175", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001176", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001177", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001178", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001179", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001180", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001181", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001182", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001183", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001184", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001185", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001186", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001187", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001188", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001189", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001190", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001191", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001192", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001193", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001194", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001195", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001196", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001197", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001198", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001199", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001200", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001201", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001202", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001203", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001204", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001205", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001206", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001207", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001208", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001209", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001210", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001211", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001212", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001213", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001214", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001215", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001216", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001217", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001218", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001219", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001220", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001221", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001222", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001223", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001224", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001225", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001226", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001227", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001228", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001229", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001230", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001231", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001232", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001233", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001234", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001235", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001236", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001237", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001238", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001239", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001240", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001241", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001242", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001243", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001244", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001245", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001246", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001247", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001248", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001249", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001250", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001251", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001252", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001253", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001254", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001255", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001256", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001257", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001258", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001259", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001260", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001261", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001262", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001263", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001264", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001265", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001266", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001267", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001268", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001269", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001270", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001271", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001272", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001273", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001274", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001275", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001276", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001277", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001278", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001279", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001280", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001281", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001282", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001283", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001284", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001285", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001286", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001287", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001288", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001289", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001290", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001291", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001292", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001293", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001294", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001295", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001296", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001297", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001298", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001299", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001300", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001301", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001302", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001303", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001304", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001305", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001306", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001307", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001308", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001309", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001310", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001311", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001312", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001313", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001314", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001315", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001316", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001317", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001318", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001319", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001320", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001321", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001322", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001323", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001324", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001325", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001326", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001327", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001328", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001329", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001330", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001331", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001332", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001333", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001334", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001335", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001336", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001337", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001338", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001339", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001340", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001341", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001342", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001343", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001344", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001345", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001346", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001347", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001348", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001349", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001350", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001351", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001352", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001353", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001354", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001355", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001356", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001357", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001358", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001359", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001360", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001361", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001362", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001363", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001364", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001365", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001366", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001367", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001368", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001369", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001370", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001371", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001372", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001373", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001374", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001375", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001376", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001377", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001378", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001379", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001380", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001381", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001382", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001383", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001384", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001385", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001386", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001387", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001388", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001389", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001390", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001391", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001392", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001393", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001394", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001395", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001396", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001397", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001398", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001399", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001400", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001401", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001402", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001403", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001404", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001405", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001406", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001407", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001408", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001409", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001410", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001411", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001412", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001413", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001414", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001415", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001416", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001417", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001418", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001419", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001420", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001421", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001422", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001423", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001424", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001425", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001426", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001427", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001428", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001429", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001430", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001431", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001432", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001433", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001434", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001435", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001436", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001437", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001438", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001439", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001440", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001441", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001442", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001443", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001444", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001445", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001446", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001447", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001448", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001449", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001450", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001451", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001452", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001453", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001454", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001455", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001456", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001457", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001458", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001459", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001460", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001461", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001462", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001463", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001464", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001465", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001466", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001467", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001468", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001469", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001470", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001471", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001472", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001473", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001474", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001475", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001476", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001477", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001478", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001479", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001480", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001481", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001482", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001483", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001484", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001485", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001486", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001487", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001488", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001489", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001490", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001491", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001492", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001493", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001494", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001495", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001496", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001497", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001498", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001499", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001500", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001501", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001502", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001503", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001504", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001505", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001506", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001507", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001508", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001509", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001510", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001511", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001512", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001513", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001514", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001515", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001516", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001517", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001518", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001519", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001520", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001521", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001522", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001523", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001524", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001525", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001526", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001527", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001528", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001529", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001530", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001531", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001532", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001533", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001534", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001535", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001536", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001537", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001538", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001539", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001540", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001541", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001542", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001543", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001544", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001545", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001546", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001547", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001548", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001549", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001550", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001551", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001552", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001553", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001554", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001555", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001556", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001557", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001558", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001559", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001560", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001561", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001562", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001563", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001564", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001565", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001566", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001567", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001568", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001569", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001570", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001571", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001572", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001573", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001574", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001575", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001576", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001577", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001578", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001579", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001580", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001581", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001582", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001583", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001584", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001585", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001586", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001587", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001588", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001589", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001590", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001591", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001592", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001593", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001594", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001595", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001596", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001597", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001598", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001599", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001600", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001601", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001602", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001603", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001604", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@E14001605", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000001", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000002", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000003", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000004", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000005", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000006", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000007", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000008", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000009", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000010", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000011", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000012", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000013", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000014", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000015", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000016", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000017", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@N05000018", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000021", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000027", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000045", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000048", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000051", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000060", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000061", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000062", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000063", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000064", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000065", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000066", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000067", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000068", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000069", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000070", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000071", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000072", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000073", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000074", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000075", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000076", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000077", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000078", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000079", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000080", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000081", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000082", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000083", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000084", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000085", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000086", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000087", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000088", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000089", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000090", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000091", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000092", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000093", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000094", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000095", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000096", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000097", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000098", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000099", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000100", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000101", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000102", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000103", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000104", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000105", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000106", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000107", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000108", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000109", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000110", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@S14000111", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000081", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 5955.502641740094, + "value": 5955.502641740094, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000082", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 6623.007488660125, + "value": 6623.007488660125, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000083", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 6086.834555390032, + "value": 6086.834555390032, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000084", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 6242.393043762901, + "value": 6242.393043762901, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000085", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 5764.173101948655, + "value": 5764.173101948655, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000086", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 6088.635845029493, + "value": 6088.635845029493, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000087", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 5885.859702858517, + "value": 5885.859702858517, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000088", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 6378.5824731283365, + "value": 6378.5824731283365, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000089", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 7158.5737352448, + "value": 7158.5737352448, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000090", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 6014.505435791921, + "value": 6014.505435791921, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000091", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 7121.996896648474, + "value": 7121.996896648474, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000092", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 6578.800475640143, + "value": 6578.800475640143, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000093", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 6003.009225882306, + "value": 6003.009225882306, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000094", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 6102.827892995255, + "value": 6102.827892995255, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000095", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 6210.7085802275315, + "value": 6210.7085802275315, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000096", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 6304.330281851444, + "value": 6304.330281851444, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000097", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 6262.9654205607485, + "value": 6262.9654205607485, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000098", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 6046.747648854656, + "value": 6046.747648854656, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000099", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 6524.99306480597, + "value": 6524.99306480597, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000100", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 6464.852649422484, + "value": 6464.852649422484, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000101", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 5929.281039861584, + "value": 5929.281039861584, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000102", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 6163.746895709258, + "value": 6163.746895709258, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000103", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 6429.914200062795, + "value": 6429.914200062795, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000104", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 6945.145381547568, + "value": 6945.145381547568, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000105", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 6505.274071599874, + "value": 6505.274071599874, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000106", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 6608.424215561181, + "value": 6608.424215561181, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000107", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 6537.37952876888, + "value": 6537.37952876888, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000108", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 6914.285475606742, + "value": 6914.285475606742, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000109", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 6001.670492942222, + "value": 6001.670492942222, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000110", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 6149.352109985103, + "value": 6149.352109985103, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000111", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 6307.233722841197, + "value": 6307.233722841197, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_renter_households@W07000112", + "metric": "housing/wales_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 4388.99270506971, + "value": 4388.99270506971, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001063", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001064", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001065", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001066", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001067", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001068", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001069", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001070", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001071", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001072", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001073", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001074", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001075", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001076", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001077", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001078", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001079", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001080", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001081", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001082", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001083", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001084", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001085", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001086", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001087", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001088", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001089", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001090", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001091", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001092", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001093", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001094", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001095", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001096", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001097", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001098", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001099", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001100", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001101", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001102", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001103", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001104", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001105", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001106", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001107", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001108", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001109", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001110", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001111", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001112", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001113", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001114", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001115", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001116", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001117", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001118", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001119", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001120", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001121", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001122", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001123", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001124", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001125", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001126", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001127", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001128", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001129", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001130", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001131", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001132", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001133", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001134", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001135", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001136", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001137", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001138", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001139", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001140", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001141", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001142", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001143", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001144", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001145", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001146", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001147", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001148", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001149", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001150", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001151", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001152", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001153", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001154", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001155", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001156", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001157", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001158", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001159", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001160", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001161", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001162", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001163", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001164", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001165", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001166", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001167", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001168", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001169", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001170", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001171", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001172", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001173", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001174", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001175", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001176", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001177", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001178", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001179", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001180", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001181", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001182", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001183", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001184", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001185", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001186", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001187", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001188", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001189", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001190", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001191", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001192", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001193", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001194", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001195", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001196", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001197", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001198", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001199", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001200", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001201", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001202", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001203", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001204", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001205", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001206", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001207", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001208", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001209", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001210", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001211", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001212", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001213", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001214", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001215", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001216", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001217", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001218", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001219", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001220", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001221", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001222", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001223", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001224", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001225", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001226", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001227", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001228", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001229", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001230", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001231", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001232", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001233", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001234", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001235", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001236", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001237", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001238", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001239", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001240", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001241", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001242", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001243", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001244", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001245", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001246", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001247", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001248", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001249", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001250", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001251", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001252", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001253", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001254", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001255", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001256", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001257", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001258", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001259", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001260", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001261", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001262", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001263", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001264", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001265", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001266", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001267", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001268", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001269", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001270", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001271", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001272", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001273", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001274", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001275", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001276", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001277", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001278", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001279", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001280", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001281", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001282", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001283", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001284", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001285", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001286", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001287", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001288", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001289", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001290", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001291", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001292", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001293", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001294", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001295", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001296", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001297", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001298", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001299", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001300", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001301", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001302", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001303", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001304", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001305", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001306", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001307", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001308", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001309", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001310", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001311", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001312", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001313", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001314", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001315", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001316", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001317", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001318", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001319", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001320", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001321", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001322", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001323", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001324", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001325", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001326", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001327", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001328", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001329", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001330", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001331", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001332", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001333", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001334", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001335", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001336", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001337", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001338", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001339", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001340", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001341", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001342", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001343", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001344", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001345", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001346", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001347", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001348", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001349", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001350", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001351", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001352", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001353", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001354", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001355", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001356", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001357", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001358", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001359", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001360", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001361", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001362", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001363", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001364", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001365", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001366", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001367", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001368", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001369", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001370", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001371", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001372", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001373", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001374", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001375", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001376", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001377", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001378", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001379", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001380", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001381", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001382", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001383", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001384", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001385", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001386", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001387", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001388", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001389", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001390", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001391", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001392", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001393", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001394", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001395", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001396", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001397", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001398", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001399", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001400", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001401", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001402", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001403", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001404", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001405", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001406", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001407", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001408", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001409", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001410", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001411", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001412", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001413", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001414", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001415", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001416", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001417", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001418", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001419", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001420", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001421", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001422", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001423", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001424", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001425", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001426", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001427", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001428", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001429", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001430", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001431", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001432", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001433", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001434", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001435", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001436", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001437", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001438", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001439", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001440", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001441", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001442", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001443", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001444", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001445", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001446", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001447", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001448", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001449", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001450", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001451", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001452", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001453", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001454", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001455", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001456", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001457", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001458", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001459", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001460", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001461", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001462", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001463", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001464", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001465", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001466", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001467", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001468", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001469", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001470", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001471", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001472", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001473", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001474", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001475", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001476", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001477", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001478", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001479", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001480", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001481", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001482", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001483", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001484", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001485", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001486", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001487", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001488", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001489", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001490", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001491", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001492", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001493", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001494", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001495", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001496", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001497", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001498", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001499", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001500", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001501", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001502", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001503", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001504", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001505", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001506", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001507", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001508", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001509", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001510", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001511", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001512", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001513", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001514", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001515", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001516", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001517", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001518", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001519", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001520", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001521", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001522", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001523", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001524", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001525", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001526", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001527", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001528", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001529", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001530", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001531", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001532", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001533", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001534", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001535", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001536", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001537", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001538", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001539", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001540", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001541", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001542", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001543", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001544", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001545", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001546", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001547", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001548", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001549", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001550", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001551", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001552", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001553", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001554", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001555", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001556", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001557", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001558", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001559", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001560", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001561", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001562", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001563", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001564", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001565", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001566", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001567", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001568", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001569", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001570", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001571", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001572", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001573", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001574", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001575", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001576", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001577", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001578", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001579", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001580", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001581", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001582", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001583", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001584", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001585", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001586", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001587", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001588", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001589", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001590", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001591", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001592", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001593", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001594", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001595", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001596", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001597", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001598", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001599", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001600", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001601", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001602", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001603", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001604", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@E14001605", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000001", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000002", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000003", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000004", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000005", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000006", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000007", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000008", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000009", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000010", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000011", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000012", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000013", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000014", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000015", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000016", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000017", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@N05000018", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000021", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000027", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000045", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000048", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000051", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000060", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000061", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000062", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000063", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000064", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000065", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000066", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000067", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000068", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000069", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000070", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000071", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000072", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000073", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000074", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000075", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000076", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000077", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000078", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000079", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000080", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000081", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000082", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000083", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000084", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000085", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000086", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000087", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000088", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000089", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000090", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000091", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000092", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000093", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000094", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000095", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000096", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000097", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000098", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000099", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000100", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000101", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000102", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000103", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000104", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000105", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000106", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000107", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000108", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000109", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000110", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@S14000111", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000081", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 56815495.2022005, + "value": 56815495.2022005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000082", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 63183491.44181759, + "value": 63183491.44181759, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000083", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 58068401.658420905, + "value": 58068401.658420905, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000084", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 59552429.63749807, + "value": 59552429.63749807, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000085", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 54990211.392590165, + "value": 54990211.392590165, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000086", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 58085585.961581364, + "value": 58085585.961581364, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000087", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 56151101.56527025, + "value": 56151101.56527025, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000088", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 60851676.793644324, + "value": 60851676.793644324, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000089", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 68292793.43423541, + "value": 68292793.43423541, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000090", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 57378381.857454926, + "value": 57378381.857454926, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000091", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 67943850.39402644, + "value": 67943850.39402644, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000092", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 62761756.53760696, + "value": 62761756.53760696, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000093", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 57268708.014917195, + "value": 57268708.014917195, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000094", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 58220978.09917473, + "value": 58220978.09917473, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000095", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 59250159.855370656, + "value": 59250159.855370656, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000096", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 60143310.888862774, + "value": 60143310.888862774, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000097", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 59748690.11214954, + "value": 59748690.11214954, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000098", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 57685972.570073426, + "value": 57685972.570073426, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000099", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 62248433.83824895, + "value": 62248433.83824895, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000100", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 61674694.2754905, + "value": 61674694.2754905, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000101", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 56565341.120279506, + "value": 56565341.120279506, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000102", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 58802145.385066316, + "value": 58802145.385066316, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000103", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 61341381.468599066, + "value": 61341381.468599066, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000104", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 66256686.939963795, + "value": 66256686.939963795, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000105", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 62060314.6430628, + "value": 62060314.6430628, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000106", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 63044367.016453676, + "value": 63044367.016453676, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000107", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 62366600.70445512, + "value": 62366600.70445512, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000108", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 65962283.43728832, + "value": 65962283.43728832, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000109", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 57255936.50266879, + "value": 57255936.50266879, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000110", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 58664819.12925788, + "value": 58664819.12925788, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000111", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 60171009.715905026, + "value": 60171009.715905026, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/wales_private_rent_amount@W07000112", + "metric": "housing/wales_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 41870990.40636503, + "value": 41870990.40636503, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001063", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001064", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001065", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001066", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001067", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001068", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001069", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001070", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001071", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001072", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001073", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001074", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001075", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001076", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001077", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001078", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001079", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001080", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001081", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001082", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001083", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001084", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001085", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001086", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001087", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001088", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001089", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001090", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001091", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001092", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001093", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001094", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001095", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001096", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001097", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001098", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001099", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001100", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001101", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001102", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001103", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001104", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001105", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001106", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001107", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001108", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001109", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001110", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001111", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001112", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001113", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001114", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001115", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001116", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001117", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001118", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001119", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001120", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001121", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001122", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001123", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001124", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001125", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001126", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001127", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001128", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001129", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001130", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001131", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001132", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001133", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001134", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001135", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001136", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001137", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001138", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001139", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001140", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001141", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001142", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001143", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001144", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001145", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001146", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001147", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001148", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001149", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001150", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001151", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001152", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001153", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001154", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001155", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001156", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001157", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001158", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001159", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001160", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001161", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001162", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001163", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001164", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001165", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001166", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001167", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001168", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001169", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001170", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001171", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001172", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001173", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001174", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001175", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001176", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001177", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001178", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001179", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001180", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001181", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001182", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001183", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001184", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001185", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001186", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001187", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001188", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001189", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001190", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001191", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001192", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001193", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001194", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001195", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001196", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001197", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001198", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001199", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001200", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001201", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001202", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001203", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001204", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001205", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001206", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001207", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001208", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001209", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001210", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001211", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001212", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001213", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001214", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001215", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001216", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001217", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001218", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001219", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001220", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001221", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001222", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001223", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001224", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001225", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001226", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001227", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001228", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001229", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001230", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001231", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001232", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001233", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001234", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001235", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001236", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001237", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001238", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001239", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001240", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001241", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001242", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001243", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001244", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001245", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001246", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001247", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001248", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001249", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001250", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001251", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001252", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001253", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001254", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001255", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001256", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001257", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001258", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001259", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001260", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001261", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001262", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001263", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001264", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001265", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001266", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001267", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001268", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001269", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001270", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001271", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001272", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001273", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001274", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001275", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001276", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001277", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001278", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001279", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001280", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001281", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001282", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001283", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001284", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001285", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001286", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001287", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001288", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001289", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001290", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001291", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001292", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001293", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001294", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001295", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001296", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001297", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001298", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001299", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001300", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001301", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001302", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001303", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001304", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001305", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001306", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001307", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001308", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001309", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001310", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001311", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001312", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001313", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001314", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001315", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001316", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001317", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001318", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001319", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001320", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001321", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001322", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001323", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001324", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001325", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001326", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001327", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001328", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001329", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001330", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001331", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001332", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001333", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001334", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001335", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001336", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001337", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001338", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001339", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001340", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001341", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001342", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001343", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001344", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001345", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001346", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001347", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001348", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001349", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001350", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001351", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001352", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001353", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001354", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001355", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001356", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001357", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001358", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001359", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001360", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001361", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001362", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001363", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001364", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001365", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001366", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001367", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001368", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001369", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001370", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001371", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001372", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001373", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001374", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001375", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001376", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001377", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001378", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001379", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001380", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001381", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001382", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001383", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001384", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001385", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001386", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001387", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001388", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001389", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001390", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001391", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001392", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001393", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001394", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001395", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001396", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001397", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001398", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001399", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001400", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001401", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001402", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001403", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001404", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001405", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001406", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001407", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001408", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001409", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001410", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001411", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001412", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001413", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001414", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001415", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001416", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001417", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001418", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001419", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001420", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001421", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001422", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001423", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001424", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001425", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001426", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001427", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001428", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001429", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001430", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001431", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001432", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001433", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001434", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001435", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001436", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001437", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001438", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001439", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001440", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001441", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001442", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001443", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001444", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001445", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001446", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001447", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001448", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001449", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001450", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001451", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001452", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001453", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001454", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001455", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001456", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001457", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001458", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001459", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001460", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001461", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001462", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001463", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001464", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001465", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001466", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001467", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001468", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001469", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001470", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001471", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001472", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001473", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001474", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001475", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001476", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001477", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001478", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001479", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001480", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001481", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001482", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001483", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001484", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001485", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001486", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001487", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001488", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001489", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001490", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001491", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001492", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001493", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001494", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001495", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001496", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001497", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001498", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001499", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001500", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001501", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001502", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001503", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001504", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001505", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001506", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001507", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001508", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001509", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001510", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001511", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001512", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001513", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001514", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001515", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001516", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001517", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001518", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001519", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001520", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001521", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001522", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001523", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001524", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001525", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001526", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001527", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001528", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001529", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001530", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001531", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001532", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001533", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001534", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001535", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001536", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001537", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001538", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001539", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001540", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001541", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001542", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001543", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001544", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001545", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001546", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001547", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001548", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001549", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001550", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001551", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001552", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001553", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001554", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001555", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001556", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001557", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001558", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001559", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001560", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001561", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001562", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001563", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001564", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001565", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001566", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001567", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001568", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001569", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001570", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001571", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001572", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001573", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001574", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001575", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001576", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001577", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001578", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001579", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001580", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001581", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001582", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001583", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001584", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001585", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001586", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001587", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001588", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001589", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001590", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001591", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001592", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001593", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001594", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001595", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001596", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001597", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001598", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001599", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001600", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001601", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001602", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001603", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001604", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@E14001605", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000001", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000002", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000003", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000004", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000005", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000006", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000007", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000008", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000009", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000010", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000011", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000012", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000013", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000014", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000015", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000016", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000017", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@N05000018", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000021", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 5760.6508842192625, + "value": 5760.6508842192625, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000027", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 6160.510078773174, + "value": 6160.510078773174, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000045", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 5591.651384128695, + "value": 5591.651384128695, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000048", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 6173.902491987898, + "value": 6173.902491987898, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000051", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 1666.3988442892655, + "value": 1666.3988442892655, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000060", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 6105.664957989065, + "value": 6105.664957989065, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000061", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 6155.408207072327, + "value": 6155.408207072327, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000062", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 5837.816693694578, + "value": 5837.816693694578, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000063", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 2866.614161913604, + "value": 2866.614161913604, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000064", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 6217.268401445101, + "value": 6217.268401445101, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000065", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 7482.188206915434, + "value": 7482.188206915434, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000066", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 8575.50655772777, + "value": 8575.50655772777, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000067", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 6362.5901149720385, + "value": 6362.5901149720385, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000068", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 6658.790755776056, + "value": 6658.790755776056, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000069", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 5182.005524184634, + "value": 5182.005524184634, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000070", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 6857.629827976956, + "value": 6857.629827976956, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000071", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 7028.744053887526, + "value": 7028.744053887526, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000072", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 6353.83313104939, + "value": 6353.83313104939, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000073", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 4947.057955020988, + "value": 4947.057955020988, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000074", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 9145.212518200375, + "value": 9145.212518200375, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000075", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 6138.080975308323, + "value": 6138.080975308323, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000076", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 5819.435925424353, + "value": 5819.435925424353, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000077", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 6062.832812533292, + "value": 6062.832812533292, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000078", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 6266.935122452849, + "value": 6266.935122452849, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000079", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 5730.333011636978, + "value": 5730.333011636978, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000080", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 7154.1148981282995, + "value": 7154.1148981282995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000081", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 5544.7677341337585, + "value": 5544.7677341337585, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000082", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 5625.488272716639, + "value": 5625.488272716639, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000083", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 7618.443894429966, + "value": 7618.443894429966, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000084", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 6827.586180998591, + "value": 6827.586180998591, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000085", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 6731.728389079297, + "value": 6731.728389079297, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000086", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 6825.028867808543, + "value": 6825.028867808543, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000087", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 6474.906544998267, + "value": 6474.906544998267, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000088", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 5352.017745807819, + "value": 5352.017745807819, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000089", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 6542.542831529941, + "value": 6542.542831529941, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000090", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 8281.993529896497, + "value": 8281.993529896497, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000091", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 8069.991247176803, + "value": 8069.991247176803, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000092", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 5848.020815948133, + "value": 5848.020815948133, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000093", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 6582.958567986305, + "value": 6582.958567986305, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000094", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 7568.830743075077, + "value": 7568.830743075077, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000095", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 6115.1620921601925, + "value": 6115.1620921601925, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000096", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 5402.963761144556, + "value": 5402.963761144556, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000097", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 5740.494664597141, + "value": 5740.494664597141, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000098", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 6741.72565821785, + "value": 6741.72565821785, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000099", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 7233.4594262223, + "value": 7233.4594262223, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000100", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 5993.882949023501, + "value": 5993.882949023501, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000101", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 5335.272127417715, + "value": 5335.272127417715, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000102", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 6648.567880355485, + "value": 6648.567880355485, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000103", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 6680.614334064292, + "value": 6680.614334064292, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000104", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 6368.260845367529, + "value": 6368.260845367529, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000105", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 6653.765412150721, + "value": 6653.765412150721, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000106", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 5758.464782709032, + "value": 5758.464782709032, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000107", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 6228.193857638141, + "value": 6228.193857638141, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000108", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 6390.696326172005, + "value": 6390.696326172005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000109", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 5091.951111325051, + "value": 5091.951111325051, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000110", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 7049.9015158309385, + "value": 7049.9015158309385, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@S14000111", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 6077.140393309629, + "value": 6077.140393309629, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000081", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000082", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000083", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000084", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000085", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000086", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000087", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000088", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000089", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000090", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000091", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000092", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000093", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000094", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000095", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000096", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000097", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000098", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000099", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000100", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000101", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000102", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000103", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000104", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000105", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000106", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000107", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000108", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000109", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000110", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000111", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_renter_households@W07000112", + "metric": "housing/scotland_private_renter_households", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001063", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001064", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001065", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001066", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001067", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001068", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001069", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001070", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001071", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001072", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001073", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001074", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001075", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001076", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001077", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001078", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001079", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001080", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001081", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001082", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001083", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001084", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001085", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001086", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001087", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001088", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001089", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001090", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001091", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001092", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001093", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001094", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001095", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001096", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001097", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001098", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001099", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001100", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001101", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001102", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001103", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001104", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001105", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001106", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001107", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001108", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001109", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001110", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001111", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001112", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001113", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001114", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001115", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001116", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001117", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001118", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001119", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001120", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001121", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001122", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001123", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001124", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001125", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001126", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001127", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001128", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001129", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001130", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001131", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001132", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001133", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001134", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001135", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001136", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001137", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001138", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001139", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001140", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001141", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001142", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001143", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001144", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001145", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001146", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001147", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001148", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001149", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001150", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001151", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001152", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001153", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001154", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001155", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001156", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001157", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001158", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001159", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001160", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001161", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001162", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001163", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001164", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001165", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001166", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001167", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001168", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001169", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001170", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001171", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001172", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001173", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001174", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001175", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001176", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001177", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001178", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001179", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001180", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001181", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001182", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001183", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001184", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001185", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001186", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001187", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001188", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001189", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001190", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001191", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001192", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001193", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001194", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001195", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001196", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001197", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001198", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001199", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001200", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001201", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001202", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001203", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001204", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001205", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001206", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001207", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001208", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001209", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001210", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001211", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001212", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001213", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001214", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001215", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001216", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001217", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001218", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001219", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001220", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001221", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001222", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001223", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001224", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001225", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001226", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001227", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001228", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001229", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001230", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001231", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001232", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001233", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001234", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001235", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001236", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001237", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001238", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001239", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001240", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001241", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001242", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001243", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001244", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001245", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001246", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001247", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001248", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001249", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001250", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001251", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001252", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001253", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001254", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001255", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001256", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001257", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001258", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001259", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001260", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001261", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001262", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001263", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001264", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001265", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001266", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001267", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001268", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001269", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001270", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001271", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001272", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001273", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001274", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001275", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001276", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001277", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001278", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001279", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001280", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001281", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001282", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001283", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001284", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001285", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001286", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001287", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001288", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001289", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001290", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001291", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001292", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001293", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001294", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001295", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001296", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001297", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001298", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001299", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001300", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001301", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001302", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001303", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001304", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001305", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001306", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001307", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001308", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001309", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001310", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001311", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001312", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001313", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001314", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001315", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001316", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001317", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001318", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001319", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001320", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001321", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001322", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001323", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001324", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001325", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001326", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001327", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001328", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001329", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001330", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001331", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001332", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001333", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001334", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001335", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001336", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001337", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001338", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001339", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001340", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001341", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001342", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001343", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001344", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001345", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001346", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001347", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001348", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001349", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001350", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001351", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001352", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001353", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001354", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001355", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001356", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001357", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001358", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001359", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001360", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001361", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001362", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001363", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001364", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001365", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001366", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001367", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001368", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001369", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001370", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001371", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001372", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001373", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001374", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001375", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001376", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001377", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001378", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001379", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001380", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001381", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001382", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001383", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001384", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001385", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001386", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001387", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001388", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001389", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001390", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001391", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001392", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001393", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001394", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001395", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001396", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001397", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001398", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001399", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001400", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001401", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001402", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001403", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001404", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001405", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001406", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001407", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001408", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001409", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001410", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001411", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001412", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001413", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001414", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001415", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001416", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001417", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001418", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001419", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001420", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001421", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001422", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001423", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001424", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001425", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001426", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001427", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001428", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001429", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001430", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001431", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001432", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001433", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001434", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001435", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001436", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001437", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001438", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001439", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001440", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001441", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001442", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001443", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001444", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001445", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001446", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001447", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001448", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001449", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001450", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001451", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001452", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001453", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001454", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001455", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001456", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001457", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001458", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001459", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001460", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001461", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001462", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001463", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001464", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001465", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001466", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001467", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001468", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001469", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001470", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001471", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001472", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001473", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001474", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001475", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001476", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001477", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001478", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001479", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001480", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001481", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001482", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001483", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001484", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001485", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001486", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001487", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001488", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001489", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001490", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001491", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001492", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001493", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001494", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001495", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001496", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001497", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001498", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001499", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001500", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001501", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001502", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001503", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001504", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001505", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001506", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001507", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001508", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001509", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001510", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001511", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001512", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001513", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001514", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001515", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001516", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001517", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001518", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001519", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001520", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001521", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001522", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001523", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001524", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001525", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001526", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001527", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001528", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001529", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001530", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001531", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001532", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001533", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001534", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001535", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001536", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001537", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001538", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001539", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001540", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001541", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001542", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001543", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001544", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001545", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001546", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001547", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001548", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001549", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001550", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001551", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001552", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001553", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001554", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001555", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001556", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001557", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001558", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001559", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001560", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001561", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001562", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001563", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001564", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001565", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001566", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001567", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001568", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001569", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001570", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001571", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001572", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001573", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001574", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001575", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001576", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001577", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001578", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001579", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001580", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001581", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001582", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001583", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001584", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001585", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001586", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001587", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001588", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001589", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001590", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001591", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001592", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001593", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001594", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001595", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001596", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001597", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001598", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001599", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001600", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001601", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001602", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001603", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001604", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@E14001605", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000001", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000002", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000003", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000004", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000005", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000006", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000007", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000008", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000009", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000010", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000011", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000012", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000013", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000014", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000015", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000016", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000017", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@N05000018", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000021", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 69058682.80002052, + "value": 69058682.80002052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000027", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 73852194.82433282, + "value": 73852194.82433282, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000045", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 67032716.7929348, + "value": 67032716.7929348, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000048", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 74012743.07395093, + "value": 74012743.07395093, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000051", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 19976789.345339715, + "value": 19976789.345339715, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000060", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 73194711.51637292, + "value": 73194711.51637292, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000061", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 73791033.58638306, + "value": 73791033.58638306, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000062", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 69983746.5240106, + "value": 69983746.5240106, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000063", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 34364970.57302029, + "value": 34364970.57302029, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000064", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 74532613.59652387, + "value": 74532613.59652387, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000065", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 89696472.22450225, + "value": 89696472.22450225, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000066", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 102803172.61404051, + "value": 102803172.61404051, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000067", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 76274730.2982848, + "value": 76274730.2982848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000068", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 79825583.58024338, + "value": 79825583.58024338, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000069", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 62121882.22392539, + "value": 62121882.22392539, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000070", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 82209266.37778774, + "value": 82209266.37778774, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000071", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 84260583.71800368, + "value": 84260583.71800368, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000072", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 76169751.57502009, + "value": 76169751.57502009, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000073", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 59305330.76479159, + "value": 59305330.76479159, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000074", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 109632807.66818608, + "value": 109632807.66818608, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000075", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 73583314.73199618, + "value": 73583314.73199618, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000076", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 69763397.87398714, + "value": 69763397.87398714, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000077", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 72681239.75664912, + "value": 72681239.75664912, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000078", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 75128018.24796474, + "value": 75128018.24796474, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000079", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 68695232.1435041, + "value": 68695232.1435041, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000080", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 85763529.39876205, + "value": 85763529.39876205, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000081", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 66470675.59679551, + "value": 66470675.59679551, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000082", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 67438353.41332708, + "value": 67438353.41332708, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000083", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 91329905.40642643, + "value": 91329905.40642643, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000084", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 81849103.13781111, + "value": 81849103.13781111, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000085", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 80699959.9282826, + "value": 80699959.9282826, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000086", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 81818446.06728882, + "value": 81818446.06728882, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000087", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 77621179.66143923, + "value": 77621179.66143923, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000088", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 64159988.736744136, + "value": 64159988.736744136, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000089", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 78432003.46438093, + "value": 78432003.46438093, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000090", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 99284538.4363992, + "value": 99284538.4363992, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000091", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 96743055.07115552, + "value": 96743055.07115552, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000092", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 70106073.54158622, + "value": 70106073.54158622, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000093", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 78916507.31301983, + "value": 78916507.31301983, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000094", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 90735142.94798402, + "value": 90735142.94798402, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000095", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 73308563.16081639, + "value": 73308563.16081639, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000096", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 64770729.56860093, + "value": 64770729.56860093, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000097", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 68817050.03919052, + "value": 68817050.03919052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000098", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 80819807.1907156, + "value": 80819807.1907156, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000099", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 86714711.60155293, + "value": 86714711.60155293, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000100", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 71854668.79289374, + "value": 71854668.79289374, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000101", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 63959242.26348356, + "value": 63959242.26348356, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000102", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 79703031.74970154, + "value": 79703031.74970154, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000103", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 80087204.63676274, + "value": 80087204.63676274, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000104", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 76342711.01426594, + "value": 76342711.01426594, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000105", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 79765339.76086284, + "value": 79765339.76086284, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000106", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 69032475.81511588, + "value": 69032475.81511588, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000107", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 74663587.96536602, + "value": 74663587.96536602, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000108", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 76611667.55815, + "value": 76611667.55815, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000109", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 61042309.922564715, + "value": 61042309.922564715, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000110", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 84514219.37178129, + "value": 84514219.37178129, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@S14000111", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 72852759.03499582, + "value": 72852759.03499582, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000081", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000082", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000083", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000084", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000085", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000086", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000087", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000088", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000089", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000090", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000091", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000092", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000093", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000094", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000095", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000096", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000097", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000098", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000099", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000100", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000101", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000102", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000103", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000104", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000105", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000106", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000107", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000108", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000109", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000110", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000111", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "housing/scotland_private_rent_amount@W07000112", + "metric": "housing/scotland_private_rent_amount", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 0.0, + "value": 0.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": true + }, + { + "name": "uc_households@E14001063", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 7653.0, + "value": 7653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001064", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 6580.0, + "value": 6580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001065", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 4669.0, + "value": 4669.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001066", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 7937.0, + "value": 7937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001067", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 4543.0, + "value": 4543.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001068", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 9831.0, + "value": 9831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001069", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 8956.0, + "value": 8956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001070", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 12996.0, + "value": 12996.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001071", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 8787.0, + "value": 8787.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001072", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 6594.0, + "value": 6594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001073", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 19320.0, + "value": 19320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001074", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 11525.0, + "value": 11525.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001075", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 13277.0, + "value": 13277.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001076", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 7452.0, + "value": 7452.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001077", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 10420.0, + "value": 10420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001078", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 7980.0, + "value": 7980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001079", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 9657.0, + "value": 9657.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001080", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 5959.0, + "value": 5959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001081", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 8273.0, + "value": 8273.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001082", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 4447.0, + "value": 4447.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001083", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 7584.0, + "value": 7584.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001084", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 12126.0, + "value": 12126.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001085", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 12293.0, + "value": 12293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001086", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 18484.0, + "value": 18484.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001087", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 5185.0, + "value": 5185.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001088", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 6348.0, + "value": 6348.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001089", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 7777.0, + "value": 7777.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001090", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 5198.0, + "value": 5198.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001091", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 15145.0, + "value": 15145.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001092", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 14604.0, + "value": 14604.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001093", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 21203.0, + "value": 21203.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001094", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 17707.0, + "value": 17707.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001095", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 21111.0, + "value": 21111.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001096", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 28570.0, + "value": 28570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001097", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 15788.0, + "value": 15788.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001098", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 23027.0, + "value": 23027.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001099", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 12369.0, + "value": 12369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001100", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 19039.0, + "value": 19039.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001101", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 9730.0, + "value": 9730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001102", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 16342.0, + "value": 16342.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001103", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 17837.0, + "value": 17837.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001104", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 9290.0, + "value": 9290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001105", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 18597.0, + "value": 18597.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001106", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 8323.0, + "value": 8323.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001107", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 12538.0, + "value": 12538.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001108", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 9292.0, + "value": 9292.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001109", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 9261.0, + "value": 9261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001110", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 14374.0, + "value": 14374.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001111", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 18327.0, + "value": 18327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001112", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 8230.0, + "value": 8230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001113", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 15114.0, + "value": 15114.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001114", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 13671.0, + "value": 13671.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001115", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 10047.0, + "value": 10047.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001116", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 9923.0, + "value": 9923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001117", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 6516.0, + "value": 6516.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001118", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 19369.0, + "value": 19369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001119", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 15963.0, + "value": 15963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001120", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 20458.0, + "value": 20458.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001121", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 6636.0, + "value": 6636.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001122", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 21800.0, + "value": 21800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001123", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 13565.0, + "value": 13565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001124", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 13453.0, + "value": 13453.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001125", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 5167.0, + "value": 5167.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001126", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 8697.0, + "value": 8697.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001127", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 7521.0, + "value": 7521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001128", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 5738.0, + "value": 5738.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001129", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 10446.0, + "value": 10446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001130", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 8655.0, + "value": 8655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001131", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 5372.0, + "value": 5372.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001132", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 11328.0, + "value": 11328.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001133", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 9494.0, + "value": 9494.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001134", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 8556.0, + "value": 8556.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001135", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 11787.0, + "value": 11787.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001136", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 5301.0, + "value": 5301.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001137", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 5678.0, + "value": 5678.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001138", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 5240.0, + "value": 5240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001139", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 9108.0, + "value": 9108.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001140", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 6628.0, + "value": 6628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001141", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 7817.0, + "value": 7817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001142", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 14719.0, + "value": 14719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001143", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 9948.0, + "value": 9948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001144", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 9959.0, + "value": 9959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001145", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 10835.0, + "value": 10835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001146", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 6601.0, + "value": 6601.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001147", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 7745.0, + "value": 7745.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001148", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 9031.0, + "value": 9031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001149", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 6899.0, + "value": 6899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001150", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 8609.0, + "value": 8609.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001151", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 8165.0, + "value": 8165.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001152", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 8394.0, + "value": 8394.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001153", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 9148.0, + "value": 9148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001154", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 5713.0, + "value": 5713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001155", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 5755.0, + "value": 5755.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001156", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 5033.0, + "value": 5033.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001157", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 10317.0, + "value": 10317.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001158", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 4071.0, + "value": 4071.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001159", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 7107.0, + "value": 7107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001160", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 9095.0, + "value": 9095.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001161", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 6315.0, + "value": 6315.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001162", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 4018.0, + "value": 4018.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001163", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 6815.0, + "value": 6815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001164", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 4386.0, + "value": 4386.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001165", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 9101.0, + "value": 9101.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001166", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 7326.0, + "value": 7326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001167", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 8924.0, + "value": 8924.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001168", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 6005.0, + "value": 6005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001169", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 8280.0, + "value": 8280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001170", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 7745.0, + "value": 7745.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001171", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 4531.0, + "value": 4531.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001172", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 8982.0, + "value": 8982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001173", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 7221.0, + "value": 7221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001174", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 10769.0, + "value": 10769.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001175", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 11056.0, + "value": 11056.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001176", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 10074.0, + "value": 10074.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001177", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 6088.0, + "value": 6088.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001178", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 4870.0, + "value": 4870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001179", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 10192.0, + "value": 10192.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001180", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 17080.0, + "value": 17080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001181", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 10639.0, + "value": 10639.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001182", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 11420.0, + "value": 11420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001183", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 7910.0, + "value": 7910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001184", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 11778.0, + "value": 11778.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001185", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 9861.0, + "value": 9861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001186", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 12576.0, + "value": 12576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001187", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 7610.0, + "value": 7610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001188", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 19233.0, + "value": 19233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001189", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 14474.0, + "value": 14474.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001190", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 10456.0, + "value": 10456.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001191", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 8632.0, + "value": 8632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001192", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 6312.0, + "value": 6312.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001193", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 10596.0, + "value": 10596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001194", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 17359.0, + "value": 17359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001195", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 4165.0, + "value": 4165.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001196", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 14432.0, + "value": 14432.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001197", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 6032.0, + "value": 6032.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001198", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 13956.0, + "value": 13956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001199", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 7551.0, + "value": 7551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001200", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 11432.0, + "value": 11432.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001201", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 4318.0, + "value": 4318.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001202", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 9862.0, + "value": 9862.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001203", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 6804.0, + "value": 6804.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001204", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 12250.0, + "value": 12250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001205", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 12148.0, + "value": 12148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001206", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 8341.0, + "value": 8341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001207", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 14893.0, + "value": 14893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001208", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 16094.0, + "value": 16094.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001209", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 14395.0, + "value": 14395.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001210", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 5793.0, + "value": 5793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001211", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 13349.0, + "value": 13349.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001212", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 4642.0, + "value": 4642.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001213", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 17361.0, + "value": 17361.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001214", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 4224.0, + "value": 4224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001215", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 5486.0, + "value": 5486.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001216", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 13837.0, + "value": 13837.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001217", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 5610.0, + "value": 5610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001218", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 6609.0, + "value": 6609.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001219", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 10415.0, + "value": 10415.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001220", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 5302.0, + "value": 5302.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001221", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 19533.0, + "value": 19533.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001222", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 9344.0, + "value": 9344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001223", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 10199.0, + "value": 10199.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001224", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 5923.0, + "value": 5923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001225", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 19029.0, + "value": 19029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001226", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 6672.0, + "value": 6672.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001227", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 4962.0, + "value": 4962.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001228", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 9093.0, + "value": 9093.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001229", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 17380.0, + "value": 17380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001230", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 4774.0, + "value": 4774.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001231", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 7443.0, + "value": 7443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001232", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 6711.0, + "value": 6711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001233", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 5900.0, + "value": 5900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001234", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 4449.0, + "value": 4449.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001235", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 7684.0, + "value": 7684.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001236", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 16023.0, + "value": 16023.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001237", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 5953.0, + "value": 5953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001238", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 11904.0, + "value": 11904.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001239", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 8553.0, + "value": 8553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001240", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 6144.0, + "value": 6144.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001241", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 6086.0, + "value": 6086.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001242", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 6285.0, + "value": 6285.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001243", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 7345.0, + "value": 7345.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001244", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 11067.0, + "value": 11067.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001245", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 7926.0, + "value": 7926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001246", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 9378.0, + "value": 9378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001247", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 5835.0, + "value": 5835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001248", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 11474.0, + "value": 11474.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001249", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 4302.0, + "value": 4302.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001250", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 5340.0, + "value": 5340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001251", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 17305.0, + "value": 17305.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001252", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 7934.0, + "value": 7934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001253", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 7393.0, + "value": 7393.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001254", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 10366.0, + "value": 10366.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001255", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 15433.0, + "value": 15433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001256", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 12370.0, + "value": 12370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001257", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 12757.0, + "value": 12757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001258", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 4609.0, + "value": 4609.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001259", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 18021.0, + "value": 18021.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001260", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 16259.0, + "value": 16259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001261", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 9108.0, + "value": 9108.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001262", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 14271.0, + "value": 14271.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001263", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 5319.0, + "value": 5319.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001264", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 11252.0, + "value": 11252.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001265", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 9822.0, + "value": 9822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001266", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 5910.0, + "value": 5910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001267", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 10930.0, + "value": 10930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001268", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 3291.0, + "value": 3291.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001269", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 5534.0, + "value": 5534.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001270", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 8911.0, + "value": 8911.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001271", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 11588.0, + "value": 11588.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001272", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 13352.0, + "value": 13352.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001273", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 6741.0, + "value": 6741.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001274", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 12507.0, + "value": 12507.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001275", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 8609.0, + "value": 8609.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001276", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 15164.0, + "value": 15164.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001277", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 6492.0, + "value": 6492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001278", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 9026.0, + "value": 9026.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001279", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 14740.0, + "value": 14740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001280", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 3817.0, + "value": 3817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001281", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 6837.0, + "value": 6837.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001282", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 8189.0, + "value": 8189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001283", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 5798.0, + "value": 5798.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001284", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 7521.0, + "value": 7521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001285", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 5084.0, + "value": 5084.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001286", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 12808.0, + "value": 12808.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001287", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 6168.0, + "value": 6168.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001288", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 6585.0, + "value": 6585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001289", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 5504.0, + "value": 5504.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001290", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 12544.0, + "value": 12544.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001291", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 4796.0, + "value": 4796.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001292", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 8081.0, + "value": 8081.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001293", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 8899.0, + "value": 8899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001294", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 5067.0, + "value": 5067.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001295", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 12450.0, + "value": 12450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001296", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 8891.0, + "value": 8891.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001297", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 14502.0, + "value": 14502.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001298", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 6130.0, + "value": 6130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001299", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 12024.0, + "value": 12024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001300", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 10749.0, + "value": 10749.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001301", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 15207.0, + "value": 15207.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001302", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 12270.0, + "value": 12270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001303", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 6560.0, + "value": 6560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001304", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 5796.0, + "value": 5796.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001305", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 13781.0, + "value": 13781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001306", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 14236.0, + "value": 14236.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001307", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 11732.0, + "value": 11732.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001308", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 9237.0, + "value": 9237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001309", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 4278.0, + "value": 4278.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001310", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 10826.0, + "value": 10826.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001311", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 9259.0, + "value": 9259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001312", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 7855.0, + "value": 7855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001313", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 15147.0, + "value": 15147.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001314", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 14294.0, + "value": 14294.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001315", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 11713.0, + "value": 11713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001316", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 4696.0, + "value": 4696.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001317", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 13712.0, + "value": 13712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001318", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 6422.0, + "value": 6422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001319", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 8443.0, + "value": 8443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001320", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 14801.0, + "value": 14801.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001321", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 7405.0, + "value": 7405.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001322", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 4567.0, + "value": 4567.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001323", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 20817.0, + "value": 20817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001324", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 8061.0, + "value": 8061.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001325", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 11210.0, + "value": 11210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001326", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 13035.0, + "value": 13035.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001327", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 13941.0, + "value": 13941.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001328", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 17438.0, + "value": 17438.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001329", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 11640.0, + "value": 11640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001330", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 6492.0, + "value": 6492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001331", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 16490.0, + "value": 16490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001332", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 14618.0, + "value": 14618.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001333", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 10022.0, + "value": 10022.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001334", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 11754.0, + "value": 11754.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001335", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 5706.0, + "value": 5706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001336", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 11525.0, + "value": 11525.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001337", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 9894.0, + "value": 9894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001338", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 18969.0, + "value": 18969.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001339", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 15861.0, + "value": 15861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001340", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 12547.0, + "value": 12547.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001341", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 13671.0, + "value": 13671.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001342", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 6937.0, + "value": 6937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001343", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 7569.0, + "value": 7569.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001344", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 9906.0, + "value": 9906.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001345", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 11521.0, + "value": 11521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001346", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 15646.0, + "value": 15646.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001347", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 5327.0, + "value": 5327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001348", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 4779.0, + "value": 4779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001349", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 8238.0, + "value": 8238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001350", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 8572.0, + "value": 8572.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001351", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 5433.0, + "value": 5433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001352", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 16476.0, + "value": 16476.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001353", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 15429.0, + "value": 15429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001354", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 7072.0, + "value": 7072.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001355", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 11296.0, + "value": 11296.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001356", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 5541.0, + "value": 5541.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001357", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 6261.0, + "value": 6261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001358", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 8799.0, + "value": 8799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001359", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 5059.0, + "value": 5059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001360", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 3263.0, + "value": 3263.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001361", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 8082.0, + "value": 8082.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001362", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 4402.0, + "value": 4402.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001363", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 5107.0, + "value": 5107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001364", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 5443.0, + "value": 5443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001365", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 5861.0, + "value": 5861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001366", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 4661.0, + "value": 4661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001367", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 18152.0, + "value": 18152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001368", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 9651.0, + "value": 9651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001369", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 12124.0, + "value": 12124.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001370", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 7626.0, + "value": 7626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001371", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 12820.0, + "value": 12820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001372", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 7871.0, + "value": 7871.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001373", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 5211.0, + "value": 5211.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001374", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 4234.0, + "value": 4234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001375", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 7186.0, + "value": 7186.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001376", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 5791.0, + "value": 5791.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001377", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 17605.0, + "value": 17605.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001378", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 14912.0, + "value": 14912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001379", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 6322.0, + "value": 6322.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001380", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 7547.0, + "value": 7547.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001381", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 6360.0, + "value": 6360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001382", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 10733.0, + "value": 10733.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001383", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 10522.0, + "value": 10522.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001384", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 5965.0, + "value": 5965.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001385", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 7820.0, + "value": 7820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001386", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 4854.0, + "value": 4854.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001387", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 7443.0, + "value": 7443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001388", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 5098.0, + "value": 5098.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001389", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 9688.0, + "value": 9688.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001390", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 9169.0, + "value": 9169.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001391", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 6655.0, + "value": 6655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001392", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 3721.0, + "value": 3721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001393", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 6143.0, + "value": 6143.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001394", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 4935.0, + "value": 4935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001395", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 5085.0, + "value": 5085.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001396", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 5621.0, + "value": 5621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001397", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 6001.0, + "value": 6001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001398", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 6711.0, + "value": 6711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001399", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 4015.0, + "value": 4015.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001400", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 7957.0, + "value": 7957.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001401", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 10073.0, + "value": 10073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001402", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 5326.0, + "value": 5326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001403", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 6927.0, + "value": 6927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001404", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 6870.0, + "value": 6870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001405", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 8314.0, + "value": 8314.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001406", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 14411.0, + "value": 14411.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001407", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 8261.0, + "value": 8261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001408", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 8556.0, + "value": 8556.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001409", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 10410.0, + "value": 10410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001410", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 16637.0, + "value": 16637.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001411", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 16111.0, + "value": 16111.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001412", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 11177.0, + "value": 11177.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001413", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 9885.0, + "value": 9885.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001414", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 5374.0, + "value": 5374.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001415", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 13850.0, + "value": 13850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001416", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 15820.0, + "value": 15820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001417", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 6833.0, + "value": 6833.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001418", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 5795.0, + "value": 5795.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001419", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 9156.0, + "value": 9156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001420", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 4341.0, + "value": 4341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001421", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 15419.0, + "value": 15419.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001422", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 11048.0, + "value": 11048.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001423", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 5428.0, + "value": 5428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001424", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 5786.0, + "value": 5786.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001425", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 17509.0, + "value": 17509.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001426", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 10341.0, + "value": 10341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001427", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 13131.0, + "value": 13131.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001428", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 10995.0, + "value": 10995.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001429", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 7261.0, + "value": 7261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001430", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 17835.0, + "value": 17835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001431", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 9283.0, + "value": 9283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001432", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 12318.0, + "value": 12318.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001433", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 15256.0, + "value": 15256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001434", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 9108.0, + "value": 9108.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001435", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 17911.0, + "value": 17911.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001436", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 10395.0, + "value": 10395.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001437", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 4576.0, + "value": 4576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001438", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 9531.0, + "value": 9531.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001439", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 5589.0, + "value": 5589.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001440", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 11234.0, + "value": 11234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001441", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 8455.0, + "value": 8455.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001442", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 4963.0, + "value": 4963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001443", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 5251.0, + "value": 5251.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001444", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 4930.0, + "value": 4930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001445", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 5304.0, + "value": 5304.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001446", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 14350.0, + "value": 14350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001447", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 9308.0, + "value": 9308.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001448", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 9292.0, + "value": 9292.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001449", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 4995.0, + "value": 4995.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001450", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 9430.0, + "value": 9430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001451", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 7532.0, + "value": 7532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001452", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 15140.0, + "value": 15140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001453", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 7976.0, + "value": 7976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001454", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 5119.0, + "value": 5119.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001455", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 9726.0, + "value": 9726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001456", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 5595.0, + "value": 5595.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001457", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 4501.0, + "value": 4501.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001458", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 4528.0, + "value": 4528.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001459", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 16634.0, + "value": 16634.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001460", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 5641.0, + "value": 5641.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001461", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 8989.0, + "value": 8989.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001462", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 11250.0, + "value": 11250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001463", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 4793.0, + "value": 4793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001464", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 6263.0, + "value": 6263.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001465", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 4995.0, + "value": 4995.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001466", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 18083.0, + "value": 18083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001467", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 6953.0, + "value": 6953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001468", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 3016.0, + "value": 3016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001469", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 14182.0, + "value": 14182.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001470", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 12103.0, + "value": 12103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001471", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 8468.0, + "value": 8468.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001472", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 6936.0, + "value": 6936.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001473", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 6757.0, + "value": 6757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001474", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 11480.0, + "value": 11480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001475", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 4596.0, + "value": 4596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001476", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 5714.0, + "value": 5714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001477", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 14300.0, + "value": 14300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001478", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 14723.0, + "value": 14723.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001479", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 4814.0, + "value": 4814.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001480", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 9188.0, + "value": 9188.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001481", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 4592.0, + "value": 4592.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001482", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 4280.0, + "value": 4280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001483", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 6816.0, + "value": 6816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001484", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 6199.0, + "value": 6199.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001485", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 7929.0, + "value": 7929.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001486", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 6737.0, + "value": 6737.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001487", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 8430.0, + "value": 8430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001488", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 5375.0, + "value": 5375.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001489", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 5259.0, + "value": 5259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001490", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 4372.0, + "value": 4372.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001491", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 5831.0, + "value": 5831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001492", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 11259.0, + "value": 11259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001493", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 4985.0, + "value": 4985.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001494", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 5460.0, + "value": 5460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001495", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 4774.0, + "value": 4774.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001496", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 5180.0, + "value": 5180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001497", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 7516.0, + "value": 7516.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001498", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 7153.0, + "value": 7153.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001499", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 11429.0, + "value": 11429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001500", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 12271.0, + "value": 12271.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001501", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 12191.0, + "value": 12191.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001502", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 7725.0, + "value": 7725.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001503", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 15915.0, + "value": 15915.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001504", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 8047.0, + "value": 8047.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001505", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 7121.0, + "value": 7121.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001506", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 8338.0, + "value": 8338.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001507", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 5572.0, + "value": 5572.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001508", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 9158.0, + "value": 9158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001509", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 10274.0, + "value": 10274.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001510", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 10893.0, + "value": 10893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001511", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 6974.0, + "value": 6974.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001512", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 5937.0, + "value": 5937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001513", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 6553.0, + "value": 6553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001514", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 4630.0, + "value": 4630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001515", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 10800.0, + "value": 10800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001516", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 8553.0, + "value": 8553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001517", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 11940.0, + "value": 11940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001518", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 13049.0, + "value": 13049.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001519", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 4719.0, + "value": 4719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001520", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 15143.0, + "value": 15143.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001521", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 11500.0, + "value": 11500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001522", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 7913.0, + "value": 7913.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001523", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 5254.0, + "value": 5254.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001524", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 9139.0, + "value": 9139.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001525", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 16120.0, + "value": 16120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001526", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 5390.0, + "value": 5390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001527", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 14225.0, + "value": 14225.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001528", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 9926.0, + "value": 9926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001529", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 5491.0, + "value": 5491.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001530", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 5569.0, + "value": 5569.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001531", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 11626.0, + "value": 11626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001532", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 4368.0, + "value": 4368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001533", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 4775.0, + "value": 4775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001534", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 6376.0, + "value": 6376.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001535", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 4810.0, + "value": 4810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001536", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 8264.0, + "value": 8264.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001537", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 9926.0, + "value": 9926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001538", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 8024.0, + "value": 8024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001539", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 4444.0, + "value": 4444.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001540", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 7659.0, + "value": 7659.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001541", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 12412.0, + "value": 12412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001542", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 5789.0, + "value": 5789.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001543", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 7805.0, + "value": 7805.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001544", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 5585.0, + "value": 5585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001545", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 5927.0, + "value": 5927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001546", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 12209.0, + "value": 12209.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001547", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 15888.0, + "value": 15888.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001548", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 6233.0, + "value": 6233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001549", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 5202.0, + "value": 5202.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001550", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 8335.0, + "value": 8335.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001551", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 10618.0, + "value": 10618.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001552", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 6548.0, + "value": 6548.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001553", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 24107.0, + "value": 24107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001554", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 6424.0, + "value": 6424.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001555", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 6094.0, + "value": 6094.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001556", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 5406.0, + "value": 5406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001557", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 7592.0, + "value": 7592.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001558", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 9818.0, + "value": 9818.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001559", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 13361.0, + "value": 13361.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001560", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 10633.0, + "value": 10633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001561", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 11260.0, + "value": 11260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001562", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 18524.0, + "value": 18524.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001563", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 14894.0, + "value": 14894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001564", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 8905.0, + "value": 8905.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001565", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 7054.0, + "value": 7054.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001566", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 6948.0, + "value": 6948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001567", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 11479.0, + "value": 11479.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001568", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 9409.0, + "value": 9409.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001569", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 5054.0, + "value": 5054.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001570", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 5735.0, + "value": 5735.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001571", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 10428.0, + "value": 10428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001572", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 5031.0, + "value": 5031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001573", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 8940.0, + "value": 8940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001574", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 12992.0, + "value": 12992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001575", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 5468.0, + "value": 5468.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001576", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 19931.0, + "value": 19931.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001577", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 8245.0, + "value": 8245.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001578", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 7585.0, + "value": 7585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001579", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 5982.0, + "value": 5982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001580", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 3959.0, + "value": 3959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001581", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 9513.0, + "value": 9513.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001582", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 3434.0, + "value": 3434.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001583", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 8375.0, + "value": 8375.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001584", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 9817.0, + "value": 9817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001585", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 11305.0, + "value": 11305.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001586", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 5566.0, + "value": 5566.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001587", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 4945.0, + "value": 4945.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001588", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 6084.0, + "value": 6084.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001589", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 4196.0, + "value": 4196.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001590", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 6550.0, + "value": 6550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001591", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 5313.0, + "value": 5313.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001592", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 5568.0, + "value": 5568.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001593", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 3838.0, + "value": 3838.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001594", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 13840.0, + "value": 13840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001595", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 18414.0, + "value": 18414.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001596", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 12614.0, + "value": 12614.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001597", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 8638.0, + "value": 8638.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001598", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 10783.0, + "value": 10783.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001599", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 7070.0, + "value": 7070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001600", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 8565.0, + "value": 8565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001601", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 8342.0, + "value": 8342.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001602", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 14302.0, + "value": 14302.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001603", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 7824.0, + "value": 7824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001604", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 7717.0, + "value": 7717.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E14001605", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 3477.0, + "value": 3477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000001", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 10645.0, + "value": 10645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000002", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 16762.0, + "value": 16762.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000003", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 8462.0, + "value": 8462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000004", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 19287.0, + "value": 19287.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000005", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 8148.0, + "value": 8148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000006", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 11193.0, + "value": 11193.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000007", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 10169.0, + "value": 10169.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000008", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 16457.0, + "value": 16457.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000009", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 8597.0, + "value": 8597.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000010", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 9369.0, + "value": 9369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000011", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 12154.0, + "value": 12154.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000012", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 10402.0, + "value": 10402.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000013", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 7393.0, + "value": 7393.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000014", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 8606.0, + "value": 8606.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000015", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 9540.0, + "value": 9540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000016", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 9037.0, + "value": 9037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000017", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 13259.0, + "value": 13259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N05000018", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 10906.0, + "value": 10906.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000021", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 4852.0, + "value": 4852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000027", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 1490.0, + "value": 1490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000045", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 8117.0, + "value": 8117.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000048", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 10431.0, + "value": 10431.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000051", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 2363.0, + "value": 2363.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000060", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 10743.0, + "value": 10743.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000061", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 7168.0, + "value": 7168.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000062", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 7987.0, + "value": 7987.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000063", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 10512.0, + "value": 10512.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000064", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 9399.0, + "value": 9399.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000065", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 7610.0, + "value": 7610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000066", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 9007.0, + "value": 9007.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000067", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 6577.0, + "value": 6577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000068", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 9072.0, + "value": 9072.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000069", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 7184.0, + "value": 7184.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000070", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 10897.0, + "value": 10897.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000071", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 9793.0, + "value": 9793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000072", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 8571.0, + "value": 8571.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000073", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 8689.0, + "value": 8689.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000074", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 6396.0, + "value": 6396.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000075", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 12717.0, + "value": 12717.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000076", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 7475.0, + "value": 7475.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000077", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 7268.0, + "value": 7268.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000078", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 9819.0, + "value": 9819.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000079", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 9664.0, + "value": 9664.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000080", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 4956.0, + "value": 4956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000081", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 7937.0, + "value": 7937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000082", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 4982.0, + "value": 4982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000083", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 9130.0, + "value": 9130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000084", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 15060.0, + "value": 15060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000085", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 13211.0, + "value": 13211.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000086", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 17639.0, + "value": 17639.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000087", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 10442.0, + "value": 10442.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000088", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 13417.0, + "value": 13417.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000089", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 11550.0, + "value": 11550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000090", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 12443.0, + "value": 12443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000091", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 4301.0, + "value": 4301.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000092", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 9999.0, + "value": 9999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000093", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 9704.0, + "value": 9704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000094", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 7917.0, + "value": 7917.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000095", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 9537.0, + "value": 9537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000096", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 7135.0, + "value": 7135.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000097", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 4013.0, + "value": 4013.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000098", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 6785.0, + "value": 6785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000099", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 10645.0, + "value": 10645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000100", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 5822.0, + "value": 5822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000101", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 9004.0, + "value": 9004.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000102", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 9714.0, + "value": 9714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000103", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 7339.0, + "value": 7339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000104", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 8946.0, + "value": 8946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000105", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 6679.0, + "value": 6679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000106", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 11713.0, + "value": 11713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000107", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 9989.0, + "value": 9989.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000108", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 7626.0, + "value": 7626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000109", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 8803.0, + "value": 8803.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000110", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 10334.0, + "value": 10334.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S14000111", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 3791.0, + "value": 3791.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000081", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 11888.0, + "value": 11888.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000082", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 8511.0, + "value": 8511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000083", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 7496.0, + "value": 7496.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000084", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 12823.0, + "value": 12823.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000085", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 6695.0, + "value": 6695.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000086", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 7598.0, + "value": 7598.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000087", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 7246.0, + "value": 7246.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000088", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 9864.0, + "value": 9864.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000089", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 12644.0, + "value": 12644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000090", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 5709.0, + "value": 5709.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000091", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 9645.0, + "value": 9645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000092", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 11600.0, + "value": 11600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000093", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 6720.0, + "value": 6720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000094", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 7098.0, + "value": 7098.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000095", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 11512.0, + "value": 11512.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000096", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 6999.0, + "value": 6999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000097", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 6576.0, + "value": 6576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000098", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 9537.0, + "value": 9537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000099", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 12009.0, + "value": 12009.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000100", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 9088.0, + "value": 9088.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000101", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 5799.0, + "value": 5799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000102", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 8114.0, + "value": 8114.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000103", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 10459.0, + "value": 10459.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000104", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 14016.0, + "value": 14016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000105", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 9029.0, + "value": 9029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000106", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 9654.0, + "value": 9654.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000107", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 12351.0, + "value": 12351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000108", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 14197.0, + "value": 14197.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000109", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 10551.0, + "value": 10551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000110", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 8822.0, + "value": 8822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000111", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 9233.0, + "value": 9233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W07000112", + "metric": "uc_households", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 5990.0, + "value": 5990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001063", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 3719.0, + "value": 3719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001064", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 3198.0, + "value": 3198.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001065", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 2269.0, + "value": 2269.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001066", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 3857.0, + "value": 3857.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001067", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 2208.0, + "value": 2208.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001068", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 4777.0, + "value": 4777.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001069", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 4352.0, + "value": 4352.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001070", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 6315.0, + "value": 6315.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001071", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 4270.0, + "value": 4270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001072", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 3204.0, + "value": 3204.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001073", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 9389.0, + "value": 9389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001074", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 5601.0, + "value": 5601.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001075", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 6452.0, + "value": 6452.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001076", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 3621.0, + "value": 3621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001077", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 5063.0, + "value": 5063.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001078", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 3878.0, + "value": 3878.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001079", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 4693.0, + "value": 4693.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001080", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 2896.0, + "value": 2896.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001081", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 4020.0, + "value": 4020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001082", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 2161.0, + "value": 2161.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001083", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 3686.0, + "value": 3686.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001084", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 5893.0, + "value": 5893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001085", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 5974.0, + "value": 5974.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001086", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 8982.0, + "value": 8982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001087", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 2520.0, + "value": 2520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001088", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 3085.0, + "value": 3085.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001089", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 3779.0, + "value": 3779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001090", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 2526.0, + "value": 2526.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001091", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 7360.0, + "value": 7360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001092", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 7097.0, + "value": 7097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001093", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 10304.0, + "value": 10304.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001094", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 8605.0, + "value": 8605.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001095", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 10259.0, + "value": 10259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001096", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 13884.0, + "value": 13884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001097", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 7672.0, + "value": 7672.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001098", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 11190.0, + "value": 11190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001099", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 6011.0, + "value": 6011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001100", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 9252.0, + "value": 9252.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001101", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 4728.0, + "value": 4728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001102", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 7942.0, + "value": 7942.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001103", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 8668.0, + "value": 8668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001104", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 4515.0, + "value": 4515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001105", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 9037.0, + "value": 9037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001106", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 4045.0, + "value": 4045.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001107", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 6093.0, + "value": 6093.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001108", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 4515.0, + "value": 4515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001109", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 4500.0, + "value": 4500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001110", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 6985.0, + "value": 6985.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001111", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 8906.0, + "value": 8906.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001112", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 3999.0, + "value": 3999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001113", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 7345.0, + "value": 7345.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001114", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 6644.0, + "value": 6644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001115", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 4882.0, + "value": 4882.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001116", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 4822.0, + "value": 4822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001117", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 3167.0, + "value": 3167.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001118", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 9412.0, + "value": 9412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001119", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 7757.0, + "value": 7757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001120", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 9942.0, + "value": 9942.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001121", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 3225.0, + "value": 3225.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001122", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 10594.0, + "value": 10594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001123", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 6592.0, + "value": 6592.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001124", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 6538.0, + "value": 6538.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001125", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 2511.0, + "value": 2511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001126", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 4226.0, + "value": 4226.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001127", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 3655.0, + "value": 3655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001128", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 2788.0, + "value": 2788.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001129", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 5076.0, + "value": 5076.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001130", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 4206.0, + "value": 4206.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001131", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 2611.0, + "value": 2611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001132", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 5505.0, + "value": 5505.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001133", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 4613.0, + "value": 4613.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001134", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 4158.0, + "value": 4158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001135", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 5728.0, + "value": 5728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001136", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 2576.0, + "value": 2576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001137", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 2759.0, + "value": 2759.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001138", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 2546.0, + "value": 2546.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001139", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 4426.0, + "value": 4426.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001140", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 3221.0, + "value": 3221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001141", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 3799.0, + "value": 3799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001142", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 7153.0, + "value": 7153.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001143", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 4834.0, + "value": 4834.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001144", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 4840.0, + "value": 4840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001145", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 5265.0, + "value": 5265.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001146", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 3208.0, + "value": 3208.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001147", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 3764.0, + "value": 3764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001148", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 4389.0, + "value": 4389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001149", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 3353.0, + "value": 3353.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001150", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 4183.0, + "value": 4183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001151", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 3968.0, + "value": 3968.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001152", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 4079.0, + "value": 4079.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001153", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 4445.0, + "value": 4445.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001154", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 2776.0, + "value": 2776.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001155", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 2796.0, + "value": 2796.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001156", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 2446.0, + "value": 2446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001157", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 5014.0, + "value": 5014.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001158", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 1979.0, + "value": 1979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001159", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 3454.0, + "value": 3454.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001160", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 4420.0, + "value": 4420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001161", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 3069.0, + "value": 3069.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001162", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 1953.0, + "value": 1953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001163", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 3312.0, + "value": 3312.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001164", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 2131.0, + "value": 2131.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001165", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 4423.0, + "value": 4423.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001166", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 3560.0, + "value": 3560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001167", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 4337.0, + "value": 4337.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001168", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 2918.0, + "value": 2918.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001169", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 4024.0, + "value": 4024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001170", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 3764.0, + "value": 3764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001171", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 2202.0, + "value": 2202.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001172", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 4365.0, + "value": 4365.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001173", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 3509.0, + "value": 3509.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001174", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 5233.0, + "value": 5233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001175", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 5373.0, + "value": 5373.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001176", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 4895.0, + "value": 4895.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001177", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 2959.0, + "value": 2959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001178", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 2367.0, + "value": 2367.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001179", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 4953.0, + "value": 4953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001180", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 8300.0, + "value": 8300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001181", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 5170.0, + "value": 5170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001182", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 5550.0, + "value": 5550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001183", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 3844.0, + "value": 3844.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001184", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 5724.0, + "value": 5724.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001185", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 4792.0, + "value": 4792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001186", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 6111.0, + "value": 6111.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001187", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 3698.0, + "value": 3698.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001188", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 9346.0, + "value": 9346.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001189", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 7034.0, + "value": 7034.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001190", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 5081.0, + "value": 5081.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001191", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 4195.0, + "value": 4195.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001192", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 3067.0, + "value": 3067.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001193", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 5149.0, + "value": 5149.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001194", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 8436.0, + "value": 8436.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001195", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 2024.0, + "value": 2024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001196", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 7013.0, + "value": 7013.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001197", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 2931.0, + "value": 2931.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001198", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 6782.0, + "value": 6782.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001199", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 3669.0, + "value": 3669.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001200", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 5555.0, + "value": 5555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001201", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 2098.0, + "value": 2098.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001202", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 4792.0, + "value": 4792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001203", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 3307.0, + "value": 3307.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001204", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 5953.0, + "value": 5953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001205", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 5903.0, + "value": 5903.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001206", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 4053.0, + "value": 4053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001207", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 7237.0, + "value": 7237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001208", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 7821.0, + "value": 7821.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001209", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 6995.0, + "value": 6995.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001210", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 2815.0, + "value": 2815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001211", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 6487.0, + "value": 6487.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001212", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 2256.0, + "value": 2256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001213", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 8437.0, + "value": 8437.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001214", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 2053.0, + "value": 2053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001215", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 2666.0, + "value": 2666.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001216", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 6724.0, + "value": 6724.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001217", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 2726.0, + "value": 2726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001218", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 3212.0, + "value": 3212.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001219", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 5061.0, + "value": 5061.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001220", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 2577.0, + "value": 2577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001221", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 9492.0, + "value": 9492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001222", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 4541.0, + "value": 4541.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001223", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 4956.0, + "value": 4956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001224", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 2878.0, + "value": 2878.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001225", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 9247.0, + "value": 9247.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001226", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 3242.0, + "value": 3242.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001227", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 2411.0, + "value": 2411.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001228", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 4419.0, + "value": 4419.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001229", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 8446.0, + "value": 8446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001230", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 2320.0, + "value": 2320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001231", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 3617.0, + "value": 3617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001232", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 3261.0, + "value": 3261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001233", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 2867.0, + "value": 2867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001234", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 2162.0, + "value": 2162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001235", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 3734.0, + "value": 3734.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001236", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 7786.0, + "value": 7786.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001237", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 2893.0, + "value": 2893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001238", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 5785.0, + "value": 5785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001239", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 4156.0, + "value": 4156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001240", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 2986.0, + "value": 2986.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001241", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 2957.0, + "value": 2957.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001242", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 3054.0, + "value": 3054.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001243", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 3569.0, + "value": 3569.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001244", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 5378.0, + "value": 5378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001245", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 3852.0, + "value": 3852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001246", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 4557.0, + "value": 4557.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001247", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 2836.0, + "value": 2836.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001248", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 5576.0, + "value": 5576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001249", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 2091.0, + "value": 2091.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001250", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 2595.0, + "value": 2595.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001251", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 8409.0, + "value": 8409.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001252", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 3856.0, + "value": 3856.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001253", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 3593.0, + "value": 3593.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001254", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 5037.0, + "value": 5037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001255", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 7500.0, + "value": 7500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001256", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 6011.0, + "value": 6011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001257", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 6199.0, + "value": 6199.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001258", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 2240.0, + "value": 2240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001259", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 8757.0, + "value": 8757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001260", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 7901.0, + "value": 7901.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001261", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 4426.0, + "value": 4426.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001262", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 6935.0, + "value": 6935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001263", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 2585.0, + "value": 2585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001264", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 5468.0, + "value": 5468.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001265", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 4773.0, + "value": 4773.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001266", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 2872.0, + "value": 2872.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001267", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 5312.0, + "value": 5312.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001268", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 1599.0, + "value": 1599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001269", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 2689.0, + "value": 2689.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001270", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 4330.0, + "value": 4330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001271", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 5631.0, + "value": 5631.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001272", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 6488.0, + "value": 6488.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001273", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 3276.0, + "value": 3276.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001274", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 6078.0, + "value": 6078.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001275", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 4183.0, + "value": 4183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001276", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 7369.0, + "value": 7369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001277", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 3155.0, + "value": 3155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001278", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 4386.0, + "value": 4386.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001279", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 7163.0, + "value": 7163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001280", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 1855.0, + "value": 1855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001281", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 3323.0, + "value": 3323.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001282", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 3980.0, + "value": 3980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001283", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 2817.0, + "value": 2817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001284", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 3655.0, + "value": 3655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001285", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 2471.0, + "value": 2471.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001286", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 6224.0, + "value": 6224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001287", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 2997.0, + "value": 2997.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001288", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 3200.0, + "value": 3200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001289", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 2675.0, + "value": 2675.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001290", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 6096.0, + "value": 6096.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001291", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 2331.0, + "value": 2331.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001292", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 3927.0, + "value": 3927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001293", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 4324.0, + "value": 4324.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001294", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 2462.0, + "value": 2462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001295", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 6050.0, + "value": 6050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001296", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 4321.0, + "value": 4321.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001297", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 7047.0, + "value": 7047.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001298", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 2979.0, + "value": 2979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001299", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 5843.0, + "value": 5843.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001300", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 5224.0, + "value": 5224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001301", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 7390.0, + "value": 7390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001302", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 5962.0, + "value": 5962.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001303", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 3188.0, + "value": 3188.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001304", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 2817.0, + "value": 2817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001305", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 6697.0, + "value": 6697.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001306", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 6918.0, + "value": 6918.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001307", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 5701.0, + "value": 5701.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001308", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 4489.0, + "value": 4489.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001309", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 2079.0, + "value": 2079.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001310", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 5261.0, + "value": 5261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001311", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 4499.0, + "value": 4499.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001312", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 3817.0, + "value": 3817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001313", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 7361.0, + "value": 7361.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001314", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 6946.0, + "value": 6946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001315", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 5692.0, + "value": 5692.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001316", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 2282.0, + "value": 2282.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001317", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 6663.0, + "value": 6663.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001318", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 3121.0, + "value": 3121.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001319", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 4103.0, + "value": 4103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001320", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 7193.0, + "value": 7193.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001321", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 3599.0, + "value": 3599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001322", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 2219.0, + "value": 2219.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001323", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 10116.0, + "value": 10116.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001324", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 3917.0, + "value": 3917.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001325", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 5448.0, + "value": 5448.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001326", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 6334.0, + "value": 6334.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001327", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 6775.0, + "value": 6775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001328", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 8474.0, + "value": 8474.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001329", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 5656.0, + "value": 5656.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001330", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 3155.0, + "value": 3155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001331", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 8013.0, + "value": 8013.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001332", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 7104.0, + "value": 7104.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001333", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 4870.0, + "value": 4870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001334", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 5712.0, + "value": 5712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001335", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 2773.0, + "value": 2773.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001336", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 5601.0, + "value": 5601.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001337", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 4808.0, + "value": 4808.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001338", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 9218.0, + "value": 9218.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001339", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 7708.0, + "value": 7708.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001340", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 6097.0, + "value": 6097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001341", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 6644.0, + "value": 6644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001342", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 3371.0, + "value": 3371.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001343", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 3678.0, + "value": 3678.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001344", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 4814.0, + "value": 4814.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001345", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 5599.0, + "value": 5599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001346", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 7603.0, + "value": 7603.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001347", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 2589.0, + "value": 2589.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001348", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 2322.0, + "value": 2322.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001349", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 4003.0, + "value": 4003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001350", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 4166.0, + "value": 4166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001351", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 2640.0, + "value": 2640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001352", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 8007.0, + "value": 8007.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001353", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 7498.0, + "value": 7498.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001354", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 3437.0, + "value": 3437.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001355", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 5489.0, + "value": 5489.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001356", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 2693.0, + "value": 2693.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001357", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 3042.0, + "value": 3042.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001358", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 4276.0, + "value": 4276.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001359", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 2458.0, + "value": 2458.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001360", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 1586.0, + "value": 1586.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001361", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 3928.0, + "value": 3928.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001362", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 2139.0, + "value": 2139.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001363", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 2482.0, + "value": 2482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001364", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 2645.0, + "value": 2645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001365", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 2848.0, + "value": 2848.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001366", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 2265.0, + "value": 2265.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001367", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 8821.0, + "value": 8821.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001368", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 4690.0, + "value": 4690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001369", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 5892.0, + "value": 5892.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001370", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 3706.0, + "value": 3706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001371", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 6230.0, + "value": 6230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001372", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 3825.0, + "value": 3825.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001373", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 2532.0, + "value": 2532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001374", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 2057.0, + "value": 2057.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001375", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 3492.0, + "value": 3492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001376", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 2814.0, + "value": 2814.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001377", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 8555.0, + "value": 8555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001378", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 7246.0, + "value": 7246.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001379", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 3072.0, + "value": 3072.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001380", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 3667.0, + "value": 3667.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001381", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 3090.0, + "value": 3090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001382", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 5216.0, + "value": 5216.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001383", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 5113.0, + "value": 5113.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001384", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 2899.0, + "value": 2899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001385", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 3800.0, + "value": 3800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001386", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 2359.0, + "value": 2359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001387", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 3617.0, + "value": 3617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001388", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 2477.0, + "value": 2477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001389", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 4708.0, + "value": 4708.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001390", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 4456.0, + "value": 4456.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001391", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 3234.0, + "value": 3234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001392", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 1808.0, + "value": 1808.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001393", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 2985.0, + "value": 2985.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001394", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 2398.0, + "value": 2398.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001395", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 2471.0, + "value": 2471.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001396", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 2732.0, + "value": 2732.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001397", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 2916.0, + "value": 2916.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001398", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 3261.0, + "value": 3261.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001399", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 1951.0, + "value": 1951.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001400", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 3867.0, + "value": 3867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001401", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 4895.0, + "value": 4895.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001402", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 2588.0, + "value": 2588.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001403", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 3366.0, + "value": 3366.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001404", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 3339.0, + "value": 3339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001405", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 4040.0, + "value": 4040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001406", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 7003.0, + "value": 7003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001407", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 4015.0, + "value": 4015.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001408", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 4158.0, + "value": 4158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001409", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 5059.0, + "value": 5059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001410", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 8085.0, + "value": 8085.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001411", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 7829.0, + "value": 7829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001412", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 5432.0, + "value": 5432.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001413", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 4804.0, + "value": 4804.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001414", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 2612.0, + "value": 2612.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001415", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 6730.0, + "value": 6730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001416", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 7688.0, + "value": 7688.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001417", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 3320.0, + "value": 3320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001418", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 2816.0, + "value": 2816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001419", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 4449.0, + "value": 4449.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001420", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 2110.0, + "value": 2110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001421", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 7493.0, + "value": 7493.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001422", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 5369.0, + "value": 5369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001423", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 2638.0, + "value": 2638.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001424", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 2812.0, + "value": 2812.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001425", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 8508.0, + "value": 8508.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001426", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 5025.0, + "value": 5025.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001427", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 6381.0, + "value": 6381.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001428", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 5343.0, + "value": 5343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001429", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 3529.0, + "value": 3529.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001430", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 8667.0, + "value": 8667.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001431", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 4511.0, + "value": 4511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001432", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 5986.0, + "value": 5986.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001433", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 7414.0, + "value": 7414.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001434", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 4426.0, + "value": 4426.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001435", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 8704.0, + "value": 8704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001436", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 5052.0, + "value": 5052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001437", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 2224.0, + "value": 2224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001438", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 4632.0, + "value": 4632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001439", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 2716.0, + "value": 2716.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001440", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 5459.0, + "value": 5459.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001441", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 4109.0, + "value": 4109.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001442", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 2412.0, + "value": 2412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001443", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 2552.0, + "value": 2552.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001444", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 2396.0, + "value": 2396.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001445", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 2577.0, + "value": 2577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001446", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 6973.0, + "value": 6973.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001447", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 4523.0, + "value": 4523.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001448", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 4515.0, + "value": 4515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001449", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 2427.0, + "value": 2427.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001450", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 4582.0, + "value": 4582.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001451", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 3660.0, + "value": 3660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001452", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 7357.0, + "value": 7357.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001453", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 3876.0, + "value": 3876.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001454", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 2488.0, + "value": 2488.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001455", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 4726.0, + "value": 4726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001456", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 2719.0, + "value": 2719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001457", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 2187.0, + "value": 2187.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001458", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 2200.0, + "value": 2200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001459", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 8083.0, + "value": 8083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001460", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 2741.0, + "value": 2741.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001461", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 4368.0, + "value": 4368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001462", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 5467.0, + "value": 5467.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001463", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 2329.0, + "value": 2329.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001464", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 3044.0, + "value": 3044.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001465", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 2427.0, + "value": 2427.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001466", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 8787.0, + "value": 8787.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001467", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 3379.0, + "value": 3379.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001468", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 1466.0, + "value": 1466.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001469", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 6892.0, + "value": 6892.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001470", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 5882.0, + "value": 5882.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001471", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 4115.0, + "value": 4115.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001472", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 3371.0, + "value": 3371.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001473", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 3284.0, + "value": 3284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001474", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 5579.0, + "value": 5579.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001475", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 2233.0, + "value": 2233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001476", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 2777.0, + "value": 2777.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001477", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 6949.0, + "value": 6949.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001478", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 7155.0, + "value": 7155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001479", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 2339.0, + "value": 2339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001480", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 4465.0, + "value": 4465.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001481", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 2231.0, + "value": 2231.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001482", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 2080.0, + "value": 2080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001483", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 3312.0, + "value": 3312.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001484", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 3012.0, + "value": 3012.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001485", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 3853.0, + "value": 3853.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001486", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 3274.0, + "value": 3274.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001487", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 4097.0, + "value": 4097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001488", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 2612.0, + "value": 2612.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001489", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 2556.0, + "value": 2556.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001490", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 2124.0, + "value": 2124.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001491", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 2834.0, + "value": 2834.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001492", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 5472.0, + "value": 5472.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001493", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 2422.0, + "value": 2422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001494", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 2653.0, + "value": 2653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001495", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 2320.0, + "value": 2320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001496", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 2517.0, + "value": 2517.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001497", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 3652.0, + "value": 3652.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001498", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 3476.0, + "value": 3476.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001499", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 5554.0, + "value": 5554.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001500", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 5963.0, + "value": 5963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001501", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 5924.0, + "value": 5924.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001502", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 3754.0, + "value": 3754.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001503", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 7734.0, + "value": 7734.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001504", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 3910.0, + "value": 3910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001505", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 3460.0, + "value": 3460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001506", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 4052.0, + "value": 4052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001507", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 2708.0, + "value": 2708.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001508", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 4450.0, + "value": 4450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001509", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 4993.0, + "value": 4993.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001510", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 5293.0, + "value": 5293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001511", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 3389.0, + "value": 3389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001512", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 2885.0, + "value": 2885.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001513", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 3184.0, + "value": 3184.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001514", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 2250.0, + "value": 2250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001515", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 5248.0, + "value": 5248.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001516", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 4156.0, + "value": 4156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001517", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 5802.0, + "value": 5802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001518", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 6341.0, + "value": 6341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001519", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 2293.0, + "value": 2293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001520", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 7359.0, + "value": 7359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001521", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 5589.0, + "value": 5589.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001522", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 3845.0, + "value": 3845.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001523", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 2553.0, + "value": 2553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001524", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 4441.0, + "value": 4441.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001525", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 7833.0, + "value": 7833.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001526", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 2619.0, + "value": 2619.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001527", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 6913.0, + "value": 6913.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001528", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 4824.0, + "value": 4824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001529", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 2668.0, + "value": 2668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001530", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 2706.0, + "value": 2706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001531", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 5650.0, + "value": 5650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001532", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 2123.0, + "value": 2123.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001533", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 2320.0, + "value": 2320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001534", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 3098.0, + "value": 3098.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001535", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 2338.0, + "value": 2338.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001536", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 4016.0, + "value": 4016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001537", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 4824.0, + "value": 4824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001538", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 3899.0, + "value": 3899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001539", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 2159.0, + "value": 2159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001540", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 3722.0, + "value": 3722.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001541", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 6032.0, + "value": 6032.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001542", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 2813.0, + "value": 2813.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001543", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 3793.0, + "value": 3793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001544", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 2714.0, + "value": 2714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001545", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 2880.0, + "value": 2880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001546", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 5933.0, + "value": 5933.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001547", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 7721.0, + "value": 7721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001548", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 3029.0, + "value": 3029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001549", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 2528.0, + "value": 2528.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001550", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 4050.0, + "value": 4050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001551", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 5160.0, + "value": 5160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001552", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 3182.0, + "value": 3182.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001553", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 11715.0, + "value": 11715.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001554", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 3122.0, + "value": 3122.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001555", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 2962.0, + "value": 2962.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001556", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 2627.0, + "value": 2627.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001557", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 3690.0, + "value": 3690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001558", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 4771.0, + "value": 4771.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001559", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 6493.0, + "value": 6493.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001560", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 5167.0, + "value": 5167.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001561", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 5472.0, + "value": 5472.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001562", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 9002.0, + "value": 9002.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001563", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 7238.0, + "value": 7238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001564", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 4327.0, + "value": 4327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001565", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 3428.0, + "value": 3428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001566", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 3376.0, + "value": 3376.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001567", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 5578.0, + "value": 5578.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001568", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 4573.0, + "value": 4573.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001569", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 2456.0, + "value": 2456.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001570", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 2787.0, + "value": 2787.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001571", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 5068.0, + "value": 5068.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001572", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 2445.0, + "value": 2445.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001573", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 4344.0, + "value": 4344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001574", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 6313.0, + "value": 6313.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001575", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 2657.0, + "value": 2657.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001576", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 9686.0, + "value": 9686.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001577", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 4007.0, + "value": 4007.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001578", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 3686.0, + "value": 3686.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001579", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 2907.0, + "value": 2907.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001580", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 1924.0, + "value": 1924.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001581", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 4623.0, + "value": 4623.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001582", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 1669.0, + "value": 1669.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001583", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 4070.0, + "value": 4070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001584", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 4771.0, + "value": 4771.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001585", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 5494.0, + "value": 5494.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001586", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 2705.0, + "value": 2705.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001587", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 2403.0, + "value": 2403.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001588", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 2956.0, + "value": 2956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001589", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 2039.0, + "value": 2039.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001590", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 3183.0, + "value": 3183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001591", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 2582.0, + "value": 2582.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001592", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 2706.0, + "value": 2706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001593", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 1865.0, + "value": 1865.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001594", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 6726.0, + "value": 6726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001595", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 8948.0, + "value": 8948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001596", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 6130.0, + "value": 6130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001597", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 4198.0, + "value": 4198.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001598", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 5240.0, + "value": 5240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001599", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 3436.0, + "value": 3436.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001600", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 4162.0, + "value": 4162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001601", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 4054.0, + "value": 4054.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001602", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 6950.0, + "value": 6950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001603", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 3802.0, + "value": 3802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001604", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 3750.0, + "value": 3750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@E14001605", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000001", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 5232.0, + "value": 5232.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000002", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 8238.0, + "value": 8238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000003", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 4159.0, + "value": 4159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000004", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 9478.0, + "value": 9478.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000005", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 4004.0, + "value": 4004.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000006", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 5501.0, + "value": 5501.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000007", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 4997.0, + "value": 4997.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000008", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 8088.0, + "value": 8088.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000009", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 4225.0, + "value": 4225.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000010", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 4604.0, + "value": 4604.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000011", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 5973.0, + "value": 5973.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000012", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 5112.0, + "value": 5112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000013", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 3633.0, + "value": 3633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000014", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 4229.0, + "value": 4229.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000015", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 4688.0, + "value": 4688.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000016", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 4441.0, + "value": 4441.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000017", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 6516.0, + "value": 6516.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@N05000018", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 5360.0, + "value": 5360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000021", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 2639.0, + "value": 2639.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000027", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 810.0, + "value": 810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000045", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 4415.0, + "value": 4415.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000048", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 5673.0, + "value": 5673.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000051", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 1285.0, + "value": 1285.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000060", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 5843.0, + "value": 5843.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000061", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 3898.0, + "value": 3898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000062", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 4344.0, + "value": 4344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000063", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 5717.0, + "value": 5717.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000064", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 5112.0, + "value": 5112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000065", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 4139.0, + "value": 4139.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000066", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 4899.0, + "value": 4899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000067", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 3577.0, + "value": 3577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000068", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 4934.0, + "value": 4934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000069", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 3907.0, + "value": 3907.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000070", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 5927.0, + "value": 5927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000071", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 5326.0, + "value": 5326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000072", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 4662.0, + "value": 4662.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000073", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 4726.0, + "value": 4726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000074", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 3478.0, + "value": 3478.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000075", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 6916.0, + "value": 6916.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000076", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 4066.0, + "value": 4066.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000077", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 3953.0, + "value": 3953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000078", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 5340.0, + "value": 5340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000079", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 5256.0, + "value": 5256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000080", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 2696.0, + "value": 2696.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000081", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 4317.0, + "value": 4317.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000082", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 2710.0, + "value": 2710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000083", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 4966.0, + "value": 4966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000084", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 8191.0, + "value": 8191.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000085", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 7185.0, + "value": 7185.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000086", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 9593.0, + "value": 9593.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000087", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 5679.0, + "value": 5679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000088", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 7297.0, + "value": 7297.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000089", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 6282.0, + "value": 6282.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000090", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 6768.0, + "value": 6768.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000091", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 2339.0, + "value": 2339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000092", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 5438.0, + "value": 5438.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000093", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 5278.0, + "value": 5278.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000094", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 4306.0, + "value": 4306.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000095", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 5187.0, + "value": 5187.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000096", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 3880.0, + "value": 3880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000097", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 2183.0, + "value": 2183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000098", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 3690.0, + "value": 3690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000099", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 5789.0, + "value": 5789.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000100", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 3167.0, + "value": 3167.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000101", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 4897.0, + "value": 4897.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000102", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 5283.0, + "value": 5283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000103", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 3992.0, + "value": 3992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000104", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 4865.0, + "value": 4865.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000105", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 3633.0, + "value": 3633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000106", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 6370.0, + "value": 6370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000107", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 5433.0, + "value": 5433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000108", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 4148.0, + "value": 4148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000109", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 4788.0, + "value": 4788.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000110", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 5620.0, + "value": 5620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@S14000111", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 2062.0, + "value": 2062.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000081", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 5959.0, + "value": 5959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000082", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 4267.0, + "value": 4267.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000083", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 3758.0, + "value": 3758.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000084", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 6428.0, + "value": 6428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000085", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 3356.0, + "value": 3356.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000086", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 3809.0, + "value": 3809.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000087", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 3632.0, + "value": 3632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000088", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 4945.0, + "value": 4945.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000089", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 6339.0, + "value": 6339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000090", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 2862.0, + "value": 2862.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000091", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 4835.0, + "value": 4835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000092", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 5815.0, + "value": 5815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000093", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 3369.0, + "value": 3369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000094", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 3558.0, + "value": 3558.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000095", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 5771.0, + "value": 5771.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000096", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 3509.0, + "value": 3509.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000097", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 3297.0, + "value": 3297.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000098", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 4781.0, + "value": 4781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000099", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 6020.0, + "value": 6020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000100", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 4556.0, + "value": 4556.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000101", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 2907.0, + "value": 2907.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000102", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 4068.0, + "value": 4068.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000103", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 5243.0, + "value": 5243.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000104", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 7026.0, + "value": 7026.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000105", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 4526.0, + "value": 4526.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000106", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 4840.0, + "value": 4840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000107", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 6192.0, + "value": 6192.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000108", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 7117.0, + "value": 7117.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000109", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 5289.0, + "value": 5289.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000110", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 4422.0, + "value": 4422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000111", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 4628.0, + "value": 4628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_0_children@W07000112", + "metric": "uc_hh_0_children", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 3003.0, + "value": 3003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001063", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 1593.0, + "value": 1593.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001064", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 1369.0, + "value": 1369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001065", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 972.0, + "value": 972.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001066", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 1652.0, + "value": 1652.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001067", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 945.0, + "value": 945.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001068", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 2046.0, + "value": 2046.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001069", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 1864.0, + "value": 1864.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001070", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 2705.0, + "value": 2705.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001071", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 1829.0, + "value": 1829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001072", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 1373.0, + "value": 1373.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001073", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 4021.0, + "value": 4021.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001074", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 2399.0, + "value": 2399.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001075", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 2763.0, + "value": 2763.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001076", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 1551.0, + "value": 1551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001077", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 2169.0, + "value": 2169.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001078", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 1661.0, + "value": 1661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001079", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001080", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 1240.0, + "value": 1240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001081", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 1722.0, + "value": 1722.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001082", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 926.0, + "value": 926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001083", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 1578.0, + "value": 1578.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001084", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 2524.0, + "value": 2524.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001085", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 2558.0, + "value": 2558.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001086", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 3847.0, + "value": 3847.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001087", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 1079.0, + "value": 1079.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001088", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 1321.0, + "value": 1321.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001089", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 1619.0, + "value": 1619.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001090", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 1082.0, + "value": 1082.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001091", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 3152.0, + "value": 3152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001092", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 3040.0, + "value": 3040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001093", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 4413.0, + "value": 4413.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001094", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 3685.0, + "value": 3685.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001095", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 4394.0, + "value": 4394.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001096", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 5946.0, + "value": 5946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001097", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 3286.0, + "value": 3286.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001098", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 4792.0, + "value": 4792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001099", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 2574.0, + "value": 2574.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001100", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 3962.0, + "value": 3962.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001101", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 2025.0, + "value": 2025.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001102", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 3401.0, + "value": 3401.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001103", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 3713.0, + "value": 3713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001104", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 1933.0, + "value": 1933.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001105", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 3871.0, + "value": 3871.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001106", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 1732.0, + "value": 1732.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001107", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 2610.0, + "value": 2610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001108", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 1934.0, + "value": 1934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001109", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 1928.0, + "value": 1928.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001110", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 2991.0, + "value": 2991.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001111", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 3815.0, + "value": 3815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001112", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 1713.0, + "value": 1713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001113", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 3145.0, + "value": 3145.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001114", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 2845.0, + "value": 2845.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001115", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 2091.0, + "value": 2091.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001116", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 2065.0, + "value": 2065.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001117", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 1356.0, + "value": 1356.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001118", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 4031.0, + "value": 4031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001119", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 3323.0, + "value": 3323.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001120", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 4258.0, + "value": 4258.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001121", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 1381.0, + "value": 1381.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001122", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 4537.0, + "value": 4537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001123", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 2823.0, + "value": 2823.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001124", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 2800.0, + "value": 2800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001125", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 1075.0, + "value": 1075.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001126", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 1810.0, + "value": 1810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001127", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 1565.0, + "value": 1565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001128", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 1194.0, + "value": 1194.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001129", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 2174.0, + "value": 2174.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001130", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 1801.0, + "value": 1801.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001131", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 1118.0, + "value": 1118.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001132", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 2358.0, + "value": 2358.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001133", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 1976.0, + "value": 1976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001134", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 1781.0, + "value": 1781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001135", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 2453.0, + "value": 2453.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001136", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 1103.0, + "value": 1103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001137", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 1182.0, + "value": 1182.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001138", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 1091.0, + "value": 1091.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001139", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 1896.0, + "value": 1896.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001140", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 1380.0, + "value": 1380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001141", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 1627.0, + "value": 1627.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001142", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 3063.0, + "value": 3063.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001143", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 2071.0, + "value": 2071.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001144", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 2073.0, + "value": 2073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001145", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 2255.0, + "value": 2255.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001146", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 1374.0, + "value": 1374.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001147", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 1612.0, + "value": 1612.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001148", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 1879.0, + "value": 1879.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001149", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 1436.0, + "value": 1436.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001150", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 1792.0, + "value": 1792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001151", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 1699.0, + "value": 1699.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001152", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 1747.0, + "value": 1747.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001153", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 1904.0, + "value": 1904.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001154", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 1189.0, + "value": 1189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001155", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 1198.0, + "value": 1198.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001156", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 1047.0, + "value": 1047.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001157", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 2147.0, + "value": 2147.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001158", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 847.0, + "value": 847.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001159", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 1479.0, + "value": 1479.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001160", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 1893.0, + "value": 1893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001161", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 1314.0, + "value": 1314.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001162", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 836.0, + "value": 836.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001163", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 1418.0, + "value": 1418.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001164", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 913.0, + "value": 913.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001165", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 1894.0, + "value": 1894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001166", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 1525.0, + "value": 1525.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001167", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 1857.0, + "value": 1857.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001168", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 1250.0, + "value": 1250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001169", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 1723.0, + "value": 1723.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001170", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 1612.0, + "value": 1612.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001171", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 943.0, + "value": 943.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001172", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 1869.0, + "value": 1869.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001173", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 1503.0, + "value": 1503.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001174", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 2242.0, + "value": 2242.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001175", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 2301.0, + "value": 2301.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001176", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 2097.0, + "value": 2097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001177", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 1267.0, + "value": 1267.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001178", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 1013.0, + "value": 1013.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001179", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 2121.0, + "value": 2121.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001180", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 3555.0, + "value": 3555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001181", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 2214.0, + "value": 2214.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001182", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 2377.0, + "value": 2377.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001183", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 1646.0, + "value": 1646.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001184", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 2451.0, + "value": 2451.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001185", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 2052.0, + "value": 2052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001186", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 2618.0, + "value": 2618.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001187", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 1584.0, + "value": 1584.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001188", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 4003.0, + "value": 4003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001189", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 3012.0, + "value": 3012.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001190", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 2176.0, + "value": 2176.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001191", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 1797.0, + "value": 1797.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001192", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 1314.0, + "value": 1314.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001193", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 2205.0, + "value": 2205.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001194", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 3613.0, + "value": 3613.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001195", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001196", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 3004.0, + "value": 3004.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001197", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 1256.0, + "value": 1256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001198", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 2904.0, + "value": 2904.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001199", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 1572.0, + "value": 1572.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001200", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 2379.0, + "value": 2379.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001201", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 899.0, + "value": 899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001202", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 2053.0, + "value": 2053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001203", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 1416.0, + "value": 1416.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001204", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 2550.0, + "value": 2550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001205", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 2528.0, + "value": 2528.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001206", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 1736.0, + "value": 1736.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001207", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 3100.0, + "value": 3100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001208", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 3350.0, + "value": 3350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001209", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 2996.0, + "value": 2996.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001210", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 1206.0, + "value": 1206.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001211", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 2778.0, + "value": 2778.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001212", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 966.0, + "value": 966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001213", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 3613.0, + "value": 3613.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001214", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 879.0, + "value": 879.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001215", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 1142.0, + "value": 1142.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001216", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 2880.0, + "value": 2880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001217", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 1168.0, + "value": 1168.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001218", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 1375.0, + "value": 1375.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001219", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 2168.0, + "value": 2168.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001220", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 1103.0, + "value": 1103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001221", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 4066.0, + "value": 4066.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001222", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 1945.0, + "value": 1945.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001223", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 2123.0, + "value": 2123.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001224", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 1233.0, + "value": 1233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001225", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 3960.0, + "value": 3960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001226", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 1389.0, + "value": 1389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001227", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 1033.0, + "value": 1033.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001228", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 1892.0, + "value": 1892.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001229", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 3617.0, + "value": 3617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001230", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 993.0, + "value": 993.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001231", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 1549.0, + "value": 1549.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001232", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 1397.0, + "value": 1397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001233", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 1228.0, + "value": 1228.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001234", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 926.0, + "value": 926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001235", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 1599.0, + "value": 1599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001236", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 3335.0, + "value": 3335.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001237", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 1239.0, + "value": 1239.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001238", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 2478.0, + "value": 2478.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001239", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 1780.0, + "value": 1780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001240", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 1279.0, + "value": 1279.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001241", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 1267.0, + "value": 1267.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001242", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 1308.0, + "value": 1308.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001243", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 1529.0, + "value": 1529.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001244", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 2303.0, + "value": 2303.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001245", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 1649.0, + "value": 1649.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001246", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 1952.0, + "value": 1952.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001247", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 1214.0, + "value": 1214.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001248", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 2388.0, + "value": 2388.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001249", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 895.0, + "value": 895.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001250", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 1111.0, + "value": 1111.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001251", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 3602.0, + "value": 3602.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001252", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 1651.0, + "value": 1651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001253", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 1539.0, + "value": 1539.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001254", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 2158.0, + "value": 2158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001255", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 3212.0, + "value": 3212.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001256", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 2575.0, + "value": 2575.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001257", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 2655.0, + "value": 2655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001258", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 959.0, + "value": 959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001259", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 3751.0, + "value": 3751.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001260", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 3384.0, + "value": 3384.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001261", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 1896.0, + "value": 1896.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001262", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 2970.0, + "value": 2970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001263", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 1107.0, + "value": 1107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001264", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 2342.0, + "value": 2342.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001265", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 2044.0, + "value": 2044.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001266", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 1230.0, + "value": 1230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001267", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 2275.0, + "value": 2275.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001268", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 685.0, + "value": 685.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001269", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 1152.0, + "value": 1152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001270", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 1855.0, + "value": 1855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001271", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 2412.0, + "value": 2412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001272", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 2779.0, + "value": 2779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001273", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 1403.0, + "value": 1403.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001274", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 2603.0, + "value": 2603.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001275", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 1792.0, + "value": 1792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001276", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 3156.0, + "value": 3156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001277", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 1351.0, + "value": 1351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001278", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 1879.0, + "value": 1879.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001279", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 3068.0, + "value": 3068.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001280", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 794.0, + "value": 794.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001281", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 1423.0, + "value": 1423.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001282", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 1704.0, + "value": 1704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001283", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 1207.0, + "value": 1207.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001284", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 1565.0, + "value": 1565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001285", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 1058.0, + "value": 1058.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001286", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 2666.0, + "value": 2666.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001287", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 1284.0, + "value": 1284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001288", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 1370.0, + "value": 1370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001289", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 1146.0, + "value": 1146.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001290", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 2611.0, + "value": 2611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001291", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 998.0, + "value": 998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001292", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 1682.0, + "value": 1682.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001293", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 1852.0, + "value": 1852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001294", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 1055.0, + "value": 1055.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001295", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 2591.0, + "value": 2591.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001296", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001297", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 3018.0, + "value": 3018.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001298", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 1276.0, + "value": 1276.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001299", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 2503.0, + "value": 2503.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001300", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 2237.0, + "value": 2237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001301", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 3165.0, + "value": 3165.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001302", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 2554.0, + "value": 2554.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001303", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 1365.0, + "value": 1365.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001304", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 1206.0, + "value": 1206.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001305", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 2868.0, + "value": 2868.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001306", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 2963.0, + "value": 2963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001307", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 2442.0, + "value": 2442.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001308", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 1922.0, + "value": 1922.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001309", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 890.0, + "value": 890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001310", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 2253.0, + "value": 2253.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001311", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 1927.0, + "value": 1927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001312", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 1635.0, + "value": 1635.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001313", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 3152.0, + "value": 3152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001314", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 2975.0, + "value": 2975.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001315", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 2438.0, + "value": 2438.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001316", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 977.0, + "value": 977.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001317", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 2854.0, + "value": 2854.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001318", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 1336.0, + "value": 1336.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001319", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 1757.0, + "value": 1757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001320", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 3080.0, + "value": 3080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001321", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 1541.0, + "value": 1541.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001322", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 951.0, + "value": 951.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001323", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 4333.0, + "value": 4333.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001324", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 1678.0, + "value": 1678.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001325", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 2333.0, + "value": 2333.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001326", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 2713.0, + "value": 2713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001327", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 2901.0, + "value": 2901.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001328", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 3629.0, + "value": 3629.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001329", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 2423.0, + "value": 2423.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001330", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 1351.0, + "value": 1351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001331", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 3432.0, + "value": 3432.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001332", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 3042.0, + "value": 3042.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001333", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 2086.0, + "value": 2086.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001334", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 2446.0, + "value": 2446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001335", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 1187.0, + "value": 1187.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001336", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 2399.0, + "value": 2399.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001337", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 2059.0, + "value": 2059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001338", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 3948.0, + "value": 3948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001339", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 3301.0, + "value": 3301.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001340", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 2611.0, + "value": 2611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001341", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 2845.0, + "value": 2845.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001342", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 1444.0, + "value": 1444.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001343", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 1575.0, + "value": 1575.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001344", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 2062.0, + "value": 2062.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001345", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 2398.0, + "value": 2398.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001346", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 3256.0, + "value": 3256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001347", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 1109.0, + "value": 1109.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001348", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 995.0, + "value": 995.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001349", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 1715.0, + "value": 1715.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001350", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 1784.0, + "value": 1784.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001351", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 1131.0, + "value": 1131.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001352", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 3429.0, + "value": 3429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001353", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 3211.0, + "value": 3211.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001354", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 1472.0, + "value": 1472.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001355", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 2351.0, + "value": 2351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001356", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 1153.0, + "value": 1153.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001357", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 1303.0, + "value": 1303.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001358", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 1831.0, + "value": 1831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001359", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 1053.0, + "value": 1053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001360", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 679.0, + "value": 679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001361", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 1682.0, + "value": 1682.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001362", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 916.0, + "value": 916.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001363", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 1063.0, + "value": 1063.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001364", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 1133.0, + "value": 1133.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001365", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 1220.0, + "value": 1220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001366", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 970.0, + "value": 970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001367", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 3778.0, + "value": 3778.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001368", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 2009.0, + "value": 2009.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001369", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 2523.0, + "value": 2523.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001370", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 1587.0, + "value": 1587.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001371", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 2668.0, + "value": 2668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001372", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 1638.0, + "value": 1638.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001373", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 1085.0, + "value": 1085.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001374", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 881.0, + "value": 881.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001375", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 1495.0, + "value": 1495.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001376", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 1205.0, + "value": 1205.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001377", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 3664.0, + "value": 3664.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001378", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 3104.0, + "value": 3104.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001379", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 1316.0, + "value": 1316.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001380", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 1571.0, + "value": 1571.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001381", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 1324.0, + "value": 1324.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001382", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 2234.0, + "value": 2234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001383", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 2190.0, + "value": 2190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001384", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 1241.0, + "value": 1241.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001385", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 1627.0, + "value": 1627.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001386", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 1010.0, + "value": 1010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001387", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 1549.0, + "value": 1549.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001388", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 1061.0, + "value": 1061.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001389", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 2016.0, + "value": 2016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001390", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 1908.0, + "value": 1908.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001391", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 1385.0, + "value": 1385.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001392", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 774.0, + "value": 774.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001393", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 1279.0, + "value": 1279.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001394", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 1027.0, + "value": 1027.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001395", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 1058.0, + "value": 1058.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001396", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 1170.0, + "value": 1170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001397", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 1249.0, + "value": 1249.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001398", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 1397.0, + "value": 1397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001399", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 836.0, + "value": 836.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001400", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 1656.0, + "value": 1656.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001401", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 2096.0, + "value": 2096.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001402", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 1109.0, + "value": 1109.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001403", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 1442.0, + "value": 1442.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001404", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 1430.0, + "value": 1430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001405", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 1730.0, + "value": 1730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001406", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 2999.0, + "value": 2999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001407", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 1719.0, + "value": 1719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001408", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 1781.0, + "value": 1781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001409", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 2166.0, + "value": 2166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001410", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 3463.0, + "value": 3463.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001411", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 3353.0, + "value": 3353.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001412", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 2326.0, + "value": 2326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001413", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 2057.0, + "value": 2057.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001414", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 1118.0, + "value": 1118.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001415", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 2883.0, + "value": 2883.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001416", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 3293.0, + "value": 3293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001417", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 1422.0, + "value": 1422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001418", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 1206.0, + "value": 1206.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001419", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 1906.0, + "value": 1906.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001420", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 903.0, + "value": 903.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001421", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 3209.0, + "value": 3209.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001422", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 2299.0, + "value": 2299.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001423", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 1130.0, + "value": 1130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001424", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 1204.0, + "value": 1204.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001425", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 3644.0, + "value": 3644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001426", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 2152.0, + "value": 2152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001427", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 2733.0, + "value": 2733.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001428", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 2288.0, + "value": 2288.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001429", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 1511.0, + "value": 1511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001430", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 3712.0, + "value": 3712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001431", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 1932.0, + "value": 1932.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001432", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 2564.0, + "value": 2564.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001433", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 3175.0, + "value": 3175.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001434", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 1896.0, + "value": 1896.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001435", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 3728.0, + "value": 3728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001436", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 2163.0, + "value": 2163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001437", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 952.0, + "value": 952.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001438", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 1984.0, + "value": 1984.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001439", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 1163.0, + "value": 1163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001440", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 2338.0, + "value": 2338.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001441", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 1760.0, + "value": 1760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001442", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 1033.0, + "value": 1033.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001443", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 1093.0, + "value": 1093.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001444", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 1026.0, + "value": 1026.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001445", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 1104.0, + "value": 1104.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001446", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 2987.0, + "value": 2987.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001447", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 1937.0, + "value": 1937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001448", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 1934.0, + "value": 1934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001449", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 1040.0, + "value": 1040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001450", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 1963.0, + "value": 1963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001451", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 1568.0, + "value": 1568.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001452", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 3151.0, + "value": 3151.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001453", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001454", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 1065.0, + "value": 1065.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001455", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 2024.0, + "value": 2024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001456", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 1164.0, + "value": 1164.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001457", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 937.0, + "value": 937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001458", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 943.0, + "value": 943.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001459", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 3462.0, + "value": 3462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001460", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 1174.0, + "value": 1174.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001461", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 1871.0, + "value": 1871.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001462", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 2341.0, + "value": 2341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001463", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 998.0, + "value": 998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001464", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 1303.0, + "value": 1303.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001465", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 1040.0, + "value": 1040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001466", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 3764.0, + "value": 3764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001467", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 1447.0, + "value": 1447.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001468", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 628.0, + "value": 628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001469", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 2951.0, + "value": 2951.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001470", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 2519.0, + "value": 2519.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001471", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 1763.0, + "value": 1763.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001472", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 1443.0, + "value": 1443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001473", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 1406.0, + "value": 1406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001474", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 2389.0, + "value": 2389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001475", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 957.0, + "value": 957.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001476", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 1189.0, + "value": 1189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001477", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 2976.0, + "value": 2976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001478", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 3064.0, + "value": 3064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001479", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 1002.0, + "value": 1002.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001480", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 1912.0, + "value": 1912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001481", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 956.0, + "value": 956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001482", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 891.0, + "value": 891.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001483", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 1419.0, + "value": 1419.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001484", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001485", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 1650.0, + "value": 1650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001486", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 1402.0, + "value": 1402.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001487", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 1755.0, + "value": 1755.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001488", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 1119.0, + "value": 1119.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001489", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 1094.0, + "value": 1094.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001490", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 910.0, + "value": 910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001491", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 1213.0, + "value": 1213.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001492", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 2343.0, + "value": 2343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001493", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 1038.0, + "value": 1038.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001494", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 1137.0, + "value": 1137.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001495", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 993.0, + "value": 993.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001496", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 1078.0, + "value": 1078.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001497", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 1564.0, + "value": 1564.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001498", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 1489.0, + "value": 1489.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001499", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 2379.0, + "value": 2379.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001500", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 2554.0, + "value": 2554.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001501", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 2537.0, + "value": 2537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001502", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 1608.0, + "value": 1608.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001503", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 3312.0, + "value": 3312.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001504", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 1675.0, + "value": 1675.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001505", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 1482.0, + "value": 1482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001506", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 1735.0, + "value": 1735.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001507", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 1160.0, + "value": 1160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001508", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 1906.0, + "value": 1906.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001509", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 2138.0, + "value": 2138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001510", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 2267.0, + "value": 2267.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001511", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 1452.0, + "value": 1452.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001512", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 1236.0, + "value": 1236.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001513", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 1364.0, + "value": 1364.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001514", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 964.0, + "value": 964.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001515", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 2248.0, + "value": 2248.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001516", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 1780.0, + "value": 1780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001517", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 2485.0, + "value": 2485.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001518", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 2716.0, + "value": 2716.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001519", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 982.0, + "value": 982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001520", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 3152.0, + "value": 3152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001521", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 2393.0, + "value": 2393.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001522", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 1647.0, + "value": 1647.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001523", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 1094.0, + "value": 1094.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001524", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 1902.0, + "value": 1902.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001525", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 3355.0, + "value": 3355.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001526", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 1122.0, + "value": 1122.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001527", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 2961.0, + "value": 2961.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001528", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 2066.0, + "value": 2066.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001529", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 1143.0, + "value": 1143.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001530", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 1159.0, + "value": 1159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001531", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 2419.0, + "value": 2419.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001532", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 909.0, + "value": 909.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001533", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 994.0, + "value": 994.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001534", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 1327.0, + "value": 1327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001535", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 1001.0, + "value": 1001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001536", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 1720.0, + "value": 1720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001537", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 2066.0, + "value": 2066.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001538", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 1670.0, + "value": 1670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001539", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 925.0, + "value": 925.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001540", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 1594.0, + "value": 1594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001541", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 2583.0, + "value": 2583.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001542", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 1205.0, + "value": 1205.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001543", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 1624.0, + "value": 1624.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001544", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 1162.0, + "value": 1162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001545", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 1234.0, + "value": 1234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001546", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 2541.0, + "value": 2541.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001547", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 3307.0, + "value": 3307.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001548", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 1297.0, + "value": 1297.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001549", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 1083.0, + "value": 1083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001550", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 1735.0, + "value": 1735.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001551", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001552", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 1363.0, + "value": 1363.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001553", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 5017.0, + "value": 5017.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001554", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 1337.0, + "value": 1337.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001555", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 1268.0, + "value": 1268.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001556", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 1125.0, + "value": 1125.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001557", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 1580.0, + "value": 1580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001558", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 2043.0, + "value": 2043.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001559", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 2781.0, + "value": 2781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001560", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 2213.0, + "value": 2213.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001561", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 2344.0, + "value": 2344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001562", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 3855.0, + "value": 3855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001563", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 3100.0, + "value": 3100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001564", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 1853.0, + "value": 1853.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001565", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 1468.0, + "value": 1468.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001566", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 1446.0, + "value": 1446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001567", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 2389.0, + "value": 2389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001568", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 1958.0, + "value": 1958.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001569", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 1052.0, + "value": 1052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001570", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 1194.0, + "value": 1194.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001571", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 2170.0, + "value": 2170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001572", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 1047.0, + "value": 1047.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001573", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 1861.0, + "value": 1861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001574", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 2704.0, + "value": 2704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001575", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 1138.0, + "value": 1138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001576", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 4148.0, + "value": 4148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001577", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 1716.0, + "value": 1716.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001578", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 1579.0, + "value": 1579.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001579", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 1245.0, + "value": 1245.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001580", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 824.0, + "value": 824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001581", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 1980.0, + "value": 1980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001582", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 715.0, + "value": 715.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001583", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 1743.0, + "value": 1743.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001584", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 2043.0, + "value": 2043.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001585", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 2353.0, + "value": 2353.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001586", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 1158.0, + "value": 1158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001587", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 1029.0, + "value": 1029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001588", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 1266.0, + "value": 1266.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001589", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 873.0, + "value": 873.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001590", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 1363.0, + "value": 1363.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001591", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 1106.0, + "value": 1106.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001592", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 1159.0, + "value": 1159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001593", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 799.0, + "value": 799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001594", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 2880.0, + "value": 2880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001595", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 3833.0, + "value": 3833.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001596", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 2625.0, + "value": 2625.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001597", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 1798.0, + "value": 1798.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001598", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 2244.0, + "value": 2244.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001599", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 1471.0, + "value": 1471.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001600", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 1783.0, + "value": 1783.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001601", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 1736.0, + "value": 1736.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001602", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 2977.0, + "value": 2977.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001603", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 1628.0, + "value": 1628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001604", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 1606.0, + "value": 1606.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@E14001605", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 724.0, + "value": 724.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000001", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 2208.0, + "value": 2208.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000002", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 3477.0, + "value": 3477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000003", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 1755.0, + "value": 1755.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000004", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 4001.0, + "value": 4001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000005", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000006", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 2322.0, + "value": 2322.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000007", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 2110.0, + "value": 2110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000008", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 3414.0, + "value": 3414.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000009", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 1783.0, + "value": 1783.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000010", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 1944.0, + "value": 1944.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000011", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 2521.0, + "value": 2521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000012", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 2158.0, + "value": 2158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000013", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 1534.0, + "value": 1534.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000014", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 1785.0, + "value": 1785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000015", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 1979.0, + "value": 1979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000016", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 1875.0, + "value": 1875.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000017", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 2750.0, + "value": 2750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@N05000018", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 2262.0, + "value": 2262.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000021", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 979.0, + "value": 979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000027", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 300.0, + "value": 300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000045", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 1637.0, + "value": 1637.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000048", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 2103.0, + "value": 2103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000051", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 477.0, + "value": 477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000060", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 2166.0, + "value": 2166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000061", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 1446.0, + "value": 1446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000062", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 1611.0, + "value": 1611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000063", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 2120.0, + "value": 2120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000064", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 1895.0, + "value": 1895.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000065", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 1534.0, + "value": 1534.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000066", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 1816.0, + "value": 1816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000067", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 1326.0, + "value": 1326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000068", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 1829.0, + "value": 1829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000069", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 1449.0, + "value": 1449.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000070", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 2197.0, + "value": 2197.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000071", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 1975.0, + "value": 1975.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000072", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 1728.0, + "value": 1728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000073", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 1752.0, + "value": 1752.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000074", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000075", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 2565.0, + "value": 2565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000076", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 1507.0, + "value": 1507.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000077", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 1466.0, + "value": 1466.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000078", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 1980.0, + "value": 1980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000079", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 1949.0, + "value": 1949.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000080", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 999.0, + "value": 999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000081", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 1601.0, + "value": 1601.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000082", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 1005.0, + "value": 1005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000083", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 1841.0, + "value": 1841.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000084", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 3037.0, + "value": 3037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000085", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 2664.0, + "value": 2664.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000086", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 3557.0, + "value": 3557.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000087", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 2106.0, + "value": 2106.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000088", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 2706.0, + "value": 2706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000089", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 2329.0, + "value": 2329.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000090", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 2509.0, + "value": 2509.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000091", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000092", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 2016.0, + "value": 2016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000093", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 1957.0, + "value": 1957.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000094", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 1597.0, + "value": 1597.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000095", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 1923.0, + "value": 1923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000096", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 1439.0, + "value": 1439.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000097", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 809.0, + "value": 809.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000098", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 1368.0, + "value": 1368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000099", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 2147.0, + "value": 2147.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000100", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 1174.0, + "value": 1174.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000101", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 1816.0, + "value": 1816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000102", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 1959.0, + "value": 1959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000103", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 1480.0, + "value": 1480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000104", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 1804.0, + "value": 1804.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000105", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 1347.0, + "value": 1347.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000106", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 2362.0, + "value": 2362.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000107", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 2014.0, + "value": 2014.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000108", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 1538.0, + "value": 1538.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000109", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 1775.0, + "value": 1775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000110", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 2084.0, + "value": 2084.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@S14000111", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 764.0, + "value": 764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000081", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 2437.0, + "value": 2437.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000082", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 1745.0, + "value": 1745.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000083", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 1537.0, + "value": 1537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000084", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 2629.0, + "value": 2629.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000085", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 1373.0, + "value": 1373.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000086", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 1558.0, + "value": 1558.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000087", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 1486.0, + "value": 1486.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000088", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 2022.0, + "value": 2022.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000089", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 2592.0, + "value": 2592.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000090", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 1170.0, + "value": 1170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000091", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 1977.0, + "value": 1977.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000092", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 2378.0, + "value": 2378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000093", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 1378.0, + "value": 1378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000094", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 1455.0, + "value": 1455.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000095", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 2360.0, + "value": 2360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000096", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 1435.0, + "value": 1435.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000097", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 1348.0, + "value": 1348.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000098", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 1955.0, + "value": 1955.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000099", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 2462.0, + "value": 2462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000100", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 1863.0, + "value": 1863.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000101", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 1189.0, + "value": 1189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000102", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 1663.0, + "value": 1663.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000103", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 2144.0, + "value": 2144.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000104", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 2874.0, + "value": 2874.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000105", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 1851.0, + "value": 1851.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000106", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 1979.0, + "value": 1979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000107", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 2532.0, + "value": 2532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000108", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 2911.0, + "value": 2911.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000109", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 2163.0, + "value": 2163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000110", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 1809.0, + "value": 1809.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000111", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 1893.0, + "value": 1893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_1_child@W07000112", + "metric": "uc_hh_1_child", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 1228.0, + "value": 1228.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001063", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 1389.0, + "value": 1389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001064", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 1195.0, + "value": 1195.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001065", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 847.0, + "value": 847.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001066", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 1441.0, + "value": 1441.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001067", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 825.0, + "value": 825.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001068", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 1785.0, + "value": 1785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001069", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 1626.0, + "value": 1626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001070", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 2360.0, + "value": 2360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001071", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 1595.0, + "value": 1595.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001072", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 1197.0, + "value": 1197.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001073", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 3507.0, + "value": 3507.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001074", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 2092.0, + "value": 2092.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001075", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 2411.0, + "value": 2411.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001076", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 1353.0, + "value": 1353.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001077", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 1892.0, + "value": 1892.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001078", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 1449.0, + "value": 1449.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001079", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 1753.0, + "value": 1753.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001080", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 1082.0, + "value": 1082.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001081", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 1502.0, + "value": 1502.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001082", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 807.0, + "value": 807.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001083", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 1377.0, + "value": 1377.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001084", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 2201.0, + "value": 2201.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001085", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 2232.0, + "value": 2232.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001086", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 3356.0, + "value": 3356.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001087", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 941.0, + "value": 941.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001088", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 1153.0, + "value": 1153.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001089", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 1412.0, + "value": 1412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001090", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 944.0, + "value": 944.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001091", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 2750.0, + "value": 2750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001092", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 2651.0, + "value": 2651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001093", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 3849.0, + "value": 3849.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001094", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 3215.0, + "value": 3215.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001095", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 3833.0, + "value": 3833.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001096", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 5187.0, + "value": 5187.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001097", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 2866.0, + "value": 2866.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001098", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 4181.0, + "value": 4181.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001099", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 2246.0, + "value": 2246.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001100", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 3457.0, + "value": 3457.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001101", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 1767.0, + "value": 1767.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001102", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 2967.0, + "value": 2967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001103", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 3238.0, + "value": 3238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001104", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 1687.0, + "value": 1687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001105", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 3376.0, + "value": 3376.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001106", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 1511.0, + "value": 1511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001107", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 2276.0, + "value": 2276.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001108", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 1687.0, + "value": 1687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001109", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 1681.0, + "value": 1681.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001110", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 2610.0, + "value": 2610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001111", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 3327.0, + "value": 3327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001112", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 1494.0, + "value": 1494.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001113", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 2744.0, + "value": 2744.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001114", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 2482.0, + "value": 2482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001115", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 1824.0, + "value": 1824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001116", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 1802.0, + "value": 1802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001117", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 1183.0, + "value": 1183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001118", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 3517.0, + "value": 3517.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001119", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 2898.0, + "value": 2898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001120", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 3714.0, + "value": 3714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001121", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 1205.0, + "value": 1205.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001122", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 3958.0, + "value": 3958.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001123", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 2463.0, + "value": 2463.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001124", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 2442.0, + "value": 2442.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001125", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 938.0, + "value": 938.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001126", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 1579.0, + "value": 1579.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001127", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 1366.0, + "value": 1366.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001128", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 1042.0, + "value": 1042.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001129", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 1897.0, + "value": 1897.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001130", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 1571.0, + "value": 1571.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001131", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 975.0, + "value": 975.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001132", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 2056.0, + "value": 2056.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001133", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 1724.0, + "value": 1724.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001134", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 1553.0, + "value": 1553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001135", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 2140.0, + "value": 2140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001136", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 963.0, + "value": 963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001137", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 1031.0, + "value": 1031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001138", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 951.0, + "value": 951.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001139", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 1653.0, + "value": 1653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001140", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 1203.0, + "value": 1203.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001141", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 1419.0, + "value": 1419.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001142", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 2672.0, + "value": 2672.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001143", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 1806.0, + "value": 1806.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001144", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 1808.0, + "value": 1808.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001145", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 1967.0, + "value": 1967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001146", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 1198.0, + "value": 1198.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001147", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 1406.0, + "value": 1406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001148", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 1640.0, + "value": 1640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001149", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 1252.0, + "value": 1252.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001150", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 1563.0, + "value": 1563.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001151", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 1482.0, + "value": 1482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001152", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 1524.0, + "value": 1524.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001153", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 1661.0, + "value": 1661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001154", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 1037.0, + "value": 1037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001155", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 1045.0, + "value": 1045.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001156", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 914.0, + "value": 914.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001157", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 1873.0, + "value": 1873.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001158", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 739.0, + "value": 739.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001159", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001160", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 1651.0, + "value": 1651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001161", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 1147.0, + "value": 1147.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001162", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 729.0, + "value": 729.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001163", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 1237.0, + "value": 1237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001164", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 796.0, + "value": 796.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001165", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 1652.0, + "value": 1652.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001166", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 1330.0, + "value": 1330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001167", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 1620.0, + "value": 1620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001168", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 1090.0, + "value": 1090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001169", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 1503.0, + "value": 1503.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001170", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 1406.0, + "value": 1406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001171", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 823.0, + "value": 823.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001172", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 1631.0, + "value": 1631.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001173", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 1311.0, + "value": 1311.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001174", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 1955.0, + "value": 1955.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001175", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 2007.0, + "value": 2007.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001176", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 1829.0, + "value": 1829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001177", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 1105.0, + "value": 1105.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001178", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 884.0, + "value": 884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001179", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001180", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 3101.0, + "value": 3101.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001181", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 1932.0, + "value": 1932.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001182", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 2073.0, + "value": 2073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001183", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 1436.0, + "value": 1436.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001184", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 2138.0, + "value": 2138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001185", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 1790.0, + "value": 1790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001186", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 2283.0, + "value": 2283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001187", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 1382.0, + "value": 1382.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001188", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 3492.0, + "value": 3492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001189", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 2628.0, + "value": 2628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001190", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 1898.0, + "value": 1898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001191", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 1567.0, + "value": 1567.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001192", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 1146.0, + "value": 1146.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001193", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 1924.0, + "value": 1924.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001194", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 3151.0, + "value": 3151.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001195", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 756.0, + "value": 756.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001196", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 2620.0, + "value": 2620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001197", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 1095.0, + "value": 1095.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001198", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 2534.0, + "value": 2534.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001199", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 1371.0, + "value": 1371.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001200", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 2076.0, + "value": 2076.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001201", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 784.0, + "value": 784.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001202", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 1790.0, + "value": 1790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001203", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 1235.0, + "value": 1235.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001204", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 2224.0, + "value": 2224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001205", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 2206.0, + "value": 2206.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001206", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 1514.0, + "value": 1514.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001207", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 2704.0, + "value": 2704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001208", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 2922.0, + "value": 2922.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001209", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 2614.0, + "value": 2614.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001210", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 1052.0, + "value": 1052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001211", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 2424.0, + "value": 2424.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001212", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 843.0, + "value": 843.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001213", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 3152.0, + "value": 3152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001214", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 767.0, + "value": 767.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001215", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 996.0, + "value": 996.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001216", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 2512.0, + "value": 2512.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001217", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 1018.0, + "value": 1018.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001218", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 1200.0, + "value": 1200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001219", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 1891.0, + "value": 1891.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001220", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 963.0, + "value": 963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001221", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 3546.0, + "value": 3546.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001222", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 1696.0, + "value": 1696.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001223", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 1852.0, + "value": 1852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001224", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 1075.0, + "value": 1075.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001225", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 3455.0, + "value": 3455.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001226", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 1211.0, + "value": 1211.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001227", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 901.0, + "value": 901.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001228", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 1651.0, + "value": 1651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001229", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 3155.0, + "value": 3155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001230", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001231", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 1351.0, + "value": 1351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001232", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 1218.0, + "value": 1218.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001233", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 1071.0, + "value": 1071.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001234", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 808.0, + "value": 808.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001235", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 1395.0, + "value": 1395.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001236", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 2909.0, + "value": 2909.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001237", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 1081.0, + "value": 1081.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001238", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 2161.0, + "value": 2161.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001239", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 1553.0, + "value": 1553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001240", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 1115.0, + "value": 1115.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001241", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 1105.0, + "value": 1105.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001242", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 1141.0, + "value": 1141.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001243", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 1334.0, + "value": 1334.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001244", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 2009.0, + "value": 2009.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001245", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 1439.0, + "value": 1439.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001246", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 1703.0, + "value": 1703.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001247", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 1059.0, + "value": 1059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001248", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 2083.0, + "value": 2083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001249", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 781.0, + "value": 781.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001250", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 970.0, + "value": 970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001251", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 3142.0, + "value": 3142.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001252", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 1440.0, + "value": 1440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001253", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 1342.0, + "value": 1342.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001254", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 1882.0, + "value": 1882.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001255", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 2802.0, + "value": 2802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001256", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 2246.0, + "value": 2246.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001257", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 2316.0, + "value": 2316.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001258", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 837.0, + "value": 837.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001259", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 3272.0, + "value": 3272.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001260", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 2952.0, + "value": 2952.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001261", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 1653.0, + "value": 1653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001262", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 2591.0, + "value": 2591.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001263", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 966.0, + "value": 966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001264", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 2043.0, + "value": 2043.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001265", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 1783.0, + "value": 1783.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001266", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 1073.0, + "value": 1073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001267", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 1984.0, + "value": 1984.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001268", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 598.0, + "value": 598.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001269", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 1005.0, + "value": 1005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001270", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 1618.0, + "value": 1618.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001271", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 2104.0, + "value": 2104.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001272", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 2424.0, + "value": 2424.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001273", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 1224.0, + "value": 1224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001274", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 2271.0, + "value": 2271.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001275", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 1563.0, + "value": 1563.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001276", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 2753.0, + "value": 2753.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001277", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 1179.0, + "value": 1179.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001278", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 1639.0, + "value": 1639.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001279", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 2676.0, + "value": 2676.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001280", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 693.0, + "value": 693.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001281", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 1241.0, + "value": 1241.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001282", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 1487.0, + "value": 1487.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001283", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 1053.0, + "value": 1053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001284", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 1366.0, + "value": 1366.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001285", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 923.0, + "value": 923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001286", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 2325.0, + "value": 2325.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001287", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 1120.0, + "value": 1120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001288", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 1196.0, + "value": 1196.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001289", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 999.0, + "value": 999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001290", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 2277.0, + "value": 2277.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001291", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 871.0, + "value": 871.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001292", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 1467.0, + "value": 1467.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001293", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 1616.0, + "value": 1616.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001294", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 920.0, + "value": 920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001295", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 2260.0, + "value": 2260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001296", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 1614.0, + "value": 1614.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001297", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 2633.0, + "value": 2633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001298", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 1113.0, + "value": 1113.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001299", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 2183.0, + "value": 2183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001300", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 1951.0, + "value": 1951.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001301", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 2761.0, + "value": 2761.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001302", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 2228.0, + "value": 2228.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001303", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 1191.0, + "value": 1191.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001304", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 1052.0, + "value": 1052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001305", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 2502.0, + "value": 2502.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001306", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 2585.0, + "value": 2585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001307", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001308", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 1677.0, + "value": 1677.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001309", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 777.0, + "value": 777.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001310", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 1966.0, + "value": 1966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001311", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 1681.0, + "value": 1681.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001312", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 1426.0, + "value": 1426.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001313", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 2750.0, + "value": 2750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001314", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 2595.0, + "value": 2595.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001315", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 2126.0, + "value": 2126.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001316", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 853.0, + "value": 853.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001317", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 2490.0, + "value": 2490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001318", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 1166.0, + "value": 1166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001319", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 1533.0, + "value": 1533.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001320", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 2687.0, + "value": 2687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001321", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 1344.0, + "value": 1344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001322", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 829.0, + "value": 829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001323", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 3779.0, + "value": 3779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001324", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 1463.0, + "value": 1463.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001325", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 2035.0, + "value": 2035.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001326", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 2367.0, + "value": 2367.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001327", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 2531.0, + "value": 2531.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001328", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 3166.0, + "value": 3166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001329", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 2113.0, + "value": 2113.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001330", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 1179.0, + "value": 1179.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001331", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 2994.0, + "value": 2994.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001332", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 2654.0, + "value": 2654.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001333", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 1820.0, + "value": 1820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001334", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 2134.0, + "value": 2134.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001335", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 1036.0, + "value": 1036.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001336", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 2092.0, + "value": 2092.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001337", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 1796.0, + "value": 1796.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001338", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 3444.0, + "value": 3444.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001339", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 2880.0, + "value": 2880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001340", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 2278.0, + "value": 2278.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001341", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 2482.0, + "value": 2482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001342", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 1259.0, + "value": 1259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001343", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 1374.0, + "value": 1374.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001344", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 1798.0, + "value": 1798.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001345", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 2091.0, + "value": 2091.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001346", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 2841.0, + "value": 2841.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001347", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 967.0, + "value": 967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001348", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 868.0, + "value": 868.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001349", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 1496.0, + "value": 1496.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001350", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 1556.0, + "value": 1556.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001351", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 986.0, + "value": 986.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001352", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 2991.0, + "value": 2991.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001353", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 2801.0, + "value": 2801.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001354", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 1284.0, + "value": 1284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001355", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 2051.0, + "value": 2051.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001356", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 1006.0, + "value": 1006.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001357", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 1137.0, + "value": 1137.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001358", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 1598.0, + "value": 1598.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001359", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 919.0, + "value": 919.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001360", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 592.0, + "value": 592.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001361", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 1467.0, + "value": 1467.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001362", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 799.0, + "value": 799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001363", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 927.0, + "value": 927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001364", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 988.0, + "value": 988.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001365", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 1064.0, + "value": 1064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001366", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 846.0, + "value": 846.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001367", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 3296.0, + "value": 3296.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001368", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 1752.0, + "value": 1752.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001369", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 2201.0, + "value": 2201.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001370", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 1385.0, + "value": 1385.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001371", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 2328.0, + "value": 2328.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001372", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 1429.0, + "value": 1429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001373", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 946.0, + "value": 946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001374", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 769.0, + "value": 769.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001375", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 1305.0, + "value": 1305.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001376", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 1052.0, + "value": 1052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001377", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 3196.0, + "value": 3196.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001378", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 2707.0, + "value": 2707.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001379", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 1148.0, + "value": 1148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001380", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 1370.0, + "value": 1370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001381", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 1155.0, + "value": 1155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001382", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 1948.0, + "value": 1948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001383", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001384", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 1083.0, + "value": 1083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001385", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 1420.0, + "value": 1420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001386", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 881.0, + "value": 881.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001387", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 1351.0, + "value": 1351.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001388", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 926.0, + "value": 926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001389", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 1759.0, + "value": 1759.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001390", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 1665.0, + "value": 1665.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001391", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 1208.0, + "value": 1208.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001392", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 676.0, + "value": 676.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001393", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 1115.0, + "value": 1115.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001394", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 896.0, + "value": 896.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001395", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 923.0, + "value": 923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001396", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001397", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 1090.0, + "value": 1090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001398", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 1218.0, + "value": 1218.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001399", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 729.0, + "value": 729.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001400", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 1445.0, + "value": 1445.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001401", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 1829.0, + "value": 1829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001402", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 967.0, + "value": 967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001403", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 1258.0, + "value": 1258.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001404", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 1247.0, + "value": 1247.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001405", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 1510.0, + "value": 1510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001406", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 2617.0, + "value": 2617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001407", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001408", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 1553.0, + "value": 1553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001409", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 1890.0, + "value": 1890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001410", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 3020.0, + "value": 3020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001411", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 2925.0, + "value": 2925.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001412", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 2029.0, + "value": 2029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001413", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 1795.0, + "value": 1795.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001414", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 976.0, + "value": 976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001415", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 2515.0, + "value": 2515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001416", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 2872.0, + "value": 2872.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001417", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 1241.0, + "value": 1241.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001418", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 1052.0, + "value": 1052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001419", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 1662.0, + "value": 1662.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001420", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 788.0, + "value": 788.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001421", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 2799.0, + "value": 2799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001422", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 2006.0, + "value": 2006.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001423", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 985.0, + "value": 985.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001424", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 1050.0, + "value": 1050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001425", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 3179.0, + "value": 3179.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001426", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 1878.0, + "value": 1878.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001427", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 2384.0, + "value": 2384.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001428", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 1996.0, + "value": 1996.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001429", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 1318.0, + "value": 1318.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001430", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 3238.0, + "value": 3238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001431", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 1685.0, + "value": 1685.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001432", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 2236.0, + "value": 2236.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001433", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 2770.0, + "value": 2770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001434", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 1653.0, + "value": 1653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001435", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 3252.0, + "value": 3252.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001436", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 1887.0, + "value": 1887.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001437", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 831.0, + "value": 831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001438", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 1730.0, + "value": 1730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001439", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 1015.0, + "value": 1015.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001440", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 2040.0, + "value": 2040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001441", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 1535.0, + "value": 1535.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001442", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 901.0, + "value": 901.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001443", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 953.0, + "value": 953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001444", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 895.0, + "value": 895.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001445", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 963.0, + "value": 963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001446", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 2605.0, + "value": 2605.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001447", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001448", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 1687.0, + "value": 1687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001449", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 907.0, + "value": 907.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001450", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 1712.0, + "value": 1712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001451", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 1367.0, + "value": 1367.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001452", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 2749.0, + "value": 2749.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001453", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 1448.0, + "value": 1448.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001454", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 929.0, + "value": 929.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001455", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 1766.0, + "value": 1766.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001456", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 1016.0, + "value": 1016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001457", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 817.0, + "value": 817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001458", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 822.0, + "value": 822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001459", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 3020.0, + "value": 3020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001460", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 1024.0, + "value": 1024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001461", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 1632.0, + "value": 1632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001462", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 2043.0, + "value": 2043.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001463", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 870.0, + "value": 870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001464", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 1137.0, + "value": 1137.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001465", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 907.0, + "value": 907.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001466", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 3283.0, + "value": 3283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001467", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 1262.0, + "value": 1262.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001468", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 547.0, + "value": 547.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001469", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 2575.0, + "value": 2575.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001470", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 2197.0, + "value": 2197.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001471", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 1537.0, + "value": 1537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001472", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 1259.0, + "value": 1259.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001473", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 1227.0, + "value": 1227.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001474", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 2084.0, + "value": 2084.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001475", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 834.0, + "value": 834.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001476", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 1037.0, + "value": 1037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001477", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 2596.0, + "value": 2596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001478", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 2673.0, + "value": 2673.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001479", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 874.0, + "value": 874.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001480", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 1668.0, + "value": 1668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001481", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 834.0, + "value": 834.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001482", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 777.0, + "value": 777.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001483", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 1237.0, + "value": 1237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001484", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 1126.0, + "value": 1126.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001485", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 1440.0, + "value": 1440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001486", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 1223.0, + "value": 1223.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001487", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 1530.0, + "value": 1530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001488", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 976.0, + "value": 976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001489", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 955.0, + "value": 955.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001490", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 794.0, + "value": 794.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001491", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 1059.0, + "value": 1059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001492", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 2044.0, + "value": 2044.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001493", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 905.0, + "value": 905.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001494", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 991.0, + "value": 991.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001495", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001496", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 941.0, + "value": 941.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001497", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 1365.0, + "value": 1365.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001498", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 1299.0, + "value": 1299.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001499", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 2075.0, + "value": 2075.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001500", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 2228.0, + "value": 2228.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001501", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 2214.0, + "value": 2214.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001502", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 1402.0, + "value": 1402.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001503", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 2890.0, + "value": 2890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001504", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 1461.0, + "value": 1461.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001505", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 1293.0, + "value": 1293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001506", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 1514.0, + "value": 1514.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001507", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 1011.0, + "value": 1011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001508", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 1663.0, + "value": 1663.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001509", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 1865.0, + "value": 1865.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001510", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 1978.0, + "value": 1978.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001511", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 1266.0, + "value": 1266.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001512", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 1078.0, + "value": 1078.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001513", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 1190.0, + "value": 1190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001514", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001515", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 1961.0, + "value": 1961.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001516", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 1553.0, + "value": 1553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001517", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 2168.0, + "value": 2168.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001518", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 2369.0, + "value": 2369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001519", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 857.0, + "value": 857.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001520", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 2749.0, + "value": 2749.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001521", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 2088.0, + "value": 2088.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001522", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 1437.0, + "value": 1437.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001523", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 954.0, + "value": 954.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001524", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 1659.0, + "value": 1659.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001525", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 2927.0, + "value": 2927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001526", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 979.0, + "value": 979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001527", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 2582.0, + "value": 2582.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001528", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 1802.0, + "value": 1802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001529", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 997.0, + "value": 997.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001530", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 1011.0, + "value": 1011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001531", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 2111.0, + "value": 2111.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001532", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 793.0, + "value": 793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001533", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001534", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 1158.0, + "value": 1158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001535", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 873.0, + "value": 873.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001536", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001537", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 1802.0, + "value": 1802.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001538", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 1457.0, + "value": 1457.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001539", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 807.0, + "value": 807.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001540", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 1390.0, + "value": 1390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001541", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 2253.0, + "value": 2253.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001542", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 1051.0, + "value": 1051.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001543", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 1417.0, + "value": 1417.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001544", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 1014.0, + "value": 1014.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001545", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 1076.0, + "value": 1076.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001546", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 2217.0, + "value": 2217.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001547", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 2884.0, + "value": 2884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001548", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 1132.0, + "value": 1132.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001549", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 944.0, + "value": 944.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001550", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 1513.0, + "value": 1513.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001551", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 1928.0, + "value": 1928.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001552", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 1189.0, + "value": 1189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001553", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 4377.0, + "value": 4377.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001554", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 1166.0, + "value": 1166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001555", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 1106.0, + "value": 1106.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001556", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 982.0, + "value": 982.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001557", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 1378.0, + "value": 1378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001558", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 1783.0, + "value": 1783.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001559", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 2426.0, + "value": 2426.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001560", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 1931.0, + "value": 1931.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001561", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 2044.0, + "value": 2044.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001562", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 3363.0, + "value": 3363.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001563", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 2704.0, + "value": 2704.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001564", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 1617.0, + "value": 1617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001565", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 1281.0, + "value": 1281.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001566", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 1262.0, + "value": 1262.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001567", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 2084.0, + "value": 2084.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001568", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 1708.0, + "value": 1708.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001569", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 918.0, + "value": 918.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001570", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 1041.0, + "value": 1041.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001571", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 1893.0, + "value": 1893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001572", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 913.0, + "value": 913.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001573", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 1623.0, + "value": 1623.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001574", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 2359.0, + "value": 2359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001575", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 993.0, + "value": 993.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001576", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 3618.0, + "value": 3618.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001577", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 1497.0, + "value": 1497.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001578", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 1377.0, + "value": 1377.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001579", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 1086.0, + "value": 1086.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001580", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 719.0, + "value": 719.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001581", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 1727.0, + "value": 1727.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001582", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 623.0, + "value": 623.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001583", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 1520.0, + "value": 1520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001584", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 1782.0, + "value": 1782.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001585", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 2052.0, + "value": 2052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001586", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 1011.0, + "value": 1011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001587", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 898.0, + "value": 898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001588", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 1105.0, + "value": 1105.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001589", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 762.0, + "value": 762.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001590", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 1189.0, + "value": 1189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001591", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 964.0, + "value": 964.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001592", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 1011.0, + "value": 1011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001593", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 697.0, + "value": 697.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001594", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 2513.0, + "value": 2513.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001595", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 3343.0, + "value": 3343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001596", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 2290.0, + "value": 2290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001597", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 1568.0, + "value": 1568.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001598", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 1958.0, + "value": 1958.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001599", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 1284.0, + "value": 1284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001600", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 1555.0, + "value": 1555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001601", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 1515.0, + "value": 1515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001602", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 2596.0, + "value": 2596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001603", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 1421.0, + "value": 1421.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001604", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 1401.0, + "value": 1401.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@E14001605", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 631.0, + "value": 631.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000001", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 1912.0, + "value": 1912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000002", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 3011.0, + "value": 3011.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000003", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 1520.0, + "value": 1520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000004", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 3465.0, + "value": 3465.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000005", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 1464.0, + "value": 1464.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000006", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000007", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 1827.0, + "value": 1827.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000008", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 2956.0, + "value": 2956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000009", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 1544.0, + "value": 1544.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000010", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 1683.0, + "value": 1683.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000011", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 2183.0, + "value": 2183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000012", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 1868.0, + "value": 1868.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000013", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 1328.0, + "value": 1328.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000014", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 1546.0, + "value": 1546.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000015", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 1714.0, + "value": 1714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000016", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 1623.0, + "value": 1623.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000017", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 2382.0, + "value": 2382.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@N05000018", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 1959.0, + "value": 1959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000021", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 780.0, + "value": 780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000027", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 240.0, + "value": 240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000045", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 1305.0, + "value": 1305.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000048", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 1678.0, + "value": 1678.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000051", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000060", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 1728.0, + "value": 1728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000061", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 1153.0, + "value": 1153.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000062", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 1284.0, + "value": 1284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000063", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 1691.0, + "value": 1691.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000064", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 1512.0, + "value": 1512.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000065", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 1224.0, + "value": 1224.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000066", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 1449.0, + "value": 1449.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000067", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 1058.0, + "value": 1058.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000068", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 1459.0, + "value": 1459.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000069", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 1155.0, + "value": 1155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000070", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 1753.0, + "value": 1753.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000071", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 1575.0, + "value": 1575.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000072", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 1378.0, + "value": 1378.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000073", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 1397.0, + "value": 1397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000074", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 1029.0, + "value": 1029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000075", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 2045.0, + "value": 2045.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000076", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 1202.0, + "value": 1202.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000077", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 1169.0, + "value": 1169.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000078", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 1579.0, + "value": 1579.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000079", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 1554.0, + "value": 1554.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000080", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 797.0, + "value": 797.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000081", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 1276.0, + "value": 1276.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000082", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 801.0, + "value": 801.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000083", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 1468.0, + "value": 1468.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000084", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 2422.0, + "value": 2422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000085", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 2125.0, + "value": 2125.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000086", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 2837.0, + "value": 2837.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000087", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 1679.0, + "value": 1679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000088", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 2158.0, + "value": 2158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000089", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 1857.0, + "value": 1857.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000090", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 2001.0, + "value": 2001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000091", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 692.0, + "value": 692.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000092", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 1608.0, + "value": 1608.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000093", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000094", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 1273.0, + "value": 1273.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000095", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 1534.0, + "value": 1534.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000096", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 1148.0, + "value": 1148.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000097", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 645.0, + "value": 645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000098", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 1091.0, + "value": 1091.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000099", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 1712.0, + "value": 1712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000100", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 936.0, + "value": 936.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000101", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 1448.0, + "value": 1448.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000102", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 1562.0, + "value": 1562.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000103", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 1180.0, + "value": 1180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000104", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 1439.0, + "value": 1439.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000105", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 1074.0, + "value": 1074.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000106", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 1884.0, + "value": 1884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000107", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 1607.0, + "value": 1607.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000108", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 1226.0, + "value": 1226.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000109", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 1416.0, + "value": 1416.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000110", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 1662.0, + "value": 1662.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@S14000111", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 610.0, + "value": 610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000081", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 2103.0, + "value": 2103.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000082", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 1505.0, + "value": 1505.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000083", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 1326.0, + "value": 1326.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000084", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 2268.0, + "value": 2268.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000085", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 1184.0, + "value": 1184.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000086", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 1344.0, + "value": 1344.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000087", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 1282.0, + "value": 1282.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000088", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 1745.0, + "value": 1745.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000089", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 2236.0, + "value": 2236.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000090", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 1010.0, + "value": 1010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000091", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 1706.0, + "value": 1706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000092", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 2052.0, + "value": 2052.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000093", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 1188.0, + "value": 1188.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000094", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 1256.0, + "value": 1256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000095", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 2036.0, + "value": 2036.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000096", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 1238.0, + "value": 1238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000097", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 1163.0, + "value": 1163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000098", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 1687.0, + "value": 1687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000099", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 2124.0, + "value": 2124.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000100", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 1607.0, + "value": 1607.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000101", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 1026.0, + "value": 1026.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000102", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 1435.0, + "value": 1435.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000103", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000104", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 2479.0, + "value": 2479.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000105", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 1597.0, + "value": 1597.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000106", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 1707.0, + "value": 1707.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000107", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 2184.0, + "value": 2184.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000108", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 2511.0, + "value": 2511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000109", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 1866.0, + "value": 1866.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000110", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000111", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 1633.0, + "value": 1633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_2_children@W07000112", + "metric": "uc_hh_2_children", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 1059.0, + "value": 1059.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001063", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001063", + "period": 2025, + "raw_value": 952.0, + "value": 952.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001064", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001064", + "period": 2025, + "raw_value": 818.0, + "value": 818.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001065", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001065", + "period": 2025, + "raw_value": 581.0, + "value": 581.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001066", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001066", + "period": 2025, + "raw_value": 987.0, + "value": 987.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001067", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001067", + "period": 2025, + "raw_value": 565.0, + "value": 565.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001068", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001068", + "period": 2025, + "raw_value": 1223.0, + "value": 1223.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001069", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001069", + "period": 2025, + "raw_value": 1114.0, + "value": 1114.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001070", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001070", + "period": 2025, + "raw_value": 1616.0, + "value": 1616.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001071", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001071", + "period": 2025, + "raw_value": 1093.0, + "value": 1093.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001072", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001072", + "period": 2025, + "raw_value": 820.0, + "value": 820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001073", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001073", + "period": 2025, + "raw_value": 2403.0, + "value": 2403.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001074", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001074", + "period": 2025, + "raw_value": 1433.0, + "value": 1433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001075", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001075", + "period": 2025, + "raw_value": 1651.0, + "value": 1651.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001076", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001076", + "period": 2025, + "raw_value": 927.0, + "value": 927.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001077", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001077", + "period": 2025, + "raw_value": 1296.0, + "value": 1296.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001078", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001078", + "period": 2025, + "raw_value": 992.0, + "value": 992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001079", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001079", + "period": 2025, + "raw_value": 1201.0, + "value": 1201.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001080", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001080", + "period": 2025, + "raw_value": 741.0, + "value": 741.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001081", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001081", + "period": 2025, + "raw_value": 1029.0, + "value": 1029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001082", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001082", + "period": 2025, + "raw_value": 553.0, + "value": 553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001083", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001083", + "period": 2025, + "raw_value": 943.0, + "value": 943.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001084", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001084", + "period": 2025, + "raw_value": 1508.0, + "value": 1508.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001085", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001085", + "period": 2025, + "raw_value": 1529.0, + "value": 1529.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001086", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001086", + "period": 2025, + "raw_value": 2299.0, + "value": 2299.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001087", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001087", + "period": 2025, + "raw_value": 645.0, + "value": 645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001088", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001088", + "period": 2025, + "raw_value": 789.0, + "value": 789.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001089", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001089", + "period": 2025, + "raw_value": 967.0, + "value": 967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001090", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001090", + "period": 2025, + "raw_value": 646.0, + "value": 646.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001091", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001091", + "period": 2025, + "raw_value": 1883.0, + "value": 1883.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001092", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001092", + "period": 2025, + "raw_value": 1816.0, + "value": 1816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001093", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001093", + "period": 2025, + "raw_value": 2637.0, + "value": 2637.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001094", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001094", + "period": 2025, + "raw_value": 2202.0, + "value": 2202.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001095", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001095", + "period": 2025, + "raw_value": 2625.0, + "value": 2625.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001096", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001096", + "period": 2025, + "raw_value": 3553.0, + "value": 3553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001097", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001097", + "period": 2025, + "raw_value": 1964.0, + "value": 1964.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001098", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001098", + "period": 2025, + "raw_value": 2864.0, + "value": 2864.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001099", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001099", + "period": 2025, + "raw_value": 1538.0, + "value": 1538.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001100", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001100", + "period": 2025, + "raw_value": 2368.0, + "value": 2368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001101", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001101", + "period": 2025, + "raw_value": 1210.0, + "value": 1210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001102", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001102", + "period": 2025, + "raw_value": 2032.0, + "value": 2032.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001103", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001103", + "period": 2025, + "raw_value": 2218.0, + "value": 2218.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001104", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001104", + "period": 2025, + "raw_value": 1155.0, + "value": 1155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001105", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001105", + "period": 2025, + "raw_value": 2313.0, + "value": 2313.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001106", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001106", + "period": 2025, + "raw_value": 1035.0, + "value": 1035.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001107", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001107", + "period": 2025, + "raw_value": 1559.0, + "value": 1559.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001108", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001108", + "period": 2025, + "raw_value": 1156.0, + "value": 1156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001109", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001109", + "period": 2025, + "raw_value": 1152.0, + "value": 1152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001110", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001110", + "period": 2025, + "raw_value": 1788.0, + "value": 1788.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001111", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001111", + "period": 2025, + "raw_value": 2279.0, + "value": 2279.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001112", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001112", + "period": 2025, + "raw_value": 1024.0, + "value": 1024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001113", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001113", + "period": 2025, + "raw_value": 1880.0, + "value": 1880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001114", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001114", + "period": 2025, + "raw_value": 1700.0, + "value": 1700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001115", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001115", + "period": 2025, + "raw_value": 1250.0, + "value": 1250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001116", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001116", + "period": 2025, + "raw_value": 1234.0, + "value": 1234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001117", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001117", + "period": 2025, + "raw_value": 810.0, + "value": 810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001118", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001118", + "period": 2025, + "raw_value": 2409.0, + "value": 2409.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001119", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001119", + "period": 2025, + "raw_value": 1985.0, + "value": 1985.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001120", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001120", + "period": 2025, + "raw_value": 2544.0, + "value": 2544.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001121", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001121", + "period": 2025, + "raw_value": 825.0, + "value": 825.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001122", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001122", + "period": 2025, + "raw_value": 2711.0, + "value": 2711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001123", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001123", + "period": 2025, + "raw_value": 1687.0, + "value": 1687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001124", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001124", + "period": 2025, + "raw_value": 1673.0, + "value": 1673.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001125", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001125", + "period": 2025, + "raw_value": 643.0, + "value": 643.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001126", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001126", + "period": 2025, + "raw_value": 1082.0, + "value": 1082.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001127", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001127", + "period": 2025, + "raw_value": 935.0, + "value": 935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001128", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001128", + "period": 2025, + "raw_value": 714.0, + "value": 714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001129", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001129", + "period": 2025, + "raw_value": 1299.0, + "value": 1299.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001130", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001130", + "period": 2025, + "raw_value": 1077.0, + "value": 1077.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001131", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001131", + "period": 2025, + "raw_value": 668.0, + "value": 668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001132", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001132", + "period": 2025, + "raw_value": 1409.0, + "value": 1409.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001133", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001133", + "period": 2025, + "raw_value": 1181.0, + "value": 1181.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001134", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001134", + "period": 2025, + "raw_value": 1064.0, + "value": 1064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001135", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001135", + "period": 2025, + "raw_value": 1466.0, + "value": 1466.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001136", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001136", + "period": 2025, + "raw_value": 659.0, + "value": 659.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001137", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001137", + "period": 2025, + "raw_value": 706.0, + "value": 706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001138", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001138", + "period": 2025, + "raw_value": 652.0, + "value": 652.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001139", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001139", + "period": 2025, + "raw_value": 1133.0, + "value": 1133.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001140", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001140", + "period": 2025, + "raw_value": 824.0, + "value": 824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001141", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001141", + "period": 2025, + "raw_value": 972.0, + "value": 972.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001142", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001142", + "period": 2025, + "raw_value": 1831.0, + "value": 1831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001143", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001143", + "period": 2025, + "raw_value": 1237.0, + "value": 1237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001144", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001144", + "period": 2025, + "raw_value": 1238.0, + "value": 1238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001145", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001145", + "period": 2025, + "raw_value": 1348.0, + "value": 1348.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001146", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001146", + "period": 2025, + "raw_value": 821.0, + "value": 821.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001147", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001147", + "period": 2025, + "raw_value": 963.0, + "value": 963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001148", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001148", + "period": 2025, + "raw_value": 1123.0, + "value": 1123.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001149", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001149", + "period": 2025, + "raw_value": 858.0, + "value": 858.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001150", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001150", + "period": 2025, + "raw_value": 1071.0, + "value": 1071.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001151", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001151", + "period": 2025, + "raw_value": 1016.0, + "value": 1016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001152", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001152", + "period": 2025, + "raw_value": 1044.0, + "value": 1044.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001153", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001153", + "period": 2025, + "raw_value": 1138.0, + "value": 1138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001154", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001154", + "period": 2025, + "raw_value": 711.0, + "value": 711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001155", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001155", + "period": 2025, + "raw_value": 716.0, + "value": 716.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001156", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001156", + "period": 2025, + "raw_value": 626.0, + "value": 626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001157", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001157", + "period": 2025, + "raw_value": 1283.0, + "value": 1283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001158", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001158", + "period": 2025, + "raw_value": 506.0, + "value": 506.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001159", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001159", + "period": 2025, + "raw_value": 884.0, + "value": 884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001160", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001160", + "period": 2025, + "raw_value": 1131.0, + "value": 1131.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001161", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001161", + "period": 2025, + "raw_value": 785.0, + "value": 785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001162", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001162", + "period": 2025, + "raw_value": 500.0, + "value": 500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001163", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001163", + "period": 2025, + "raw_value": 848.0, + "value": 848.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001164", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001164", + "period": 2025, + "raw_value": 546.0, + "value": 546.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001165", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001165", + "period": 2025, + "raw_value": 1132.0, + "value": 1132.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001166", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001166", + "period": 2025, + "raw_value": 911.0, + "value": 911.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001167", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001167", + "period": 2025, + "raw_value": 1110.0, + "value": 1110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001168", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001168", + "period": 2025, + "raw_value": 747.0, + "value": 747.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001169", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001169", + "period": 2025, + "raw_value": 1030.0, + "value": 1030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001170", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001170", + "period": 2025, + "raw_value": 963.0, + "value": 963.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001171", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001171", + "period": 2025, + "raw_value": 563.0, + "value": 563.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001172", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001172", + "period": 2025, + "raw_value": 1117.0, + "value": 1117.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001173", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001173", + "period": 2025, + "raw_value": 898.0, + "value": 898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001174", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001174", + "period": 2025, + "raw_value": 1339.0, + "value": 1339.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001175", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001175", + "period": 2025, + "raw_value": 1375.0, + "value": 1375.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001176", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001176", + "period": 2025, + "raw_value": 1253.0, + "value": 1253.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001177", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001177", + "period": 2025, + "raw_value": 757.0, + "value": 757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001178", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001178", + "period": 2025, + "raw_value": 606.0, + "value": 606.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001179", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001179", + "period": 2025, + "raw_value": 1268.0, + "value": 1268.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001180", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001180", + "period": 2025, + "raw_value": 2124.0, + "value": 2124.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001181", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001181", + "period": 2025, + "raw_value": 1323.0, + "value": 1323.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001182", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001182", + "period": 2025, + "raw_value": 1420.0, + "value": 1420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001183", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001183", + "period": 2025, + "raw_value": 984.0, + "value": 984.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001184", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001184", + "period": 2025, + "raw_value": 1465.0, + "value": 1465.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001185", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001185", + "period": 2025, + "raw_value": 1227.0, + "value": 1227.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001186", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001186", + "period": 2025, + "raw_value": 1564.0, + "value": 1564.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001187", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001187", + "period": 2025, + "raw_value": 946.0, + "value": 946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001188", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001188", + "period": 2025, + "raw_value": 2392.0, + "value": 2392.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001189", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001189", + "period": 2025, + "raw_value": 1800.0, + "value": 1800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001190", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001190", + "period": 2025, + "raw_value": 1301.0, + "value": 1301.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001191", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001191", + "period": 2025, + "raw_value": 1073.0, + "value": 1073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001192", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001192", + "period": 2025, + "raw_value": 785.0, + "value": 785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001193", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001193", + "period": 2025, + "raw_value": 1318.0, + "value": 1318.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001194", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001194", + "period": 2025, + "raw_value": 2159.0, + "value": 2159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001195", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001195", + "period": 2025, + "raw_value": 518.0, + "value": 518.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001196", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001196", + "period": 2025, + "raw_value": 1795.0, + "value": 1795.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001197", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001197", + "period": 2025, + "raw_value": 750.0, + "value": 750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001198", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001198", + "period": 2025, + "raw_value": 1736.0, + "value": 1736.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001199", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001199", + "period": 2025, + "raw_value": 939.0, + "value": 939.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001200", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001200", + "period": 2025, + "raw_value": 1422.0, + "value": 1422.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001201", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001201", + "period": 2025, + "raw_value": 537.0, + "value": 537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001202", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001202", + "period": 2025, + "raw_value": 1227.0, + "value": 1227.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001203", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001203", + "period": 2025, + "raw_value": 846.0, + "value": 846.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001204", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001204", + "period": 2025, + "raw_value": 1523.0, + "value": 1523.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001205", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001205", + "period": 2025, + "raw_value": 1511.0, + "value": 1511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001206", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001206", + "period": 2025, + "raw_value": 1038.0, + "value": 1038.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001207", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001207", + "period": 2025, + "raw_value": 1852.0, + "value": 1852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001208", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001208", + "period": 2025, + "raw_value": 2001.0, + "value": 2001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001209", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001209", + "period": 2025, + "raw_value": 1790.0, + "value": 1790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001210", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001210", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001211", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001211", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001212", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001212", + "period": 2025, + "raw_value": 577.0, + "value": 577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001213", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001213", + "period": 2025, + "raw_value": 2159.0, + "value": 2159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001214", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001214", + "period": 2025, + "raw_value": 525.0, + "value": 525.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001215", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001215", + "period": 2025, + "raw_value": 682.0, + "value": 682.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001216", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001216", + "period": 2025, + "raw_value": 1721.0, + "value": 1721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001217", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001217", + "period": 2025, + "raw_value": 698.0, + "value": 698.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001218", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001218", + "period": 2025, + "raw_value": 822.0, + "value": 822.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001219", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001219", + "period": 2025, + "raw_value": 1295.0, + "value": 1295.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001220", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001220", + "period": 2025, + "raw_value": 659.0, + "value": 659.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001221", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001221", + "period": 2025, + "raw_value": 2429.0, + "value": 2429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001222", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001222", + "period": 2025, + "raw_value": 1162.0, + "value": 1162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001223", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001223", + "period": 2025, + "raw_value": 1268.0, + "value": 1268.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001224", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001224", + "period": 2025, + "raw_value": 737.0, + "value": 737.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001225", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001225", + "period": 2025, + "raw_value": 2367.0, + "value": 2367.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001226", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001226", + "period": 2025, + "raw_value": 830.0, + "value": 830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001227", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001227", + "period": 2025, + "raw_value": 617.0, + "value": 617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001228", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001228", + "period": 2025, + "raw_value": 1131.0, + "value": 1131.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001229", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001229", + "period": 2025, + "raw_value": 2162.0, + "value": 2162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001230", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001230", + "period": 2025, + "raw_value": 594.0, + "value": 594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001231", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001231", + "period": 2025, + "raw_value": 926.0, + "value": 926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001232", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001232", + "period": 2025, + "raw_value": 835.0, + "value": 835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001233", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001233", + "period": 2025, + "raw_value": 734.0, + "value": 734.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001234", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001234", + "period": 2025, + "raw_value": 553.0, + "value": 553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001235", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001235", + "period": 2025, + "raw_value": 956.0, + "value": 956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001236", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001236", + "period": 2025, + "raw_value": 1993.0, + "value": 1993.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001237", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001237", + "period": 2025, + "raw_value": 740.0, + "value": 740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001238", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001238", + "period": 2025, + "raw_value": 1480.0, + "value": 1480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001239", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001239", + "period": 2025, + "raw_value": 1064.0, + "value": 1064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001240", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001240", + "period": 2025, + "raw_value": 764.0, + "value": 764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001241", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001241", + "period": 2025, + "raw_value": 757.0, + "value": 757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001242", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001242", + "period": 2025, + "raw_value": 782.0, + "value": 782.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001243", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001243", + "period": 2025, + "raw_value": 913.0, + "value": 913.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001244", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001244", + "period": 2025, + "raw_value": 1377.0, + "value": 1377.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001245", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001245", + "period": 2025, + "raw_value": 986.0, + "value": 986.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001246", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001246", + "period": 2025, + "raw_value": 1166.0, + "value": 1166.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001247", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001247", + "period": 2025, + "raw_value": 726.0, + "value": 726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001248", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001248", + "period": 2025, + "raw_value": 1427.0, + "value": 1427.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001249", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001249", + "period": 2025, + "raw_value": 535.0, + "value": 535.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001250", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001250", + "period": 2025, + "raw_value": 664.0, + "value": 664.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001251", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001251", + "period": 2025, + "raw_value": 2152.0, + "value": 2152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001252", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001252", + "period": 2025, + "raw_value": 987.0, + "value": 987.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001253", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001253", + "period": 2025, + "raw_value": 919.0, + "value": 919.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001254", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001254", + "period": 2025, + "raw_value": 1289.0, + "value": 1289.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001255", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001255", + "period": 2025, + "raw_value": 1919.0, + "value": 1919.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001256", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001256", + "period": 2025, + "raw_value": 1538.0, + "value": 1538.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001257", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001257", + "period": 2025, + "raw_value": 1587.0, + "value": 1587.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001258", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001258", + "period": 2025, + "raw_value": 573.0, + "value": 573.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001259", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001259", + "period": 2025, + "raw_value": 2241.0, + "value": 2241.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001260", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001260", + "period": 2025, + "raw_value": 2022.0, + "value": 2022.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001261", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001261", + "period": 2025, + "raw_value": 1133.0, + "value": 1133.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001262", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001262", + "period": 2025, + "raw_value": 1775.0, + "value": 1775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001263", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001263", + "period": 2025, + "raw_value": 661.0, + "value": 661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001264", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001264", + "period": 2025, + "raw_value": 1399.0, + "value": 1399.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001265", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001265", + "period": 2025, + "raw_value": 1222.0, + "value": 1222.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001266", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001266", + "period": 2025, + "raw_value": 735.0, + "value": 735.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001267", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001267", + "period": 2025, + "raw_value": 1359.0, + "value": 1359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001268", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001268", + "period": 2025, + "raw_value": 409.0, + "value": 409.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001269", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001269", + "period": 2025, + "raw_value": 688.0, + "value": 688.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001270", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001270", + "period": 2025, + "raw_value": 1108.0, + "value": 1108.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001271", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001271", + "period": 2025, + "raw_value": 1441.0, + "value": 1441.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001272", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001272", + "period": 2025, + "raw_value": 1661.0, + "value": 1661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001273", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001273", + "period": 2025, + "raw_value": 838.0, + "value": 838.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001274", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001274", + "period": 2025, + "raw_value": 1555.0, + "value": 1555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001275", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001275", + "period": 2025, + "raw_value": 1071.0, + "value": 1071.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001276", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001276", + "period": 2025, + "raw_value": 1886.0, + "value": 1886.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001277", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001277", + "period": 2025, + "raw_value": 807.0, + "value": 807.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001278", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001278", + "period": 2025, + "raw_value": 1122.0, + "value": 1122.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001279", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001279", + "period": 2025, + "raw_value": 1833.0, + "value": 1833.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001280", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001280", + "period": 2025, + "raw_value": 475.0, + "value": 475.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001281", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001281", + "period": 2025, + "raw_value": 850.0, + "value": 850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001282", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001282", + "period": 2025, + "raw_value": 1018.0, + "value": 1018.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001283", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001283", + "period": 2025, + "raw_value": 721.0, + "value": 721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001284", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001284", + "period": 2025, + "raw_value": 935.0, + "value": 935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001285", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001285", + "period": 2025, + "raw_value": 632.0, + "value": 632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001286", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001286", + "period": 2025, + "raw_value": 1593.0, + "value": 1593.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001287", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001287", + "period": 2025, + "raw_value": 767.0, + "value": 767.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001288", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001288", + "period": 2025, + "raw_value": 819.0, + "value": 819.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001289", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001289", + "period": 2025, + "raw_value": 684.0, + "value": 684.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001290", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001290", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001291", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001291", + "period": 2025, + "raw_value": 596.0, + "value": 596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001292", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001292", + "period": 2025, + "raw_value": 1005.0, + "value": 1005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001293", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001293", + "period": 2025, + "raw_value": 1107.0, + "value": 1107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001294", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001294", + "period": 2025, + "raw_value": 630.0, + "value": 630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001295", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001295", + "period": 2025, + "raw_value": 1549.0, + "value": 1549.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001296", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001296", + "period": 2025, + "raw_value": 1106.0, + "value": 1106.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001297", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001297", + "period": 2025, + "raw_value": 1804.0, + "value": 1804.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001298", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001298", + "period": 2025, + "raw_value": 762.0, + "value": 762.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001299", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001299", + "period": 2025, + "raw_value": 1495.0, + "value": 1495.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001300", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001300", + "period": 2025, + "raw_value": 1337.0, + "value": 1337.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001301", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001301", + "period": 2025, + "raw_value": 1891.0, + "value": 1891.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001302", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001302", + "period": 2025, + "raw_value": 1526.0, + "value": 1526.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001303", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001303", + "period": 2025, + "raw_value": 816.0, + "value": 816.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001304", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001304", + "period": 2025, + "raw_value": 721.0, + "value": 721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001305", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001305", + "period": 2025, + "raw_value": 1714.0, + "value": 1714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001306", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001306", + "period": 2025, + "raw_value": 1770.0, + "value": 1770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001307", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001307", + "period": 2025, + "raw_value": 1459.0, + "value": 1459.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001308", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001308", + "period": 2025, + "raw_value": 1149.0, + "value": 1149.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001309", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001309", + "period": 2025, + "raw_value": 532.0, + "value": 532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001310", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001310", + "period": 2025, + "raw_value": 1346.0, + "value": 1346.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001311", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001311", + "period": 2025, + "raw_value": 1152.0, + "value": 1152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001312", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001312", + "period": 2025, + "raw_value": 977.0, + "value": 977.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001313", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001313", + "period": 2025, + "raw_value": 1884.0, + "value": 1884.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001314", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001314", + "period": 2025, + "raw_value": 1778.0, + "value": 1778.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001315", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001315", + "period": 2025, + "raw_value": 1457.0, + "value": 1457.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001316", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001316", + "period": 2025, + "raw_value": 584.0, + "value": 584.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001317", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001317", + "period": 2025, + "raw_value": 1705.0, + "value": 1705.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001318", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001318", + "period": 2025, + "raw_value": 799.0, + "value": 799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001319", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001319", + "period": 2025, + "raw_value": 1050.0, + "value": 1050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001320", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001320", + "period": 2025, + "raw_value": 1841.0, + "value": 1841.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001321", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001321", + "period": 2025, + "raw_value": 921.0, + "value": 921.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001322", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001322", + "period": 2025, + "raw_value": 568.0, + "value": 568.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001323", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001323", + "period": 2025, + "raw_value": 2589.0, + "value": 2589.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001324", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001324", + "period": 2025, + "raw_value": 1003.0, + "value": 1003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001325", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001325", + "period": 2025, + "raw_value": 1394.0, + "value": 1394.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001326", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001326", + "period": 2025, + "raw_value": 1621.0, + "value": 1621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001327", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001327", + "period": 2025, + "raw_value": 1734.0, + "value": 1734.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001328", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001328", + "period": 2025, + "raw_value": 2169.0, + "value": 2169.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001329", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001329", + "period": 2025, + "raw_value": 1448.0, + "value": 1448.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001330", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001330", + "period": 2025, + "raw_value": 807.0, + "value": 807.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001331", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001331", + "period": 2025, + "raw_value": 2051.0, + "value": 2051.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001332", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001332", + "period": 2025, + "raw_value": 1818.0, + "value": 1818.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001333", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001333", + "period": 2025, + "raw_value": 1246.0, + "value": 1246.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001334", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001334", + "period": 2025, + "raw_value": 1462.0, + "value": 1462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001335", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001335", + "period": 2025, + "raw_value": 710.0, + "value": 710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001336", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001336", + "period": 2025, + "raw_value": 1433.0, + "value": 1433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001337", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001337", + "period": 2025, + "raw_value": 1231.0, + "value": 1231.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001338", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001338", + "period": 2025, + "raw_value": 2359.0, + "value": 2359.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001339", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001339", + "period": 2025, + "raw_value": 1972.0, + "value": 1972.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001340", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001340", + "period": 2025, + "raw_value": 1561.0, + "value": 1561.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001341", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001341", + "period": 2025, + "raw_value": 1700.0, + "value": 1700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001342", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001342", + "period": 2025, + "raw_value": 863.0, + "value": 863.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001343", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001343", + "period": 2025, + "raw_value": 942.0, + "value": 942.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001344", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001344", + "period": 2025, + "raw_value": 1232.0, + "value": 1232.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001345", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001345", + "period": 2025, + "raw_value": 1433.0, + "value": 1433.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001346", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001346", + "period": 2025, + "raw_value": 1946.0, + "value": 1946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001347", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001347", + "period": 2025, + "raw_value": 662.0, + "value": 662.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001348", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001348", + "period": 2025, + "raw_value": 594.0, + "value": 594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001349", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001349", + "period": 2025, + "raw_value": 1024.0, + "value": 1024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001350", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001350", + "period": 2025, + "raw_value": 1066.0, + "value": 1066.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001351", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001351", + "period": 2025, + "raw_value": 676.0, + "value": 676.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001352", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001352", + "period": 2025, + "raw_value": 2049.0, + "value": 2049.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001353", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001353", + "period": 2025, + "raw_value": 1919.0, + "value": 1919.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001354", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001354", + "period": 2025, + "raw_value": 879.0, + "value": 879.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001355", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001355", + "period": 2025, + "raw_value": 1405.0, + "value": 1405.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001356", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001356", + "period": 2025, + "raw_value": 689.0, + "value": 689.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001357", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001357", + "period": 2025, + "raw_value": 779.0, + "value": 779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001358", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001358", + "period": 2025, + "raw_value": 1094.0, + "value": 1094.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001359", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001359", + "period": 2025, + "raw_value": 629.0, + "value": 629.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001360", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001360", + "period": 2025, + "raw_value": 406.0, + "value": 406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001361", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001361", + "period": 2025, + "raw_value": 1005.0, + "value": 1005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001362", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001362", + "period": 2025, + "raw_value": 548.0, + "value": 548.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001363", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001363", + "period": 2025, + "raw_value": 635.0, + "value": 635.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001364", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001364", + "period": 2025, + "raw_value": 677.0, + "value": 677.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001365", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001365", + "period": 2025, + "raw_value": 729.0, + "value": 729.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001366", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001366", + "period": 2025, + "raw_value": 580.0, + "value": 580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001367", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001367", + "period": 2025, + "raw_value": 2257.0, + "value": 2257.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001368", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001368", + "period": 2025, + "raw_value": 1200.0, + "value": 1200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001369", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001369", + "period": 2025, + "raw_value": 1508.0, + "value": 1508.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001370", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001370", + "period": 2025, + "raw_value": 948.0, + "value": 948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001371", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001371", + "period": 2025, + "raw_value": 1594.0, + "value": 1594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001372", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001372", + "period": 2025, + "raw_value": 979.0, + "value": 979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001373", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001373", + "period": 2025, + "raw_value": 648.0, + "value": 648.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001374", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001374", + "period": 2025, + "raw_value": 527.0, + "value": 527.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001375", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001375", + "period": 2025, + "raw_value": 894.0, + "value": 894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001376", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001376", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001377", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001377", + "period": 2025, + "raw_value": 2190.0, + "value": 2190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001378", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001378", + "period": 2025, + "raw_value": 1855.0, + "value": 1855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001379", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001379", + "period": 2025, + "raw_value": 786.0, + "value": 786.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001380", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001380", + "period": 2025, + "raw_value": 939.0, + "value": 939.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001381", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001381", + "period": 2025, + "raw_value": 791.0, + "value": 791.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001382", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001382", + "period": 2025, + "raw_value": 1335.0, + "value": 1335.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001383", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001383", + "period": 2025, + "raw_value": 1309.0, + "value": 1309.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001384", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001384", + "period": 2025, + "raw_value": 742.0, + "value": 742.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001385", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001385", + "period": 2025, + "raw_value": 973.0, + "value": 973.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001386", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001386", + "period": 2025, + "raw_value": 604.0, + "value": 604.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001387", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001387", + "period": 2025, + "raw_value": 926.0, + "value": 926.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001388", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001388", + "period": 2025, + "raw_value": 634.0, + "value": 634.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001389", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001389", + "period": 2025, + "raw_value": 1205.0, + "value": 1205.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001390", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001390", + "period": 2025, + "raw_value": 1140.0, + "value": 1140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001391", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001391", + "period": 2025, + "raw_value": 828.0, + "value": 828.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001392", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001392", + "period": 2025, + "raw_value": 463.0, + "value": 463.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001393", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001393", + "period": 2025, + "raw_value": 764.0, + "value": 764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001394", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001394", + "period": 2025, + "raw_value": 614.0, + "value": 614.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001395", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001395", + "period": 2025, + "raw_value": 633.0, + "value": 633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001396", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001396", + "period": 2025, + "raw_value": 699.0, + "value": 699.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001397", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001397", + "period": 2025, + "raw_value": 746.0, + "value": 746.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001398", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001398", + "period": 2025, + "raw_value": 835.0, + "value": 835.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001399", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001399", + "period": 2025, + "raw_value": 499.0, + "value": 499.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001400", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001400", + "period": 2025, + "raw_value": 989.0, + "value": 989.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001401", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001401", + "period": 2025, + "raw_value": 1253.0, + "value": 1253.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001402", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001402", + "period": 2025, + "raw_value": 662.0, + "value": 662.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001403", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001403", + "period": 2025, + "raw_value": 861.0, + "value": 861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001404", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001404", + "period": 2025, + "raw_value": 854.0, + "value": 854.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001405", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001405", + "period": 2025, + "raw_value": 1034.0, + "value": 1034.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001406", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001406", + "period": 2025, + "raw_value": 1792.0, + "value": 1792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001407", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001407", + "period": 2025, + "raw_value": 1027.0, + "value": 1027.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001408", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001408", + "period": 2025, + "raw_value": 1064.0, + "value": 1064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001409", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001409", + "period": 2025, + "raw_value": 1295.0, + "value": 1295.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001410", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001410", + "period": 2025, + "raw_value": 2069.0, + "value": 2069.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001411", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001411", + "period": 2025, + "raw_value": 2004.0, + "value": 2004.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001412", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001412", + "period": 2025, + "raw_value": 1390.0, + "value": 1390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001413", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001413", + "period": 2025, + "raw_value": 1229.0, + "value": 1229.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001414", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001414", + "period": 2025, + "raw_value": 668.0, + "value": 668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001415", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001415", + "period": 2025, + "raw_value": 1722.0, + "value": 1722.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001416", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001416", + "period": 2025, + "raw_value": 1967.0, + "value": 1967.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001417", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001417", + "period": 2025, + "raw_value": 850.0, + "value": 850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001418", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001418", + "period": 2025, + "raw_value": 721.0, + "value": 721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001419", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001419", + "period": 2025, + "raw_value": 1139.0, + "value": 1139.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001420", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001420", + "period": 2025, + "raw_value": 540.0, + "value": 540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001421", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001421", + "period": 2025, + "raw_value": 1918.0, + "value": 1918.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001422", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001422", + "period": 2025, + "raw_value": 1374.0, + "value": 1374.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001423", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001423", + "period": 2025, + "raw_value": 675.0, + "value": 675.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001424", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001424", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001425", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001425", + "period": 2025, + "raw_value": 2178.0, + "value": 2178.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001426", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001426", + "period": 2025, + "raw_value": 1286.0, + "value": 1286.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001427", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001427", + "period": 2025, + "raw_value": 1633.0, + "value": 1633.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001428", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001428", + "period": 2025, + "raw_value": 1368.0, + "value": 1368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001429", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001429", + "period": 2025, + "raw_value": 903.0, + "value": 903.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001430", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001430", + "period": 2025, + "raw_value": 2218.0, + "value": 2218.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001431", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001431", + "period": 2025, + "raw_value": 1155.0, + "value": 1155.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001432", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001432", + "period": 2025, + "raw_value": 1532.0, + "value": 1532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001433", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001433", + "period": 2025, + "raw_value": 1897.0, + "value": 1897.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001434", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001434", + "period": 2025, + "raw_value": 1133.0, + "value": 1133.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001435", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001435", + "period": 2025, + "raw_value": 2227.0, + "value": 2227.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001436", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001436", + "period": 2025, + "raw_value": 1293.0, + "value": 1293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001437", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001437", + "period": 2025, + "raw_value": 569.0, + "value": 569.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001438", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001438", + "period": 2025, + "raw_value": 1185.0, + "value": 1185.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001439", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001439", + "period": 2025, + "raw_value": 695.0, + "value": 695.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001440", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001440", + "period": 2025, + "raw_value": 1397.0, + "value": 1397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001441", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001441", + "period": 2025, + "raw_value": 1051.0, + "value": 1051.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001442", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001442", + "period": 2025, + "raw_value": 617.0, + "value": 617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001443", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001443", + "period": 2025, + "raw_value": 653.0, + "value": 653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001444", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001444", + "period": 2025, + "raw_value": 613.0, + "value": 613.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001445", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001445", + "period": 2025, + "raw_value": 660.0, + "value": 660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001446", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001446", + "period": 2025, + "raw_value": 1785.0, + "value": 1785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001447", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001447", + "period": 2025, + "raw_value": 1158.0, + "value": 1158.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001448", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001448", + "period": 2025, + "raw_value": 1156.0, + "value": 1156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001449", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001449", + "period": 2025, + "raw_value": 621.0, + "value": 621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001450", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001450", + "period": 2025, + "raw_value": 1173.0, + "value": 1173.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001451", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001451", + "period": 2025, + "raw_value": 937.0, + "value": 937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001452", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001452", + "period": 2025, + "raw_value": 1883.0, + "value": 1883.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001453", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001453", + "period": 2025, + "raw_value": 992.0, + "value": 992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001454", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001454", + "period": 2025, + "raw_value": 637.0, + "value": 637.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001455", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001455", + "period": 2025, + "raw_value": 1210.0, + "value": 1210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001456", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001456", + "period": 2025, + "raw_value": 696.0, + "value": 696.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001457", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001457", + "period": 2025, + "raw_value": 560.0, + "value": 560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001458", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001458", + "period": 2025, + "raw_value": 563.0, + "value": 563.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001459", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001459", + "period": 2025, + "raw_value": 2069.0, + "value": 2069.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001460", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001460", + "period": 2025, + "raw_value": 702.0, + "value": 702.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001461", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001461", + "period": 2025, + "raw_value": 1118.0, + "value": 1118.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001462", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001462", + "period": 2025, + "raw_value": 1399.0, + "value": 1399.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001463", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001463", + "period": 2025, + "raw_value": 596.0, + "value": 596.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001464", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001464", + "period": 2025, + "raw_value": 779.0, + "value": 779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001465", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001465", + "period": 2025, + "raw_value": 621.0, + "value": 621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001466", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001466", + "period": 2025, + "raw_value": 2249.0, + "value": 2249.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001467", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001467", + "period": 2025, + "raw_value": 865.0, + "value": 865.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001468", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001468", + "period": 2025, + "raw_value": 375.0, + "value": 375.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001469", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001469", + "period": 2025, + "raw_value": 1764.0, + "value": 1764.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001470", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001470", + "period": 2025, + "raw_value": 1505.0, + "value": 1505.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001471", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001471", + "period": 2025, + "raw_value": 1053.0, + "value": 1053.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001472", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001472", + "period": 2025, + "raw_value": 863.0, + "value": 863.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001473", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001473", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001474", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001474", + "period": 2025, + "raw_value": 1428.0, + "value": 1428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001475", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001475", + "period": 2025, + "raw_value": 572.0, + "value": 572.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001476", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001476", + "period": 2025, + "raw_value": 711.0, + "value": 711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001477", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001477", + "period": 2025, + "raw_value": 1779.0, + "value": 1779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001478", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001478", + "period": 2025, + "raw_value": 1831.0, + "value": 1831.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001479", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001479", + "period": 2025, + "raw_value": 599.0, + "value": 599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001480", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001480", + "period": 2025, + "raw_value": 1143.0, + "value": 1143.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001481", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001481", + "period": 2025, + "raw_value": 571.0, + "value": 571.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001482", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001482", + "period": 2025, + "raw_value": 532.0, + "value": 532.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001483", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001483", + "period": 2025, + "raw_value": 848.0, + "value": 848.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001484", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001484", + "period": 2025, + "raw_value": 771.0, + "value": 771.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001485", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001485", + "period": 2025, + "raw_value": 986.0, + "value": 986.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001486", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001486", + "period": 2025, + "raw_value": 838.0, + "value": 838.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001487", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001487", + "period": 2025, + "raw_value": 1048.0, + "value": 1048.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001488", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001488", + "period": 2025, + "raw_value": 668.0, + "value": 668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001489", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001489", + "period": 2025, + "raw_value": 654.0, + "value": 654.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001490", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001490", + "period": 2025, + "raw_value": 544.0, + "value": 544.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001491", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001491", + "period": 2025, + "raw_value": 725.0, + "value": 725.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001492", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001492", + "period": 2025, + "raw_value": 1400.0, + "value": 1400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001493", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001493", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001494", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001494", + "period": 2025, + "raw_value": 679.0, + "value": 679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001495", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001495", + "period": 2025, + "raw_value": 594.0, + "value": 594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001496", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001496", + "period": 2025, + "raw_value": 644.0, + "value": 644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001497", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001497", + "period": 2025, + "raw_value": 935.0, + "value": 935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001498", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001498", + "period": 2025, + "raw_value": 889.0, + "value": 889.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001499", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001499", + "period": 2025, + "raw_value": 1421.0, + "value": 1421.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001500", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001500", + "period": 2025, + "raw_value": 1526.0, + "value": 1526.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001501", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001501", + "period": 2025, + "raw_value": 1516.0, + "value": 1516.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001502", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001502", + "period": 2025, + "raw_value": 961.0, + "value": 961.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001503", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001503", + "period": 2025, + "raw_value": 1979.0, + "value": 1979.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001504", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001504", + "period": 2025, + "raw_value": 1001.0, + "value": 1001.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001505", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001505", + "period": 2025, + "raw_value": 886.0, + "value": 886.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001506", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001506", + "period": 2025, + "raw_value": 1037.0, + "value": 1037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001507", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001507", + "period": 2025, + "raw_value": 693.0, + "value": 693.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001508", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001508", + "period": 2025, + "raw_value": 1139.0, + "value": 1139.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001509", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001509", + "period": 2025, + "raw_value": 1278.0, + "value": 1278.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001510", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001510", + "period": 2025, + "raw_value": 1355.0, + "value": 1355.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001511", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001511", + "period": 2025, + "raw_value": 867.0, + "value": 867.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001512", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001512", + "period": 2025, + "raw_value": 738.0, + "value": 738.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001513", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001513", + "period": 2025, + "raw_value": 815.0, + "value": 815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001514", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001514", + "period": 2025, + "raw_value": 576.0, + "value": 576.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001515", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001515", + "period": 2025, + "raw_value": 1343.0, + "value": 1343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001516", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001516", + "period": 2025, + "raw_value": 1064.0, + "value": 1064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001517", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001517", + "period": 2025, + "raw_value": 1485.0, + "value": 1485.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001518", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001518", + "period": 2025, + "raw_value": 1623.0, + "value": 1623.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001519", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001519", + "period": 2025, + "raw_value": 587.0, + "value": 587.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001520", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001520", + "period": 2025, + "raw_value": 1883.0, + "value": 1883.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001521", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001521", + "period": 2025, + "raw_value": 1430.0, + "value": 1430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001522", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001522", + "period": 2025, + "raw_value": 984.0, + "value": 984.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001523", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001523", + "period": 2025, + "raw_value": 653.0, + "value": 653.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001524", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001524", + "period": 2025, + "raw_value": 1137.0, + "value": 1137.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001525", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001525", + "period": 2025, + "raw_value": 2005.0, + "value": 2005.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001526", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001526", + "period": 2025, + "raw_value": 670.0, + "value": 670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001527", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001527", + "period": 2025, + "raw_value": 1769.0, + "value": 1769.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001528", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001528", + "period": 2025, + "raw_value": 1234.0, + "value": 1234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001529", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001529", + "period": 2025, + "raw_value": 683.0, + "value": 683.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001530", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001530", + "period": 2025, + "raw_value": 693.0, + "value": 693.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001531", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001531", + "period": 2025, + "raw_value": 1446.0, + "value": 1446.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001532", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001532", + "period": 2025, + "raw_value": 543.0, + "value": 543.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001533", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001533", + "period": 2025, + "raw_value": 594.0, + "value": 594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001534", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001534", + "period": 2025, + "raw_value": 793.0, + "value": 793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001535", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001535", + "period": 2025, + "raw_value": 598.0, + "value": 598.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001536", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001536", + "period": 2025, + "raw_value": 1028.0, + "value": 1028.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001537", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001537", + "period": 2025, + "raw_value": 1234.0, + "value": 1234.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001538", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001538", + "period": 2025, + "raw_value": 998.0, + "value": 998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001539", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001539", + "period": 2025, + "raw_value": 553.0, + "value": 553.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001540", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001540", + "period": 2025, + "raw_value": 953.0, + "value": 953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001541", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001541", + "period": 2025, + "raw_value": 1544.0, + "value": 1544.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001542", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001542", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001543", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001543", + "period": 2025, + "raw_value": 971.0, + "value": 971.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001544", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001544", + "period": 2025, + "raw_value": 695.0, + "value": 695.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001545", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001545", + "period": 2025, + "raw_value": 737.0, + "value": 737.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001546", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001546", + "period": 2025, + "raw_value": 1518.0, + "value": 1518.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001547", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001547", + "period": 2025, + "raw_value": 1976.0, + "value": 1976.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001548", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001548", + "period": 2025, + "raw_value": 775.0, + "value": 775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001549", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001549", + "period": 2025, + "raw_value": 647.0, + "value": 647.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001550", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001550", + "period": 2025, + "raw_value": 1037.0, + "value": 1037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001551", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001551", + "period": 2025, + "raw_value": 1320.0, + "value": 1320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001552", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001552", + "period": 2025, + "raw_value": 814.0, + "value": 814.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001553", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001553", + "period": 2025, + "raw_value": 2998.0, + "value": 2998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001554", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001554", + "period": 2025, + "raw_value": 799.0, + "value": 799.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001555", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001555", + "period": 2025, + "raw_value": 758.0, + "value": 758.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001556", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001556", + "period": 2025, + "raw_value": 672.0, + "value": 672.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001557", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001557", + "period": 2025, + "raw_value": 944.0, + "value": 944.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001558", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001558", + "period": 2025, + "raw_value": 1221.0, + "value": 1221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001559", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001559", + "period": 2025, + "raw_value": 1661.0, + "value": 1661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001560", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001560", + "period": 2025, + "raw_value": 1322.0, + "value": 1322.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001561", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001561", + "period": 2025, + "raw_value": 1400.0, + "value": 1400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001562", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001562", + "period": 2025, + "raw_value": 2304.0, + "value": 2304.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001563", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001563", + "period": 2025, + "raw_value": 1852.0, + "value": 1852.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001564", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001564", + "period": 2025, + "raw_value": 1108.0, + "value": 1108.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001565", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001565", + "period": 2025, + "raw_value": 877.0, + "value": 877.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001566", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001566", + "period": 2025, + "raw_value": 864.0, + "value": 864.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001567", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001567", + "period": 2025, + "raw_value": 1428.0, + "value": 1428.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001568", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001568", + "period": 2025, + "raw_value": 1170.0, + "value": 1170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001569", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001569", + "period": 2025, + "raw_value": 628.0, + "value": 628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001570", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001570", + "period": 2025, + "raw_value": 713.0, + "value": 713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001571", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001571", + "period": 2025, + "raw_value": 1297.0, + "value": 1297.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001572", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001572", + "period": 2025, + "raw_value": 626.0, + "value": 626.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001573", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001573", + "period": 2025, + "raw_value": 1112.0, + "value": 1112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001574", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001574", + "period": 2025, + "raw_value": 1616.0, + "value": 1616.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001575", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001575", + "period": 2025, + "raw_value": 680.0, + "value": 680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001576", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001576", + "period": 2025, + "raw_value": 2479.0, + "value": 2479.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001577", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001577", + "period": 2025, + "raw_value": 1025.0, + "value": 1025.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001578", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001578", + "period": 2025, + "raw_value": 943.0, + "value": 943.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001579", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001579", + "period": 2025, + "raw_value": 744.0, + "value": 744.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001580", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001580", + "period": 2025, + "raw_value": 492.0, + "value": 492.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001581", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001581", + "period": 2025, + "raw_value": 1183.0, + "value": 1183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001582", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001582", + "period": 2025, + "raw_value": 427.0, + "value": 427.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001583", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001583", + "period": 2025, + "raw_value": 1042.0, + "value": 1042.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001584", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001584", + "period": 2025, + "raw_value": 1221.0, + "value": 1221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001585", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001585", + "period": 2025, + "raw_value": 1406.0, + "value": 1406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001586", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001586", + "period": 2025, + "raw_value": 692.0, + "value": 692.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001587", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001587", + "period": 2025, + "raw_value": 615.0, + "value": 615.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001588", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001588", + "period": 2025, + "raw_value": 757.0, + "value": 757.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001589", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001589", + "period": 2025, + "raw_value": 522.0, + "value": 522.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001590", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001590", + "period": 2025, + "raw_value": 815.0, + "value": 815.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001591", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001591", + "period": 2025, + "raw_value": 661.0, + "value": 661.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001592", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001592", + "period": 2025, + "raw_value": 692.0, + "value": 692.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001593", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001593", + "period": 2025, + "raw_value": 477.0, + "value": 477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001594", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001594", + "period": 2025, + "raw_value": 1721.0, + "value": 1721.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001595", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001595", + "period": 2025, + "raw_value": 2290.0, + "value": 2290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001596", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001596", + "period": 2025, + "raw_value": 1569.0, + "value": 1569.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001597", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001597", + "period": 2025, + "raw_value": 1074.0, + "value": 1074.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001598", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001598", + "period": 2025, + "raw_value": 1341.0, + "value": 1341.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001599", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001599", + "period": 2025, + "raw_value": 879.0, + "value": 879.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001600", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001600", + "period": 2025, + "raw_value": 1065.0, + "value": 1065.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001601", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001601", + "period": 2025, + "raw_value": 1037.0, + "value": 1037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001602", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001602", + "period": 2025, + "raw_value": 1779.0, + "value": 1779.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001603", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001603", + "period": 2025, + "raw_value": 973.0, + "value": 973.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001604", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001604", + "period": 2025, + "raw_value": 960.0, + "value": 960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@E14001605", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "E14001605", + "period": 2025, + "raw_value": 432.0, + "value": 432.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000001", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000001", + "period": 2025, + "raw_value": 1293.0, + "value": 1293.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000002", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000002", + "period": 2025, + "raw_value": 2036.0, + "value": 2036.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000003", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000003", + "period": 2025, + "raw_value": 1028.0, + "value": 1028.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000004", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000004", + "period": 2025, + "raw_value": 2343.0, + "value": 2343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000005", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000005", + "period": 2025, + "raw_value": 990.0, + "value": 990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000006", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000006", + "period": 2025, + "raw_value": 1360.0, + "value": 1360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000007", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000007", + "period": 2025, + "raw_value": 1235.0, + "value": 1235.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000008", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000008", + "period": 2025, + "raw_value": 1999.0, + "value": 1999.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000009", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000009", + "period": 2025, + "raw_value": 1045.0, + "value": 1045.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000010", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000010", + "period": 2025, + "raw_value": 1138.0, + "value": 1138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000011", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000011", + "period": 2025, + "raw_value": 1477.0, + "value": 1477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000012", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000012", + "period": 2025, + "raw_value": 1264.0, + "value": 1264.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000013", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000013", + "period": 2025, + "raw_value": 898.0, + "value": 898.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000014", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000014", + "period": 2025, + "raw_value": 1046.0, + "value": 1046.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000015", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000015", + "period": 2025, + "raw_value": 1159.0, + "value": 1159.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000016", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000016", + "period": 2025, + "raw_value": 1098.0, + "value": 1098.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000017", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000017", + "period": 2025, + "raw_value": 1611.0, + "value": 1611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@N05000018", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "N05000018", + "period": 2025, + "raw_value": 1325.0, + "value": 1325.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000021", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000021", + "period": 2025, + "raw_value": 454.0, + "value": 454.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000027", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000027", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000045", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000045", + "period": 2025, + "raw_value": 760.0, + "value": 760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000048", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000048", + "period": 2025, + "raw_value": 977.0, + "value": 977.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000051", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000051", + "period": 2025, + "raw_value": 221.0, + "value": 221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000060", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000060", + "period": 2025, + "raw_value": 1006.0, + "value": 1006.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000061", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000061", + "period": 2025, + "raw_value": 671.0, + "value": 671.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000062", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000062", + "period": 2025, + "raw_value": 748.0, + "value": 748.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000063", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000063", + "period": 2025, + "raw_value": 984.0, + "value": 984.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000064", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000064", + "period": 2025, + "raw_value": 880.0, + "value": 880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000065", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000065", + "period": 2025, + "raw_value": 713.0, + "value": 713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000066", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000066", + "period": 2025, + "raw_value": 843.0, + "value": 843.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000067", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000067", + "period": 2025, + "raw_value": 616.0, + "value": 616.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000068", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000068", + "period": 2025, + "raw_value": 850.0, + "value": 850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000069", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000069", + "period": 2025, + "raw_value": 673.0, + "value": 673.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000070", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000070", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000071", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000071", + "period": 2025, + "raw_value": 917.0, + "value": 917.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000072", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000072", + "period": 2025, + "raw_value": 803.0, + "value": 803.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000073", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000073", + "period": 2025, + "raw_value": 814.0, + "value": 814.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000074", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000074", + "period": 2025, + "raw_value": 599.0, + "value": 599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000075", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000075", + "period": 2025, + "raw_value": 1191.0, + "value": 1191.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000076", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000076", + "period": 2025, + "raw_value": 700.0, + "value": 700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000077", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000077", + "period": 2025, + "raw_value": 680.0, + "value": 680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000078", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000078", + "period": 2025, + "raw_value": 920.0, + "value": 920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000079", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000079", + "period": 2025, + "raw_value": 905.0, + "value": 905.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000080", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000080", + "period": 2025, + "raw_value": 464.0, + "value": 464.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000081", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000081", + "period": 2025, + "raw_value": 743.0, + "value": 743.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000082", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000082", + "period": 2025, + "raw_value": 466.0, + "value": 466.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000083", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000083", + "period": 2025, + "raw_value": 855.0, + "value": 855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000084", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000084", + "period": 2025, + "raw_value": 1410.0, + "value": 1410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000085", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000085", + "period": 2025, + "raw_value": 1237.0, + "value": 1237.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000086", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000086", + "period": 2025, + "raw_value": 1652.0, + "value": 1652.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000087", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000087", + "period": 2025, + "raw_value": 978.0, + "value": 978.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000088", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000088", + "period": 2025, + "raw_value": 1256.0, + "value": 1256.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000089", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000089", + "period": 2025, + "raw_value": 1082.0, + "value": 1082.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000090", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000090", + "period": 2025, + "raw_value": 1165.0, + "value": 1165.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000091", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000091", + "period": 2025, + "raw_value": 403.0, + "value": 403.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000092", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000092", + "period": 2025, + "raw_value": 937.0, + "value": 937.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000093", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000093", + "period": 2025, + "raw_value": 909.0, + "value": 909.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000094", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000094", + "period": 2025, + "raw_value": 741.0, + "value": 741.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000095", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000095", + "period": 2025, + "raw_value": 893.0, + "value": 893.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000096", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000096", + "period": 2025, + "raw_value": 668.0, + "value": 668.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000097", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000097", + "period": 2025, + "raw_value": 376.0, + "value": 376.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000098", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000098", + "period": 2025, + "raw_value": 636.0, + "value": 636.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000099", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000099", + "period": 2025, + "raw_value": 997.0, + "value": 997.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000100", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000100", + "period": 2025, + "raw_value": 545.0, + "value": 545.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000101", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000101", + "period": 2025, + "raw_value": 843.0, + "value": 843.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000102", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000102", + "period": 2025, + "raw_value": 910.0, + "value": 910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000103", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000103", + "period": 2025, + "raw_value": 687.0, + "value": 687.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000104", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000104", + "period": 2025, + "raw_value": 838.0, + "value": 838.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000105", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000105", + "period": 2025, + "raw_value": 625.0, + "value": 625.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000106", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000106", + "period": 2025, + "raw_value": 1097.0, + "value": 1097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000107", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000107", + "period": 2025, + "raw_value": 935.0, + "value": 935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000108", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000108", + "period": 2025, + "raw_value": 714.0, + "value": 714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000109", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000109", + "period": 2025, + "raw_value": 824.0, + "value": 824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000110", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000110", + "period": 2025, + "raw_value": 968.0, + "value": 968.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@S14000111", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "S14000111", + "period": 2025, + "raw_value": 355.0, + "value": 355.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000081", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000081", + "period": 2025, + "raw_value": 1389.0, + "value": 1389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000082", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000082", + "period": 2025, + "raw_value": 994.0, + "value": 994.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000083", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000083", + "period": 2025, + "raw_value": 875.0, + "value": 875.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000084", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000084", + "period": 2025, + "raw_value": 1498.0, + "value": 1498.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000085", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000085", + "period": 2025, + "raw_value": 782.0, + "value": 782.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000086", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000086", + "period": 2025, + "raw_value": 887.0, + "value": 887.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000087", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000087", + "period": 2025, + "raw_value": 846.0, + "value": 846.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000088", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000088", + "period": 2025, + "raw_value": 1152.0, + "value": 1152.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000089", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000089", + "period": 2025, + "raw_value": 1477.0, + "value": 1477.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000090", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000090", + "period": 2025, + "raw_value": 667.0, + "value": 667.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000091", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000091", + "period": 2025, + "raw_value": 1127.0, + "value": 1127.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000092", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000092", + "period": 2025, + "raw_value": 1355.0, + "value": 1355.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000093", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000093", + "period": 2025, + "raw_value": 785.0, + "value": 785.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000094", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000094", + "period": 2025, + "raw_value": 829.0, + "value": 829.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000095", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000095", + "period": 2025, + "raw_value": 1345.0, + "value": 1345.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000096", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000096", + "period": 2025, + "raw_value": 817.0, + "value": 817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000097", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000097", + "period": 2025, + "raw_value": 768.0, + "value": 768.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000098", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000098", + "period": 2025, + "raw_value": 1114.0, + "value": 1114.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000099", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000099", + "period": 2025, + "raw_value": 1403.0, + "value": 1403.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000100", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000100", + "period": 2025, + "raw_value": 1062.0, + "value": 1062.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000101", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000101", + "period": 2025, + "raw_value": 677.0, + "value": 677.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000102", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000102", + "period": 2025, + "raw_value": 948.0, + "value": 948.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000103", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000103", + "period": 2025, + "raw_value": 1222.0, + "value": 1222.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000104", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000104", + "period": 2025, + "raw_value": 1637.0, + "value": 1637.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000105", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000105", + "period": 2025, + "raw_value": 1055.0, + "value": 1055.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000106", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000106", + "period": 2025, + "raw_value": 1128.0, + "value": 1128.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000107", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000107", + "period": 2025, + "raw_value": 1443.0, + "value": 1443.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000108", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000108", + "period": 2025, + "raw_value": 1658.0, + "value": 1658.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000109", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000109", + "period": 2025, + "raw_value": 1233.0, + "value": 1233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000110", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000110", + "period": 2025, + "raw_value": 1031.0, + "value": 1031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000111", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000111", + "period": 2025, + "raw_value": 1079.0, + "value": 1079.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_hh_3plus_children@W07000112", + "metric": "uc_hh_3plus_children", + "area_type": "constituency", + "geography_id": "W07000112", + "period": 2025, + "raw_value": 700.0, + "value": 700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 67800000.0, + "value": 71825439.25738148, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 73200000.0, + "value": 77546049.4637216, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 78000000.0, + "value": 82631036.31380172, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 148800000.0, + "value": 157634592.35248327, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 70000000.0, + "value": 74156058.23033488, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 78800000.0, + "value": 83478534.1221484, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000007", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 220500000.0, + "value": 233591583.42555484, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 84000000.0, + "value": 88987269.87640184, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 81500000.0, + "value": 86338839.22531846, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 129600000.0, + "value": 137294644.95216286, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 389300000.0, + "value": 412413620.98670524, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 90400000.0, + "value": 95767252.34317532, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 112800000.0, + "value": 119497190.97688247, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 245000000.0, + "value": 259546203.80617204, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000015", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 153600000.0, + "value": 162719579.20256338, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000016", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 182000000.0, + "value": 192805751.39887068, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000017", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 72600000.0, + "value": 76910426.1074616, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 203000000.0, + "value": 215052568.86797112, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000019", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 295100000.0, + "value": 312620754.05388314, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000020", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 144000000.0, + "value": 152549605.50240317, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 161600000.0, + "value": 171194557.2860302, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000022", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 388700000.0, + "value": 411777997.6304452, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000023", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 666900000.0, + "value": 706495360.4830047, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000024", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 278400000.0, + "value": 294929237.30464613, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000025", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 361600000.0, + "value": 383069009.3727013, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000026", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 226600000.0, + "value": 240053754.21419832, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000027", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 275702025.28009194, + "value": 292071077.7270251, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000030", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 221100000.0, + "value": 234227206.78181484, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000031", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 233000000.0, + "value": 246833736.68097177, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000032", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 226600000.0, + "value": 240053754.21419832, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000033", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 247000000.0, + "value": 261664948.32703876, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000034", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 283200000.0, + "value": 300014224.1547262, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000035", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 345600000.0, + "value": 366119053.2057676, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000036", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 133000000.0, + "value": 140896510.63763624, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000037", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 331000000.0, + "value": 350652218.2034406, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000038", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 185600000.0, + "value": 196619491.53643075, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000039", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 172800000.0, + "value": 183059526.6028838, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000040", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 340200000.0, + "value": 360398442.9994275, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000041", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 260100000.0, + "value": 275542724.9387157, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000042", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 288400000.0, + "value": 305522959.90897965, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000043", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 506000000.0, + "value": 536042363.7792778, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000044", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 238700000.0, + "value": 252872158.5654419, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000045", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 246000000.0, + "value": 260605576.06660542, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000046", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 172000000.0, + "value": 182212028.79453713, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000047", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 387600000.0, + "value": 410612688.1439685, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000049", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 614100000.0, + "value": 650560505.1321235, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000050", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 375000000.0, + "value": 397264597.66250825, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000051", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 459800000.0, + "value": 487099365.3472568, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000052", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 950400000.0, + "value": 1006827396.3158609, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000053", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 275702025.28009194, + "value": 292071077.7270251, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000054", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 798000000.0, + "value": 845379063.8258176, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000055", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 283000000.0, + "value": 299802349.7026396, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000056", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 492100000.0, + "value": 521317089.3592541, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000057", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 416500000.0, + "value": 441228546.4704925, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000058", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 525800000.0, + "value": 557017934.5358583, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000059", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 561600000.0, + "value": 594943461.4593723, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000060", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 1407600000.0, + "value": 1491172393.785991, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000061", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 430200000.0, + "value": 455741946.4384295, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000062", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 785700000.0, + "value": 832348785.0224873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000063", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 785700000.0, + "value": 832348785.0224873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000064", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 785700000.0, + "value": 832348785.0224873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000065", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 785700000.0, + "value": 832348785.0224873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E06000066", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 785700000.0, + "value": 832348785.0224873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 248000000.0, + "value": 262724320.5874721, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 154800000.0, + "value": 163990825.9150834, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 118500000.0, + "value": 125535612.86135261, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 266000000.0, + "value": 281793021.2752725, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 333600000.0, + "value": 353406586.0805673, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000032", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 122400000.0, + "value": 129667164.6770427, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000033", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 67500000.0, + "value": 71507627.57925148, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000034", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 80400000.0, + "value": 85173529.73884177, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000035", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 109500000.0, + "value": 116001262.5174524, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000036", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 84000000.0, + "value": 88987269.87640184, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000037", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 113000000.0, + "value": 119709065.42896914, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000038", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 81200000.0, + "value": 86021027.54718845, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000039", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 121500000.0, + "value": 128713729.64265268, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000040", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 255000000.0, + "value": 270139926.4105056, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000041", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 155400000.0, + "value": 164626449.2713434, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000042", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 170100000.0, + "value": 180199221.49971375, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000043", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 181800000.0, + "value": 192593876.946784, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000044", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 192800000.0, + "value": 204246971.81155092, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000045", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 224000000.0, + "value": 237299386.3370716, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000046", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 106800000.0, + "value": 113140957.41428235, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000047", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 89600000.0, + "value": 94919754.53482863, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000061", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 138600000.0, + "value": 146828995.29606304, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000062", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 133200000.0, + "value": 141108385.08972293, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000063", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 212800000.0, + "value": 225434417.020218, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000064", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 207600000.0, + "value": 219925681.26596457, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000065", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 425600000.0, + "value": 450868834.040436, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000066", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 290400000.0, + "value": 307641704.4298464, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000067", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 303000000.0, + "value": 320989794.9113067, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000068", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 214500000.0, + "value": 227235349.8629547, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000069", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 115500000.0, + "value": 122357496.08005254, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000070", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 314000000.0, + "value": 332642889.7760736, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000071", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 321600000.0, + "value": 340694118.9553671, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000072", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 394900000.0, + "value": 418346105.645132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000073", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 106500000.0, + "value": 112823145.73615234, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000074", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 117500000.0, + "value": 124476240.60091925, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000075", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 141000000.0, + "value": 149371488.7211031, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000076", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 171200000.0, + "value": 181364530.98619044, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000077", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 238700000.0, + "value": 252872158.5654419, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000078", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 170800000.0, + "value": 180940782.0820171, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000079", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 276800000.0, + "value": 293234241.68795276, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000080", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 106200000.0, + "value": 112505334.05802234, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000081", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 108000000.0, + "value": 114412204.12680237, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000082", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 208000000.0, + "value": 220349430.1701379, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000083", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 140400000.0, + "value": 148735865.36484307, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000084", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 256500000.0, + "value": 271728984.8011556, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000085", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 315000000.0, + "value": 333702262.03650695, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000086", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 187200000.0, + "value": 198314487.15312412, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000087", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 148200000.0, + "value": 156998968.99622327, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000088", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 63300000.0, + "value": 67058264.08543139, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000089", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 162000000.0, + "value": 171618306.19020355, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000090", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 138000000.0, + "value": 146193371.93980303, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000091", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 298100000.0, + "value": 315798870.8351832, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000092", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 103500000.0, + "value": 109645028.95485227, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000093", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 230300000.0, + "value": 243973431.57780173, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000094", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 331200000.0, + "value": 350864092.6555273, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000095", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 171500000.0, + "value": 181682342.66432044, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000096", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 358000000.0, + "value": 379255269.2351412, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000098", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 363600000.0, + "value": 385187753.893568, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000099", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 294300000.0, + "value": 311773256.24553645, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000102", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 268800000.0, + "value": 284759263.6044859, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000103", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 142500000.0, + "value": 150960547.11175314, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000105", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 259200000.0, + "value": 274589289.9043257, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000106", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 237600000.0, + "value": 251706849.07896522, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000107", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 172200000.0, + "value": 182423903.24662378, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000108", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 154000000.0, + "value": 163143328.10673672, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000109", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 155400000.0, + "value": 164626449.2713434, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000110", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 332200000.0, + "value": 351923464.9159606, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000111", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 467200000.0, + "value": 494938720.0744636, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000112", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 129000000.0, + "value": 136659021.59590283, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000113", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 218700000.0, + "value": 231684713.3567748, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000114", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 165600000.0, + "value": 175432046.32776365, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000115", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 317700000.0, + "value": 336562567.139677, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000116", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 376800000.0, + "value": 399171467.73128825, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000117", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 57000000.0, + "value": 60384218.84470125, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000118", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 98500000.0, + "value": 104348167.6526855, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000119", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 78600000.0, + "value": 83266659.67006172, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000120", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 61800000.0, + "value": 65469205.694781356, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000121", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 154700000.0, + "value": 163884888.68904006, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000122", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 68000000.0, + "value": 72037313.70946816, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000123", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 124800000.0, + "value": 132209658.10208274, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000124", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 98800000.0, + "value": 104665979.33081551, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000125", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 92400000.0, + "value": 97885996.86404203, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000126", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 109000000.0, + "value": 115471576.38723573, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000127", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 122000000.0, + "value": 129243415.77286935, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000128", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 142800000.0, + "value": 151278358.78988314, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000129", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 112000000.0, + "value": 118649693.1685358, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000130", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 208000000.0, + "value": 220349430.1701379, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000131", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 176400000.0, + "value": 186873266.7404439, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000132", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 141000000.0, + "value": 149371488.7211031, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000133", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 69000000.0, + "value": 73096685.96990152, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000134", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 94800000.0, + "value": 100428490.28908208, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000135", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 61000000.0, + "value": 64621707.886434674, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000136", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 60900000.0, + "value": 64515770.66039134, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000137", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 140000000.0, + "value": 148312116.46066976, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000138", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 86400000.0, + "value": 91529763.3014419, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000139", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 133200000.0, + "value": 141108385.08972293, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000140", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 110000000.0, + "value": 116530948.64766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000141", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 177100000.0, + "value": 187614827.32274723, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000142", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 110500000.0, + "value": 117060634.77788576, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000143", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 196000000.0, + "value": 207636963.04493764, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000144", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 219200000.0, + "value": 232214399.4869915, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000145", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 98000000.0, + "value": 103818481.52246882, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000146", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 243000000.0, + "value": 257427459.28530535, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000147", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 158200000.0, + "value": 167592691.60055682, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000148", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 165900000.0, + "value": 175749858.00589365, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000149", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 211500000.0, + "value": 224057233.08165464, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000170", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 105000000.0, + "value": 111234087.3455023, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000171", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 107000000.0, + "value": 113352831.86636902, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000172", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 84000000.0, + "value": 88987269.87640184, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000173", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 139800000.0, + "value": 148100242.00858307, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000174", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 114000000.0, + "value": 120768437.6894025, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000175", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 161700000.0, + "value": 171300494.51207355, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000176", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 180000000.0, + "value": 190687006.87800395, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000177", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 264600000.0, + "value": 280309900.1106658, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000178", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 234900000.0, + "value": 248846543.97579515, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000179", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 409000000.0, + "value": 433283254.5172423, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000180", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 246400000.0, + "value": 261029324.97077873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000181", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 275200000.0, + "value": 291539246.0712594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000192", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 107000000.0, + "value": 113352831.86636902, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000193", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 125400000.0, + "value": 132845281.45834276, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000194", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 162400000.0, + "value": 172042055.0943769, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000195", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 111000000.0, + "value": 117590320.90810244, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000196", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 130800000.0, + "value": 138565891.66468287, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000197", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 143400000.0, + "value": 151913982.14614314, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000198", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 117000000.0, + "value": 123946554.47070257, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000199", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 54600000.0, + "value": 57841725.4196612, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000200", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 198600000.0, + "value": 210391330.92206436, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000202", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 132000000.0, + "value": 139837138.3772029, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000203", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 148200000.0, + "value": 156998968.99622327, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000207", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 825000000.0, + "value": 873982114.8575181, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000208", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 148500000.0, + "value": 157316780.67435327, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000209", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 529000000.0, + "value": 560407925.7692449, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000210", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 224700000.0, + "value": 238040946.91937494, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000211", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 299700000.0, + "value": 317493866.4518766, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000212", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 151200000.0, + "value": 160177085.7775233, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000213", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 113500000.0, + "value": 120238751.55918583, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000214", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 172200000.0, + "value": 182423903.24662378, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000215", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 282000000.0, + "value": 298742977.4422062, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000216", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 599000000.0, + "value": 634563983.9995798, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000217", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 276600000.0, + "value": 293022367.23586607, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000218", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 58500000.0, + "value": 61973277.23535129, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000219", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 104500000.0, + "value": 110704401.21528563, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000220", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 106400000.0, + "value": 112717208.510109, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000221", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 250200000.0, + "value": 265054939.5604255, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000222", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 180600000.0, + "value": 191322630.23426396, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000223", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 87200000.0, + "value": 92377261.10978858, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000224", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 232100000.0, + "value": 245880301.64658177, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000225", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 312300000.0, + "value": 330841956.93333685, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000226", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 139200000.0, + "value": 147464618.65232307, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000227", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 276000000.0, + "value": 292386743.87960607, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000228", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 316000000.0, + "value": 334761634.29694027, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000229", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 107000000.0, + "value": 113352831.86636902, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000234", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 197500000.0, + "value": 209226021.43558767, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000235", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 140000000.0, + "value": 148312116.46066976, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000236", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 112000000.0, + "value": 118649693.1685358, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000237", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 107000000.0, + "value": 113352831.86636902, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000238", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 204800000.0, + "value": 216959438.93675116, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000239", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 112800000.0, + "value": 119497190.97688247, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000240", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 685300000.0, + "value": 725987810.0749784, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000241", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 196800000.0, + "value": 208484460.85328433, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000242", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 342000000.0, + "value": 362305313.0682075, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000243", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 101500000.0, + "value": 107526284.43398556, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000244", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 329000000.0, + "value": 348533473.6825739, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E07000245", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 297000000.0, + "value": 314633561.34870654, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 265100000.0, + "value": 280839586.2408825, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 201600000.0, + "value": 213569447.70336443, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 404700000.0, + "value": 428727953.7973789, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 172000000.0, + "value": 182212028.79453713, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 156800000.0, + "value": 166109570.4359501, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 249700000.0, + "value": 264525253.43020883, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000007", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 397500000.0, + "value": 421100473.52225876, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 171200000.0, + "value": 181364530.98619044, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 366300000.0, + "value": 388048058.9967381, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 262600000.0, + "value": 278191155.5897991, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 116400000.0, + "value": 123310931.11444256, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 319500000.0, + "value": 338469437.208457, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 135600000.0, + "value": 143650878.51476297, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 274800000.0, + "value": 291115497.16708606, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000015", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 282700000.0, + "value": 299484538.02450955, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000016", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 229900000.0, + "value": 243549682.6736284, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000017", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 241800000.0, + "value": 256156212.57278532, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 224400000.0, + "value": 237723135.24124494, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000019", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 517000000.0, + "value": 547695458.6440446, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 282000000.0, + "value": 298742977.4422062, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000022", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 181600000.0, + "value": 192382002.49469733, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000023", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 99500000.0, + "value": 105407539.91311885, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000024", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 161600000.0, + "value": 171194557.2860302, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000025", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 957600000.0, + "value": 1014454876.590981, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000026", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 204000000.0, + "value": 216111941.12840447, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000027", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 262600000.0, + "value": 278191155.5897991, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000028", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 207600000.0, + "value": 219925681.26596457, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000029", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 279900000.0, + "value": 296518295.69529617, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000030", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 246400000.0, + "value": 261029324.97077873, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000031", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 195000000.0, + "value": 206577590.7845043, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000032", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 460000000.0, + "value": 487311239.79934347, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000033", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 148000000.0, + "value": 156787094.54413658, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000034", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 385700000.0, + "value": 408599880.8491451, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000035", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 822400000.0, + "value": 871227746.9803914, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000036", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 292600000.0, + "value": 309972323.4027998, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E08000037", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 109500000.0, + "value": 116001262.5174524, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 584000000.0, + "value": 618673400.0930794, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 358700000.0, + "value": 379996829.81744456, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 1547700000.0, + "value": 1639590447.472704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 308000000.0, + "value": 326286656.21347344, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 820800000.0, + "value": 869532751.363698, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 821100000.0, + "value": 869850563.041828, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000007", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 2816000000.0, + "value": 2983192285.3803287, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 503800000.0, + "value": 533711744.8063244, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 855000000.0, + "value": 905763282.6705188, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 616000000.0, + "value": 652573312.4269469, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 632400000.0, + "value": 669947017.4980539, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 634100000.0, + "value": 671747950.3407906, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 1092000000.0, + "value": 1156834508.393224, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 1122500000.0, + "value": 1189145362.3364413, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000015", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 657800000.0, + "value": 696855072.9130611, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000016", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 475000000.0, + "value": 503201823.70584375, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000017", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 457300000.0, + "value": 484450934.69617337, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 559300000.0, + "value": 592506905.2603756, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000019", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 1135500000.0, + "value": 1202917201.722075, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000020", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 3509000000.0, + "value": 3717337261.860644, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 346000000.0, + "value": 366542802.10994095, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000022", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 851400000.0, + "value": 901949542.5329587, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000023", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 535800000.0, + "value": 567611657.1401918, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000024", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 939200000.0, + "value": 994962426.9990073, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000025", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 596400000.0, + "value": 631809616.1224531, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000026", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 619200000.0, + "value": 655963303.6603336, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000027", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 1231100000.0, + "value": 1304193189.8195038, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000028", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 957600000.0, + "value": 1014454876.590981, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000029", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 315600000.0, + "value": 334337885.39276695, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000030", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 498000000.0, + "value": 527567385.6958109, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000031", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 592800000.0, + "value": 627995875.9848931, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000032", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 1817200000.0, + "value": 1925091271.6594932, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@E09000033", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 2400000000.0, + "value": 2542493425.040053, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 146300000.0, + "value": 154986161.7013999, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 267800000.0, + "value": 283699891.34405255, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 327800000.0, + "value": 347262226.97005385, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 234000000.0, + "value": 247893108.94140515, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 149800000.0, + "value": 158693964.61291662, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 122400000.0, + "value": 129667164.6770427, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000007", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 208000000.0, + "value": 220349430.1701379, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 156800000.0, + "value": 166109570.4359501, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 188000000.0, + "value": 199161984.96147078, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@N09000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 250800000.0, + "value": 265690562.91668552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 49200000.0, + "value": 52121115.21332108, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 195300000.0, + "value": 206895402.4626343, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 103000000.0, + "value": 109115342.8246356, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 285600000.0, + "value": 302556717.5797663, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 172000000.0, + "value": 182212028.79453713, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 17200000.0, + "value": 18221202.87945371, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 117000000.0, + "value": 123946554.47070257, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000017", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 322500000.0, + "value": 341647553.98975706, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 50600000.0, + "value": 53604236.37792778, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000019", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 102400000.0, + "value": 108479719.46837558, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000020", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 83600000.0, + "value": 88563520.9722285, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 90000000.0, + "value": 95343503.43900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000023", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 32800000.0, + "value": 34747410.14221405, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000026", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 192800000.0, + "value": 204246971.81155092, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000027", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 25900000.0, + "value": 27437741.545223903, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000028", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 112800000.0, + "value": 119497190.97688247, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000029", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 286800000.0, + "value": 303827964.2922863, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000030", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 144500000.0, + "value": 153079291.63261983, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000033", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 163800000.0, + "value": 173525176.2589836, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000034", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 336000000.0, + "value": 355949079.50560737, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000035", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 136200000.0, + "value": 144286501.871023, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000036", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 1512000000.0, + "value": 1601770857.7752333, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000038", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 136200000.0, + "value": 144286501.871023, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000039", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 64200000.0, + "value": 68011699.11982141, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000040", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 127200000.0, + "value": 134752151.5271228, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000041", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 152400000.0, + "value": 161448332.49004334, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000042", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 89600000.0, + "value": 94919754.53482863, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000045", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 176500000.0, + "value": 186979203.9664872, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000047", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 369000000.0, + "value": 390908364.0999081, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000048", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 243200000.0, + "value": 257639333.737392, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000049", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 529200000.0, + "value": 560619800.2213316, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@S12000050", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 202500000.0, + "value": 214522882.73775446, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000001", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 77200000.0, + "value": 81783538.50545503, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000002", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 174600000.0, + "value": 184966396.67166385, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000003", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 129600000.0, + "value": 137294644.95216286, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000004", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 113500000.0, + "value": 120238751.55918583, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000005", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 127200000.0, + "value": 134752151.5271228, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000006", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 94800000.0, + "value": 100428490.28908208, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000008", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 89500000.0, + "value": 94813817.3087853, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000009", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 147600000.0, + "value": 156363345.63996324, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000010", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 190800000.0, + "value": 202128227.2906842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000011", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 171200000.0, + "value": 181364530.98619044, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000012", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 87500000.0, + "value": 92695072.78791858, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000013", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 102000000.0, + "value": 108055970.56420223, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000014", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 153600000.0, + "value": 162719579.20256338, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000015", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 344400000.0, + "value": 364847806.49324757, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000016", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 173700000.0, + "value": 184012961.63727382, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000018", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 124200000.0, + "value": 131574034.74582273, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000019", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 36000000.0, + "value": 38137401.37560079, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000020", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 52800000.0, + "value": 55934855.35088116, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000021", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 142200000.0, + "value": 150642735.43362314, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000022", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 85500000.0, + "value": 90576328.26705188, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000023", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 227500000.0, + "value": 241007189.24858832, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/amount@W06000024", + "metric": "hmrc/self_employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 42400000.0, + "value": 44917383.842374265, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000007", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000015", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000016", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000017", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000019", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000020", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000022", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000023", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000024", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000025", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 16000.0, + "value": 16949.956166933684, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000026", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000027", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 9533.898305084746, + "value": 10099.947398199361, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000030", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000031", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000032", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000033", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000034", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000035", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 16000.0, + "value": 16949.956166933684, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000036", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000037", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000038", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000039", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000040", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000041", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000042", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000043", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 20000.0, + "value": 21187.445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000044", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000045", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000046", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000047", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000049", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 23000.0, + "value": 24365.561989967173, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000050", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000051", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000052", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 44000.0, + "value": 46612.37945906763, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000053", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 9533.898305084746, + "value": 10099.947398199361, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000054", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 30000.0, + "value": 31781.16781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000055", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000056", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000057", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000058", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000059", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 24000.0, + "value": 25424.93425040053, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000060", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 36000.0, + "value": 38137.40137560079, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000061", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 18000.0, + "value": 19068.700687800396, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000062", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000063", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000064", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000065", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E06000066", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000032", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000033", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000034", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000035", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000036", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000037", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000038", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000039", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000040", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000041", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000042", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000043", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000044", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000045", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000046", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000047", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000061", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000062", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000063", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000064", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000065", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000066", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000067", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000068", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000069", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000070", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000071", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000072", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000073", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000074", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000075", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000076", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000077", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000078", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000079", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000080", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000081", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000082", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000083", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000084", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000085", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000086", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000087", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000088", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000089", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000090", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000091", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000092", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000093", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000094", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000095", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000096", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000098", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000099", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000102", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000103", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000105", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000106", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000107", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000108", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000109", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000110", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000111", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000112", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000113", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000114", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000115", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000116", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000117", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000118", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000119", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000120", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000121", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000122", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000123", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000124", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000125", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000126", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000127", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000128", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000129", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000130", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000131", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000132", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000133", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000134", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000135", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000136", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000137", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000138", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000139", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000140", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000141", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000142", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000143", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000144", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000145", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000146", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000147", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000148", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000149", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000170", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000171", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000172", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000173", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000174", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000175", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000176", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000177", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000178", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000179", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000180", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000181", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000192", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000193", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000194", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000195", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000196", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000197", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000198", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000199", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000200", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000202", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000203", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000207", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000208", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000209", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000210", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000211", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000212", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000213", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000214", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000215", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000216", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000217", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000218", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000219", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000220", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000221", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000222", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000223", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000224", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000225", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000226", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000227", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000228", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000229", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000234", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000235", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000236", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000237", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000238", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000239", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000240", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000241", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000242", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000243", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000244", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E07000245", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000007", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000015", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000016", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000017", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000019", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000022", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000023", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000024", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000025", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 38000.0, + "value": 40256.145896467504, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000026", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000027", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000028", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000029", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000030", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000031", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000032", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 20000.0, + "value": 21187.445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000033", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000034", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000035", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 32000.0, + "value": 33899.91233386737, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000036", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E08000037", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 33000.0, + "value": 34959.28459430073, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 27000.0, + "value": 28603.051031700594, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 21000.0, + "value": 22246.81746910046, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000007", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 16000.0, + "value": 16949.956166933684, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 25000.0, + "value": 26484.30651083388, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 25000.0, + "value": 26484.30651083388, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000015", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 23000.0, + "value": 24365.561989967173, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000016", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000017", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 17000.0, + "value": 18009.32842736704, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000019", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000020", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000022", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000023", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000024", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 16000.0, + "value": 16949.956166933684, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000025", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 28000.0, + "value": 29662.42329213395, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000026", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 24000.0, + "value": 25424.93425040053, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000027", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000028", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 19000.0, + "value": 20128.072948233752, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000029", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000030", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000031", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 26000.0, + "value": 27543.678771267238, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000032", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 22000.0, + "value": 23306.189729533817, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@E09000033", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 11000.0, + "value": 11653.094864766908, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000007", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 7000.0, + "value": 7415.6058230334875, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 10000.0, + "value": 10593.722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@N09000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 1000.0, + "value": 1059.3722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000017", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000019", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000020", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000023", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000026", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000027", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 1000.0, + "value": 1059.3722604333552, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000028", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000029", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000030", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000033", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000034", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000035", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000036", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 24000.0, + "value": 25424.93425040053, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000038", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000039", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000040", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000041", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000042", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000045", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000047", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 15000.0, + "value": 15890.58390650033, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000048", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000049", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 21000.0, + "value": 22246.81746910046, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@S12000050", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000001", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000002", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000003", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000004", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000005", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000006", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 4000.0, + "value": 4237.489041733421, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000008", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000009", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000010", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 12000.0, + "value": 12712.467125200264, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000011", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 8000.0, + "value": 8474.978083466842, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000012", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000013", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000014", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000015", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 14000.0, + "value": 14831.211646066975, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000016", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 9000.0, + "value": 9534.350343900198, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000018", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000019", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000020", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 3000.0, + "value": 3178.116781300066, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000021", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 6000.0, + "value": 6356.233562600132, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000022", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 5000.0, + "value": 5296.861302166776, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000023", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 13000.0, + "value": 13771.839385633619, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/self_employment_income/count@W06000024", + "metric": "hmrc/self_employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 2000.0, + "value": 2118.7445208667104, + "adjustment_factor": 1.0593722604333553, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000001", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 917600000.0, + "value": 1124489743.9410434, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000002", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 1377600000.0, + "value": 1688205177.9132316, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000003", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 1347800000.0, + "value": 1651686221.5385118, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000004", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 2257800000.0, + "value": 2766862406.135667, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 1238200000.0, + "value": 1517374892.0529642, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 1459200000.0, + "value": 1788203394.026559, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000007", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 3123000000.0, + "value": 3827137609.33727, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 1450800000.0, + "value": 1777909460.014893, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 1145400000.0, + "value": 1403651430.5907488, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 2460500000.0, + "value": 3015264837.583846, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 4044800000.0, + "value": 4956774320.284146, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000012", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 1658700000.0, + "value": 2032684326.8036277, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000013", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 1960200000.0, + "value": 2402163029.7223554, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000014", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 2518500000.0, + "value": 3086342000.9977307, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000015", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 2775500000.0, + "value": 3401287363.021323, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000016", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 3024500000.0, + "value": 3706428978.367138, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000017", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 541800000.0, + "value": 663958743.75246, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000018", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 2660000000.0, + "value": 3259745770.3609147, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000019", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 1913600000.0, + "value": 2345056205.324303, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000020", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 2122900000.0, + "value": 2601546727.781649, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000021", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 2322900000.0, + "value": 2846640394.7260785, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000022", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 2692800000.0, + "value": 3299941131.7398014, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000023", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 6197500000.0, + "value": 7594840004.440515, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000024", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 2906800000.0, + "value": 3562191355.3703413, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000025", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 4068000000.0, + "value": 4985205185.6497, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000026", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 2831400000.0, + "value": 3469791042.932291, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000027", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 2482691534.9995213, + "value": 3042459861.0246377, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000030", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 3351600000.0, + "value": 4107279670.6547527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000031", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 2347800000.0, + "value": 2877154556.26066, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000032", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 2073200000.0, + "value": 2540640951.545958, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000033", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 2476800000.0, + "value": 3035239971.4398174, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000034", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 2456600000.0, + "value": 3010485511.0784297, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000035", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 3593400000.0, + "value": 4403597913.990568, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000036", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 2359500000.0, + "value": 2891492535.7769094, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000037", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 3003000000.0, + "value": 3680081409.170612, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000038", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 2793000000.0, + "value": 3422733058.8789606, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000039", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 1898100000.0, + "value": 2326061446.13611, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000040", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 3927000000.0, + "value": 4812414150.4538765, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000041", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 3832500000.0, + "value": 4696607392.822634, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000042", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 4403000000.0, + "value": 5395737077.78162, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000043", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 3957600000.0, + "value": 4849913481.496375, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000044", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 2249600000.0, + "value": 2756813565.790945, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000045", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 2780700000.0, + "value": 3407659798.3618784, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000046", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 1255500000.0, + "value": 1538575494.2436574, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000047", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 5369000000.0, + "value": 6579539489.123215, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000049", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 6852900000.0, + "value": 8398011951.017411, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000050", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 4694900000.0, + "value": 5753451284.687015, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000051", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 3862200000.0, + "value": 4733003802.363882, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000052", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 5105100000.0, + "value": 6256138395.59004, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000053", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 2482691534.9995213, + "value": 3042459861.0246377, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000054", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 7088400000.0, + "value": 8686609743.844477, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000055", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 2693600000.0, + "value": 3300921506.407579, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000056", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 4876200000.0, + "value": 5975628693.7721405, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000057", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 3499800000.0, + "value": 4288894077.860575, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000058", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 4628200000.0, + "value": 5671712546.761047, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000059", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 3986100000.0, + "value": 4884839329.035956, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000060", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 11217600000.0, + "value": 13746813591.579172, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000061", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 4712500000.0, + "value": 5775019527.378124, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000062", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 6124200000.0, + "value": 7505013175.505382, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000063", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 6124200000.0, + "value": 7505013175.505382, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000064", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 6124200000.0, + "value": 7505013175.505382, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000065", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 6124200000.0, + "value": 7505013175.505382, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E06000066", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 6124200000.0, + "value": 7505013175.505382, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 2656400000.0, + "value": 3255334084.355915, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 1436400000.0, + "value": 1760262715.994894, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 1204000000.0, + "value": 1475463875.0054667, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 2649600000.0, + "value": 3247000899.6798043, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000012", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 3365300000.0, + "value": 4124068586.840446, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000032", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 1572900000.0, + "value": 1927539143.6844673, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000033", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 789600000.0, + "value": 967629797.0966084, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000034", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 1113700000.0, + "value": 1364804084.3800566, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000035", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 860600000.0, + "value": 1054638048.8618809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000036", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 1311200000.0, + "value": 1606834080.4876812, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000037", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 1088000000.0, + "value": 1333309548.1776974, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000038", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 1204600000.0, + "value": 1476199156.0063, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000039", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 1525500000.0, + "value": 1869451944.6186376, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000040", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 1508700000.0, + "value": 1848864076.5953054, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000041", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 1495000000.0, + "value": 1832075160.409612, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000042", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 840000000.0, + "value": 1029393401.1666046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000043", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 860800000.0, + "value": 1054883142.5288254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000044", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 951000000.0, + "value": 1165420386.320763, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000045", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 1430800000.0, + "value": 1753400093.32045, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000046", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 575400000.0, + "value": 705134479.7991242, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000047", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 473600000.0, + "value": 580381803.3244095, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000061", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 871100000.0, + "value": 1067505466.3764635, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000062", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 789600000.0, + "value": 967629797.0966084, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000063", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 1227600000.0, + "value": 1504384927.7049093, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000064", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 1023000000.0, + "value": 1253654106.4207578, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000065", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 2139500000.0, + "value": 2621889502.1380367, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000066", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 2615100000.0, + "value": 3204722242.1318903, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000067", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 2305800000.0, + "value": 2825684886.20233, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000068", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 1615300000.0, + "value": 1979499001.0766864, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000069", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 1104000000.0, + "value": 1352917041.533252, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000070", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 3145300000.0, + "value": 3854465553.2015734, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000071", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 2730600000.0, + "value": 3346263834.7922983, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000072", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 2511600000.0, + "value": 3077886269.488148, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000073", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 1113000000.0, + "value": 1363946256.5457513, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000074", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 916800000.0, + "value": 1123509369.2732656, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000075", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 1400000000.0, + "value": 1715655668.611008, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000076", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 1293600000.0, + "value": 1585265837.7965713, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000077", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 1862000000.0, + "value": 2281822039.2526402, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000078", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 1683000000.0, + "value": 2062463207.3373759, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000079", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 1400800000.0, + "value": 1716636043.2787855, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000080", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 908300000.0, + "value": 1113092888.4281275, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000081", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 1508000000.0, + "value": 1848006248.761, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000082", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 1606000000.0, + "value": 1968102145.5637703, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000083", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 1314300000.0, + "value": 1610633032.3253198, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000084", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 3397000000.0, + "value": 4162915933.0511384, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000085", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 2044500000.0, + "value": 2505470010.3394327, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000086", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 2076400000.0, + "value": 2544562450.217069, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000087", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 1540000000.0, + "value": 1887221235.4721086, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000088", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 1001600000.0, + "value": 1227429084.057704, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000089", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 2152500000.0, + "value": 2637820590.4894247, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000090", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 1331400000.0, + "value": 1631588540.8490684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000091", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 2177700000.0, + "value": 2668702392.5244226, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000092", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 1449000000.0, + "value": 1775703617.012393, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000093", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 2098800000.0, + "value": 2572012940.914845, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000094", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 2538200000.0, + "value": 3110483727.191757, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000095", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 1379400000.0, + "value": 1690411020.9157317, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000096", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 2901600000.0, + "value": 3555818920.029786, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000098", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 2007000000.0, + "value": 2459514947.787352, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000099", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 2581000000.0, + "value": 3162933771.9178653, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000102", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 1846300000.0, + "value": 2262582186.397503, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000103", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 1707100000.0, + "value": 2091996994.2041795, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000105", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 1779900000.0, + "value": 2181211088.971952, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000106", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 1795200000.0, + "value": 2199960754.493201, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000107", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 1737000000.0, + "value": 2128638497.4123719, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000108", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 1181800000.0, + "value": 1448258477.9746351, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000109", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 1439100000.0, + "value": 1763571480.4986439, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000110", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 2678400000.0, + "value": 3282294387.7198024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000111", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 2954700000.0, + "value": 3620891288.603532, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000112", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 1186500000.0, + "value": 1454018179.147829, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000113", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 1803200000.0, + "value": 2209764501.170978, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000114", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 1343200000.0, + "value": 1646049067.1987898, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000115", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 2345200000.0, + "value": 2873968338.5903826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000116", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 2341400000.0, + "value": 2869311558.9184384, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000117", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 813000000.0, + "value": 996305756.1291066, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000118", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 1532200000.0, + "value": 1877662582.4612758, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000119", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 1069500000.0, + "value": 1310638383.9853377, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000120", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 715000000.0, + "value": 876209859.3263361, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000121", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 1345500000.0, + "value": 1648867644.3686507, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000122", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 774000000.0, + "value": 948512491.074943, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000123", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 1693600000.0, + "value": 2075453171.6854305, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000124", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 835000000.0, + "value": 1023266059.492994, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000125", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 787500000.0, + "value": 965056313.593692, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000126", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 1426500000.0, + "value": 1748130579.4811447, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000127", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 1296000000.0, + "value": 1588206961.7999043, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000128", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 1132400000.0, + "value": 1387720342.2393608, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000129", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 1360800000.0, + "value": 1667617309.8898995, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000130", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 2169200000.0, + "value": 2658285911.6792846, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000131", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 1580000000.0, + "value": 1936239968.8609946, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000132", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 1536900000.0, + "value": 1883422283.63447, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000133", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 667800000.0, + "value": 818367753.9274508, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000134", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 1500400000.0, + "value": 1838692689.4171116, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000135", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 680000000.0, + "value": 833318467.611061, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000136", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 719600000.0, + "value": 881847013.6660581, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000137", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 1102900000.0, + "value": 1351569026.3650575, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000138", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 1018800000.0, + "value": 1248507139.4149249, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000139", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 1425600000.0, + "value": 1747027657.9798949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000140", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 1115400000.0, + "value": 1366887380.5490844, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000141", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 1897500000.0, + "value": 2325326165.135277, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000142", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 1141200000.0, + "value": 1398504463.5849159, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000143", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 1490000000.0, + "value": 1825947818.7360013, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000144", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 1457000000.0, + "value": 1785507363.6901703, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000145", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 894300000.0, + "value": 1095936331.7420173, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000146", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 1582200000.0, + "value": 1938935999.1973832, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000147", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 924800000.0, + "value": 1133313115.951043, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000148", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 1617200000.0, + "value": 1981827390.9126585, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000149", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 1794000000.0, + "value": 2198490192.491534, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000170", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 1269000000.0, + "value": 1555119316.7624063, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000171", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 1372800000.0, + "value": 1682322929.9065654, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000172", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 1444800000.0, + "value": 1770556650.00656, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000173", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 1359000000.0, + "value": 1665411466.8873997, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000174", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 1112000000.0, + "value": 1362720788.211029, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000175", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 1408500000.0, + "value": 1726072149.456146, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000176", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 2073600000.0, + "value": 2541131138.879847, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000177", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 2497800000.0, + "value": 3060974806.468982, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000178", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 2331300000.0, + "value": 2856934328.737745, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000179", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 3003100000.0, + "value": 3680203956.004084, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000180", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 2546200000.0, + "value": 3120287473.8695345, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000181", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 1960000000.0, + "value": 2401917936.055411, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000192", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 1040400000.0, + "value": 1274977255.4449232, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000193", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 1564800000.0, + "value": 1917612850.1732178, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000194", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 1484200000.0, + "value": 1818840102.3946128, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000195", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 1593600000.0, + "value": 1952906338.2132158, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000196", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 1513600000.0, + "value": 1854868871.4354439, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000197", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 1798200000.0, + "value": 2203637159.4973674, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000198", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 1080400000.0, + "value": 1323995988.8338091, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000199", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 942400000.0, + "value": 1154881358.6421528, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000200", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 1225000000.0, + "value": 1501198710.0346317, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000202", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 1650000000.0, + "value": 2022022752.291545, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000203", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 1272800000.0, + "value": 1559776096.4343505, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000207", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 5017600000.0, + "value": 6148909916.301852, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000208", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 1692900000.0, + "value": 2074595343.851125, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000209", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 3236400000.0, + "value": 3966105718.494761, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000210", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 1853000000.0, + "value": 2270792824.240141, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000211", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 3257600000.0, + "value": 3992085647.190871, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000212", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 1861100000.0, + "value": 2280719117.7513905, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000213", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 1652300000.0, + "value": 2024841329.461406, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000214", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 1806000000.0, + "value": 2213195812.5082, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000215", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 1856000000.0, + "value": 2274469229.2443075, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000216", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 3079300000.0, + "value": 3773584643.109912, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000217", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 2309100000.0, + "value": 2829728931.706913, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000218", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 775200000.0, + "value": 949983053.0766095, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000219", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 1545300000.0, + "value": 1893716217.646136, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000220", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 1805400000.0, + "value": 2212460531.5073667, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000221", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 2289600000.0, + "value": 2805832299.179831, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000222", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 2636800000.0, + "value": 3231314904.995361, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000223", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 724500000.0, + "value": 887851808.5061965, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000224", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 1652400000.0, + "value": 2024963876.294878, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000225", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 1844600000.0, + "value": 2260498890.228475, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000226", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 1503000000.0, + "value": 1841878907.0873892, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000227", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 2357600000.0, + "value": 2889164145.940937, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000228", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 2724000000.0, + "value": 3338175743.7831326, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000229", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 1457700000.0, + "value": 1786365191.5244758, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000234", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 1560000000.0, + "value": 1911730602.1665516, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000235", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 912600000.0, + "value": 1118362402.2674327, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000236", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 1177800000.0, + "value": 1443356604.6357465, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000237", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 1220000000.0, + "value": 1495071368.361021, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000238", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 1685600000.0, + "value": 2065649425.0076535, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000239", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 1069200000.0, + "value": 1310270743.4849212, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000240", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 4185600000.0, + "value": 5129320261.8130245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000241", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 2007000000.0, + "value": 2459514947.787352, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000242", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 3116800000.0, + "value": 3819539705.661992, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000243", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 1256400000.0, + "value": 1539678415.7449074, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000244", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 2614900000.0, + "value": 3204477148.464946, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E07000245", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 2125500000.0, + "value": 2604732945.4519267, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000001", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 2822400000.0, + "value": 3458761827.9197917, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000002", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 2254000000.0, + "value": 2762205626.4637227, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000003", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 5411200000.0, + "value": 6631254252.84849, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000004", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 2152500000.0, + "value": 2637820590.4894247, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 2059000000.0, + "value": 2523239301.1929035, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 3381400000.0, + "value": 4143798627.029473, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000007", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 4094800000.0, + "value": 5018047737.020253, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 2448000000.0, + "value": 2999946483.3998194, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 4093400000.0, + "value": 5016332081.351643, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 3973200000.0, + "value": 4869030787.518041, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 1634300000.0, + "value": 2002782899.436407, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000012", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 4887200000.0, + "value": 5989108845.454083, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000013", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 2046800000.0, + "value": 2508288587.5092936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000014", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 3230000000.0, + "value": 3958262721.1525393, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000015", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 3572800000.0, + "value": 4378353266.295292, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000016", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 2643300000.0, + "value": 3239280449.171055, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000017", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 3212000000.0, + "value": 3936204291.1275406, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000018", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 2810600000.0, + "value": 3444301301.5700703, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000019", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 5605500000.0, + "value": 6869362750.285003, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000021", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 3059700000.0, + "value": 3749565463.7493577, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000022", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 2520000000.0, + "value": 3088180203.499814, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000023", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 1524900000.0, + "value": 1868716663.617804, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000024", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 2696600000.0, + "value": 3304597911.4117455, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000025", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 10126000000.0, + "value": 12409092357.396475, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000026", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 3563600000.0, + "value": 4367078957.615849, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000027", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 3306000000.0, + "value": 4051398314.5914226, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000028", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 3041400000.0, + "value": 3727139393.2239423, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000029", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 3242400000.0, + "value": 3973458528.503094, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000030", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 2601000000.0, + "value": 3187443138.612308, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000031", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 2659800000.0, + "value": 3259500676.69397, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000032", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 4626900000.0, + "value": 5670119437.925909, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000033", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 2174400000.0, + "value": 2664658347.01984, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000034", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 4545000000.0, + "value": 5569753581.312164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000035", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 9856800000.0, + "value": 12079196281.689272, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000036", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 4211700000.0, + "value": 5161304985.349273, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E08000037", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 2250000000.0, + "value": 2757303753.124834, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000001", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 854000000.0, + "value": 1046549957.8527148, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000002", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 2263000000.0, + "value": 2773234841.476222, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000003", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 7401600000.0, + "value": 9070426426.279453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000004", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 3914000000.0, + "value": 4796483062.102489, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 4885200000.0, + "value": 5986657908.784639, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 6969600000.0, + "value": 8541024105.679486, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000007", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 7342800000.0, + "value": 8998368888.197792, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 6068400000.0, + "value": 7436632042.427886, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 6409000000.0, + "value": 7854026557.234249, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 4294600000.0, + "value": 5262896310.297739, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 5333600000.0, + "value": 6536157910.074051, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000012", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 5178800000.0, + "value": 6346455411.859062, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000013", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 6148800000.0, + "value": 7535159696.539546, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000014", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 5356000000.0, + "value": 6563608400.771827, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000015", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 4026900000.0, + "value": 4934838437.09262, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000016", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 3950100000.0, + "value": 4840722468.985958, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000017", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 4565500000.0, + "value": 5594875682.173968, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000018", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 4910500000.0, + "value": 6017662257.65311, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000019", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 6393500000.0, + "value": 7835031798.046056, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000020", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 8195000000.0, + "value": 10042713003.048006, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000021", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 3484000000.0, + "value": 4269531678.171965, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000022", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 7822500000.0, + "value": 9586226048.364006, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000023", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 5455800000.0, + "value": 6685910140.577098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000024", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 5268900000.0, + "value": 6456870108.817528, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000025", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 4343900000.0, + "value": 5323311899.199541, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000026", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 4294500000.0, + "value": 5262773763.464267, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000027", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 6576000000.0, + "value": 8058679769.132848, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000028", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 7294000000.0, + "value": 8938566033.46335, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000029", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 3584000000.0, + "value": 4392078511.64418, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000030", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 7102000000.0, + "value": 8703276113.1967, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000031", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 4401600000.0, + "value": 5394021422.1130085, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000032", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 11075800000.0, + "value": 13573042181.715572, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@E09000033", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 9095000000.0, + "value": 11145634504.29794, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000001", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 1545300000.0, + "value": 1893716217.646136, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000002", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 2219900000.0, + "value": 2720417156.249697, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000003", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 3658000000.0, + "value": 4482763168.413619, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000004", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 1104000000.0, + "value": 1352917041.533252, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 1377600000.0, + "value": 1688205177.9132316, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 941800000.0, + "value": 1154146077.6413195, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000007", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 1869600000.0, + "value": 2291135598.5965285, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 1401600000.0, + "value": 1717616417.9465632, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 1549800000.0, + "value": 1899230825.1523857, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@N09000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 1567500000.0, + "value": 1920921614.6769676, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 617500000.0, + "value": 756726696.6909267, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 1370000000.0, + "value": 1678891618.5693433, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 1403000000.0, + "value": 1719332073.6151743, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 1492000000.0, + "value": 1828398755.4054456, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 1459200000.0, + "value": 1788203394.026559, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000013", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 268000000.0, + "value": 328425513.70553577, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000014", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 2106000000.0, + "value": 2580836312.9248447, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000017", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 2682000000.0, + "value": 3286706073.724802, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000018", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 845600000.0, + "value": 1036256023.8410487, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000019", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 1365000000.0, + "value": 1672764276.8957326, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000020", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 1054000000.0, + "value": 1291643624.7971444, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000021", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 1368000000.0, + "value": 1676440681.899899, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000023", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 245600000.0, + "value": 300975023.00775963, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000026", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 1246400000.0, + "value": 1527423732.3976858, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000027", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 284400000.0, + "value": 348523194.394979, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000028", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 1188000000.0, + "value": 1455856381.6499124, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000029", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 4141600000.0, + "value": 5075399655.08525, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000030", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 1309000000.0, + "value": 1604138050.1512923, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000033", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 3297300000.0, + "value": 4040736740.07934, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000034", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 3855600000.0, + "value": 4724915711.354715, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000035", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 933800000.0, + "value": 1144342330.9635422, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000036", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 8253000000.0, + "value": 10113790166.461891, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000038", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 2299500000.0, + "value": 2817964435.69358, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000039", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 1054800000.0, + "value": 1292623999.4649222, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000040", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 2550600000.0, + "value": 3125679534.5423117, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000041", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 1328700000.0, + "value": 1628279776.3453186, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000042", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 1368000000.0, + "value": 1676440681.899899, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000045", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 1663200000.0, + "value": 2038198934.3098774, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000047", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 3993600000.0, + "value": 4894030341.546372, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000048", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 1984000000.0, + "value": 2431329176.0887427, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000049", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 6997500000.0, + "value": 8575214672.218234, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@S12000050", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 4092000000.0, + "value": 5014616425.683031, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000001", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 652800000.0, + "value": 799985728.9066185, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000002", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 979200000.0, + "value": 1199978593.3599277, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000003", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 1079200000.0, + "value": 1322525426.8321426, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000004", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 886600000.0, + "value": 1086500225.5646567, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000005", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 1854000000.0, + "value": 2272018292.5748634, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000006", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 1502800000.0, + "value": 1841633813.4204447, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000008", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 580800000.0, + "value": 711752008.8066238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000009", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 1092000000.0, + "value": 1338211421.516586, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000010", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 1889400000.0, + "value": 2315399871.6240273, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000011", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 2588600000.0, + "value": 3172247331.2617536, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000012", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 1471600000.0, + "value": 1803399201.3771136, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000013", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 1545000000.0, + "value": 1893348577.1457193, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000014", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 1545600000.0, + "value": 1894083858.1465526, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000015", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 4269900000.0, + "value": 5232627242.430101, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000016", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 2554300000.0, + "value": 3130213767.3807836, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000018", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 1734000000.0, + "value": 2124962092.4082055, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000019", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 643200000.0, + "value": 788221232.8932859, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000020", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 938400000.0, + "value": 1149979485.3032641, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000021", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 1249500000.0, + "value": 1531222684.2353244, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000022", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 1715700000.0, + "value": 2102536021.88279, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000023", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 1176000000.0, + "value": 1441150761.6332467, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/amount@W06000024", + "metric": "hmrc/employment_income/amount", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 530100000.0, + "value": 649620764.236211, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000001", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000002", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000003", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000004", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000007", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 90000.0, + "value": 110292.15012499336, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 95000.0, + "value": 116419.4917986041, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 128000.0, + "value": 156859.946844435, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000012", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 57000.0, + "value": 69851.69507916245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000013", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 66000.0, + "value": 80880.9100916618, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000014", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 73000.0, + "value": 89459.18843471684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000015", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 91000.0, + "value": 111517.61845971551, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000016", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 115000.0, + "value": 140928.85849304707, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000017", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 14000.0, + "value": 17156.556686110078, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000018", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 95000.0, + "value": 116419.4917986041, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000019", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000020", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000021", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 89000.0, + "value": 109066.6817902712, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000022", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 72000.0, + "value": 88233.7200999947, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000023", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 185000.0, + "value": 226711.64192359746, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000024", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 86000.0, + "value": 105390.27678610476, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000025", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 120000.0, + "value": 147056.2001666578, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000026", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 99000.0, + "value": 121321.3651374927, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000027", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 68101.69491525424, + "value": 83456.47065955242, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000030", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 98000.0, + "value": 120095.89680277054, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000031", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 78000.0, + "value": 95586.53010832758, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000032", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000033", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000034", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000035", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 106000.0, + "value": 129899.64348054773, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000036", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000037", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 70000.0, + "value": 85782.7834305504, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000038", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 70000.0, + "value": 85782.7834305504, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000039", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 57000.0, + "value": 69851.69507916245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000040", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 66000.0, + "value": 80880.9100916618, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000041", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 73000.0, + "value": 89459.18843471684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000042", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 119000.0, + "value": 145830.73183193567, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000043", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 102000.0, + "value": 124997.77014165914, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000044", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 74000.0, + "value": 90684.65676943898, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000045", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 93000.0, + "value": 113968.55512915981, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000046", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000047", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 182000.0, + "value": 223035.23691943102, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000049", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 159000.0, + "value": 194849.4652208216, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000050", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 133000.0, + "value": 162987.28851804574, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000051", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 123000.0, + "value": 150732.60517082424, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000052", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 187000.0, + "value": 229162.57859304175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000053", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 68101.69491525424, + "value": 83456.47065955242, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000054", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 198000.0, + "value": 242642.7302749854, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000055", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 74000.0, + "value": 90684.65676943898, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000056", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 129000.0, + "value": 158085.41517915713, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000057", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 114000.0, + "value": 139703.3901583249, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000058", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 146000.0, + "value": 178918.37686943368, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000059", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 129000.0, + "value": 158085.41517915713, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000060", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 228000.0, + "value": 279406.7803166498, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000061", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 145000.0, + "value": 177692.90853471152, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000062", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 177000.0, + "value": 216907.89524582028, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000063", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 177000.0, + "value": 216907.89524582028, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000064", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 177000.0, + "value": 216907.89524582028, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000065", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 177000.0, + "value": 216907.89524582028, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E06000066", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 177000.0, + "value": 216907.89524582028, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 58000.0, + "value": 71077.16341388461, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 72000.0, + "value": 88233.7200999947, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000012", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 73000.0, + "value": 89459.18843471684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000032", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 49000.0, + "value": 60047.94840138527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000033", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 28000.0, + "value": 34313.113372220156, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000034", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 37000.0, + "value": 45342.32838471949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000035", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 26000.0, + "value": 31862.176702775858, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000036", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000037", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000038", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000039", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000040", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 47000.0, + "value": 57597.01173194098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000041", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000042", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 28000.0, + "value": 34313.113372220156, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000043", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 32000.0, + "value": 39214.98671110875, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000044", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 30000.0, + "value": 36764.05004166445, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000045", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 49000.0, + "value": 60047.94840138527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000046", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 21000.0, + "value": 25734.83502916512, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000047", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 16000.0, + "value": 19607.493355554376, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000061", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000062", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 28000.0, + "value": 34313.113372220156, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000063", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000064", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000065", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000066", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 69000.0, + "value": 84557.31509582825, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000067", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 61000.0, + "value": 74753.56841805106, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000068", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 29000.0, + "value": 35538.58170694231, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000069", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 32000.0, + "value": 39214.98671110875, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000070", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000071", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 74000.0, + "value": 90684.65676943898, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000072", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000073", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000074", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 24000.0, + "value": 29411.240033331564, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000075", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000076", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000077", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000078", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000079", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000080", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000081", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000082", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000083", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 39000.0, + "value": 47793.26505416379, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000084", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 79000.0, + "value": 96811.99844304973, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000085", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 47000.0, + "value": 57597.01173194098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000086", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 58000.0, + "value": 71077.16341388461, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000087", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000088", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 32000.0, + "value": 39214.98671110875, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000089", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000090", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000091", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 61000.0, + "value": 74753.56841805106, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000092", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000093", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 53000.0, + "value": 64949.82174027387, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000094", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 49000.0, + "value": 60047.94840138527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000095", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000096", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 62000.0, + "value": 75979.0367527732, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000098", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000099", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 58000.0, + "value": 71077.16341388461, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000102", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 37000.0, + "value": 45342.32838471949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000103", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 43000.0, + "value": 52695.13839305238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000105", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000106", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000107", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000108", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000109", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000110", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 72000.0, + "value": 88233.7200999947, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000111", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 49000.0, + "value": 60047.94840138527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000112", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000113", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 56000.0, + "value": 68626.22674444031, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000114", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000115", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000116", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000117", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 30000.0, + "value": 36764.05004166445, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000118", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 47000.0, + "value": 57597.01173194098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000119", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000120", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 26000.0, + "value": 31862.176702775858, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000121", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000122", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 30000.0, + "value": 36764.05004166445, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000123", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 58000.0, + "value": 71077.16341388461, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000124", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 25000.0, + "value": 30636.70836805371, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000125", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 25000.0, + "value": 30636.70836805371, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000126", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000127", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000128", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000129", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000130", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 68000.0, + "value": 83331.84676110609, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000131", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000132", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 47000.0, + "value": 57597.01173194098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000133", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 21000.0, + "value": 25734.83502916512, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000134", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000135", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 20000.0, + "value": 24509.366694442968, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000136", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 28000.0, + "value": 34313.113372220156, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000137", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000138", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000139", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000140", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 39000.0, + "value": 47793.26505416379, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000141", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000142", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000143", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 50000.0, + "value": 61273.41673610742, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000144", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 47000.0, + "value": 57597.01173194098, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000145", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 33000.0, + "value": 40440.4550458309, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000146", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 54000.0, + "value": 66175.29007499601, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000147", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 32000.0, + "value": 39214.98671110875, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000148", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000149", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000170", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000171", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000172", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 43000.0, + "value": 52695.13839305238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000173", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000174", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000175", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000176", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000177", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 69000.0, + "value": 84557.31509582825, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000178", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 57000.0, + "value": 69851.69507916245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000179", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 59000.0, + "value": 72302.63174860676, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000180", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 58000.0, + "value": 71077.16341388461, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000181", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 50000.0, + "value": 61273.41673610742, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000192", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000193", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000194", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000195", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000196", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000197", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 54000.0, + "value": 66175.29007499601, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000198", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 37000.0, + "value": 45342.32838471949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000199", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000200", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000202", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000203", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 37000.0, + "value": 45342.32838471949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000207", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 56000.0, + "value": 68626.22674444031, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000208", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 33000.0, + "value": 40440.4550458309, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000209", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 62000.0, + "value": 75979.0367527732, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000210", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000211", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000212", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 37000.0, + "value": 45342.32838471949, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000213", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000214", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000215", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 32000.0, + "value": 39214.98671110875, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000216", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 53000.0, + "value": 64949.82174027387, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000217", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 43000.0, + "value": 52695.13839305238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000218", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 24000.0, + "value": 29411.240033331564, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000219", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000220", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000221", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 53000.0, + "value": 64949.82174027387, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000222", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000223", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 21000.0, + "value": 25734.83502916512, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000224", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 54000.0, + "value": 66175.29007499601, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000225", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000226", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000227", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 56000.0, + "value": 68626.22674444031, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000228", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 60000.0, + "value": 73528.1000833289, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000229", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 43000.0, + "value": 52695.13839305238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000234", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000235", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 26000.0, + "value": 31862.176702775858, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000236", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 39000.0, + "value": 47793.26505416379, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000237", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000238", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 49000.0, + "value": 60047.94840138527, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000239", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000240", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000241", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000242", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 64000.0, + "value": 78429.9734222175, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000243", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000244", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 79000.0, + "value": 96811.99844304973, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E07000245", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 65000.0, + "value": 79655.44175693965, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000001", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 98000.0, + "value": 120095.89680277054, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000002", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 70000.0, + "value": 85782.7834305504, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000003", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 178000.0, + "value": 218133.3635805424, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000004", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 75000.0, + "value": 91910.12510416114, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 71000.0, + "value": 87008.25176527254, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 106000.0, + "value": 129899.64348054773, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000007", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 116000.0, + "value": 142154.32682776923, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 85000.0, + "value": 104164.80845138262, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 97000.0, + "value": 118870.4284680484, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 132000.0, + "value": 161761.8201833236, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 59000.0, + "value": 72302.63174860676, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000012", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 164000.0, + "value": 200976.80689443235, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000013", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 68000.0, + "value": 83331.84676110609, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000014", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 100000.0, + "value": 122546.83347221484, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000015", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 112000.0, + "value": 137252.45348888062, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000016", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 89000.0, + "value": 109066.6817902712, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000017", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 110000.0, + "value": 134801.51681943634, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000018", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 94000.0, + "value": 115194.02346388195, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000019", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 185000.0, + "value": 226711.64192359746, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000021", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 93000.0, + "value": 113968.55512915981, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000022", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 80000.0, + "value": 98037.46677777187, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000023", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000024", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 97000.0, + "value": 118870.4284680484, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000025", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 332000.0, + "value": 406855.48712775327, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000026", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 118000.0, + "value": 144605.2634972135, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000027", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 114000.0, + "value": 139703.3901583249, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000028", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 111000.0, + "value": 136026.98515415846, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000029", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 84000.0, + "value": 102939.34011666047, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000030", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 90000.0, + "value": 110292.15012499336, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000031", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 93000.0, + "value": 113968.55512915981, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000032", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 159000.0, + "value": 194849.4652208216, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000033", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 72000.0, + "value": 88233.7200999947, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000034", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 150000.0, + "value": 183820.25020832228, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000035", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 296000.0, + "value": 362738.6270777559, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000036", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 139000.0, + "value": 170340.09852637863, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E08000037", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 75000.0, + "value": 91910.12510416114, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000001", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 7000.0, + "value": 8578.278343055039, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000002", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 73000.0, + "value": 89459.18843471684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000003", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 144000.0, + "value": 176467.4401999894, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000004", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 103000.0, + "value": 126223.23847638129, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 118000.0, + "value": 144605.2634972135, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 132000.0, + "value": 161761.8201833236, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000007", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 87000.0, + "value": 106615.74512082692, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 156000.0, + "value": 191173.06021665517, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 145000.0, + "value": 177692.90853471152, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 109000.0, + "value": 133576.04848471418, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 113000.0, + "value": 138477.92182360278, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000012", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 107000.0, + "value": 131125.1118152699, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000013", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 84000.0, + "value": 102939.34011666047, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000014", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 104000.0, + "value": 127448.70681110343, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000015", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 93000.0, + "value": 113968.55512915981, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000016", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 99000.0, + "value": 121321.3651374927, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000017", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 115000.0, + "value": 140928.85849304707, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000018", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 115000.0, + "value": 140928.85849304707, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000019", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 95000.0, + "value": 116419.4917986041, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000020", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000021", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 65000.0, + "value": 79655.44175693965, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000022", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 149000.0, + "value": 182594.78187360012, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000023", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 126000.0, + "value": 154409.0101749907, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000024", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 91000.0, + "value": 111517.61845971551, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000025", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 121000.0, + "value": 148281.66850137996, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000026", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 105000.0, + "value": 128674.17514582559, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000027", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 80000.0, + "value": 98037.46677777187, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000028", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 140000.0, + "value": 171565.5668611008, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000029", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 80000.0, + "value": 98037.46677777187, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000030", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 134000.0, + "value": 164212.7568527679, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000031", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 112000.0, + "value": 137252.45348888062, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000032", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 158000.0, + "value": 193623.99688609946, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@E09000033", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 85000.0, + "value": 104164.80845138262, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000001", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 51000.0, + "value": 62498.88507082957, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000002", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 79000.0, + "value": 96811.99844304973, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000003", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 118000.0, + "value": 144605.2634972135, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000004", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000007", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 57000.0, + "value": 69851.69507916245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 54000.0, + "value": 66175.29007499601, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@N09000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 55000.0, + "value": 67400.75840971817, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 19000.0, + "value": 23283.89835972082, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 50000.0, + "value": 61273.41673610742, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 40000.0, + "value": 49018.733388885936, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000013", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 10000.0, + "value": 12254.683347221484, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000014", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 65000.0, + "value": 79655.44175693965, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000017", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 90000.0, + "value": 110292.15012499336, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000018", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 28000.0, + "value": 34313.113372220156, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000019", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000020", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000021", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 45000.0, + "value": 55146.07506249668, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000023", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 8000.0, + "value": 9803.746677777188, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000026", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 41000.0, + "value": 50244.20172360809, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000027", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 9000.0, + "value": 11029.215012499337, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000028", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000029", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 124000.0, + "value": 151958.0735055464, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000030", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000033", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 87000.0, + "value": 106615.74512082692, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000034", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 102000.0, + "value": 124997.77014165914, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000035", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 29000.0, + "value": 35538.58170694231, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000036", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 210000.0, + "value": 257348.35029165118, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000038", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 73000.0, + "value": 89459.18843471684, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000039", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000040", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 78000.0, + "value": 95586.53010832758, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000041", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 43000.0, + "value": 52695.13839305238, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000042", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 48000.0, + "value": 58822.48006666313, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000045", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 44000.0, + "value": 53920.60672777453, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000047", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 128000.0, + "value": 156859.946844435, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000048", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 62000.0, + "value": 75979.0367527732, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000049", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 225000.0, + "value": 275730.3753124834, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@S12000050", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 132000.0, + "value": 161761.8201833236, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000001", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 24000.0, + "value": 29411.240033331564, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000002", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 36000.0, + "value": 44116.86004999735, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000003", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 38000.0, + "value": 46567.79671944164, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000004", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 31000.0, + "value": 37989.5183763866, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000005", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 60000.0, + "value": 73528.1000833289, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000006", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000008", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 22000.0, + "value": 26960.303363887266, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000009", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 39000.0, + "value": 47793.26505416379, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000010", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 67000.0, + "value": 82106.37842638395, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000011", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 86000.0, + "value": 105390.27678610476, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000012", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 52000.0, + "value": 63724.353405551716, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000013", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 50000.0, + "value": 61273.41673610742, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000014", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 46000.0, + "value": 56371.543397218826, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000015", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 129000.0, + "value": 158085.41517915713, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000016", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 89000.0, + "value": 109066.6817902712, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000018", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 60000.0, + "value": 73528.1000833289, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000019", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 24000.0, + "value": 29411.240033331564, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000020", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 34000.0, + "value": 41665.923380553046, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000021", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 35000.0, + "value": 42891.3917152752, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000022", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 57000.0, + "value": 69851.69507916245, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000023", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 42000.0, + "value": 51469.67005833024, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "hmrc/employment_income/count@W06000024", + "metric": "hmrc/employment_income/count", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 19000.0, + "value": 23283.89835972082, + "adjustment_factor": 1.2254683347221484, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000001", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 10667.0, + "value": 10367.922051305917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000002", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 19056.0, + "value": 18521.71394109736, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000003", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 14199.0, + "value": 13800.892960203686, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000004", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 22713.0, + "value": 22076.180139806067, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 11688.0, + "value": 11360.295578481631, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 14449.0, + "value": 14043.883539825556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000007", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 22945.0, + "value": 22301.675397695162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 21163.0, + "value": 20569.638546150476, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 15610.0, + "value": 15172.331791589517, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 33204.0, + "value": 32273.036823058188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 32025.0, + "value": 31127.093249561454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000012", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 17515.0, + "value": 17023.92000830816, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000013", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 17831.0, + "value": 17331.060100950202, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000014", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 17870.0, + "value": 17368.966631371215, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000015", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 32261.0, + "value": 31356.476356724495, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000016", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 47283.0, + "value": 45957.294305043375, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000017", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 3352.0, + "value": 3258.017691570023, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000018", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 36890.0, + "value": 35855.68992900303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000019", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 17648.0, + "value": 17153.190996666995, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000020", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 22844.0, + "value": 22203.507203527926, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000021", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 32816.0, + "value": 31895.915443485046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000022", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 18875.0, + "value": 18345.78876145113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000023", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 50354.0, + "value": 48942.19058511842, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000024", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 22808.0, + "value": 22168.516560062377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000025", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 33522.0, + "value": 32582.120840337207, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000026", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 27380.0, + "value": 26612.32828018712, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000027", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 12663.0, + "value": 12307.958839006922, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000030", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 28578.0, + "value": 27776.73913773512, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000031", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 30344.0, + "value": 29493.224592184004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000032", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 33665.0, + "value": 32721.111451880915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000033", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 20965.0, + "value": 20377.190007089957, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000034", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 25148.0, + "value": 24442.908385323073, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000035", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 36538.0, + "value": 35513.55919289544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000036", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 14987.0, + "value": 14566.799267171818, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000037", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 17625.0, + "value": 17130.835863341785, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000038", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 21164.0, + "value": 20570.610508468963, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000039", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 24430.0, + "value": 23745.039440649063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000040", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 16965.0, + "value": 16489.34073314005, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000041", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 22033.0, + "value": 21415.245763234583, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000042", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 38682.0, + "value": 37597.44640373259, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000043", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 23762.0, + "value": 23095.768611899428, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000044", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 23276.0, + "value": 22623.394925114517, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000045", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 27884.0, + "value": 27102.19728870481, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000046", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 11990.0, + "value": 11653.828198664849, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000047", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 51663.0, + "value": 50214.48926001853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000049", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 43475.0, + "value": 42256.06179624306, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000050", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 37354.0, + "value": 36306.68044478122, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000051", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 30415.0, + "value": 29562.233916796613, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000052", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 54416.0, + "value": 52890.30152281455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000053", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 192.0, + "value": 186.6167651495956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000054", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 53740.0, + "value": 52233.25499551702, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000055", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 23321.0, + "value": 22667.133229446452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000056", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 38219.0, + "value": 37147.427850272885, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000057", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 30280.0, + "value": 29431.019003800804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000058", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 39077.0, + "value": 37981.37151953514, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000059", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 32328.0, + "value": 31421.59783206316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000060", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 66933.0, + "value": 65056.3538633223, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000061", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 42678.0, + "value": 41481.40782840855, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000062", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 51157.0, + "value": 49722.67632686386, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000063", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 27118.0, + "value": 26357.674152743402, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000064", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 19834.0, + "value": 19277.900624880618, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000065", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 58883.0, + "value": 57232.057199498115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E06000066", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 57347.0, + "value": 55739.123078301345, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 12954.0, + "value": 12590.799873686778, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 9833.0, + "value": 9557.305477687361, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 11135.0, + "value": 10822.800416358057, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 20628.0, + "value": 20049.638705759677, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000012", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 19674.0, + "value": 19122.386653922622, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000032", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 12523.0, + "value": 12171.884114418675, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000033", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 8634.0, + "value": 8391.922657820876, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000034", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 10310.0, + "value": 10020.931503605889, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000035", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 5730.0, + "value": 5569.344084933244, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000036", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 11491.0, + "value": 11168.8190017396, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000037", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 8810.0, + "value": 8562.988025874673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000038", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 10513.0, + "value": 10218.239854258847, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000039", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 12871.0, + "value": 12510.127001252316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000040", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 14322.0, + "value": 13920.444325377646, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000041", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 12062.0, + "value": 11723.809485595948, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000042", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 8238.0, + "value": 8007.025579699836, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000043", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 9564.0, + "value": 9295.84761401423, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000044", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 8055.0, + "value": 7829.1564754166275, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000045", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 12635.0, + "value": 12280.743894089272, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000046", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 6014.0, + "value": 5845.381383383687, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000047", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 4849.0, + "value": 4713.045282345776, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000061", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 9877.0, + "value": 9600.07181970081, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000062", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 9723.0, + "value": 9450.38962265374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000063", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 9438.0, + "value": 9173.380361884809, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000064", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 7808.0, + "value": 7589.081782750221, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000065", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 16104.0, + "value": 15652.48117692233, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000066", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 24918.0, + "value": 24219.357052070955, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000067", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 17903.0, + "value": 17401.0413878813, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000068", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 9103.0, + "value": 8847.772985191503, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000069", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 9093.0, + "value": 8838.053362006629, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000070", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 21180.0, + "value": 20586.161905564764, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000071", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 22786.0, + "value": 22147.133389055653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000072", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 15733.0, + "value": 15291.883156763477, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000073", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 13263.0, + "value": 12891.136230099408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000074", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 6609.0, + "value": 6423.6989628837355, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000075", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 9178.0, + "value": 8920.670159078065, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000076", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 14537.0, + "value": 14129.416223852453, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000077", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 10621.0, + "value": 10323.211784655494, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000078", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 12220.0, + "value": 11877.37953191697, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000079", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 8518.0, + "value": 8279.175028876329, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000080", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 8404.0, + "value": 8168.371324568757, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000081", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 15615.0, + "value": 15177.191603181955, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000082", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 12324.0, + "value": 11978.463613039667, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000083", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 11296.0, + "value": 10979.28634963454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000084", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 22120.0, + "value": 21499.806484942994, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000085", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 12899.0, + "value": 12537.341946169967, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000086", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 16006.0, + "value": 15557.228869710558, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000087", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 10825.0, + "value": 10521.492097626939, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000088", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 8611.0, + "value": 8369.567524495666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000089", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 11179.0, + "value": 10865.566758371506, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000090", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 12974.0, + "value": 12610.239120056527, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000091", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 15056.0, + "value": 14633.864667147454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000092", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 12497.0, + "value": 12146.613094138002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000093", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 14878.0, + "value": 14460.855374456683, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000094", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 13871.0, + "value": 13482.089319739795, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000095", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 12283.0, + "value": 11938.613157981681, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000096", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 19658.0, + "value": 19106.835256826824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000098", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 13092.0, + "value": 12724.93067363805, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000099", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 15468.0, + "value": 15034.313142364295, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000102", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 10603.0, + "value": 10305.716462922719, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000103", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 13623.0, + "value": 13241.0426647549, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000105", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 16334.0, + "value": 15876.03251017445, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000106", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 14829.0, + "value": 14413.229220850797, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000107", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 17106.0, + "value": 16626.387420046784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000108", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 12109.0, + "value": 11769.49171456486, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000109", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 14098.0, + "value": 13702.724766036452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000110", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 22486.0, + "value": 21855.544693509408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000111", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 14054.0, + "value": 13659.958424023003, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000112", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 10645.0, + "value": 10346.538880299193, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000113", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 18765.0, + "value": 18238.872906417506, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000114", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 15051.0, + "value": 14629.004855555017, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000115", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 16095.0, + "value": 15643.733516055943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000116", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 13314.0, + "value": 12940.706308342269, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000117", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 11794.0, + "value": 11463.323584241305, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000118", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 12513.0, + "value": 12162.1644912338, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000119", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 7100.0, + "value": 6900.932461261087, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000120", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10183.0, + "value": 9897.492289157979, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000121", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 13860.0, + "value": 13471.397734236432, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000122", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 12322.0, + "value": 11976.519688402692, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000123", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 19267.0, + "value": 18726.79799029822, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000124", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 5900.0, + "value": 5734.577679076115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000125", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 7944.0, + "value": 7721.268658064518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000126", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 11688.0, + "value": 11360.295578481631, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000127", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 11444.0, + "value": 11123.136772770687, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000128", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 10491.0, + "value": 10196.856683252121, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000129", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 12015.0, + "value": 11678.127256627036, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000130", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 18897.0, + "value": 18367.171932457855, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000131", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 10589.0, + "value": 10292.108990463894, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000132", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 11907.0, + "value": 11573.15532623039, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000133", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 5238.0, + "value": 5091.138624237405, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000134", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 11853.0, + "value": 11520.669361032065, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000135", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 6667.0, + "value": 6480.072777356009, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000136", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 8122.0, + "value": 7894.277950755289, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000137", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 11960.0, + "value": 11624.669329110226, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000138", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 10476.0, + "value": 10182.27724847481, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000139", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 11797.0, + "value": 11466.239471196766, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000140", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 10159.0, + "value": 9874.16519351428, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000141", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 14863.0, + "value": 14446.275939679372, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000142", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 9605.0, + "value": 9335.698069072218, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000143", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 14079.0, + "value": 13684.257481985189, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000144", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 12852.0, + "value": 12491.659717201055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000145", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 10160.0, + "value": 9875.137155832766, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000146", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 15468.0, + "value": 15034.313142364295, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000147", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 7615.0, + "value": 7401.493055282138, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000148", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 13886.0, + "value": 13496.668754517106, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000149", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 15255.0, + "value": 14827.285168526463, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000170", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 14276.0, + "value": 13875.734058727223, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000171", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 13000.0, + "value": 12635.510140337201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000172", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 11174.0, + "value": 10860.706946779068, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000173", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 12397.0, + "value": 12049.416862289252, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000174", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 12600.0, + "value": 12246.72521294221, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000175", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 12961.0, + "value": 12597.60360991619, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000176", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 13212.0, + "value": 12841.566151856547, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000177", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 19619.0, + "value": 19068.92872640581, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000178", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 14680.0, + "value": 14268.406835396163, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000179", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 16828.0, + "value": 16356.181895507263, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000180", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 17190.0, + "value": 16708.03225479973, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000181", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 12479.0, + "value": 12129.117772405227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000192", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 11233.0, + "value": 10918.05272356983, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000193", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 14934.0, + "value": 14515.285264291982, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000194", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 11164.0, + "value": 10850.987323594194, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000195", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 12402.0, + "value": 12054.27667388169, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000196", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 10610.0, + "value": 10312.520199152132, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000197", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 14039.0, + "value": 13645.37898924569, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000198", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 8556.0, + "value": 8316.109596978853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000199", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 9200.0, + "value": 8942.05333008479, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000200", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 8978.0, + "value": 8726.27769538057, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000202", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 17124.0, + "value": 16643.88274177956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000203", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 10279.0, + "value": 9990.800671732777, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000207", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 17521.0, + "value": 17029.751782219086, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000208", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 9804.0, + "value": 9529.118570451225, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000209", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 14985.0, + "value": 14564.855342534844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000210", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 8619.0, + "value": 8377.343223043565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000211", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 19041.0, + "value": 18507.13450632005, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000212", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 9705.0, + "value": 9432.894300920965, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000213", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 12503.0, + "value": 12152.444868048926, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000214", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 9878.0, + "value": 9601.043782019298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000215", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 10375.0, + "value": 10084.109054307575, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000216", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 14382.0, + "value": 13978.762064486895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000217", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 12610.0, + "value": 12256.444836127086, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000218", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 6957.0, + "value": 6761.941849717377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000219", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 16453.0, + "value": 15991.69602607446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000220", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 13971.0, + "value": 13579.285551588542, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000221", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 13892.0, + "value": 13502.50052842803, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000222", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 16025.0, + "value": 15575.696153761819, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000223", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 6706.0, + "value": 6517.979307777021, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000224", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 15201.0, + "value": 14774.799203328139, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000225", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 11629.0, + "value": 11302.949801690871, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000226", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 16081.0, + "value": 15630.126043597118, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000227", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 15541.0, + "value": 15105.26639161388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000228", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 18251.0, + "value": 17739.284274714944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000229", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 10901.0, + "value": 10595.361233831987, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000234", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 10938.0, + "value": 10631.323839616023, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000235", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 7004.0, + "value": 6807.624078686289, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000236", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 10245.0, + "value": 9957.753952904202, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000237", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 10928.0, + "value": 10621.60421643115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000238", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 13338.0, + "value": 12964.033403985968, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000239", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 9979.0, + "value": 9699.211976186534, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000240", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 18259.0, + "value": 17747.059973262843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000241", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 13904.0, + "value": 13514.164076249881, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000242", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 17422.0, + "value": 16933.527512688826, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000243", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 11184.0, + "value": 10870.426569963944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000244", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 22344.0, + "value": 21717.526044284186, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E07000245", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 20883.0, + "value": 20297.489096973983, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000001", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 39369.0, + "value": 38265.18451653348, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000002", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 23146.0, + "value": 22497.039823711144, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000003", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 70770.0, + "value": 68785.77327935875, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000004", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 33832.0, + "value": 32883.42915906832, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 30466.0, + "value": 29611.803995039474, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 34945.0, + "value": 33965.22321954489, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000007", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 34757.0, + "value": 33782.49430366924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 27639.0, + "value": 26864.066520675377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 28999.0, + "value": 28185.935273818348, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 37926.0, + "value": 36862.64289095606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 20035.0, + "value": 19473.265050896603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000012", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 54124.0, + "value": 52606.48852581621, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000013", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 19831.0, + "value": 19274.98473792516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000014", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 28897.0, + "value": 28086.795117332626, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000015", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 34341.0, + "value": 33378.157979178446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000016", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 27636.0, + "value": 26861.150633719917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000017", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 35807.0, + "value": 34803.05473808109, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000018", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 31129.0, + "value": 30256.215012196673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000019", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 62225.0, + "value": 60480.35526788326, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000021", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 33191.0, + "value": 32260.40131291785, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000022", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 22375.0, + "value": 21747.6568761573, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000023", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 16205.0, + "value": 15750.649371089565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000024", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 29447.0, + "value": 28621.374392500737, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000025", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 155309.0, + "value": 150954.4957219716, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000026", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 44164.0, + "value": 42925.743833680935, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000027", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 37719.0, + "value": 36661.446691029145, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000028", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 46723.0, + "value": 45412.99540669039, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000029", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 25187.0, + "value": 24480.814915744086, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000030", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 38075.0, + "value": 37007.46527641069, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000031", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 35681.0, + "value": 34680.58748595167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000032", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 75294.0, + "value": 73182.93080819609, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000033", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 23442.0, + "value": 22784.740669983436, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000034", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 52303.0, + "value": 50836.54514385051, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000035", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 95285.0, + "value": 92613.42951707925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000036", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 41377.0, + "value": 40216.88485205634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E08000037", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 21175.0, + "value": 20581.30209397233, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000001", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 382.0, + "value": 371.2896056622162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000002", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 35353.0, + "value": 34361.78384548778, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000003", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 49866.0, + "value": 48467.87297369653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000004", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 31141.0, + "value": 30267.878560018522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 40446.0, + "value": 39311.9879335445, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 39273.0, + "value": 38171.876133958685, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000007", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 19685.0, + "value": 19133.078239425984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 50140.0, + "value": 48734.190648962096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 43541.0, + "value": 42320.211309263235, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 42126.0, + "value": 40944.88462860346, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 36605.0, + "value": 35578.6806682341, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000012", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 30503.0, + "value": 29647.766600823514, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000013", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 17828.0, + "value": 17328.14421399474, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000014", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 29354.0, + "value": 28530.9818968814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000015", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 32495.0, + "value": 31583.915539250567, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000016", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 34508.0, + "value": 33540.475686365855, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000017", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 41530.0, + "value": 40365.595086784924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000018", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 36946.0, + "value": 35910.11981883833, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000019", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 20319.0, + "value": 19749.302349347046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000020", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 12767.0, + "value": 12409.04292012962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000021", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 19299.0, + "value": 18757.90078448982, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000022", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 28291.0, + "value": 27497.785952329214, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000023", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 35116.0, + "value": 34131.42877600624, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000024", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 26191.0, + "value": 25456.66508350551, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000025", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 47203.0, + "value": 45879.53731956438, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000026", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 42937.0, + "value": 41733.1460688968, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000027", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 22930.0, + "value": 22287.09596291785, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000028", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 31078.0, + "value": 30206.644933953812, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000029", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 26261.0, + "value": 25524.702445799634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000030", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 35548.0, + "value": 34551.31649759284, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000031", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 35812.0, + "value": 34807.91454967353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000032", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 34244.0, + "value": 33283.87763428516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@E09000033", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 16775.0, + "value": 16304.667892627427, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000001", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000002", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000003", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000004", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000007", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@N09000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 22628.107558467967, + "value": 21993.66788551253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 5732.259144996247, + "value": 5571.539888741596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 16151.800918521913, + "value": 15698.94186851472, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 13320.87661482731, + "value": 12947.390118833167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 12430.781139417488, + "value": 12082.250856878623, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 10718.454433178218, + "value": 10417.933821474278, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000013", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 2893.9173790065647, + "value": 2812.7786452104233, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000014", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 17536.652199852942, + "value": 17044.96513067758, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000017", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 26055.330874773295, + "value": 25324.799806002997, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000018", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 8682.416387374478, + "value": 8438.981561946162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000019", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 10686.348999363685, + "value": 10386.728549587857, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000020", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 10328.318058135403, + "value": 10038.735965861362, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000021", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 14769.938763787404, + "value": 14355.823924768865, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000023", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2430.9348817224995, + "value": 2362.7771037310813, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000026", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 12933.065116026239, + "value": 12570.451955322374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000027", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2544.7431091753974, + "value": 2473.39441234915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000028", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 12346.089219182597, + "value": 11999.933501729962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000029", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 36207.844005676016, + "value": 35192.660007189756, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000030", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 10252.03997572777, + "value": 9964.59654403466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000033", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 24801.00478815722, + "value": 24105.642114716313, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000034", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 29196.349385759302, + "value": 28377.751440353037, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000035", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 9517.600500122204, + "value": 9250.749048536349, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000036", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 56964.22838355681, + "value": 55367.08349053202, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000038", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 20356.394955908687, + "value": 19785.64883739179, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000039", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 9786.511185417034, + "value": 9512.120101681567, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000040", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 20068.99596907238, + "value": 19506.30785181542, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000041", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 12658.619011108209, + "value": 12303.700682886389, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000042", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 16462.005834205786, + "value": 16000.449357569029, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000045", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 12060.240149840785, + "value": 11722.098977555008, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000047", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 41159.27685862431, + "value": 40005.26616277645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000048", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 16711.76396760436, + "value": 16243.20485196821, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000049", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 68722.8988723259, + "value": 66796.0681211263, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@S12000050", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 37748.57270359623, + "value": 36690.19024458049, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000001", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 6653.0, + "value": 6466.465304897185, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000002", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 11140.0, + "value": 10827.660227950495, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000003", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 10448.0, + "value": 10155.06230355716, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000004", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 9946.0, + "value": 9667.137219676446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000005", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 15832.0, + "value": 15388.107426293736, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000006", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 14368.0, + "value": 13965.15459202807, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000008", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 5857.0, + "value": 5692.7832993811535, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000009", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 11978.0, + "value": 11642.164650843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000010", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 18763.0, + "value": 18236.928981780533, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000011", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 24492.0, + "value": 23805.301104395287, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000012", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 14504.0, + "value": 14097.341467342367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000013", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 15113.0, + "value": 14689.26651930124, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000014", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 14460.0, + "value": 14054.575125328918, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000015", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 40394.0, + "value": 39261.445892983145, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000016", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 25589.0, + "value": 24871.54376777605, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000018", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 18840.0, + "value": 18311.770080304068, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000019", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 7175.0, + "value": 6973.829635147647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000020", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 10259.0, + "value": 9971.361425363028, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000021", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 8639.0, + "value": 8396.782469413314, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000022", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 20530.0, + "value": 19954.386398547904, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000023", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 12012.0, + "value": 11675.211369671575, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/0_10@W06000024", + "metric": "age/0_10", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 6733.0, + "value": 6544.222290376183, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000001", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 11916.0, + "value": 11581.902987096777, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000002", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 19434.0, + "value": 18889.115697485628, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000003", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 15981.0, + "value": 15532.92981174837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000004", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 25681.0, + "value": 24960.9643010769, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 12923.0, + "value": 12560.669041813666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 15816.0, + "value": 15372.556029197936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000007", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 25084.0, + "value": 24380.702796939873, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 23361.0, + "value": 22706.01172218595, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 16121.0, + "value": 15669.004536336617, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 34925.0, + "value": 33945.78397317514, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 36516.0, + "value": 35492.176021888714, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000012", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 19026.0, + "value": 18492.555071542738, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000013", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 19914.0, + "value": 19355.657610359616, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000014", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 25738.0, + "value": 25016.366153230683, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000015", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 34949.0, + "value": 33969.111068818835, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000016", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 54465.0, + "value": 52937.92767642044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000017", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 5555.0, + "value": 5399.250679197935, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000018", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 49351.0, + "value": 47967.31237967548, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000019", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 19965.0, + "value": 19405.22768860248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000020", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 24765.0, + "value": 24070.64681734237, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000021", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 33730.0, + "value": 32784.2890025826, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000022", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 26751.0, + "value": 26000.9639818585, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000023", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 56015.0, + "value": 54444.46927007603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000024", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 25127.0, + "value": 24422.497176634835, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000025", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 34824.0, + "value": 33847.6157790079, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000026", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 32471.0, + "value": 31560.588443606866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000027", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 14884.0, + "value": 14466.687148367608, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000030", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 29160.0, + "value": 28342.42120709483, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000031", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 30552.0, + "value": 29695.3927544294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000032", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 32471.0, + "value": 31560.588443606866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000033", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 21191.0, + "value": 20596.853491068126, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000034", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 24289.0, + "value": 23607.992753742332, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000035", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 36458.0, + "value": 35435.80220741644, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000036", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 16253.0, + "value": 15797.303562376965, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000037", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 20886.0, + "value": 20300.404983929446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000038", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 21958.0, + "value": 21342.34858934802, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000039", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 24219.0, + "value": 23539.955391448206, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000040", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 20512.0, + "value": 19936.89107681513, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000041", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 25440.0, + "value": 24726.721382321415, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000042", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 40372.0, + "value": 39240.06272197642, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000043", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 33180.0, + "value": 32249.709727414487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000044", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 25705.0, + "value": 24984.291396720597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000045", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 31743.0, + "value": 30852.999875747984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000046", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 13848.0, + "value": 13459.734186414582, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000047", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 62350.0, + "value": 60601.8505576942, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000049", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 45628.0, + "value": 44348.696667946606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000050", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 40738.0, + "value": 39595.80093054284, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000051", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 35182.0, + "value": 34195.578289026416, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000052", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 63363.0, + "value": 61586.44838632201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000053", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 203.0, + "value": 197.30835065295784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000054", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 60110.0, + "value": 58424.65496428224, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000055", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 23663.0, + "value": 22999.54434236917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000056", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 35206.0, + "value": 34218.90538467011, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000057", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 34341.0, + "value": 33378.157979178446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000058", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 45904.0, + "value": 44616.95826784915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000059", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 40728.0, + "value": 39586.08130735796, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000060", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 72040.0, + "value": 70020.16542383784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000061", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 45912.0, + "value": 44624.73396639705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000062", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 53094.0, + "value": 51605.36733777411, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000063", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 29791.0, + "value": 28955.72943006043, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000064", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 23622.0, + "value": 22959.693887311183, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000065", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 67864.0, + "value": 65961.25078183414, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E06000066", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 65510.0, + "value": 63673.25148411462, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 18525.0, + "value": 18005.60194998051, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 10824.0, + "value": 10520.520135308452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 11132.0, + "value": 10819.884529402594, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 20366.0, + "value": 19794.984578315958, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000012", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 21108.0, + "value": 20516.180618633665, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000032", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 13637.0, + "value": 13254.650137213725, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000033", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 8880.0, + "value": 8631.025388168797, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000034", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 11449.0, + "value": 11127.996584363125, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000035", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 7256.0, + "value": 7052.558582945134, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000036", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 12583.0, + "value": 12230.201853527924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000037", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 10008.0, + "value": 9727.398883422671, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000038", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 10735.0, + "value": 10434.015488963067, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000039", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 13537.0, + "value": 13157.453905364977, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000040", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 16007.0, + "value": 15558.200832029044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000041", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 16816.0, + "value": 16344.518347685414, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000042", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 10034.0, + "value": 9752.669903703345, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000043", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 11187.0, + "value": 10873.342456919405, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000044", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 9555.0, + "value": 9287.099953147843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000045", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 14102.0, + "value": 13706.612615310401, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000046", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 7113.0, + "value": 6913.567971401424, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000047", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 6269.0, + "value": 6093.2317745979935, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000061", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 12133.0, + "value": 11792.818810208559, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000062", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 10226.0, + "value": 9939.286668852941, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000063", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 11401.0, + "value": 11081.342393075725, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000064", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 9714.0, + "value": 9441.641961787353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000065", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 17784.0, + "value": 17285.37787198129, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000066", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 23483.0, + "value": 22824.591125041425, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000067", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 18054.0, + "value": 17547.807697972912, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000068", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 8902.0, + "value": 8652.408559175521, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000069", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 9998.0, + "value": 9717.679260237795, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000070", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 21982.0, + "value": 21365.675684991722, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000071", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 24210.0, + "value": 23531.20773058182, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000072", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 15398.0, + "value": 14966.275780070171, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000073", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 12448.0, + "value": 12098.986940532115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000074", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 7266.0, + "value": 7062.278206130009, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000075", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 10104.0, + "value": 9820.707265997467, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000076", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 15452.0, + "value": 15018.761745268495, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000077", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 11641.0, + "value": 11314.61334951272, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000078", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 14268.0, + "value": 13867.958360179322, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000079", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 9823.0, + "value": 9547.585854502488, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000080", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 10075.0, + "value": 9792.52035876133, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000081", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 16578.0, + "value": 16113.191315885395, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000082", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 14160.0, + "value": 13762.986429782675, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000083", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 10892.0, + "value": 10586.6135729656, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000084", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 21633.0, + "value": 21026.460835839593, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000085", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 15012.0, + "value": 14591.098325134006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000086", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 16759.0, + "value": 16289.116495531627, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000087", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 12246.0, + "value": 11902.650552197643, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000088", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 9559.0, + "value": 9290.987802421792, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000089", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 12414.0, + "value": 12065.94022170354, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000090", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 13908.0, + "value": 13518.05192552383, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000091", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 18107.0, + "value": 17599.321700852746, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000092", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 11134.0, + "value": 10821.828454039569, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000093", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 15047.0, + "value": 14625.117006281067, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000094", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 17203.0, + "value": 16720.667764940066, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000095", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 12331.0, + "value": 11985.26734926908, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000096", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 19151.0, + "value": 18614.05036135367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000098", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 13706.0, + "value": 13321.71553718936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000099", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 15688.0, + "value": 15248.14485243154, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000102", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 12428.0, + "value": 12079.547694162366, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000103", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 12806.0, + "value": 12446.949450550632, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000105", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 16932.0, + "value": 16457.265976629962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000106", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 21013.0, + "value": 20423.844198377355, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000107", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 15753.0, + "value": 15311.322403133227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000108", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 13428.0, + "value": 13051.510012649842, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000109", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 14081.0, + "value": 13686.201406622164, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000110", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 21216.0, + "value": 20621.152549030314, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000111", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 15360.0, + "value": 14929.341211967647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000112", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 12078.0, + "value": 11739.360882691748, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000113", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 18877.0, + "value": 18347.732686088104, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000114", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16046.0, + "value": 15596.107362450057, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000115", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 17153.0, + "value": 16672.069649015695, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000116", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 15440.0, + "value": 15007.098197446645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000117", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 12566.0, + "value": 12213.678494113637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000118", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 13624.0, + "value": 13242.014627073388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000119", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 8166.0, + "value": 7937.044292768737, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000120", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10828.0, + "value": 10524.407984582402, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000121", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 18595.0, + "value": 18073.639312274634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000122", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 13195.0, + "value": 12825.04279244226, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000123", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 20033.0, + "value": 19471.321126259627, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000124", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 7566.0, + "value": 7353.8669016762515, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000125", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 8871.0, + "value": 8622.27772730241, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000126", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 12842.0, + "value": 12481.94009401618, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000127", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 14625.0, + "value": 14214.948907879352, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000128", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 12572.0, + "value": 12219.510268024562, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000129", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 12290.0, + "value": 11945.416894211094, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000130", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 24197.0, + "value": 23518.57222044148, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000131", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 11972.0, + "value": 11636.332876932076, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000132", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 12615.0, + "value": 12261.304647719522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000133", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 5972.0, + "value": 5804.558966007213, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000134", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 12007.0, + "value": 11670.351558079137, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000135", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 8017.0, + "value": 7792.221907314103, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000136", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 8549.0, + "value": 8309.30586074944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000137", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 14169.0, + "value": 13771.734090649063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000138", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 13331.0, + "value": 12957.229667756557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000139", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 13260.0, + "value": 12888.220343143947, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000140", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 10396.0, + "value": 10104.520262995811, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000141", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 16851.0, + "value": 16378.537028832476, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000142", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 10529.0, + "value": 10233.791251354645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000143", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 15397.0, + "value": 14965.303817751685, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000144", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 14189.0, + "value": 13791.173337018812, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000145", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 11074.0, + "value": 10763.51071493032, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000146", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 16178.0, + "value": 15724.406388490404, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000147", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 9618.0, + "value": 9348.333579212554, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000148", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 17400.0, + "value": 16912.144341682102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000149", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 16311.0, + "value": 15853.677376849238, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000170", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 14872.0, + "value": 14455.02360054576, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000171", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 13233.0, + "value": 12861.977360544784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000172", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 12621.0, + "value": 12267.136421630448, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000173", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 13373.0, + "value": 12998.052085133031, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000174", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 12907.0, + "value": 12545.117644717866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000175", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 14001.0, + "value": 13608.444421143166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000176", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 14712.0, + "value": 14299.509629587763, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000177", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 19257.0, + "value": 18717.078367113347, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000178", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 22765.0, + "value": 22126.722180367415, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000179", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 17736.0, + "value": 17238.723680693893, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000180", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 17548.0, + "value": 17055.994764818246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000181", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 13553.0, + "value": 13173.005302460777, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000192", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 11358.0, + "value": 11039.548013380765, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000193", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 15134.0, + "value": 14709.677727989478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000194", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 11729.0, + "value": 11400.146033539619, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000195", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 14967.0, + "value": 14547.360020802069, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000196", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 11425.0, + "value": 11104.669488719424, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000197", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 14946.0, + "value": 14526.948812113833, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000198", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 10108.0, + "value": 9824.595115271419, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000199", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 9518.0, + "value": 9251.137347363807, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000200", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 10456.0, + "value": 10162.83800210506, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000202", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 17653.0, + "value": 17158.05080825943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000203", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 11318.0, + "value": 11000.669520641266, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000207", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 18796.0, + "value": 18269.00373829062, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000208", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 10844.0, + "value": 10539.959381678202, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000209", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 18885.0, + "value": 18355.508384636003, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000210", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 10321.0, + "value": 10031.623089109251, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000211", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 19051.0, + "value": 18516.854129504925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000212", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11709.0, + "value": 11380.70678716987, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000213", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 11900.0, + "value": 11566.351590000977, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000214", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 11117.0, + "value": 10805.305094625282, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000215", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 11091.0, + "value": 10780.034074344609, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000216", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 17886.0, + "value": 17384.518028467013, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000217", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 12615.0, + "value": 12261.304647719522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000218", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 7188.0, + "value": 6986.465145287985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000219", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 16223.0, + "value": 15768.14469282234, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000220", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 14831.0, + "value": 14415.173145487772, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000221", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 14851.0, + "value": 14434.612391857521, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000222", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 18039.0, + "value": 17533.228263195597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000223", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 7595.0, + "value": 7382.053808912388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000224", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 16692.0, + "value": 16223.995020192968, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000225", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 13833.0, + "value": 13445.15475163727, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000226", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 15300.0, + "value": 14871.023472858398, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000227", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 17740.0, + "value": 17242.611529967842, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000228", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 19210.0, + "value": 18671.396138144435, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000229", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 12193.0, + "value": 11851.136549317807, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000234", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 11901.0, + "value": 11567.323552319463, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000235", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 9306.0, + "value": 9045.081335844461, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000236", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 10375.0, + "value": 10084.109054307575, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000237", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 12479.0, + "value": 12129.117772405227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000238", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 14387.0, + "value": 13983.621876079333, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000239", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 11106.0, + "value": 10794.61350912192, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000240", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 20636.0, + "value": 20057.414404307576, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000241", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 15124.0, + "value": 14699.958104804602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000242", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 19086.0, + "value": 18550.87281065199, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000243", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 11243.0, + "value": 10927.772346754704, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000244", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 26402.0, + "value": 25661.74913270637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E07000245", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 19874.0, + "value": 19316.779117620117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000001", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 41652.0, + "value": 40484.17448964039, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000002", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 25072.0, + "value": 24369.039249118025, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000003", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 83282.0, + "value": 80946.96580827406, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000004", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 35671.0, + "value": 34670.86786276679, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 31354.0, + "value": 30474.906533856356, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 33553.0, + "value": 32612.251672210317, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000007", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 34896.0, + "value": 33917.597065939, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 29205.0, + "value": 28386.159511426766, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 31721.0, + "value": 30831.61670474126, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 39514.0, + "value": 38406.119052714166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 18668.0, + "value": 18144.592561524223, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000012", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 60379.0, + "value": 58686.112827955374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000013", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 21035.0, + "value": 20445.22736938408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000014", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 30399.0, + "value": 29546.682519700815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000015", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 37913.0, + "value": 36850.00738081572, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000016", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 28318.0, + "value": 27524.028934928374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000017", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 36492.0, + "value": 35468.84892624501, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000018", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 32544.0, + "value": 31631.541692856452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000019", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 70961.0, + "value": 68971.41808218986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000021", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 39341.0, + "value": 38237.96957161583, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000022", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 23570.0, + "value": 22909.151846749835, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000023", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 16878.0, + "value": 16404.780011431638, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000024", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 32231.0, + "value": 31327.317487169872, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000025", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 172783.0, + "value": 167938.56527522174, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000026", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 48732.0, + "value": 47365.667704531734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000027", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 39067.0, + "value": 37971.65189635027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000028", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 48882.0, + "value": 47511.46205230485, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000029", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 27692.0, + "value": 26915.580523555214, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000030", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 38756.0, + "value": 37669.37161530066, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000031", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 35982.0, + "value": 34973.1481438164, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000032", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 81184.0, + "value": 78907.78886408734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000033", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 26113.0, + "value": 25380.852022663486, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000034", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 57071.0, + "value": 55470.8614783988, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000035", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 105128.0, + "value": 102180.45461795149, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000036", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 41715.0, + "value": 40545.408115705104, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E08000037", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 23255.0, + "value": 22602.98371642628, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000001", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 614.0, + "value": 596.7848635513109, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000002", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 34858.0, + "value": 33880.66249783648, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000003", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 50736.0, + "value": 49313.48019078063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000004", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 31990.0, + "value": 31093.07456841439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 42251.0, + "value": 41066.37991841439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 39661.0, + "value": 38548.99751353183, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000007", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 25037.0, + "value": 24335.02056797096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 49854.0, + "value": 48456.20942587468, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 46811.0, + "value": 45498.528090717286, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 46565.0, + "value": 45259.42536036937, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 34932.0, + "value": 33952.58770940455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000012", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 29815.0, + "value": 28979.056525704127, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000013", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 17418.0, + "value": 16929.639663414877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000014", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 30016.0, + "value": 29174.420951720112, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000015", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 32840.0, + "value": 31919.242539128747, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000016", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 32389.0, + "value": 31480.887533490895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000017", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 40253.0, + "value": 39124.399206076414, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000018", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 37457.0, + "value": 36406.792563585426, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000019", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 20816.0, + "value": 20232.367621635323, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000020", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 13175.0, + "value": 12805.60354607251, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000021", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 21409.0, + "value": 20808.741276498396, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000022", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 30383.0, + "value": 29531.131122605017, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000023", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 33176.0, + "value": 32245.821878140538, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000024", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 24914.0, + "value": 24215.469202797005, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000025", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 45654.0, + "value": 44373.967688227276, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000026", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 41824.0, + "value": 40651.35200842024, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000027", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 24709.0, + "value": 24016.21692750707, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000028", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 33527.0, + "value": 32586.980651929643, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000029", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 27829.0, + "value": 27048.739361188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000030", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 36490.0, + "value": 35466.90500160804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000031", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 32119.0, + "value": 31218.457707499274, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000032", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 29522.0, + "value": 28694.2715663873, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@E09000033", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 18728.0, + "value": 18202.91030063347, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000001", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000002", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000003", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000004", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000007", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@N09000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 23595.12070199224, + "value": 22933.568222500246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 6216.010181033269, + "value": 6041.727667298858, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 17514.867421720588, + "value": 17023.79114721632, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 14445.038607567825, + "value": 14040.03321565274, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 13479.827091952944, + "value": 13101.88399310489, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 11622.995436229634, + "value": 11297.11359196712, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000013", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 3138.137937583715, + "value": 3050.151825547377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000014", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 19016.587676549767, + "value": 18483.406647819695, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000017", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 28254.16609595505, + "value": 27461.984785554738, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000018", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 9415.134119852351, + "value": 9151.155588002242, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000019", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 11588.18059300472, + "value": 11263.274876228454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000020", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 11199.935065455145, + "value": 10885.914853128976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000021", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 16016.388548846833, + "value": 15567.326147733445, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000023", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2636.083888043735, + "value": 2562.1742075504717, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000026", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 14024.499311647558, + "value": 13631.284866574986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000027", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2759.496504716882, + "value": 2682.12662058271, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000028", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 13387.987936549285, + "value": 13012.619794690818, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000029", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 39263.4598819579, + "value": 38162.60349870784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000030", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 11117.21980000009, + "value": 10805.518731942973, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000033", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 26893.986186512688, + "value": 26139.94116721305, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000034", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 31660.258275187072, + "value": 30772.57803706316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000035", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 10320.800248434278, + "value": 10031.42893811431, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000036", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 61771.496129232495, + "value": 60039.56659420903, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000038", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 22074.291321165576, + "value": 21455.379371488085, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000039", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 10612.404573238824, + "value": 10314.857353732312, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000040", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 21762.63844871082, + "value": 21152.464523013678, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000041", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 13726.892427666304, + "value": 13342.022189622732, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000042", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 17851.250837983385, + "value": 17350.743152387848, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000045", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 13078.015780664009, + "value": 12711.338539390003, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000047", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 44632.749065524535, + "value": 43381.350262197004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000048", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 18122.086308036516, + "value": 17613.985023789337, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000049", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 74522.49248594939, + "value": 72433.05457610896, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@S12000050", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 40934.21220320322, + "value": 39786.51179848378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000001", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 7692.0, + "value": 7476.334153805674, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000002", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 13576.0, + "value": 13195.360435785988, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000003", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 12035.0, + "value": 11697.566502996786, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000004", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 11257.0, + "value": 10941.37981921353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000005", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 18101.0, + "value": 17593.489926941824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000006", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 16254.0, + "value": 15798.275524695451, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000008", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 8479.0, + "value": 8241.268498455318, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000009", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 13957.0, + "value": 13565.678079129717, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000010", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 21725.0, + "value": 21115.88136914044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000011", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 28890.0, + "value": 28079.991381103213, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000012", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 18161.0, + "value": 17651.80766605107, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000013", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 16818.0, + "value": 16346.46227232239, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000014", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 16192.0, + "value": 15738.013860949228, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000015", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 49755.0, + "value": 48359.98515634442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000016", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 28679.0, + "value": 27874.907331902356, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000018", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 20946.0, + "value": 20358.722723038692, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000019", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 7440.0, + "value": 7231.399649546829, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000020", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 11104.0, + "value": 10792.669584484946, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000021", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 9999.0, + "value": 9718.651222556284, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000022", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 19901.0, + "value": 19343.02210021928, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000023", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 13846.0, + "value": 13457.790261777607, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/10_20@W06000024", + "metric": "age/10_20", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 6872.0, + "value": 6679.325052645942, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000001", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 10843.0, + "value": 10538.987419359713, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000002", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 22604.0, + "value": 21970.236247090932, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000003", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 13723.0, + "value": 13338.238896603647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000004", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 21348.0, + "value": 20749.45157507066, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 11825.0, + "value": 11493.454416114417, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 14332.0, + "value": 13930.163948562522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000007", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 21282.0, + "value": 20685.302062050487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 19778.0, + "value": 19223.47073504532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 15516.0, + "value": 15080.967333651693, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 37698.0, + "value": 36641.03548234091, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 30575.0, + "value": 29717.74788775461, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000012", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 16452.0, + "value": 15990.724063755972, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000013", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 16230.0, + "value": 15774.948429051752, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000014", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 36662.0, + "value": 35634.082520387885, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000015", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 36650.0, + "value": 35622.41897256603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000016", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 68188.0, + "value": 66276.16657302408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000017", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 3492.0, + "value": 3394.0924161582698, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000018", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 72739.0, + "value": 70699.56708446059, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000019", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 17020.0, + "value": 16542.79866065686, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000020", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 22212.0, + "value": 21589.22701824384, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000021", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 33648.0, + "value": 32704.588092466627, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000022", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 33174.0, + "value": 32243.877953503565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000023", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 102064.0, + "value": 99202.36207410585, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000024", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 20161.0, + "value": 19595.732303026023, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000025", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 38355.0, + "value": 37279.614725587184, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000026", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 39442.0, + "value": 38336.13776578307, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000027", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 12513.0, + "value": 12162.1644912338, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000030", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 26383.0, + "value": 25643.281848655108, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000031", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 25142.0, + "value": 24437.076611412147, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000032", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 34451.0, + "value": 33485.073834212075, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000033", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 19770.0, + "value": 19215.695036497422, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000034", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 20483.0, + "value": 19908.704169578992, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000035", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 33501.0, + "value": 32561.70963164897, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000036", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 14086.0, + "value": 13691.061218214601, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000037", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 15318.0, + "value": 14888.518794591173, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000038", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 29925.0, + "value": 29085.972380737752, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000039", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 19359.0, + "value": 18816.21852359907, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000040", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 14411.0, + "value": 14006.948971723032, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000041", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 17337.0, + "value": 16850.91071561739, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000042", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 33002.0, + "value": 32076.700434723716, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000043", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 49714.0, + "value": 48320.134701286435, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000044", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 35547.0, + "value": 34550.344535274344, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000045", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 50323.0, + "value": 48912.05975324531, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000046", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 11979.0, + "value": 11643.136613161487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000047", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 66087.0, + "value": 64234.0737418819, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000049", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 38649.0, + "value": 37565.3716472225, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000050", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 40358.0, + "value": 39226.455249517596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000051", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 30717.0, + "value": 29855.766536979834, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000052", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 55140.0, + "value": 53594.00224139948, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000053", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 275.0, + "value": 267.2896375840562, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000054", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 51369.0, + "value": 49928.73233838321, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000055", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 20710.0, + "value": 20129.33961587565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000056", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 32001.0, + "value": 31103.766153917753, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000057", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 29671.0, + "value": 28839.093951841933, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000058", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 49918.0, + "value": 48518.41501425788, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000059", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 30784.0, + "value": 29920.888012318494, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000060", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 53500.0, + "value": 51999.984039080024, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000061", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 38787.0, + "value": 37699.50244717377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000062", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 49636.0, + "value": 48244.32164044441, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000063", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 27466.0, + "value": 26695.917039577045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000064", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 21416.0, + "value": 20815.54501272781, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000065", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 56859.0, + "value": 55264.80546687946, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E06000066", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 54054.0, + "value": 52538.451163522084, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 39162.0, + "value": 38063.98831660658, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 8377.0, + "value": 8142.128341969596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 10395.0, + "value": 10103.548300677325, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 18790.0, + "value": 18263.171964379693, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000012", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 14623.0, + "value": 14213.004983242377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000032", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 12634.0, + "value": 12279.771931770785, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000033", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 9433.0, + "value": 9168.52055029237, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000034", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 11257.0, + "value": 10941.37981921353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000035", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 5376.0, + "value": 5225.269424188677, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000036", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 12811.0, + "value": 12451.809262143068, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000037", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 8515.0, + "value": 8276.259141920867, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000038", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 10201.0, + "value": 9914.987610890754, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000039", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 12027.0, + "value": 11689.790804448887, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000040", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 13379.0, + "value": 13003.883859043955, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000041", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 30556.0, + "value": 29699.280603703348, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000042", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 7365.0, + "value": 7158.502475660269, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000043", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 8966.0, + "value": 8714.61414755872, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000044", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 6876.0, + "value": 6683.212901919892, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000045", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 11421.0, + "value": 11100.781639445475, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000046", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 5444.0, + "value": 5291.362861845825, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000047", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 4370.0, + "value": 4247.475331790275, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000061", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 10723.0, + "value": 10422.351941141216, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000062", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 9107.0, + "value": 8851.660834465454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000063", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 8405.0, + "value": 8169.343286887244, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000064", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 7639.0, + "value": 7424.820150925837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000065", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 13832.0, + "value": 13444.182789318782, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000066", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 21169.0, + "value": 20575.470320061402, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000067", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 16466.0, + "value": 16004.331536214797, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000068", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 7856.0, + "value": 7635.73597403762, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000069", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 8971.0, + "value": 8719.473959151157, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000070", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 20126.0, + "value": 19561.713621878964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000071", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 25244.0, + "value": 24536.21676789787, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000072", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 14159.0, + "value": 13762.014467464187, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000073", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 10860.0, + "value": 10555.510778774002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000074", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 6410.0, + "value": 6230.278461504728, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000075", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 8746.0, + "value": 8500.782437491474, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000076", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 13884.0, + "value": 13494.724829880131, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000077", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 8019.0, + "value": 7794.165831951079, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000078", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 15353.0, + "value": 14922.537475738236, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000079", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 7358.0, + "value": 7151.698739430856, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000080", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 8351.0, + "value": 8116.857321688921, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000081", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 17523.0, + "value": 17031.69570685606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000082", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 10954.0, + "value": 10646.875236711823, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000083", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 9311.0, + "value": 9049.941147436899, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000084", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 20751.0, + "value": 20169.190070933637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000085", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 11014.0, + "value": 10705.192975821072, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000086", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 14299.0, + "value": 13898.089192052434, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000087", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 10593.0, + "value": 10295.996839737845, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000088", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 8756.0, + "value": 8510.502060676348, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000089", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 9724.0, + "value": 9451.361584972226, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000090", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 12102.0, + "value": 11762.687978335447, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000091", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 13876.0, + "value": 13486.949131332232, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000092", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 13259.0, + "value": 12887.248380825458, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000093", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 12545.0, + "value": 12193.2672854254, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000094", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 15636.0, + "value": 15197.60281187019, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000095", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 10823.0, + "value": 10519.548172989964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000096", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 15638.0, + "value": 15199.546736507165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000098", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 11404.0, + "value": 11084.258280031188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000099", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 13473.0, + "value": 13095.248316981779, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000102", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 9278.0, + "value": 9017.866390926813, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000103", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 12738.0, + "value": 12380.856012893482, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000105", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 14154.0, + "value": 13757.154655871751, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000106", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 23380.0, + "value": 22724.479006237212, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000107", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 12807.0, + "value": 12447.921412869118, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000108", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 11130.0, + "value": 10817.94060476562, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000109", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 11625.0, + "value": 11299.061952416921, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000110", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 19496.0, + "value": 18949.37736123185, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000111", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 9978.0, + "value": 9698.240013868046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000112", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 10408.0, + "value": 10116.183810817662, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000113", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 16756.0, + "value": 16286.200608576166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000114", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 13106.0, + "value": 12738.538146096875, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000115", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 12773.0, + "value": 12414.874694040544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000116", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 10200.0, + "value": 9914.015648572265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000117", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 11145.0, + "value": 10832.520039542931, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000118", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 11600.0, + "value": 11274.762894454734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000119", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 6602.0, + "value": 6416.895226654324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000120", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10306.0, + "value": 10017.04365433194, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000121", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 22636.0, + "value": 22001.339041282532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000122", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 10790.0, + "value": 10487.473416479877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000123", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 25638.0, + "value": 24919.169921381937, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000124", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 5432.0, + "value": 5279.699314023976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000125", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 7174.0, + "value": 6972.85767282916, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000126", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 11282.0, + "value": 10965.678877175716, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000127", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 15210.0, + "value": 14783.546864194526, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000128", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 10261.0, + "value": 9973.305350000002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000129", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 10596.0, + "value": 10298.912726693306, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000130", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 28415.0, + "value": 27618.30927982166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000131", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 9608.0, + "value": 9338.613956027679, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000132", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 11098.0, + "value": 10786.837810574021, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000133", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 4705.0, + "value": 4573.082708483579, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000134", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 12665.0, + "value": 12309.902763643897, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000135", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 6348.0, + "value": 6170.016797758504, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000136", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 7261.0, + "value": 7057.418394537571, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000137", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 12377.0, + "value": 12029.977615919503, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000138", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 20478.0, + "value": 19903.844357986556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000139", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 12104.0, + "value": 11764.631902972422, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000140", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 9349.0, + "value": 9086.875715539423, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000141", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 13250.0, + "value": 12878.500719959071, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000142", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 8704.0, + "value": 8459.960020115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000143", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 14383.0, + "value": 13979.734026805383, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000144", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 12236.0, + "value": 11892.93092901277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000145", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 10126.0, + "value": 9842.090437004194, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000146", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 14629.0, + "value": 14218.836757153302, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000147", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 7744.0, + "value": 7526.876194367022, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000148", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 30214.0, + "value": 29366.86949078063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000149", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 12693.0, + "value": 12337.117708561545, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000170", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 13872.0, + "value": 13483.061282058281, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000171", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 12392.0, + "value": 12044.557050696816, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000172", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 14648.0, + "value": 14237.304041204563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000173", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 11700.0, + "value": 11371.959126303482, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000174", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 11827.0, + "value": 11495.398340751392, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000175", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 12653.0, + "value": 12298.239215822046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000176", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 12749.0, + "value": 12391.547598396844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000177", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 17464.0, + "value": 16974.3499300653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000178", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 40173.0, + "value": 39046.642220597416, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000179", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 14616.0, + "value": 14206.201247012965, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000180", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 14500.0, + "value": 14093.453618068417, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000181", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 12345.0, + "value": 11998.874821727904, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000192", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 11711.0, + "value": 11382.650711806844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000193", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 13991.0, + "value": 13598.724797958292, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000194", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 10899.0, + "value": 10593.417309195012, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000195", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 17569.0, + "value": 17076.405973506484, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000196", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 11166.0, + "value": 10852.931248231169, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000197", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 13888.0, + "value": 13498.612679154081, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000198", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 8266.0, + "value": 8034.240524617485, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000199", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 8798.0, + "value": 8551.324478052824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000200", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 8624.0, + "value": 8382.203034636002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000202", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 16276.0, + "value": 15819.658695702177, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000203", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 10692.0, + "value": 10392.221109268105, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000207", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 10682.0, + "value": 10382.50148608323, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000208", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 7988.0, + "value": 7764.035000077966, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000209", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 23874.0, + "value": 23204.628391570026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000210", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 7432.0, + "value": 7223.623950998929, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000211", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 14983.0, + "value": 14562.911417897869, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000212", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 13251.0, + "value": 12879.47268227756, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000213", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 10773.0, + "value": 10470.950057065591, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000214", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 8736.0, + "value": 8491.062814306599, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000215", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 7901.0, + "value": 7679.4742783695565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000216", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 10881.0, + "value": 10575.921987462238, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000217", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 10956.0, + "value": 10648.819161348798, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000218", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 6731.0, + "value": 6542.278365739208, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000219", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 15299.0, + "value": 14870.051510539912, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000220", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 12155.0, + "value": 11814.201981215283, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000221", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 12043.0, + "value": 11705.342201544687, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000222", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 21476.0, + "value": 20873.862751837056, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000223", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 5471.0, + "value": 5317.605844444987, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000224", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 15387.0, + "value": 14955.584194566809, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000225", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 12904.0, + "value": 12542.201757762405, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000226", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 14148.0, + "value": 13751.322881960825, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000227", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 12581.0, + "value": 12228.25792889095, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000228", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 13912.0, + "value": 13521.93977479778, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000229", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 10960.0, + "value": 10652.70701062275, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000234", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 9013.0, + "value": 8760.29637652763, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000235", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 6709.0, + "value": 6520.895194732483, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000236", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 9300.0, + "value": 9039.249561933537, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000237", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 13996.0, + "value": 13603.58460955073, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000238", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 12338.0, + "value": 11992.071085498492, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000239", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 9983.0, + "value": 9703.099825460484, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000240", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 12906.0, + "value": 12544.14568239938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000241", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 18298.0, + "value": 17784.966503683856, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000242", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 14783.0, + "value": 14368.518954200374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000243", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 10265.0, + "value": 9977.193199273952, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000244", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 21251.0, + "value": 20655.171230177373, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E07000245", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 22842.0, + "value": 22201.56327889095, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000001", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 34976.0, + "value": 33995.354051418, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000002", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 20917.0, + "value": 20330.53581580256, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000003", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 131064.0, + "value": 127389.26931024269, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000004", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 29486.0, + "value": 28659.28092292175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 26700.0, + "value": 25951.393903615637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 54340.0, + "value": 52816.4323866095, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000007", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 29622.0, + "value": 28791.467798236044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 26413.0, + "value": 25672.44071820973, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 23167.0, + "value": 22517.45103239938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 37928.0, + "value": 36864.58681559303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 18956.0, + "value": 18424.517709248616, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000012", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 98109.0, + "value": 95358.25110448789, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000013", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 20550.0, + "value": 19973.825644917655, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000014", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 27653.0, + "value": 26877.6739931342, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000015", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 32809.0, + "value": 31889.111707255634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000016", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 27006.0, + "value": 26248.814373072804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000017", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 34744.0, + "value": 33769.8587935289, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000018", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 30291.0, + "value": 29441.710589304166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000019", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 97824.0, + "value": 95081.24184371895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000021", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 65396.0, + "value": 63562.44777980705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000022", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 21119.0, + "value": 20526.872204137027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000023", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 15488.0, + "value": 15053.752388734045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000024", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 31904.0, + "value": 31009.485809024467, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000025", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 187501.0, + "value": 182243.90667872044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000026", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 62369.0, + "value": 60620.317841745455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000027", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 36428.0, + "value": 35406.64333786182, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000028", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 43127.0, + "value": 41917.81890940942, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000029", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 22126.0, + "value": 21505.638258853916, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000030", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 33517.0, + "value": 32577.261028744768, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000031", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 32786.0, + "value": 31866.756573930423, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000032", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 70222.0, + "value": 68253.13792882761, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000033", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 21744.0, + "value": 21134.3486531917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000034", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 52916.0, + "value": 51432.35804508333, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000035", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 137184.0, + "value": 133337.67869938604, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000036", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 39904.0, + "value": 38785.184356924285, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E08000037", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 22981.0, + "value": 22336.66604116071, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000001", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 4189.0, + "value": 4071.5501521440415, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000002", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 29853.0, + "value": 29015.991093806653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000003", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 48887.0, + "value": 47516.32186389729, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000004", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 28156.0, + "value": 27366.571039333405, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 58397.0, + "value": 56759.6835127132, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 31557.0, + "value": 30672.214884509314, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000007", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 50945.0, + "value": 49516.62031534452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 49380.0, + "value": 47995.49928691162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 55034.0, + "value": 53490.97423563981, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 39944.0, + "value": 38824.06284966378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 44786.0, + "value": 43530.30439578015, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000012", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 53411.0, + "value": 51913.47939273464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000013", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 42944.0, + "value": 41739.94980512621, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000014", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 40186.0, + "value": 39059.277730737755, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000015", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 33662.0, + "value": 32718.195564925452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000016", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 30271.0, + "value": 29422.27134293442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000017", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 43931.0, + "value": 42699.276613473354, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000018", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 39772.0, + "value": 38656.88533088394, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000019", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 52448.0, + "value": 50977.479680031196, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000020", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 27997.0, + "value": 27212.029030693895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000021", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 22248.0, + "value": 21624.21766170939, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000022", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 74971.0, + "value": 72868.98697932465, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000023", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 45667.0, + "value": 44386.603198367615, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000024", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 27707.0, + "value": 26930.159958332526, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000025", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 73748.0, + "value": 71680.27706381446, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000026", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 43366.0, + "value": 42150.11790352793, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000027", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 18114.0, + "value": 17606.12543708216, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000028", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 67594.0, + "value": 65698.82095584253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000029", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 21177.0, + "value": 20583.2460186093, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000030", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 86531.0, + "value": 84104.87138103988, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000031", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 36137.0, + "value": 35123.80230318196, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000032", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 74472.0, + "value": 72383.9777823994, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@E09000033", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 46566.0, + "value": 45260.39732268786, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000001", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000002", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000003", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000004", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000007", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@N09000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 22241.302301058255, + "value": 21617.70775071744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 6479.752866231741, + "value": 6298.075619088478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 18258.01584493182, + "value": 17746.10341162102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 15057.93549145328, + "value": 14635.745891907796, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 14051.770459113228, + "value": 13657.791394293532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 12116.15422090383, + "value": 11776.445347701518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000013", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 3271.2878041503673, + "value": 3179.5684785617987, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000014", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 19823.453455571336, + "value": 19267.649781105705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000017", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 29452.978423664612, + "value": 28627.185195026694, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000018", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 9814.61428187822, + "value": 9539.43525247466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000019", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 12079.862198593057, + "value": 11741.17086955374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000020", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 11675.143577375677, + "value": 11347.79962014024, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000021", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 16695.95714671434, + "value": 16227.841217688032, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000023", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2747.931813448116, + "value": 2670.886176444528, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000026", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 14619.552890920044, + "value": 14209.654523108944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000027", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2876.5807752945802, + "value": 2795.9281196718243, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000028", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 13956.034607155498, + "value": 13564.739753662323, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000029", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 40929.39189266268, + "value": 39781.826638274964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000030", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 11588.918738161457, + "value": 11263.992325506377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000033", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 28035.08665545407, + "value": 27249.047824632467, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000034", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 33003.58965470341, + "value": 32078.245519194843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000035", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 10758.707441576396, + "value": 10457.058228843067, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000036", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 64392.43460638646, + "value": 62587.02003307663, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000038", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 23010.894173693363, + "value": 22365.72205153298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000039", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 11062.684414655252, + "value": 10752.512392363597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000040", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 22686.018001559685, + "value": 22049.95465404459, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000041", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 14309.318672615196, + "value": 13908.118553011214, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000042", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 18608.671867396595, + "value": 18086.927852207486, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000045", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 13632.9104636851, + "value": 13250.675262015557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000047", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 46526.497747315516, + "value": 45222.00262158317, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000048", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 18890.99877199351, + "value": 18361.33896497089, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000049", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 77684.45035015934, + "value": 75506.35847276618, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@S12000050", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 42671.03352886622, + "value": 41474.63668097368, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000001", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 6191.0, + "value": 6017.41871375597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000002", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 15579.0, + "value": 15142.200959716405, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000003", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 10067.0, + "value": 9784.744660213431, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000004", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 9257.0, + "value": 8997.455182238575, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000005", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 15493.0, + "value": 15058.612200326483, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000006", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 14646.0, + "value": 14235.360116567588, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000008", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 10630.0, + "value": 10331.959445521881, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000009", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 11367.0, + "value": 11048.295674247152, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000010", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 18110.0, + "value": 17602.23758780821, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000011", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 36874.0, + "value": 35840.13853190723, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000012", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 15107.0, + "value": 14683.434745390316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000013", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 15496.0, + "value": 15061.528087281944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000014", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 13136.0, + "value": 12767.697015651498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000015", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 78437.0, + "value": 76237.80837520224, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000016", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 28977.0, + "value": 28164.552102811624, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000018", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 19144.0, + "value": 18607.246625124262, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000019", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 7465.0, + "value": 7255.6987075090165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000020", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 10088.0, + "value": 9805.15586890167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000021", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 8264.0, + "value": 8032.29659998051, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000022", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 18971.0, + "value": 18439.097144025927, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000023", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 11597.0, + "value": 11271.847007499271, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/20_30@W06000024", + "metric": "age/20_30", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 6542.0, + "value": 6358.577487545075, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000001", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 12068.0, + "value": 11729.641259506872, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000002", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 23240.0, + "value": 22588.404281648967, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000003", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 16052.0, + "value": 15601.939136360981, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000004", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 28017.0, + "value": 27231.468277063643, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 14343.0, + "value": 13940.855534065884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 17495.0, + "value": 17004.480761938412, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000007", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 28293.0, + "value": 27499.729876966187, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 21738.0, + "value": 21128.516879280774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 18916.0, + "value": 18385.639216509117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 42406.0, + "value": 41217.03407777995, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 38669.0, + "value": 37584.81089359225, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000012", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 20420.0, + "value": 19847.470543514282, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000013", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 21157.0, + "value": 20563.806772239554, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000014", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 25613.0, + "value": 24894.87086341975, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000015", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 37826.0, + "value": 36765.44665910731, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000016", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 56230.0, + "value": 54653.44116855083, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000017", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 4099.0, + "value": 3984.0735434801686, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000018", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 46545.0, + "value": 45239.98611399962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000019", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 21414.0, + "value": 20813.601088090832, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000020", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 26509.0, + "value": 25765.749100784527, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000021", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 37964.0, + "value": 36899.57745905858, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000022", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 23776.0, + "value": 23109.376084358253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000023", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 82496.0, + "value": 80183.00342594291, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000024", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 26271.0, + "value": 25534.42206898451, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000025", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 43192.0, + "value": 41980.996460111106, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000026", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 36920.0, + "value": 35884.84879855765, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000027", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 15394.0, + "value": 14962.387930796222, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000030", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 35458.0, + "value": 34463.83988892896, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000031", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 34615.0, + "value": 33644.47565444402, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000032", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 35735.0, + "value": 34733.07345114999, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000033", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 24541.0, + "value": 23852.927258001175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000034", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 27846.0, + "value": 27065.262720602284, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000035", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 41793.0, + "value": 40621.22117654713, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000036", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 19340.0, + "value": 18797.751239547808, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000037", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 20399.0, + "value": 19827.059334826045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000038", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 30142.0, + "value": 29296.888203849532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000039", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 25620.0, + "value": 24901.674599649163, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000040", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 19271.0, + "value": 18730.685839572172, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000041", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 23338.0, + "value": 22683.65658886074, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000042", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 46445.0, + "value": 45142.78988215087, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000043", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 40377.0, + "value": 39244.92253356886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000044", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 32142.0, + "value": 31240.81284082449, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000045", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 39276.0, + "value": 38174.79202091415, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000046", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 14536.0, + "value": 14128.444261533967, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000047", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 63108.0, + "value": 61338.5979951077, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000049", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 52429.0, + "value": 50959.01239597993, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000050", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 47232.0, + "value": 45907.724226800514, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000051", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 36883.0, + "value": 35848.886192773614, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000052", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 64461.0, + "value": 62653.66301202126, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000053", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 226.0, + "value": 219.6634839781698, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000054", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 63369.0, + "value": 61592.280160232935, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000055", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 27508.0, + "value": 26736.739456953517, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000056", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 45768.0, + "value": 44484.77139253485, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000057", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 36062.0, + "value": 35050.905129295395, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000058", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 52211.0, + "value": 50747.12461054966, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000059", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 38406.0, + "value": 37329.184803830045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000060", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 73115.0, + "value": 71065.02491621189, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000061", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 51474.0, + "value": 50030.78838182439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000062", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 62661.0, + "value": 60904.1308387438, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000063", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 33059.0, + "value": 32132.102286877504, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000064", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 25441.0, + "value": 24727.693344639905, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000065", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 69786.0, + "value": 67829.36235796707, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E06000066", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 67341.0, + "value": 65452.91448926519, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 24072.0, + "value": 23397.07693063055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 12001.0, + "value": 11664.519784168213, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 13047.0, + "value": 12681.192369306113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 25524.0, + "value": 24808.366217074363, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000012", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 21965.0, + "value": 21349.152325577434, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000032", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 15534.0, + "value": 15098.462655384468, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000033", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 11199.0, + "value": 10885.006004741255, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000034", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 13328.0, + "value": 12954.313780801094, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000035", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 6535.0, + "value": 6351.773751315663, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000036", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 14963.0, + "value": 14543.47217152812, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000037", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 11126.0, + "value": 10814.05275549167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000038", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 12639.0, + "value": 12284.631743363223, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000039", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 15892.0, + "value": 15446.425165402985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000040", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 16162.0, + "value": 15708.854991394604, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000041", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 18272.0, + "value": 17759.695483403182, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000042", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 9491.0, + "value": 9224.894364764645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000043", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 10951.0, + "value": 10643.959349756362, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000044", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 9303.0, + "value": 9042.165448889, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000045", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 15114.0, + "value": 14690.238481619728, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000046", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 6686.0, + "value": 6498.540061407271, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000047", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 5593.0, + "value": 5436.185247300459, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000061", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 12518.0, + "value": 12167.024302826238, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000062", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 12003.0, + "value": 11666.463708805188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000063", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 10886.0, + "value": 10580.781799054676, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000064", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 8600.0, + "value": 8358.875938992303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000065", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 17245.0, + "value": 16761.490182316542, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000066", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 28349.0, + "value": 27554.159766801487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000067", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 21439.0, + "value": 20837.90014605302, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000068", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 10742.0, + "value": 10440.81922519248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000069", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 10350.0, + "value": 10059.809996345388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000070", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 25543.0, + "value": 24826.833501125628, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000071", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 27962.0, + "value": 27178.010349546832, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000072", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 17707.0, + "value": 17210.536773457756, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000073", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 15876.0, + "value": 15430.873768307185, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000074", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 7393.0, + "value": 7185.717420577917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000075", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 10339.0, + "value": 10049.118410842026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000076", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 15789.0, + "value": 15346.313046598776, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000077", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 10991.0, + "value": 10682.837842495861, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000078", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 16433.0, + "value": 15972.25677970471, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000079", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 9258.0, + "value": 8998.427144557063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000080", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 9931.0, + "value": 9652.557784899134, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000081", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 19494.0, + "value": 18947.433436594878, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000082", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 14380.0, + "value": 13976.81813984992, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000083", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 13118.0, + "value": 12750.201693918723, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000084", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 28138.0, + "value": 27349.07571760063, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000085", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 14297.0, + "value": 13896.145267415459, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000086", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 19904.0, + "value": 19345.937987174744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000087", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 13014.0, + "value": 12649.117612796026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000088", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 10258.0, + "value": 9970.38946304454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000089", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 12344.0, + "value": 11997.902859409416, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000090", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 15165.0, + "value": 14739.80855986259, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000091", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 17003.0, + "value": 16526.27530124257, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000092", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 17519.0, + "value": 17027.80785758211, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000093", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 17589.0, + "value": 17095.845219876235, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000094", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 15194.0, + "value": 14767.995467098726, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000095", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 14274.0, + "value": 13873.790134090248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000096", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 22597.0, + "value": 21963.43251086152, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000098", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 14122.0, + "value": 13726.051861680151, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000099", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 18465.0, + "value": 17947.284210871265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000102", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 11530.0, + "value": 11206.72553216061, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000103", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 17721.0, + "value": 17224.14424591658, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000105", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 18714.0, + "value": 18189.302828174645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000106", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 17870.0, + "value": 17368.966631371215, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000107", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 20181.0, + "value": 19615.171549395774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000108", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 14278.0, + "value": 13877.677983364198, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000109", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 15088.0, + "value": 14664.967461339054, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000110", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 26192.0, + "value": 25457.637045823998, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000111", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 14017.0, + "value": 13623.995818238966, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000112", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 12752.0, + "value": 12394.463485352308, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000113", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 21246.0, + "value": 20650.311418584937, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000114", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 17413.0, + "value": 16924.779851822437, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000115", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 17499.0, + "value": 17008.36861121236, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000116", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 14099.0, + "value": 13703.696728354938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000117", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 13661.0, + "value": 13277.977232857424, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000118", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 15804.0, + "value": 15360.892481376088, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000119", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 8906.0, + "value": 8656.29640844947, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000120", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 11587.0, + "value": 11262.127384314397, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000121", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 16839.0, + "value": 16366.873481010625, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000122", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 12845.0, + "value": 12484.855980971643, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000123", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 22638.0, + "value": 22003.282965919505, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000124", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 6999.0, + "value": 6802.764267093852, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000125", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 9351.0, + "value": 9088.819640176398, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000126", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 14677.0, + "value": 14265.4909484407, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000127", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 13673.0, + "value": 13289.640780679274, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000128", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 12482.0, + "value": 12132.033659360688, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000129", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 14469.0, + "value": 14063.322786195306, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000130", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 23871.0, + "value": 23201.712504614563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000131", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 12428.0, + "value": 12079.547694162366, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000132", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 14820.0, + "value": 14404.48155998441, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000133", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 5979.0, + "value": 5811.362702236625, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000134", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 14868.0, + "value": 14451.13575127181, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000135", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 7604.0, + "value": 7390.801469778776, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000136", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 9321.0, + "value": 9059.660770621773, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000137", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 13632.0, + "value": 13249.790325621287, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000138", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 15261.0, + "value": 14833.116942437387, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000139", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 14761.0, + "value": 14347.13578319365, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000140", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 11940.0, + "value": 11605.230082740476, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000141", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 17084.0, + "value": 16605.00424904006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000142", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 10880.0, + "value": 10574.950025143751, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000143", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 17168.0, + "value": 16686.649083793007, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000144", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 15597.0, + "value": 15159.69628144918, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000145", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 11681.0, + "value": 11353.491842252219, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000146", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 18260.0, + "value": 17748.03193558133, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000147", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 9292.0, + "value": 9031.473863385636, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000148", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 22293.0, + "value": 21667.955966041325, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000149", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 17583.0, + "value": 17090.01344596531, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000170", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 17555.0, + "value": 17062.79850104766, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000171", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 15419.0, + "value": 14986.686988758409, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000172", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 14693.0, + "value": 14281.0423455365, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000173", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 15684.0, + "value": 15244.25700315759, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000174", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 15950.0, + "value": 15502.798979875259, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000175", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 15773.0, + "value": 15330.761649502976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000176", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 14728.0, + "value": 14315.061026683563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000177", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 25445.0, + "value": 24731.581193913855, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000178", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 24571.0, + "value": 23882.086127555798, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000179", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 19807.0, + "value": 19251.657642281458, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000180", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 20274.0, + "value": 19705.56404501511, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000181", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 15367.0, + "value": 14936.14494819706, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000192", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 14483.0, + "value": 14076.93025865413, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000193", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 17701.0, + "value": 17204.70499954683, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000194", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 13437.0, + "value": 13060.25767351623, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000195", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 15667.0, + "value": 15227.733643743302, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000196", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 13136.0, + "value": 12767.697015651498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000197", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 18083.0, + "value": 17575.99460520905, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000198", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 10299.0, + "value": 10010.239918102527, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000199", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 11661.0, + "value": 11334.05259588247, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000200", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 10030.0, + "value": 9748.782054429395, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000202", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 21024.0, + "value": 20434.535783880718, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000203", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 12246.0, + "value": 11902.650552197643, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000207", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 16288.0, + "value": 15831.322243524026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000208", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 9954.0, + "value": 9674.912918224347, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000209", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 19119.0, + "value": 18582.947567162075, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000210", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 9068.0, + "value": 8813.754304044442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000211", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 22287.0, + "value": 21662.124192130403, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000212", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11700.0, + "value": 11371.959126303482, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000213", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 14911.0, + "value": 14492.93013096677, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000214", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 11538.0, + "value": 11214.50123070851, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000215", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 10624.0, + "value": 10326.127671610957, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000216", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 14471.0, + "value": 14065.26671083228, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000217", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 15057.0, + "value": 14634.836629465943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000218", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 8449.0, + "value": 8212.109628900693, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000219", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 19691.0, + "value": 19138.91001333691, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000220", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 17547.0, + "value": 17055.02280249976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000221", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 16298.0, + "value": 15841.041866708902, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000222", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 21121.0, + "value": 20528.816128774004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000223", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 7529.0, + "value": 7317.904295892215, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000224", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 19151.0, + "value": 18614.05036135367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000225", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 13715.0, + "value": 13330.463198055748, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000226", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 19738.0, + "value": 19184.592242305822, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000227", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 17761.0, + "value": 17263.02273865608, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000228", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 20045.0, + "value": 19482.98467408148, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000229", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 14479.0, + "value": 14073.04240938018, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000234", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 11903.0, + "value": 11569.26747695644, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000235", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 7931.0, + "value": 7708.633147924181, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000236", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 12528.0, + "value": 12176.743926011113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000237", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 15031.0, + "value": 14609.565609185267, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000238", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 15867.0, + "value": 15422.126107440798, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000239", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 12138.0, + "value": 11797.678621800997, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000240", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 17837.0, + "value": 17336.89187486113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000241", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 17069.0, + "value": 16590.424814262748, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000242", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 20265.0, + "value": 19696.816384148722, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000243", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 14593.0, + "value": 14183.846113687752, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000244", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 25188.0, + "value": 24481.786878062572, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E07000245", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 26034.0, + "value": 25304.06699950298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000001", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 41204.0, + "value": 40048.735370958006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000002", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 27333.0, + "value": 26566.64605121821, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000003", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 91748.0, + "value": 89175.59879658904, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000004", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 33411.0, + "value": 32474.233022985096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 32275.0, + "value": 31370.08382918332, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 49071.0, + "value": 47695.162930498984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000007", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 41837.0, + "value": 40663.98751856058, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 34038.0, + "value": 33083.653396676746, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 31513.0, + "value": 30629.448542495866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 47904.0, + "value": 46560.8829048241, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 24005.0, + "value": 23331.955455291885, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000012", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 73063.0, + "value": 71014.48287565053, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000013", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 25061.0, + "value": 24358.347663614662, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000014", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 35390.0, + "value": 34397.746451271814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000015", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 40509.0, + "value": 39373.22155960921, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000016", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 34451.0, + "value": 33485.073834212075, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000017", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 44151.0, + "value": 42913.1083235406, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000018", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 36885.0, + "value": 35850.830117410595, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000019", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 80204.0, + "value": 77955.2657919696, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000021", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 43288.0, + "value": 42074.30484268591, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000022", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 29055.0, + "value": 28240.365163653645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000023", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 20008.0, + "value": 19447.02206829744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000024", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 38397.0, + "value": 37320.43714296366, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000025", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 167016.0, + "value": 162333.25858450448, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000026", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 53284.0, + "value": 51790.04017828673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000027", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 43202.0, + "value": 41990.716083295985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000028", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 50043.0, + "value": 48639.91030406881, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000029", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 26801.0, + "value": 26049.562097782873, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000030", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 39846.0, + "value": 38728.81054245201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000031", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 38777.0, + "value": 37689.7828239889, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000032", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 78712.0, + "value": 76505.0980127863, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000033", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 26636.0, + "value": 25889.188315232437, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000034", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 59107.0, + "value": 57449.7767588393, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000035", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 119263.0, + "value": 115919.14198977198, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000036", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 52386.0, + "value": 50917.218016284976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E08000037", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 27082.0, + "value": 26322.683509277853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000001", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 3332.0, + "value": 3238.5784452002736, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000002", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 34977.0, + "value": 33996.326013736485, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000003", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 58161.0, + "value": 56530.30040555015, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000004", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 35654.0, + "value": 34654.344503352506, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 54438.0, + "value": 52911.68469382128, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 46491.0, + "value": 45187.50014880129, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000007", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 36880.0, + "value": 35845.970305818155, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 63221.0, + "value": 61448.42973709678, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 60206.0, + "value": 58517.96334685705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 43878.0, + "value": 42647.76261059352, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 53867.0, + "value": 52356.694209964924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000012", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 55124.0, + "value": 53578.45084430368, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000013", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 33479.0, + "value": 32540.326460642245, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000014", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 47393.0, + "value": 46064.210160077, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000015", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 39774.0, + "value": 38658.82925552091, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000016", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 39714.0, + "value": 38600.511516411665, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000017", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 50307.0, + "value": 48896.508356149505, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000018", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 49075.0, + "value": 47699.05077977294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000019", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 45391.0, + "value": 44118.34159846507, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000020", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 22488.0, + "value": 21857.488618146384, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000021", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 24977.0, + "value": 24276.702828861715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000022", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 59931.0, + "value": 58250.67370927299, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000023", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 57737.0, + "value": 56118.188382511464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000024", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 36388.0, + "value": 35367.764845122314, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000025", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 67904.0, + "value": 66000.12927457364, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000026", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 47449.0, + "value": 46118.6400499123, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000027", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 24467.0, + "value": 23781.002046433103, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000028", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 62870.0, + "value": 61107.27096330768, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000029", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 29751.0, + "value": 28916.85093732093, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000030", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 72083.0, + "value": 70061.95980353281, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000031", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 53543.0, + "value": 52041.778418774986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000032", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 67411.0, + "value": 65520.951851559315, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@E09000033", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 38091.0, + "value": 37023.016673506485, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000001", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000002", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000003", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000004", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000007", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@N09000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 25529.146989040783, + "value": 24813.368896475673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 7117.040761550044, + "value": 6917.49543936606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 20053.70354023608, + "value": 19491.44418722839, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 16538.893209331134, + "value": 16075.18098895828, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 15433.771193748025, + "value": 15001.044032480568, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 13307.785843620662, + "value": 12934.666382500365, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000013", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 3593.0210805152415, + "value": 3492.281099791974, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000014", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 21773.102954779508, + "value": 21162.635628594027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000017", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 32349.69794645534, + "value": 31442.68741840631, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000018", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 10779.887959467802, + "value": 10477.644894119563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000019", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 13267.924477386947, + "value": 12895.922636557763, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000020", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 12823.401517387469, + "value": 12463.863069735755, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000021", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 18338.015356342, + "value": 17823.859922209125, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000023", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 3018.192688827608, + "value": 2933.569563474834, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000026", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 16057.395395825211, + "value": 15607.183257796412, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000027", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 3159.494359476792, + "value": 3070.909462885169, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000028", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 15328.619658683214, + "value": 14898.840702666455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000029", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 44954.824120466445, + "value": 43694.395079325324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000030", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 12728.696409335631, + "value": 12371.813273341084, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000033", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 30792.355603600037, + "value": 29929.00934416595, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000034", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 36249.514093983205, + "value": 35233.161762832395, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000035", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 11816.833293492553, + "value": 11485.516685123031, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000036", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 70725.47229653993, + "value": 68742.49402946678, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000038", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 25274.030533996156, + "value": 24565.40531534619, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000039", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 12150.706598946703, + "value": 11810.028957173325, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000040", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 24917.20257971086, + "value": 24218.581989597915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000041", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 15716.649441020418, + "value": 15275.991029549115, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000042", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 20438.846809846014, + "value": 19865.788932508305, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000045", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 14973.7160462161, + "value": 14553.887764653338, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000047", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 51102.408964615024, + "value": 49669.61589754245, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000048", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 20748.940748546953, + "value": 20167.188556116984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000049", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 85324.76640613309, + "value": 82932.45778050751, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@S12000050", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 46867.757340723925, + "value": 45553.6940871985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000001", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 7331.0, + "value": 7125.455756831694, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000002", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 13430.0, + "value": 13053.453937286817, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000003", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 11972.0, + "value": 11636.332876932076, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000004", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 10752.0, + "value": 10450.538848377353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000005", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 19408.0, + "value": 18863.844677204954, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000006", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 17733.0, + "value": 17235.80779373843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000008", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 6912.0, + "value": 6718.203545385441, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000009", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 13690.0, + "value": 13306.16414009356, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000010", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 21726.0, + "value": 21116.853331458926, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000011", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 31530.0, + "value": 30645.97190191015, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000012", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 18209.0, + "value": 17698.46185733847, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000013", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 19442.0, + "value": 18896.89139603353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000014", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 16544.0, + "value": 16080.14459705682, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000015", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 55625.0, + "value": 54065.40396586591, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000016", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 32939.0, + "value": 32015.466808659006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000018", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 23516.0, + "value": 22856.66588155151, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000019", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 9183.0, + "value": 8925.529970670501, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000020", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 12676.0, + "value": 12320.594349147259, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000021", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 10263.0, + "value": 9975.249274636977, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000022", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 25689.0, + "value": 24968.7399996248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000023", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 13533.0, + "value": 13153.566056091027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/30_40@W06000024", + "metric": "age/30_40", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 8238.0, + "value": 8007.025579699836, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000001", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 10497.0, + "value": 10202.688457163047, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000002", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 16700.0, + "value": 16231.770718740867, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000003", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 14856.0, + "value": 14439.47220344996, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000004", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 24737.0, + "value": 24043.43187242472, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 13508.0, + "value": 13129.26699812884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 16257.0, + "value": 15801.191411650914, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000007", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 27711.0, + "value": 26934.047807606476, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 20346.0, + "value": 19775.545331946207, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 15832.0, + "value": 15388.107426293736, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 32454.0, + "value": 31544.06508419258, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 38667.0, + "value": 37582.86696895528, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000012", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 17603.0, + "value": 17109.452692335057, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000013", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 19280.0, + "value": 18739.433500438558, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000014", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 23757.0, + "value": 23090.908800306992, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000015", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 33229.0, + "value": 32297.335881020375, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000016", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 48797.0, + "value": 47428.84525523342, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000017", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 4710.0, + "value": 4577.942520076017, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000018", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 36099.0, + "value": 35086.86773507943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000019", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 20732.0, + "value": 20150.722786882376, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000020", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 23344.0, + "value": 22689.488362771663, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000021", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 31551.0, + "value": 30666.383110598388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000022", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 22069.0, + "value": 21450.236406700133, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000023", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 59095.0, + "value": 57438.11321101746, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000024", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 27887.0, + "value": 27105.113175660274, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000025", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 36894.0, + "value": 35859.57777827698, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000026", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 31777.0, + "value": 30886.046594576557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000027", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 15170.0, + "value": 14744.668371455027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000030", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 32836.0, + "value": 31915.354689854797, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000031", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 30219.0, + "value": 29371.729302373067, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000032", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 31309.0, + "value": 30431.168229524417, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000033", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 24543.0, + "value": 23854.871182638148, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000034", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 24713.0, + "value": 24020.10477678102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000035", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 37565.0, + "value": 36511.764493982075, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000036", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 18550.0, + "value": 18029.9010079427, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000037", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 21386.0, + "value": 20786.386143173186, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000038", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 25018.0, + "value": 24316.5532839197, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000039", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 26027.0, + "value": 25297.263263273566, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000040", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 22637.0, + "value": 22002.31100360102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000041", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 28381.0, + "value": 27585.262560993087, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000042", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 45056.0, + "value": 43792.73422177177, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000043", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 37701.0, + "value": 36643.951369296374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000044", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 25330.0, + "value": 24619.805527287794, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000045", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 31960.0, + "value": 31063.915698859768, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000046", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 14522.0, + "value": 14114.836789075141, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000047", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 59868.0, + "value": 58189.440083208276, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000049", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 50629.0, + "value": 49209.48022270248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000050", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 43769.0, + "value": 42541.818717878385, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000051", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 35188.0, + "value": 34201.41006293734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000052", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 65049.0, + "value": 63225.176855291895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000053", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 270.0, + "value": 262.4298259916188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000054", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 61205.0, + "value": 59488.95370302603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000055", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 26014.0, + "value": 25284.627753133227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000056", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 40351.0, + "value": 39219.65151328818, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000057", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 36507.0, + "value": 35483.42836102233, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000058", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 51409.0, + "value": 49967.61083112271, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000059", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 39226.0, + "value": 38126.19390498978, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000060", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 78514.0, + "value": 76312.64947372577, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000061", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 47763.0, + "value": 46423.836217917364, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000062", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 57669.0, + "value": 56052.09494485431, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000063", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 30896.0, + "value": 30029.74779198909, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000064", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 24888.0, + "value": 24190.198182516328, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000065", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 69253.0, + "value": 67311.30644221324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E06000066", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 64470.0, + "value": 62662.41067288764, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 17462.0, + "value": 16972.406005428325, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 12327.0, + "value": 11981.37949999513, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 11817.0, + "value": 11485.678717566516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 24033.0, + "value": 23359.170400209536, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000012", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 24424.0, + "value": 23739.20766673814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000032", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 15118.0, + "value": 14694.126330893678, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000033", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 9437.0, + "value": 9172.40839956632, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000034", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 12524.0, + "value": 12172.856076737162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000035", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 7594.0, + "value": 7381.081846593901, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000036", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 13685.0, + "value": 13301.304328501123, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000037", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 10700.0, + "value": 10399.996807816004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000038", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 11821.0, + "value": 11489.566566840465, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000039", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 14361.0, + "value": 13958.350855798659, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000040", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 16589.0, + "value": 16123.882901388757, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000041", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 15382.0, + "value": 14950.724382974371, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000042", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 9678.0, + "value": 9406.651318321803, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000043", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 11209.0, + "value": 10894.725627926131, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000044", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 9872.0, + "value": 9595.212008108374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000045", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 15045.0, + "value": 14623.173081644092, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000046", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 7051.0, + "value": 6853.306307655201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000047", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 6198.0, + "value": 6024.222449985383, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000061", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 12221.0, + "value": 11878.351494235458, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000062", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 11174.0, + "value": 10860.706946779068, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000063", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 11921.0, + "value": 11586.762798689213, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000064", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 9035.0, + "value": 8781.679547534355, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000065", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 18099.0, + "value": 17591.546002304847, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000066", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 24210.0, + "value": 23531.20773058182, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000067", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 19714.0, + "value": 19161.26514666212, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000068", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 10074.0, + "value": 9791.548396442844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000069", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 9995.0, + "value": 9714.763373282332, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000070", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 24861.0, + "value": 24163.955199917167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000071", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 25608.0, + "value": 24890.011051827314, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000072", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 17811.0, + "value": 17311.620854580455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000073", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 12856.0, + "value": 12495.547566475005, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000074", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 7649.0, + "value": 7434.539774110712, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000075", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 10610.0, + "value": 10312.520199152132, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000076", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 15113.0, + "value": 14689.26651930124, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000077", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 12289.0, + "value": 11944.444931892605, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000078", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 15383.0, + "value": 14951.69634529286, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000079", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 10698.0, + "value": 10398.052883179029, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000080", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 9443.0, + "value": 9178.240173477247, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000081", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 16972.0, + "value": 16496.14446936946, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000082", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 15389.0, + "value": 14957.528119203784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000083", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 12122.0, + "value": 11782.127224705197, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000084", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 25778.0, + "value": 25055.244645970182, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000085", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 15742.0, + "value": 15300.630817629864, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000086", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 18463.0, + "value": 17945.34028623429, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000087", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 13269.0, + "value": 12896.968004010332, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000088", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 9473.0, + "value": 9207.39904303187, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000089", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 13869.0, + "value": 13480.14539510282, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000090", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 13507.0, + "value": 13128.295035810352, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000091", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 18676.0, + "value": 18152.368260072122, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000092", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 13848.0, + "value": 13459.734186414582, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000093", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 17161.0, + "value": 16679.845347563594, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000094", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 16273.0, + "value": 15816.742808746714, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000095", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 13343.0, + "value": 12968.893215578406, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000096", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 21940.0, + "value": 21324.853267615246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000098", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 15536.0, + "value": 15100.406580021443, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000099", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 18814.0, + "value": 18286.499060023394, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000102", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 14136.0, + "value": 13739.659334138976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000103", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 16099.0, + "value": 15647.621365329893, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000105", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 17078.0, + "value": 16599.172475129133, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000106", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 17496.0, + "value": 17005.4527242569, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000107", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 17788.0, + "value": 17289.26572125524, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000108", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 13092.0, + "value": 12724.93067363805, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000109", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 13940.0, + "value": 13549.15471971543, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000110", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 24108.0, + "value": 23432.067574096098, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000111", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 15871.0, + "value": 15426.013956714749, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000112", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 12787.0, + "value": 12428.482166499369, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000113", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 19303.0, + "value": 18761.78863376377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000114", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16545.0, + "value": 16081.116559375308, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000115", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 18057.0, + "value": 17550.72358492837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000116", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 16112.0, + "value": 15660.25687547023, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000117", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 11471.0, + "value": 11149.37975536985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000118", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 15312.0, + "value": 14882.687020680249, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000119", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 9150.0, + "value": 8893.455214160414, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000120", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 9751.0, + "value": 9477.604567571389, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000121", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 15552.0, + "value": 15115.957977117243, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000122", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 11904.0, + "value": 11570.239439274927, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000123", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 18769.0, + "value": 18242.760755691455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000124", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 7263.0, + "value": 7059.3623191745455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000125", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 8993.0, + "value": 8740.857130157881, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000126", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 13667.0, + "value": 13283.80900676835, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000127", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 12916.0, + "value": 12553.865305584253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000128", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 11916.0, + "value": 11581.902987096777, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000129", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 13044.0, + "value": 12678.276482350651, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000130", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 21785.0, + "value": 21174.199108249686, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000131", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 12721.0, + "value": 12364.332653479196, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000132", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 14024.0, + "value": 13630.799554468378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000133", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 6087.0, + "value": 5916.334632633273, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000134", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 13552.0, + "value": 13172.033340142289, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000135", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 7380.0, + "value": 7173.0819104375805, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000136", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 8781.0, + "value": 8534.801118638536, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000137", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 13385.0, + "value": 13009.71563295488, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000138", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 11327.0, + "value": 11009.417181507653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000139", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 13760.0, + "value": 13374.201502387685, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000140", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 11302.0, + "value": 10985.118123545466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000141", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 17479.0, + "value": 16988.92936484261, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000142", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 10952.0, + "value": 10644.931312074848, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000143", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 16164.0, + "value": 15710.79891603158, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000144", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 15991.0, + "value": 15542.649434933246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000145", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 10903.0, + "value": 10597.305158468962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000146", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 16592.0, + "value": 16126.798788344218, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000147", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 9719.0, + "value": 9446.501773379789, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000148", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 17468.0, + "value": 16978.237779339248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000149", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 17795.0, + "value": 17296.069457484653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000170", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 15293.0, + "value": 14864.219736628986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000171", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 14109.0, + "value": 13713.416351539814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000172", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 13042.0, + "value": 12676.332557713677, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000173", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 14575.0, + "value": 14166.350791954977, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000174", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 13478.0, + "value": 13100.108128574215, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000175", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 14479.0, + "value": 14073.04240938018, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000176", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 16100.0, + "value": 15648.593327648381, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000177", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 22244.0, + "value": 21620.32981243544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000178", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 19120.0, + "value": 18583.91952948056, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000179", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 19924.0, + "value": 19365.377233544492, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000180", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 19092.0, + "value": 18556.70458456291, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000181", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 14576.0, + "value": 14167.322754273466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000192", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 11846.0, + "value": 11513.865624802653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000193", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 15472.0, + "value": 15038.200991638245, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000194", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 13050.0, + "value": 12684.108256261576, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000195", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 14498.0, + "value": 14091.509693431442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000196", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 12696.0, + "value": 12340.033595517009, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000197", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 16731.0, + "value": 16261.901550613979, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000198", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 10447.0, + "value": 10154.090341238672, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000199", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 9626.0, + "value": 9356.109277760454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000200", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 10798.0, + "value": 10495.249115027776, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000202", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 18271.0, + "value": 17758.723521084692, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000203", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 12008.0, + "value": 11671.323520397624, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000207", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 22628.0, + "value": 21993.56334273463, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000208", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 12503.0, + "value": 12152.444868048926, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000209", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 18946.0, + "value": 18414.79808606374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000210", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 11374.0, + "value": 11055.099410476563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000211", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 22477.0, + "value": 21846.797032643022, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000212", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11680.0, + "value": 11352.519879933732, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000213", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 14733.0, + "value": 14319.920838275999, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000214", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 12697.0, + "value": 12341.005557835497, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000215", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 11630.0, + "value": 11303.921764009358, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000216", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 17930.0, + "value": 17427.28437048046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000217", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 15962.0, + "value": 15514.46252769711, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000218", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 7514.0, + "value": 7303.324861114903, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000219", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 16782.0, + "value": 16311.47162885684, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000220", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 16007.0, + "value": 15558.200832029044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000221", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 16820.0, + "value": 16348.406196959364, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000222", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 19304.0, + "value": 18762.76059608226, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000223", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 8445.0, + "value": 8208.221779626743, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000224", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 17900.0, + "value": 17398.12550092584, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000225", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 13891.0, + "value": 13501.528566109544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000226", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 17588.0, + "value": 17094.873257557745, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000227", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 18590.0, + "value": 18068.779500682198, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000228", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 21915.0, + "value": 21300.55420965306, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000229", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 14498.0, + "value": 14091.509693431442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000234", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 12485.0, + "value": 12134.949546316151, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000235", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 8815.0, + "value": 8567.84783746711, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000236", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 11465.0, + "value": 11143.547981458925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000237", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 12993.0, + "value": 12628.70640410779, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000238", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 15584.0, + "value": 15147.060771308843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000239", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 11555.0, + "value": 11231.024590122797, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000240", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 22934.0, + "value": 22290.9838121918, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000241", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 16014.0, + "value": 15565.004568258457, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000242", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 20802.0, + "value": 20218.760149176498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000243", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 11664.0, + "value": 11336.968482837932, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000244", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 26320.0, + "value": 25582.048222590394, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E07000245", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 21677.0, + "value": 21069.22717785304, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000001", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 37282.0, + "value": 36236.69915785012, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000002", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 24631.0, + "value": 23940.40386666505, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000003", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 68803.0, + "value": 66873.92339889388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000004", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 30260.0, + "value": 29411.579757431056, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 28756.0, + "value": 27949.74843042589, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 32718.0, + "value": 31800.663136273273, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000007", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 39106.0, + "value": 38009.55842677128, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 29089.0, + "value": 28273.41188248222, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 34285.0, + "value": 33323.72808934315, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 41163.0, + "value": 40008.88491590002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 17914.0, + "value": 17411.732973384664, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000012", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 55427.0, + "value": 53872.95542680539, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000013", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 22294.0, + "value": 21668.92792835981, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000014", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 32474.0, + "value": 31563.50433056233, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000015", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 37975.0, + "value": 36910.269044561945, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000016", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 28711.0, + "value": 27906.010126093952, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000017", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 37521.0, + "value": 36468.998151968626, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000018", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 31771.0, + "value": 30880.214820665635, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000019", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 65011.0, + "value": 63188.24228718937, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000021", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 34763.0, + "value": 33788.32607758017, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000022", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 27537.0, + "value": 26764.926364189654, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000023", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 17275.0, + "value": 16790.649051871165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000024", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 32790.0, + "value": 31870.644423204372, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000025", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 144766.0, + "value": 140707.09699815811, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000026", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 43247.0, + "value": 42034.45438762792, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000027", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 38764.0, + "value": 37677.14731384856, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000028", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 45713.0, + "value": 44431.31346501804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000029", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 26520.0, + "value": 25776.440686287893, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000030", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 35143.0, + "value": 34157.67175860541, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000031", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 35052.0, + "value": 34069.22318762304, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000032", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 71731.0, + "value": 69719.82906742522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000033", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 25977.0, + "value": 25248.66514734919, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000034", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 55340.0, + "value": 53788.39470509698, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000035", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 101764.0, + "value": 98910.77337855962, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000036", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 43404.0, + "value": 42187.05247163046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E08000037", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 23784.0, + "value": 23117.151782906156, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000001", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 1698.0, + "value": 1650.392016791736, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000002", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 32693.0, + "value": 31776.364078311086, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000003", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 58528.0, + "value": 56887.01057643506, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000004", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 34491.0, + "value": 33523.95232695157, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 47652.0, + "value": 46315.948400565256, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 49406.0, + "value": 48020.77030719229, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000007", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 27373.0, + "value": 26605.52454395771, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 55988.0, + "value": 54418.226287476864, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 56211.0, + "value": 54634.97388449957, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 46273.0, + "value": 44975.61236337102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 43249.0, + "value": 42036.39831226489, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000012", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 33800.0, + "value": 32852.326364876724, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000013", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 23598.0, + "value": 22936.366791667482, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000014", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 38989.0, + "value": 37895.83883550824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000015", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 37622.0, + "value": 36567.16634613586, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000016", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 35318.0, + "value": 34327.765164340715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000017", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 46324.0, + "value": 45025.182441613884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000018", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 45957.0, + "value": 44668.472270728984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000019", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 26690.0, + "value": 25941.67428043076, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000020", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 19078.0, + "value": 18543.097112104086, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000021", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 26095.0, + "value": 25363.356700930715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000022", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 40198.0, + "value": 39070.9412785596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000023", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 43797.0, + "value": 42569.033662796035, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000024", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 33428.0, + "value": 32490.756382399384, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000025", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 50095.0, + "value": 48690.45234463016, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000026", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 46670.0, + "value": 45361.481403810554, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000027", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 31527.0, + "value": 30643.056014954687, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000028", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 41266.0, + "value": 40108.997034704225, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000029", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 34025.0, + "value": 33071.01788653641, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000030", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 42870.0, + "value": 41668.02459355814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000031", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 42616.0, + "value": 41421.14616466232, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000032", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 44042.0, + "value": 42807.16443082546, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@E09000033", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 26948.0, + "value": 26192.44055860053, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000001", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000002", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000003", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000004", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000007", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@N09000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 24562.13384551651, + "value": 23873.468559487956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 6448.072466909597, + "value": 6267.283464712717, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 18168.749904588352, + "value": 17659.34028128282, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 14984.3151822865, + "value": 14564.189725522288, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 13983.069428608236, + "value": 13591.016581401422, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 12056.916683316977, + "value": 11718.868693327111, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000013", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 3255.294029993759, + "value": 3164.023132751177, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000014", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 19726.533876324847, + "value": 19173.447602154458, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000017", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 29308.978777852382, + "value": 28487.222965421664, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000018", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 9766.62928830492, + "value": 9492.795646868548, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000019", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 12020.802097674356, + "value": 11683.766676934694, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000020", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 11618.062201232126, + "value": 11292.318673441298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000021", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 16614.32832530824, + "value": 16148.501079178759, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000023", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2734.4967984163345, + "value": 2657.8278480853237, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000026", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 14548.075894334388, + "value": 14140.181575789027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000027", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2862.5167778667383, + "value": 2782.258444124657, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000028", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 13887.80164234407, + "value": 13498.419882986933, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000029", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 40729.28248942766, + "value": 39587.327838755504, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000030", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 11532.258927067409, + "value": 11208.921124150344, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000033", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 27898.019276711246, + "value": 27115.82349740059, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000034", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 32842.2305842404, + "value": 31921.41058295863, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000035", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 10706.1066472289, + "value": 10405.932238814792, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000036", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 64077.61117349193, + "value": 62281.023519326285, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000038", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 22898.390760178747, + "value": 22256.37297289556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000039", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 11008.597435249363, + "value": 10699.941886460265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000040", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 22575.102952150293, + "value": 21942.149405465487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000041", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 14239.358453616926, + "value": 13840.119856351763, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000042", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 18517.691521728466, + "value": 17998.4983844951, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000045", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 13566.25729707078, + "value": 13185.89089565857, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000047", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 46299.023326897855, + "value": 45000.90605651742, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000048", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 18798.638091417288, + "value": 18271.567863740947, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000049", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 77304.64043162993, + "value": 75137.19754376779, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@S12000050", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 42462.409001111795, + "value": 41271.86150128413, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000001", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 7089.0, + "value": 6890.240875757725, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000002", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 12398.0, + "value": 12050.38882460774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000003", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 11860.0, + "value": 11527.473097261478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000004", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 10326.0, + "value": 10036.482900701689, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000005", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 18559.0, + "value": 18038.648668809088, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000006", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 16467.0, + "value": 16005.303498533285, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000008", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 6730.0, + "value": 6541.306403420721, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000009", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 12860.0, + "value": 12499.435415748954, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000010", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 21160.0, + "value": 20566.722659195013, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000011", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 28502.0, + "value": 27702.87000153007, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000012", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 16665.0, + "value": 16197.752037593806, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000013", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 17457.0, + "value": 16967.546193835886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000014", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 16729.0, + "value": 16259.957625977004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000015", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 44891.0, + "value": 43632.36043922133, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000016", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 28365.0, + "value": 27569.711163897286, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000018", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 21158.0, + "value": 20564.77873455804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000019", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 7538.0, + "value": 7326.651956758602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000020", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 10599.0, + "value": 10301.82861364877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000021", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 10617.0, + "value": 10319.323935381544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000022", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 20102.0, + "value": 19538.386526235263, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000023", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 13842.0, + "value": 13453.902412503658, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/40_50@W06000024", + "metric": "age/40_50", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 6835.0, + "value": 6643.3624468619055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000001", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 13377.0, + "value": 13001.93993440698, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000002", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 17349.0, + "value": 16862.57426343924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000003", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 20068.0, + "value": 19505.33980740669, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000004", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 27241.0, + "value": 26477.225517917363, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 15548.0, + "value": 15112.070127843293, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 17758.0, + "value": 17260.106851700617, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000007", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 31275.0, + "value": 30398.121510695844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 19779.0, + "value": 19224.442697363807, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 21073.0, + "value": 20482.161937486602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 33488.0, + "value": 32549.07412150863, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 52663.0, + "value": 51186.45157850601, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000012", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 22228.0, + "value": 21604.77841533964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000013", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 24917.0, + "value": 24218.385089752464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000014", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 25674.0, + "value": 24954.160564847487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000015", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 33309.0, + "value": 32375.092866499373, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000016", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 41556.0, + "value": 40390.866107065594, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000017", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 5922.0, + "value": 5755.960850082839, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000018", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 33939.0, + "value": 32987.42912714648, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000019", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 27890.0, + "value": 27108.029062615737, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000020", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 26771.0, + "value": 26020.40322822825, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000021", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 33067.0, + "value": 32139.877985425403, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000022", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 25375.0, + "value": 24663.54383161973, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000023", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 50172.0, + "value": 48765.2934431537, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000024", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 31079.0, + "value": 30207.6168962723, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000025", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 39258.0, + "value": 38157.296699181374, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000026", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 34250.0, + "value": 33289.70940819609, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000027", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 20585.0, + "value": 20007.844326064715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000030", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 32925.0, + "value": 32001.85933620018, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000031", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 26129.0, + "value": 25396.40341975929, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000032", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 25904.0, + "value": 25177.711898099606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000033", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 24917.0, + "value": 24218.385089752464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000034", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 22543.0, + "value": 21910.946545663195, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000035", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 36817.0, + "value": 35784.73667975344, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000036", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 17544.0, + "value": 17052.106915544296, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000037", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 24264.0, + "value": 23583.693695780144, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000038", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 20295.0, + "value": 19725.975253703346, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000039", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 18273.0, + "value": 17760.66744572167, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000040", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 22444.0, + "value": 21814.722276132936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000041", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 25033.0, + "value": 24331.132718697012, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000042", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 37519.0, + "value": 36467.05422733165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000043", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 40323.0, + "value": 39192.43656837054, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000044", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 25511.0, + "value": 24795.730706934028, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000045", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 27595.0, + "value": 26821.300178661928, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000046", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 20722.0, + "value": 20141.0031636975, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000047", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 76336.0, + "value": 74195.71554406005, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000049", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 60405.0, + "value": 58711.38384823605, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000050", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 52272.0, + "value": 50806.4143119774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000051", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 49514.0, + "value": 48125.74223758894, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000052", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 84339.0, + "value": 81974.32997891532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000053", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 310.0, + "value": 301.3083187311179, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000054", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 75179.0, + "value": 73071.15514157004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000055", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 25276.0, + "value": 24567.31956208947, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000056", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 41754.0, + "value": 40583.31464612612, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000057", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 48205.0, + "value": 46853.44356268883, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000058", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 52746.0, + "value": 51267.124450940464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000059", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 55581.0, + "value": 54022.63762385246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000060", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 79823.0, + "value": 77584.94814862587, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000061", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 51759.0, + "value": 50307.79764259332, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000062", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 59237.0, + "value": 57576.131860242676, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000063", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 41499.0, + "value": 40335.46425491181, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000064", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 34862.0, + "value": 33884.550347110424, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000065", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 94864.0, + "value": 92204.23338099603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E06000066", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 83728.0, + "value": 81380.46100231948, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 14907.0, + "value": 14489.04228169282, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 12980.0, + "value": 12616.070893967451, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 14708.0, + "value": 14295.621780313813, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 26551.0, + "value": 25806.571518161003, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000012", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 23536.0, + "value": 22876.10512792126, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000032", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 19756.0, + "value": 19202.087564038597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000033", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 12564.0, + "value": 12211.73456947666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000034", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 15477.0, + "value": 15043.060803230683, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000035", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 12118.0, + "value": 11778.239375431247, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000036", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 16804.0, + "value": 16332.854799863564, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000037", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 14587.0, + "value": 14178.014339776828, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000038", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 15426.0, + "value": 14993.490724987822, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000039", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 16871.0, + "value": 16397.976275202225, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000040", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 21803.0, + "value": 21191.69442998246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000041", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 15001.0, + "value": 14580.406739630644, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000042", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 12522.0, + "value": 12170.912152100187, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000043", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 14702.0, + "value": 14289.790006402887, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000044", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 13537.0, + "value": 13157.453905364977, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000045", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 20282.0, + "value": 19713.33974356301, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000046", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 10577.0, + "value": 10280.445442642045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000047", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 9267.0, + "value": 9007.17480542345, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000061", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 13868.0, + "value": 13479.173432784331, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000062", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 13493.0, + "value": 13114.687563351528, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000063", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 14801.0, + "value": 14386.014275933148, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000064", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 13666.0, + "value": 13282.837044449861, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000065", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 24926.0, + "value": 24227.132750618854, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000066", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 24890.0, + "value": 24192.142107153304, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000067", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 23124.0, + "value": 22475.65665270442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000068", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 10744.0, + "value": 10442.763149829454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000069", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 12465.0, + "value": 12115.510299946402, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000070", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 24903.0, + "value": 24204.77761729364, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000071", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 25267.0, + "value": 24558.571901223084, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000072", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 19332.0, + "value": 18789.975540999905, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000073", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 11517.0, + "value": 11194.090022020273, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000074", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 10498.0, + "value": 10203.660419481534, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000075", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 12790.0, + "value": 12431.398053454832, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000076", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 21389.0, + "value": 20789.302030128645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000077", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 13927.0, + "value": 13536.519209575094, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000078", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 15760.0, + "value": 15318.12613936264, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000079", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 14092.0, + "value": 13696.892992125526, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000080", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 13480.0, + "value": 13102.052053211191, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000081", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 17708.0, + "value": 17211.508735776242, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000082", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 18772.0, + "value": 18245.67664264692, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000083", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 13601.0, + "value": 13219.659493748175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000084", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 26642.0, + "value": 25895.020089143363, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000085", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 19351.0, + "value": 18808.44282505117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000086", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 18883.0, + "value": 18353.56445999903, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000087", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 16628.0, + "value": 16161.789431809768, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000088", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 11541.0, + "value": 11217.417117663972, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000089", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 14922.0, + "value": 14503.621716470132, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000090", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 17653.0, + "value": 17158.05080825943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000091", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 25805.0, + "value": 25081.487628569346, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000092", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 13366.0, + "value": 12991.248348903619, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000093", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 19280.0, + "value": 18739.433500438558, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000094", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 18074.0, + "value": 17567.24694434266, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000095", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 13614.0, + "value": 13232.295003888512, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000096", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 21301.0, + "value": 20703.769346101748, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000098", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 14706.0, + "value": 14293.677855676837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000099", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 18655.0, + "value": 18131.957051383884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000102", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 13616.0, + "value": 13234.238928525487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000103", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 12828.0, + "value": 12468.332621557356, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000105", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 19484.0, + "value": 18937.713813410002, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000106", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 20188.0, + "value": 19621.975285625187, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000107", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 14854.0, + "value": 14437.528278812984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000108", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 16790.0, + "value": 16319.247327404739, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000109", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 14122.0, + "value": 13726.051861680151, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000110", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 25199.0, + "value": 24492.478463565934, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000111", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 17304.0, + "value": 16818.835959107302, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000112", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 15912.0, + "value": 15465.864411772734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000113", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 21437.0, + "value": 20835.956221416047, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000114", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 19174.0, + "value": 18636.405494678886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000115", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 19396.0, + "value": 18852.181129383105, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000116", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 17383.0, + "value": 16895.620982267814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000117", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 12455.0, + "value": 12105.790676761526, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000118", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 17680.0, + "value": 17184.293790858595, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000119", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 12598.0, + "value": 12244.781288305236, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000120", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 11299.0, + "value": 10982.202236590003, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000121", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 18869.0, + "value": 18339.956987540205, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000122", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 12302.0, + "value": 11957.080442032942, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000123", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 18735.0, + "value": 18209.714036862882, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000124", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 10203.0, + "value": 9916.931535527729, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000125", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 10538.0, + "value": 10242.538912221033, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000126", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 16718.0, + "value": 16249.266040473642, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000127", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 17490.0, + "value": 16999.620950345972, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000128", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 17084.0, + "value": 16605.00424904006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000129", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 14441.0, + "value": 14036.107841277657, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000130", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 23829.0, + "value": 23160.89008723809, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000131", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 15376.0, + "value": 14944.892609063447, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000132", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 16597.0, + "value": 16131.658599936656, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000133", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 8396.0, + "value": 8160.595626020858, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000134", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 16265.0, + "value": 15808.967110198815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000135", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 7457.0, + "value": 7247.9230089611165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000136", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 9893.0, + "value": 9615.62321679661, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000137", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 22070.0, + "value": 21451.20836901862, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000138", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 11429.0, + "value": 11108.557337993376, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000139", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 18122.0, + "value": 17613.901135630058, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000140", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 14263.0, + "value": 13863.098548586886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000141", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 21735.0, + "value": 21125.600992325315, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000142", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 14643.0, + "value": 14232.444229612127, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000143", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 20789.0, + "value": 20206.12463903616, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000144", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 20077.0, + "value": 19514.087468273076, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000145", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 14409.0, + "value": 14005.005047086057, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000146", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 22219.0, + "value": 21596.030754473253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000147", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 14989.0, + "value": 14568.743191808793, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000148", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 15718.0, + "value": 15277.303721986164, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000149", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 20951.0, + "value": 20363.582534631132, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000170", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 18508.0, + "value": 17989.078590566227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000171", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 18325.0, + "value": 17811.209486283016, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000172", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 15255.0, + "value": 14827.285168526463, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000173", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 17090.0, + "value": 16610.83602295098, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000174", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 15633.0, + "value": 15194.68692491473, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000175", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 18526.0, + "value": 18006.573912298998, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000176", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 17347.0, + "value": 16860.630338802264, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000177", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 22832.0, + "value": 22191.843655706078, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000178", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 17106.0, + "value": 16626.387420046784, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000179", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 22513.0, + "value": 21881.78767610857, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000180", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 19419.0, + "value": 18874.536262708316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000181", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 16711.0, + "value": 16242.462304244229, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000192", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 15223.0, + "value": 14796.182374334863, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000193", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 17845.0, + "value": 17344.667573409028, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000194", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 16260.0, + "value": 15804.107298606377, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000195", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 17311.0, + "value": 16825.639695336715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000196", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 16672.0, + "value": 16204.555773823218, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000197", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 20774.0, + "value": 20191.545204258848, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000198", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 15136.0, + "value": 14711.621652626452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000199", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 11216.0, + "value": 10901.529364155542, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000200", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 14179.0, + "value": 13781.453713833936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000202", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 17771.0, + "value": 17272.742361840956, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000203", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 15974.0, + "value": 15526.126075518958, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000207", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 20603.0, + "value": 20025.33964779749, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000208", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 11386.0, + "value": 11066.762958298414, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000209", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 19386.0, + "value": 18842.46150619823, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000210", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 13695.0, + "value": 13311.023951685998, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000211", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 21160.0, + "value": 20566.722659195013, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000212", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11833.0, + "value": 11501.230114662316, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000213", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 14240.0, + "value": 13840.743415261673, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000214", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 13601.0, + "value": 13219.659493748175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000215", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 13000.0, + "value": 12635.510140337201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000216", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 19099.0, + "value": 18563.508320792324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000217", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 13949.0, + "value": 13557.902380581818, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000218", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 10002.0, + "value": 9721.567109511745, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000219", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 18829.0, + "value": 18301.078494800706, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000220", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 15979.0, + "value": 15530.985887111396, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000221", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 21354.0, + "value": 20755.283348981586, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000222", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 19556.0, + "value": 19007.6951003411, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000223", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 9262.0, + "value": 9002.314993831013, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000224", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 23334.0, + "value": 22679.76873958679, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000225", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 17477.0, + "value": 16986.985440205637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000226", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 14968.0, + "value": 14548.331983120557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000227", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 21798.0, + "value": 21186.834618390025, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000228", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 22303.0, + "value": 21677.6755892262, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000229", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 16359.0, + "value": 15900.331568136637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000234", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 14583.0, + "value": 14174.126490502878, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000235", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 12399.0, + "value": 12051.360786926229, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000236", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 11382.0, + "value": 11062.875109024464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000237", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 14298.0, + "value": 13897.117229733947, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000238", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 20370.0, + "value": 19798.872427589908, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000239", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 15299.0, + "value": 14870.051510539912, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000240", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 21753.0, + "value": 21143.09631405809, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000241", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 15046.0, + "value": 14624.14504396258, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000242", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 22523.0, + "value": 21891.507299293444, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000243", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 11924.0, + "value": 11589.678685644676, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000244", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 36086.0, + "value": 35074.2322249391, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E07000245", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 24758.0, + "value": 24063.84308111296, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000001", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 39331.0, + "value": 38228.24994843096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000002", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 26344.0, + "value": 25605.375318234095, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000003", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 57323.0, + "value": 55715.79598265765, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000004", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 30981.0, + "value": 30112.364589060526, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 29249.0, + "value": 28428.925853440218, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 29855.0, + "value": 29017.935018443626, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000007", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 40322.0, + "value": 39191.464606052046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 32170.0, + "value": 31268.027785742135, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 32055.0, + "value": 31156.252119116078, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 48212.0, + "value": 46860.24729891824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 21242.0, + "value": 20646.423569310988, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000012", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 56945.0, + "value": 55348.39422626938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000013", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 26623.0, + "value": 25876.552805092102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000014", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 40171.0, + "value": 39044.69829596044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000015", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 45639.0, + "value": 44359.388253449964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000016", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 36312.0, + "value": 35293.89570891727, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000017", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 43164.0, + "value": 41953.78151519346, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000018", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 37853.0, + "value": 36791.68964170647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000019", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 69285.0, + "value": 67342.40923640484, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000021", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 33258.0, + "value": 32325.522788256512, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000022", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 29230.0, + "value": 28410.458569388953, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000023", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 20818.0, + "value": 20234.311546272296, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000024", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 38552.0, + "value": 37471.091302329216, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000025", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 131321.0, + "value": 127639.06362609398, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000026", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 40733.0, + "value": 39590.9411189504, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000027", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 45154.0, + "value": 43887.986528983536, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000028", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 44170.0, + "value": 42931.57560759186, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000029", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 30156.0, + "value": 29310.495676308357, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000030", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 36707.0, + "value": 35677.82082471982, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000031", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 34678.0, + "value": 33705.70928050873, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000032", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 66823.0, + "value": 64949.43800828868, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000033", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 30626.0, + "value": 29767.317965997474, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000034", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 59832.0, + "value": 58154.449439742726, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000035", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 98609.0, + "value": 95844.23226373162, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000036", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 51161.0, + "value": 49726.564176137814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E08000037", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 27121.0, + "value": 26360.590039698865, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000001", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 1351.0, + "value": 1313.1210922765815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000002", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 25663.0, + "value": 24943.468979344125, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000003", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 49887.0, + "value": 48488.28418238477, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000004", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 33295.0, + "value": 32361.48539404055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 42354.0, + "value": 41166.4920372186, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 46097.0, + "value": 44804.54699531723, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000007", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 25260.0, + "value": 24551.76816499367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 51671.0, + "value": 50222.264958566426, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 47526.0, + "value": 46193.481148435836, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 43793.0, + "value": 42565.14581352208, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 35281.0, + "value": 34291.80255855668, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000012", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 27785.0, + "value": 27005.97301917455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000013", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 22560.0, + "value": 21927.469905077483, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000014", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 34731.0, + "value": 33757.223283388565, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000015", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 31141.0, + "value": 30267.878560018522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000016", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 33659.0, + "value": 32715.27967796999, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000017", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 38293.0, + "value": 37219.35306184096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000018", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 36650.0, + "value": 35622.41897256603, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000019", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 24170.0, + "value": 23492.32923784232, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000020", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 21193.0, + "value": 20598.7974157051, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000021", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 22404.0, + "value": 21775.843783393437, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000022", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 38142.0, + "value": 37072.586751749346, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000023", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 37880.0, + "value": 36817.93262430563, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000024", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 27669.0, + "value": 26893.225390230004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000025", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 37251.0, + "value": 36206.56832597701, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000026", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 36816.0, + "value": 35783.764717434955, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000027", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 29723.0, + "value": 28889.63599240328, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000028", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 36889.0, + "value": 35854.71796668454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000029", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 28380.0, + "value": 27584.290598674597, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000030", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 26825.0, + "value": 26072.88919342657, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000031", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 33294.0, + "value": 32360.51343172206, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000032", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 35614.0, + "value": 34615.46601061301, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@E09000033", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 27580.0, + "value": 26806.720743884616, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000001", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000002", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000003", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000004", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000007", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@N09000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 24852.2377885738, + "value": 24155.438660584277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 6896.919248195792, + "value": 6703.545622897289, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 19433.466601945325, + "value": 18888.59725467573, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 16027.36512843119, + "value": 15577.994969475321, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 14956.423208011436, + "value": 14537.079777538705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 12896.19202851736, + "value": 12534.612703697452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000013", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 3481.8932586781634, + "value": 3384.2690444307445, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000014", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 21099.687059971533, + "value": 20508.10075417015, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000017", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 31349.160685660463, + "value": 30470.202902671008, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000018", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 10446.478986422864, + "value": 10153.583935674276, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000019", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 12857.56352641267, + "value": 12497.067255232081, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000020", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 12426.789127079646, + "value": 12078.370771311304, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000021", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 17770.84259066679, + "value": 17272.589365900498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000023", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2924.8436179822156, + "value": 2842.8377841472948, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000026", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 15560.75946335278, + "value": 15124.471845426318, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000027", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 3061.7749978567817, + "value": 2975.9299256038676, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000028", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 14854.523883493883, + "value": 14438.037473828315, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000029", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 43564.42546328407, + "value": 42342.97997686846, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000030", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 12335.01313414815, + "value": 11989.167964440117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000033", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 29839.98506894954, + "value": 29003.34107124789, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000034", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 35128.36020881336, + "value": 34143.44243322147, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000035", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 11451.352848070457, + "value": 11130.283464028735, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000036", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 68538.0184774307, + "value": 66616.37134386109, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000038", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 24492.33515861472, + "value": 23805.62686593951, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000039", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 11774.899853630106, + "value": 11444.758961692172, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000040", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 24146.543463912018, + "value": 23469.53036864256, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000041", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 15230.552371223359, + "value": 14803.522994579198, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000042", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 19806.69785331549, + "value": 19251.36396708946, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000045", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 14510.597013030725, + "value": 14103.753515422803, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000047", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 49521.872899947455, + "value": 48133.39439967509, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000048", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 20107.20095934372, + "value": 19543.441662737347, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000049", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 82685.77397414009, + "value": 80367.45657783668, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@S12000050", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 45418.193959115146, + "value": 44144.77310201548, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000001", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 10168.0, + "value": 9882.912854380667, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000002", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 16691.0, + "value": 16223.02305787448, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000003", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 16925.0, + "value": 16450.46224040055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000004", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 14067.0, + "value": 13672.59393416334, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000005", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 23616.0, + "value": 22953.862113400257, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000006", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 19654.0, + "value": 19102.947407552874, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000008", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 9963.0, + "value": 9683.660579090734, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000009", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 17936.0, + "value": 17433.116144391388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000010", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 27312.0, + "value": 26546.23484252997, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000011", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 31353.0, + "value": 30473.93457153787, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000012", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 19581.0, + "value": 19031.99415830329, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000013", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 21113.0, + "value": 20521.0404302261, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000014", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 18506.0, + "value": 17987.13466592925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000015", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 40823.0, + "value": 39678.41772761427, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000016", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 33331.0, + "value": 32396.476037506098, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000018", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 24957.0, + "value": 24257.263582491963, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000019", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 10014.0, + "value": 9733.230657333595, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000020", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 12761.0, + "value": 12403.211146218695, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000021", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 14776.0, + "value": 14361.715217970961, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000022", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 21180.0, + "value": 20586.161905564764, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000023", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 20243.0, + "value": 19675.433213141998, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/50_60@W06000024", + "metric": "age/50_60", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 8119.0, + "value": 7891.3620637998265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000001", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 12374.0, + "value": 12027.061728964041, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000002", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 16577.0, + "value": 16112.219353566907, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000003", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 19063.0, + "value": 18528.517677326774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000004", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 24830.0, + "value": 24133.824368044054, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 13838.0, + "value": 13450.014563229708, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 16008.0, + "value": 15559.172794347533, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000007", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 25117.0, + "value": 24412.77755344996, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 15218.0, + "value": 14791.322562742425, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 18344.0, + "value": 17829.676770334278, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 28235.0, + "value": 27443.356062493913, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 51153.0, + "value": 49718.788477589915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000012", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 20366.0, + "value": 19794.984578315958, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000013", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 22549.0, + "value": 21916.77831957412, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000014", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 21668.0, + "value": 21060.479516986652, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000015", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 25918.0, + "value": 25191.31937055843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000016", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 32253.0, + "value": 31348.700658176596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000017", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 5328.0, + "value": 5178.6152329012775, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000018", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 26438.0, + "value": 25696.73977617192, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000019", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 27635.0, + "value": 26860.178671401427, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000020", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 20727.0, + "value": 20145.862975289936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000021", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 27674.0, + "value": 26898.08520182244, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000022", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 20964.0, + "value": 20376.218044771467, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000023", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 38383.0, + "value": 37306.829670504834, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000024", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 27125.0, + "value": 26364.477888972815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000025", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 31305.0, + "value": 30427.280380250468, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000026", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 29403.0, + "value": 28578.608050487288, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000027", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 19725.0, + "value": 19171.956732165483, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000030", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 25323.0, + "value": 24613.00179105838, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000031", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 19675.0, + "value": 19123.358616241112, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000032", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 18547.0, + "value": 18026.985120987236, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000033", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 20036.0, + "value": 19474.23701321509, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000034", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 15682.0, + "value": 15242.313078520616, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000035", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 29964.0, + "value": 29123.87891115876, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000036", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 13263.0, + "value": 12891.136230099408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000037", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 19408.0, + "value": 18863.844677204954, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000038", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 14132.0, + "value": 13735.771484865025, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000039", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 12144.0, + "value": 11803.51039571192, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000040", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 17095.0, + "value": 16615.69583454342, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000041", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 18703.0, + "value": 18178.611242671283, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000042", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 27636.0, + "value": 26861.150633719917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000043", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 26031.0, + "value": 25301.151112547515, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000044", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 20047.0, + "value": 19484.928598718452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000045", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 22251.0, + "value": 21627.133548664853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000046", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 21808.0, + "value": 21196.5542415749, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000047", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 69518.0, + "value": 67568.87645661243, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000049", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 51600.0, + "value": 50153.25563395381, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000050", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 44997.0, + "value": 43735.38844498101, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000051", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 47020.0, + "value": 45701.66821528117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000052", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 81030.0, + "value": 78758.10666704027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000053", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 256.0, + "value": 248.82235353279412, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000054", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 65625.0, + "value": 63785.02715074068, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000055", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 19596.0, + "value": 19046.5735930806, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000056", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 34429.0, + "value": 33463.69066320535, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000057", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 49556.0, + "value": 48166.56465496541, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000058", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 46081.0, + "value": 44788.99559822143, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000059", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 59302.0, + "value": 57639.30941094436, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000060", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 62848.0, + "value": 61085.88779230096, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000061", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 40368.0, + "value": 39236.174872702475, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000062", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 45595.0, + "value": 44316.621911436516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000063", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 38932.0, + "value": 37840.436983354455, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000064", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 33489.0, + "value": 32550.046083827117, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000065", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 90931.0, + "value": 88381.50558238478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E06000066", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 78392.0, + "value": 76194.07007087031, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 10429.0, + "value": 10136.595019505898, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 10812.0, + "value": 10508.856587486602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 13368.0, + "value": 12993.192273540593, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 21898.0, + "value": 21284.03085023877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000012", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 18206.0, + "value": 17695.545970383006, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000032", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 16765.0, + "value": 16294.948269442553, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000033", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 10442.0, + "value": 10149.230529646235, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000034", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 13520.0, + "value": 13140.93054595069, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000035", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 11388.0, + "value": 11068.706882935388, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000036", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 13736.0, + "value": 13350.874406743986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000037", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 12833.0, + "value": 12473.192433149792, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000038", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 14387.0, + "value": 13983.621876079333, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000039", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 13132.0, + "value": 12763.809166377549, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000040", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 21922.0, + "value": 21307.35794588247, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000041", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 12220.0, + "value": 11877.37953191697, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000042", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 11449.0, + "value": 11127.996584363125, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000043", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 14327.0, + "value": 13925.304136970084, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000044", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 14244.0, + "value": 13844.631264535623, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000045", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 20246.0, + "value": 19678.34910009746, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000046", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 10970.0, + "value": 10662.426633807623, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000047", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 9369.0, + "value": 9106.314961909173, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000061", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 12852.0, + "value": 12491.659717201055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000062", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 11424.0, + "value": 11103.697526400938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000063", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 13578.0, + "value": 13197.304360422964, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000064", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 14560.0, + "value": 14151.771357177666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000065", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 23244.0, + "value": 22592.292130922917, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000066", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 19778.0, + "value": 19223.47073504532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000067", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 18646.0, + "value": 18123.2093905175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000068", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 8834.0, + "value": 8586.315121518372, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000069", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 11184.0, + "value": 10870.426569963944, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000070", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 19813.0, + "value": 19257.489416192384, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000071", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 19348.0, + "value": 18805.526938095707, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000072", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 15563.0, + "value": 15126.649562620605, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000073", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 9524.0, + "value": 9256.969121274731, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000074", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 9412.0, + "value": 9148.109341604135, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000075", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 10773.0, + "value": 10470.950057065591, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000076", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 22539.0, + "value": 21907.058696389246, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000077", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 11464.0, + "value": 11142.576019140437, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000078", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 12928.0, + "value": 12565.528853406104, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000079", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 13136.0, + "value": 12767.697015651498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000080", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 12691.0, + "value": 12335.17378392457, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000081", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 14428.0, + "value": 14023.472331137318, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000082", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 16807.0, + "value": 16335.770686819027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000083", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 11988.0, + "value": 11651.884274027874, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000084", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 20252.0, + "value": 19684.180874008387, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000085", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 16997.0, + "value": 16520.44352733165, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000086", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 15853.0, + "value": 15408.518634981974, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000087", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 15378.0, + "value": 14946.836533700422, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000088", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 10736.0, + "value": 10434.987451281553, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000089", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 11273.0, + "value": 10956.93121630933, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000090", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 17098.0, + "value": 16618.61172149888, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000091", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 26076.0, + "value": 25344.88941687945, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000092", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 9733.0, + "value": 9460.109245838614, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000093", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 16124.0, + "value": 15671.92042329208, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000094", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 15100.0, + "value": 14676.631009160903, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000095", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 10328.0, + "value": 10038.426825338664, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000096", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 17111.0, + "value": 16631.24723163922, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000098", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 11586.0, + "value": 11261.155421995909, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000099", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 14940.0, + "value": 14521.117038202907, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000102", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 10409.0, + "value": 10117.155773136148, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000103", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 8715.0, + "value": 8470.651605618363, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000105", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 15293.0, + "value": 14864.219736628986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000106", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 18584.0, + "value": 18062.947726771272, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000107", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 10300.0, + "value": 10011.211880421013, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000108", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 16427.0, + "value": 15966.425005793786, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000109", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 11239.0, + "value": 10923.884497480754, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000110", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 19473.0, + "value": 18927.02222790664, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000111", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 14220.0, + "value": 13821.304168891924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000112", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 15065.0, + "value": 14642.612328013842, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000113", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 17719.0, + "value": 17222.200321279604, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000114", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 17993.0, + "value": 17488.517996545175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000115", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 14800.0, + "value": 14385.04231361466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000116", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 12812.0, + "value": 12452.781224461556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000117", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 10790.0, + "value": 10487.473416479877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000118", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 14437.0, + "value": 14032.219992003706, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000119", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 13429.0, + "value": 13052.48197496833, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000120", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 9064.0, + "value": 8809.866454770492, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000121", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 17163.0, + "value": 16681.789272200567, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000122", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 10776.0, + "value": 10473.865944021052, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000123", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 15073.0, + "value": 14650.38802656174, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000124", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 9318.0, + "value": 9056.744883666312, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000125", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 8610.0, + "value": 8368.595562177177, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000126", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 14178.0, + "value": 13780.48175151545, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000127", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 15401.0, + "value": 14969.191667025634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000128", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 17615.0, + "value": 17121.11624015691, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000129", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 12166.0, + "value": 11824.893566718645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000130", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 20534.0, + "value": 19958.274247821853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000131", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 12922.0, + "value": 12559.697079495178, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000132", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 14412.0, + "value": 14007.92093404152, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000133", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 7378.0, + "value": 7171.137985800606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000134", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 12907.0, + "value": 12545.117644717866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000135", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 6740.0, + "value": 6551.026026605596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000136", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 8603.0, + "value": 8361.791825947765, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000137", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 24639.0, + "value": 23948.179565212948, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000138", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 9598.0, + "value": 9328.894332842805, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000139", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 15757.0, + "value": 15315.210252407176, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000140", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 12781.0, + "value": 12422.650392588444, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000141", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 18844.0, + "value": 18315.657929578018, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000142", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 14192.0, + "value": 13794.089223974273, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000143", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 19369.0, + "value": 18825.93814678394, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000144", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 17824.0, + "value": 17324.25636472079, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000145", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 13596.0, + "value": 13214.799682155737, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000146", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 21522.0, + "value": 20918.57301848748, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000147", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 17506.0, + "value": 17015.172347441774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000148", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 12554.0, + "value": 12202.014946291787, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000149", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 18929.0, + "value": 18398.27472664945, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000170", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 15004.0, + "value": 14583.322626586105, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000171", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 15755.0, + "value": 15313.266327770201, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000172", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 13110.0, + "value": 12742.425995370824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000173", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 14438.0, + "value": 14033.191954322194, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000174", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 13792.0, + "value": 13405.304296579283, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000175", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 16536.0, + "value": 16072.368898508921, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000176", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 14645.0, + "value": 14234.388154249102, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000177", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 17818.0, + "value": 17318.424590809867, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000178", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 12443.0, + "value": 12094.127128939677, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000179", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 17674.0, + "value": 17178.46201694767, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000180", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 16243.0, + "value": 15787.583939192089, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000181", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 14562.0, + "value": 14153.71528181464, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000192", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 12218.0, + "value": 11875.435607279995, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000193", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 14867.0, + "value": 14450.163788953321, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000194", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 13583.0, + "value": 13202.1641720154, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000195", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 15412.0, + "value": 14979.883252528996, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000196", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 15618.0, + "value": 15180.107490137416, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000197", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 17732.0, + "value": 17234.835831419943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000198", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 13655.0, + "value": 13272.1454589465, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000199", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 9126.0, + "value": 8870.128118516715, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000200", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 13107.0, + "value": 12739.510108415361, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000202", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 14095.0, + "value": 13699.808879080989, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000203", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 15083.0, + "value": 14660.107649746617, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000207", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 14668.0, + "value": 14256.743287574312, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000208", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 8357.0, + "value": 8122.689095599846, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000209", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 14982.0, + "value": 14561.93945557938, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000210", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 11465.0, + "value": 11143.547981458925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000211", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 16037.0, + "value": 15587.35970158367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000212", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 9036.0, + "value": 8782.651509852843, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000213", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 10914.0, + "value": 10607.996743972324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000214", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 10476.0, + "value": 10182.27724847481, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000215", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 10534.0, + "value": 10238.651062947083, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000216", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 15149.0, + "value": 14724.25716276679, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000217", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 10294.0, + "value": 10005.380106510089, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000218", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 8518.0, + "value": 8279.175028876329, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000219", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 15178.0, + "value": 14752.444070002926, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000220", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 12237.0, + "value": 11893.902891331256, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000221", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 19271.0, + "value": 18730.685839572172, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000222", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 15876.0, + "value": 15430.873768307185, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000223", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 7799.0, + "value": 7580.334121883833, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000224", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 23023.0, + "value": 22377.488458537184, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000225", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 18046.0, + "value": 17540.03199942501, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000226", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 11416.0, + "value": 11095.921827853039, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000227", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 19087.0, + "value": 18551.844772970475, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000228", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 17639.0, + "value": 17144.443335800606, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000229", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 13241.0, + "value": 12869.753059092684, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000234", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 12410.0, + "value": 12062.05237242959, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000235", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 12080.0, + "value": 11741.304807328723, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000236", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 9766.0, + "value": 9492.1840023487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000237", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 11278.0, + "value": 10961.791027901767, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000238", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 18433.0, + "value": 17916.181416679665, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000239", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 13065.0, + "value": 12698.687691038887, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000240", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 14958.0, + "value": 14538.612359935682, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000241", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 12057.0, + "value": 11718.94967400351, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000242", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 17306.0, + "value": 16820.77988374428, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000243", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 9331.0, + "value": 9069.380393806648, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000244", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 35625.0, + "value": 34626.15759611637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E07000245", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 20673.0, + "value": 20093.37701009161, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000001", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 30898.0, + "value": 30031.691716626065, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000002", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 21393.0, + "value": 20793.1898794026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000003", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 40421.0, + "value": 39287.68887558231, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000004", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 24042.0, + "value": 23367.918061075925, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 24051.0, + "value": 23376.66572194231, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 23423.0, + "value": 22766.273385932174, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000007", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 34149.0, + "value": 33191.54121402885, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 26088.0, + "value": 25356.552964701303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 24796.0, + "value": 24100.77764921548, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 38454.0, + "value": 37375.83899511744, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 19830.0, + "value": 19274.01277560667, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000012", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 52312.0, + "value": 50845.2928047169, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000013", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 22283.0, + "value": 21658.23634285645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000014", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 38761.0, + "value": 37674.2314268931, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000015", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 42244.0, + "value": 41059.57618218498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000016", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 30403.0, + "value": 29550.570368974764, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000017", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 38022.0, + "value": 36955.95127353085, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000018", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 31565.0, + "value": 30679.990583057213, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000019", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 56819.0, + "value": 55225.92697413996, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000021", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 29636.0, + "value": 28805.07527069487, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000022", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 26814.0, + "value": 26062.197607923208, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000023", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 20025.0, + "value": 19463.545427711728, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000024", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 36240.0, + "value": 35223.91442198617, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000025", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 98273.0, + "value": 95517.65292471983, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000026", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 31157.0, + "value": 30283.429957114324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000027", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 36547.0, + "value": 35522.306853761824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000028", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 32623.0, + "value": 31708.326716016963, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000029", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 24958.0, + "value": 24258.235544810454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000030", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 29591.0, + "value": 28761.336966362935, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000031", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 27246.0, + "value": 26482.0853295098, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000032", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 54966.0, + "value": 53424.88079798267, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000033", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 24960.0, + "value": 24260.179469447427, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000034", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 47556.0, + "value": 46222.64001799046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000035", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 77289.0, + "value": 75121.99563357861, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000036", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 42049.0, + "value": 40870.04353007992, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E08000037", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 24285.0, + "value": 23604.10490446838, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000001", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 947.0, + "value": 920.4483156076408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000002", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 15775.0, + "value": 15332.70557413995, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000003", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 36187.0, + "value": 35172.40041910633, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000004", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 25459.0, + "value": 24745.18866637268, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 30572.0, + "value": 29714.83200079915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 34491.0, + "value": 33523.95232695157, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000007", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 17477.0, + "value": 16986.985440205637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 38456.0, + "value": 37377.78291975442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 33383.0, + "value": 32447.018078067445, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 31554.0, + "value": 30669.29899755385, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 23769.0, + "value": 23102.57234812884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000012", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 18862.0, + "value": 18333.153251310792, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000013", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 14582.0, + "value": 14173.15452818439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000014", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 22514.0, + "value": 21882.75963842706, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000015", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 26311.0, + "value": 25573.30056172401, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000016", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 27700.0, + "value": 26923.356222103113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000017", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 28198.0, + "value": 27407.393456709877, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000018", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 25166.0, + "value": 24460.403707055848, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000019", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 16592.0, + "value": 16126.798788344218, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000020", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 15437.0, + "value": 15004.182310491184, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000021", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 15514.0, + "value": 15079.023409014719, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000022", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 24816.0, + "value": 24120.216895585232, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000023", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 25240.0, + "value": 24532.32891862392, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000024", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 19111.0, + "value": 18575.171868614172, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000025", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 23456.0, + "value": 22798.34814244226, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000026", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 26752.0, + "value": 26001.935944176985, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000027", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 19879.0, + "value": 19321.638929212557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000028", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 24520.0, + "value": 23832.516049312937, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000029", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 20311.0, + "value": 19741.526650799147, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000030", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 16045.0, + "value": 15595.135400131569, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000031", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 22226.0, + "value": 21602.834490702666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000032", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 22867.0, + "value": 22225.862336853137, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@E09000033", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 18569.0, + "value": 18048.36829199396, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000001", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000002", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000003", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000004", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000007", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@N09000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 21661.094414943695, + "value": 21053.767548524815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 5740.734421830535, + "value": 5579.777538463273, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 16175.681727238709, + "value": 15722.153114722452, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 13340.571836925668, + "value": 12966.533132567014, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 12449.1603349071, + "value": 12100.114742338641, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 10734.30191429501, + "value": 10433.336975962742, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000013", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 2898.1961023340064, + "value": 2816.93740305593, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000014", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 17562.58054300367, + "value": 17070.1665032009, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000017", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 26093.854280046315, + "value": 25362.243104308192, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000018", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 8695.253539466212, + "value": 8451.45879005602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000019", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 10702.149011859014, + "value": 10402.085566364949, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000020", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 10343.58871365901, + "value": 10053.578467608912, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000021", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 14791.776457562615, + "value": 14377.04934024104, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000023", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 2434.529074791512, + "value": 2366.2705239595302, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000026", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 12952.186949914345, + "value": 12589.037657321991, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000027", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2548.5055703232388, + "value": 2477.051382809625, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000028", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 12364.343195722497, + "value": 12017.6756790893, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000029", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 36261.37813484893, + "value": 35244.69316349887, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000030", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 10267.197852354182, + "value": 9979.329428943816, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000033", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 24837.673643495276, + "value": 24141.28286036697, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000034", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 29239.516859060106, + "value": 28419.708597785735, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000035", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 9531.672491111498, + "value": 9264.426493524037, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000036", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 57048.45130387324, + "value": 55448.94499543257, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000038", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 20386.492353502796, + "value": 19814.9023737378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000039", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 9800.98076703228, + "value": 9526.183989775867, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000040", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 20098.668440661975, + "value": 19535.1483760969, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000041", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 12677.335070125288, + "value": 12321.891987001576, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000042", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 16486.345288016826, + "value": 16024.106389525927, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000045", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 12078.071491964793, + "value": 11739.430370187602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000047", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 41220.13179502063, + "value": 40064.41486784762, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000048", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 16736.472694553377, + "value": 16267.220803500451, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000049", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 68824.50725709443, + "value": 66894.8276423637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@S12000050", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 37804.38483554451, + "value": 36744.437533748656, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000001", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 10223.0, + "value": 9936.370781897478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000002", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 15818.0, + "value": 15374.499953834911, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000003", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 17179.0, + "value": 16697.34066929637, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000004", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 13493.0, + "value": 13114.687563351528, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000005", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 19549.0, + "value": 19000.89136411169, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000006", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 16491.0, + "value": 16028.630594176984, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000008", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 10569.0, + "value": 10272.669744094144, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000009", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 18597.0, + "value": 18075.58323691161, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000010", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 26879.0, + "value": 26125.375158624895, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000011", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 28151.0, + "value": 27361.711227740965, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000012", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 18322.0, + "value": 17808.293599327553, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000013", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 18196.0, + "value": 17685.826347198134, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000014", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 17136.0, + "value": 16655.546289601407, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000015", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 34342.0, + "value": 33379.12994149694, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000016", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 28258.0, + "value": 27465.711195819127, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000018", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 21558.0, + "value": 20953.56366195303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000019", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 8463.0, + "value": 8225.717101359518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000020", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 11578.0, + "value": 11253.37972344801, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000021", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 13332.0, + "value": 12958.201630075044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000022", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 17126.0, + "value": 16645.82666641653, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000023", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 21063.0, + "value": 20472.44231430173, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/60_70@W06000024", + "metric": "age/60_70", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 7153.0, + "value": 6952.446464140923, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000001", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 8895.0, + "value": 8645.604822946108, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000002", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 11359.0, + "value": 11040.519975699252, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000003", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 15463.0, + "value": 15029.453330771858, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000004", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 18166.0, + "value": 17656.667477643507, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 10768.0, + "value": 10466.090245473153, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 11975.0, + "value": 11639.248763887537, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000007", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 19362.0, + "value": 18819.134410554532, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 10690.0, + "value": 10390.27718463113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 13417.0, + "value": 13040.81842714648, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 19428.0, + "value": 18883.283923574705, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 44577.0, + "value": 43327.164271216265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000012", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 15525.0, + "value": 15089.71499451808, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000013", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 18125.0, + "value": 17616.81702258552, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000014", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 18379.0, + "value": 17863.69545148134, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000015", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 19938.0, + "value": 19378.984706003317, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000016", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 20023.0, + "value": 19461.60150307475, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000017", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 5003.0, + "value": 4862.727479392847, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000018", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 17177.0, + "value": 16695.396744659392, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000019", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 23679.0, + "value": 23015.09573946497, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000020", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 16149.0, + "value": 15696.219481254268, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000021", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 20850.0, + "value": 20265.414340463896, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000022", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 17732.0, + "value": 17234.835831419943, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000023", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 27686.0, + "value": 26909.74874964429, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000024", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 25332.0, + "value": 24621.74945192477, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000025", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 25692.0, + "value": 24971.65588658026, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000026", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 23540.0, + "value": 22879.99297719521, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000027", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 17739.0, + "value": 17241.639567649356, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000030", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 17638.0, + "value": 17143.47137348212, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000031", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 14420.0, + "value": 14015.69663258942, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000032", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 11579.0, + "value": 11254.351685766496, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000033", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 16281.0, + "value": 15824.518507294613, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000034", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 11495.0, + "value": 11172.706851013549, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000035", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 22372.0, + "value": 21744.740989201837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000036", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 9232.0, + "value": 8973.156124276387, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000037", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 15449.0, + "value": 15015.845858313032, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000038", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 9558.0, + "value": 9290.015840103306, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000039", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 6755.0, + "value": 6565.605461382907, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000040", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 13281.0, + "value": 12908.631551832183, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000041", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 14470.0, + "value": 14064.294748513794, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000042", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 19774.0, + "value": 19219.58288577137, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000043", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 17999.0, + "value": 17494.349770456098, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000044", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 14295.0, + "value": 13894.201342778484, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000045", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 15905.0, + "value": 15459.060675543322, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000046", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 20103.0, + "value": 19539.35848855375, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000047", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 54508.0, + "value": 52979.7220561154, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000049", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 43575.0, + "value": 42353.25802809181, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000050", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 36788.0, + "value": 35756.549772517305, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000051", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 40245.0, + "value": 39116.623507528515, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000052", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 71488.0, + "value": 69483.64222403277, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000053", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 303.0, + "value": 294.50458250170556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000054", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 54621.0, + "value": 53089.55379810448, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000055", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 14784.0, + "value": 14369.49091651886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000056", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 26241.0, + "value": 25505.263199429886, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000057", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 41042.0, + "value": 39891.27747536304, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000058", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 40443.0, + "value": 39309.07204658903, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000059", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 54702.0, + "value": 53168.28274590197, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000060", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 48578.0, + "value": 47215.985507484664, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000061", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 32449.0, + "value": 31539.205272600142, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000062", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 36007.0, + "value": 34997.44720177859, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000063", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 30773.0, + "value": 29910.19642681513, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000064", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 28223.0, + "value": 27431.692514672064, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000065", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 75675.0, + "value": 73553.24845153982, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E06000066", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 69455.0, + "value": 67507.64283054772, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 7569.0, + "value": 7356.782788631714, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 9051.0, + "value": 8797.230944630155, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 11340.0, + "value": 11022.05269164799, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 18144.0, + "value": 17635.284306636782, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000012", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 15444.0, + "value": 15010.986046720596, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000032", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 14221.0, + "value": 13822.27613121041, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000033", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 8107.0, + "value": 7879.698515977976, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000034", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 10880.0, + "value": 10574.950025143751, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000035", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 9881.0, + "value": 9603.959668974761, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000036", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 11440.0, + "value": 11119.248923496738, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000037", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 9920.0, + "value": 9641.866199395772, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000038", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 12381.0, + "value": 12033.865465193454, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000039", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 10123.0, + "value": 9839.17455004873, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000040", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 21865.0, + "value": 21251.956093728684, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000041", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 10149.0, + "value": 9864.445570329404, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000042", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 9721.0, + "value": 9448.445698016765, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000043", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 12353.0, + "value": 12006.650520275804, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000044", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 12514.0, + "value": 12163.136453552288, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000045", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 17977.0, + "value": 17472.966599449373, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000046", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 9825.0, + "value": 9549.529779139462, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000047", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 8206.0, + "value": 7975.922785508236, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000061", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 11740.0, + "value": 11410.83761904298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000062", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 8924.0, + "value": 8673.791730182245, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000063", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 12703.0, + "value": 12346.837331746421, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000064", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 14693.0, + "value": 14281.0423455365, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000065", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 20981.0, + "value": 20392.741404185756, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000066", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 15021.0, + "value": 14599.845986000393, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000067", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 15746.0, + "value": 15304.518666903814, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000068", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 6967.0, + "value": 6771.661472902252, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000069", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 11154.0, + "value": 10841.267700409318, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000070", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 16846.0, + "value": 16373.677217240038, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000071", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 16902.0, + "value": 16428.10710707534, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000072", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 12398.0, + "value": 12050.38882460774, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000073", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 6051.0, + "value": 5881.3439891677235, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000074", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 8409.0, + "value": 8173.231136161195, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000075", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 9790.0, + "value": 9515.511097992401, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000076", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 21757.0, + "value": 21146.98416333204, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000077", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 9115.0, + "value": 8859.436533013353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000078", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 10646.0, + "value": 10347.510842617681, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000079", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 11618.0, + "value": 11292.258216187509, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000080", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 10830.0, + "value": 10526.351909219376, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000081", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 10306.0, + "value": 10017.04365433194, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000082", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 13781.0, + "value": 13394.61271107592, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000083", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 10373.0, + "value": 10082.165129670599, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000084", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 15899.0, + "value": 15453.228901632398, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000085", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 14131.0, + "value": 13734.799522546538, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000086", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 12765.0, + "value": 12407.098995492644, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000087", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 13329.0, + "value": 12955.28574311958, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000088", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 8609.0, + "value": 8367.62359985869, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000089", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 9630.0, + "value": 9359.997127034403, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000090", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 14228.0, + "value": 13829.079867439823, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000091", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 24597.0, + "value": 23907.357147836472, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000092", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 7453.0, + "value": 7244.035159687166, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000093", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 13559.0, + "value": 13178.837076371701, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000094", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 12823.0, + "value": 12463.472809964918, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000095", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 7878.0, + "value": 7657.119145044344, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000096", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 12546.0, + "value": 12194.239247743888, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000098", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 8951.0, + "value": 8700.034712781408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000099", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 12027.0, + "value": 11689.790804448887, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000102", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 7795.0, + "value": 7576.446272609884, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000103", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 5851.0, + "value": 5686.951525470228, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000105", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 12986.0, + "value": 12621.902667878378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000106", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 16647.0, + "value": 16180.25671586103, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000107", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 7342.0, + "value": 7136.147342335056, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000108", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 13795.0, + "value": 13408.220183534746, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000109", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 8417.0, + "value": 8181.006834709095, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000110", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 16402.0, + "value": 15942.125947831599, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000111", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 12429.0, + "value": 12080.519656480852, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000112", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 13781.0, + "value": 13394.61271107592, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000113", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 14287.0, + "value": 13886.425644230585, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000114", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16076.0, + "value": 15625.26623200468, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000115", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 12072.0, + "value": 11733.529108780824, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000116", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 10581.0, + "value": 10284.333291915995, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000117", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 8404.0, + "value": 8168.371324568757, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000118", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 12093.0, + "value": 11753.94031746906, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000119", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 11154.0, + "value": 10841.267700409318, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000120", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 7357.0, + "value": 7150.726777112369, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000121", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 14014.0, + "value": 13621.079931283504, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000122", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 8507.0, + "value": 8268.483443372967, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000123", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 10164.0, + "value": 9879.025005106716, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000124", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 7340.0, + "value": 7134.2034176980815, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000125", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 6754.0, + "value": 6564.63349906442, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000126", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 11860.0, + "value": 11527.473097261478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000127", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 12570.0, + "value": 12217.566343387587, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000128", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 15429.0, + "value": 14996.406611943283, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000129", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 10317.0, + "value": 10027.735239835301, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000130", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 16845.0, + "value": 16372.705254921551, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000131", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 10664.0, + "value": 10365.006164350456, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000132", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 12709.0, + "value": 12352.669105657345, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000133", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 6199.0, + "value": 6025.19441230387, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000134", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 10867.0, + "value": 10562.314515003412, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000135", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 5571.0, + "value": 5414.802076293735, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000136", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 6826.0, + "value": 6634.614785995518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000137", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 21796.0, + "value": 21184.89069375305, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000138", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 7179.0, + "value": 6977.717484421598, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000139", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 13610.0, + "value": 13228.407154614562, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000140", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 11042.0, + "value": 10732.407920738722, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000141", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 16437.0, + "value": 15976.14462897866, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000142", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 11977.0, + "value": 11641.192688524512, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000143", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 17575.0, + "value": 17082.23774741741, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000144", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 16557.0, + "value": 16092.780107197157, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000145", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 11774.0, + "value": 11443.884337871556, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000146", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 19131.0, + "value": 18594.611114983923, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000147", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 16833.0, + "value": 16361.041707099701, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000148", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 10022.0, + "value": 9741.006355881495, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000149", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 16930.0, + "value": 16455.322051992986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000170", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 12151.0, + "value": 11810.314131941333, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000171", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 12867.0, + "value": 12506.239151978367, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000172", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 11814.0, + "value": 11482.762830611055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000173", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 12177.0, + "value": 11835.585152222007, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000174", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 10235.0, + "value": 9948.034329719327, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000175", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 13736.0, + "value": 13350.874406743986, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000176", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 12556.0, + "value": 12203.958870928762, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000177", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 13544.0, + "value": 13164.25764159439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000178", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 8750.0, + "value": 8504.670286765424, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000179", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 14706.0, + "value": 14293.677855676837, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000180", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 13339.0, + "value": 12965.005366304456, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000181", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 12116.0, + "value": 11776.295450794272, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000192", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 9412.0, + "value": 9148.109341604135, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000193", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 11237.0, + "value": 10921.94057284378, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000194", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 12662.0, + "value": 12306.986876688434, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000195", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 12718.0, + "value": 12361.416766523733, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000196", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 13394.0, + "value": 13018.463293821267, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000197", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 15258.0, + "value": 14830.201055481924, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000198", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 12352.0, + "value": 12005.678557957317, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000199", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 7488.0, + "value": 7278.053840834228, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000200", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 12406.0, + "value": 12058.16452315564, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000202", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 10592.0, + "value": 10295.024877419357, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000203", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 13199.0, + "value": 12828.93064171621, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000207", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 11351.0, + "value": 11032.744277151352, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000208", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 6898.0, + "value": 6704.596072926617, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000209", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 11626.0, + "value": 11300.033914735408, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000210", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 9687.0, + "value": 9415.39897918819, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000211", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 12615.0, + "value": 12261.304647719522, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000212", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 6896.0, + "value": 6702.652148289641, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000213", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 8259.0, + "value": 8027.436788388073, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000214", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 8288.0, + "value": 8055.62369562421, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000215", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 8679.0, + "value": 8435.660962152813, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000216", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 13041.0, + "value": 12675.360595395188, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000217", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 7944.0, + "value": 7721.268658064518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000218", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 6977.0, + "value": 6781.381096087127, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000219", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 12519.0, + "value": 12167.996265144726, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000220", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 9903.0, + "value": 9625.342839981486, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000221", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 16945.0, + "value": 16469.901486770297, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000222", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 13305.0, + "value": 12931.958647475882, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000223", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 7280.0, + "value": 7075.885678588833, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000224", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 22673.0, + "value": 22037.301647066568, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000225", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 15933.0, + "value": 15486.275620460972, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000226", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 7225.0, + "value": 7022.427751072021, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000227", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 16209.0, + "value": 15754.537220363516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000228", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 15091.0, + "value": 14667.883348294516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000229", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 11780.0, + "value": 11449.71611178248, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000234", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 10508.0, + "value": 10213.38004266641, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000235", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 10847.0, + "value": 10542.875268633663, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000236", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 8334.0, + "value": 8100.333962274633, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000237", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 8819.0, + "value": 8571.73568674106, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000238", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 16323.0, + "value": 15865.340924671087, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000239", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 12874.0, + "value": 12513.04288820778, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000240", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 11746.0, + "value": 11416.669392953905, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000241", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 8376.0, + "value": 8141.156379651108, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000242", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 13184.0, + "value": 12814.351206938898, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000243", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 6069.0, + "value": 5898.839310900498, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000244", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 33622.0, + "value": 32679.317072185953, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E07000245", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 18194.0, + "value": 17683.882422561157, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000001", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 24477.0, + "value": 23790.721669617975, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000002", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 17240.0, + "value": 16756.630370724106, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000003", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 24017.0, + "value": 23343.619003113738, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000004", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 18477.0, + "value": 17958.947758693113, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 17851.0, + "value": 17350.499347319954, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 16748.0, + "value": 16278.424910028265, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000007", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 27548.0, + "value": 26775.617949693016, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 19881.0, + "value": 19323.58285384953, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 18898.0, + "value": 18368.14389477634, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 31716.0, + "value": 30826.75689314882, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 12184.0, + "value": 11842.38888845142, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000012", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 34878.0, + "value": 33900.10174420622, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000013", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 18286.0, + "value": 17773.302955862004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000014", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 29750.0, + "value": 28915.87897500244, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000015", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 33852.0, + "value": 32902.86840543807, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000016", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 23406.0, + "value": 22749.75002651789, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000017", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 28613.0, + "value": 27810.757818882183, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000018", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 25286.0, + "value": 24577.039185274345, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000019", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 43903.0, + "value": 42672.0616685557, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000021", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 20825.0, + "value": 20241.11528250171, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000022", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 20968.0, + "value": 20380.10589404542, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000023", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 14446.0, + "value": 14040.967652870093, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000024", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 26949.0, + "value": 26193.41252091902, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000025", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 66736.0, + "value": 64864.87728658027, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000026", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 22584.0, + "value": 21950.79700072118, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000027", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 30780.0, + "value": 29917.000163044544, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000028", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 22475.0, + "value": 21844.853108006046, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000029", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 21472.0, + "value": 20869.974902563106, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000030", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 22430.0, + "value": 21801.11480367411, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000031", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 19531.0, + "value": 18983.396042378914, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000032", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 38761.0, + "value": 37674.2314268931, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000033", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 19216.0, + "value": 18677.227912055358, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000034", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 37376.0, + "value": 36328.06361578794, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000035", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 59640.0, + "value": 57967.83267459313, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000036", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 32594.0, + "value": 31680.139808780827, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E08000037", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 18585.0, + "value": 18063.919689089762, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000001", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 643.0, + "value": 624.9717707874478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000002", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 8201.0, + "value": 7971.062973915799, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000003", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 26232.0, + "value": 25496.515538563497, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000004", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 18504.0, + "value": 17985.190741292274, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 17431.0, + "value": 16942.275173555212, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 26781.0, + "value": 26030.12285141312, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000007", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 11732.0, + "value": 11403.06192049508, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 24194.0, + "value": 23515.65633348602, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 20693.0, + "value": 20112.816256461363, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 20050.0, + "value": 19487.844485673915, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 14101.0, + "value": 13705.640652991913, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000012", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 9318.0, + "value": 9056.744883666312, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000013", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 8828.0, + "value": 8580.483347607447, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000014", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 12777.0, + "value": 12418.762543314495, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000015", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 18063.0, + "value": 17556.555358839298, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000016", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 21044.0, + "value": 20453.975030250465, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000017", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 18414.0, + "value": 17897.714132628404, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000018", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 15924.0, + "value": 15477.527959594585, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000019", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 9391.0, + "value": 9127.698132915897, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000020", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 9698.0, + "value": 9426.090564691553, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000021", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 11641.0, + "value": 11314.61334951272, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000022", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 12128.0, + "value": 11787.95899861612, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000023", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 12441.0, + "value": 12092.183204302703, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000024", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 12393.0, + "value": 12045.529013015303, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000025", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 11372.0, + "value": 11053.155485839588, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000026", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 17150.0, + "value": 16669.153762060232, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000027", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 15620.0, + "value": 15182.05141477439, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000028", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 11548.0, + "value": 11224.220853893385, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000029", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 14492.0, + "value": 14085.677919520518, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000030", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 7998.0, + "value": 7773.754623262841, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000031", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 12735.0, + "value": 12377.940125938021, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000032", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 14633.0, + "value": 14222.724606427251, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@E09000033", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 11411.0, + "value": 11091.062016260601, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000001", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000002", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000003", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000004", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000007", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@N09000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 15955.716868150488, + "value": 15508.355560297294, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 4507.263851467119, + "value": 4380.890623106777, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 12700.128618521287, + "value": 12344.04645714711, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 10474.178524932007, + "value": 10180.506843344656, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 9774.298240529452, + "value": 9500.249579453073, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 8427.899190920702, + "value": 8191.6004375860175, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000013", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 2275.4814221744846, + "value": 2211.6821987718936, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000014", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 13789.034399316262, + "value": 13402.42184446301, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000017", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 20487.254330152533, + "value": 19912.839218177658, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000018", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 6826.966565243158, + "value": 6635.554250990227, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000019", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 8402.654752801704, + "value": 8167.0637949829625, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000020", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 8121.135742881569, + "value": 7893.437925402689, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000021", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 11613.573181964977, + "value": 11287.955515866666, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000023", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 1911.4392145412144, + "value": 1857.8468906133608, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000026", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 10169.243122411837, + "value": 9884.12112252224, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000027", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 2000.9263951837304, + "value": 1944.8250581855684, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000028", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 9707.705153767267, + "value": 9435.523608448462, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000029", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 28470.155011885934, + "value": 27671.917873050515, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000030", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 8061.158439902294, + "value": 7835.142246942327, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000033", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 19500.980247779276, + "value": 18954.21797441004, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000034", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 22957.03087605668, + "value": 22313.368955880647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000035", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 7483.670155483569, + "value": 7273.845395119348, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000036", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 44790.858355391196, + "value": 43535.02653415021, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000038", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 16006.1924644572, + "value": 15557.415937910604, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000039", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 7695.1140871768275, + "value": 7479.360929198035, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000040", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 15780.211218398865, + "value": 15337.770682057055, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000041", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 9953.446701387718, + "value": 9674.375132822337, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000042", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 12944.042120622777, + "value": 12581.121190160073, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000045", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 9482.942604721571, + "value": 9217.062880168853, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000047", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 32363.456718341702, + "value": 31456.060426228516, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000048", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 13140.426439231254, + "value": 12771.999347789353, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000049", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 54036.677341367424, + "value": 52521.6141920752, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@S12000050", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 29681.626892237975, + "value": 28849.42289065987, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000001", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 8889.0, + "value": 8639.773049035184, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000002", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 12916.0, + "value": 12553.865305584253, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000003", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 15002.0, + "value": 14581.37870194913, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000004", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 11541.0, + "value": 11217.417117663972, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000005", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 16558.0, + "value": 16093.752069515645, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000006", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 13226.0, + "value": 12855.173624315372, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000008", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 8940.0, + "value": 8689.343127278045, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000009", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 15823.0, + "value": 15379.359765427349, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000010", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 22052.0, + "value": 21433.713047285844, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000011", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 23037.0, + "value": 22391.09593099601, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000012", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 14535.0, + "value": 14127.472299215478, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000013", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 14798.0, + "value": 14383.098388977685, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000014", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 14070.0, + "value": 13675.509821118801, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000015", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 24837.0, + "value": 24140.628104273466, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000016", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 23032.0, + "value": 22386.236119403573, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000018", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 17394.0, + "value": 16906.312567771176, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000019", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 6602.0, + "value": 6416.895226654324, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000020", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 9188.0, + "value": 8930.389782262939, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000021", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 11658.0, + "value": 11331.136708927008, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000022", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 12733.0, + "value": 12375.996201301044, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000023", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 18035.0, + "value": 17529.340413921647, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "age/70_80@W06000024", + "metric": "age/70_80", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 5406.0, + "value": 5254.428293743301, + "adjustment_factor": 0.971962318487477, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000001", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 13381.0, + "value": 13381.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000002", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 20848.0, + "value": 20848.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000003", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 15541.0, + "value": 15541.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000004", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 20092.0, + "value": 20092.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 10935.0, + "value": 10935.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 15146.0, + "value": 15146.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000007", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 16395.0, + "value": 16395.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 20437.0, + "value": 20437.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 21603.0, + "value": 21603.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 38201.0, + "value": 38201.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 21120.0, + "value": 21120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000012", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 18462.0, + "value": 18462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000013", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 15369.0, + "value": 15369.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000014", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 11220.0, + "value": 11220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000015", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 30107.0, + "value": 30107.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000016", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 44515.0, + "value": 44515.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000017", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 1714.0, + "value": 1714.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000018", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 43055.0, + "value": 43055.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000019", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 11944.0, + "value": 11944.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000020", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 19042.0, + "value": 19042.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000021", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 31736.0, + "value": 31736.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000022", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 11212.0, + "value": 11212.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000023", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 43036.0, + "value": 43036.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000024", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 14912.0, + "value": 14912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000025", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 17663.0, + "value": 17663.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000026", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 26230.0, + "value": 26230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000027", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 13671.0, + "value": 13671.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000030", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 19132.0, + "value": 19132.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000031", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 25666.0, + "value": 25666.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000032", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 26389.0, + "value": 26389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000033", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 18180.0, + "value": 18180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000034", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 16458.0, + "value": 16458.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000035", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 26949.0, + "value": 26949.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000036", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 7314.0, + "value": 7314.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000037", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 8583.0, + "value": 8583.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000038", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 15116.0, + "value": 15116.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000039", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 16521.0, + "value": 16521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000040", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 7272.0, + "value": 7272.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000041", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 6916.0, + "value": 6916.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000042", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 25509.0, + "value": 25509.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000043", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 26141.0, + "value": 26141.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000044", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 21650.0, + "value": 21650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000045", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 25912.0, + "value": 25912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000046", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 12384.0, + "value": 12384.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000047", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 55129.0, + "value": 55129.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000049", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 24968.0, + "value": 24968.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000050", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 26673.0, + "value": 26673.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000051", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 19708.0, + "value": 19708.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000052", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 46176.0, + "value": 46176.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000053", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000054", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 30793.0, + "value": 30793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000055", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 16225.0, + "value": 16225.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000056", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 18768.0, + "value": 18768.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000057", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 26149.0, + "value": 26149.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000058", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 32183.0, + "value": 32183.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000059", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 23298.0, + "value": 23298.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000060", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 31269.0, + "value": 31269.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000061", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 31092.0, + "value": 31092.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000062", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 32277.0, + "value": 32277.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000063", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 21634.0, + "value": 21634.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000064", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 12968.0, + "value": 12968.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000065", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 36666.0, + "value": 36666.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E06000066", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 40685.0, + "value": 40685.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 7903.0, + "value": 7903.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 4961.0, + "value": 4961.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 9189.0, + "value": 9189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 10886.0, + "value": 10886.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000012", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 7778.0, + "value": 7778.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000032", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 9655.0, + "value": 9655.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000033", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 7537.0, + "value": 7537.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000034", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 10216.0, + "value": 10216.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000035", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 3309.0, + "value": 3309.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000036", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 9946.0, + "value": 9946.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000037", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 6181.0, + "value": 6181.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000038", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 7309.0, + "value": 7309.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000039", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 7486.0, + "value": 7486.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000040", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 8717.0, + "value": 8717.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000041", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 9511.0, + "value": 9511.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000042", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 5481.0, + "value": 5481.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000043", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 7459.0, + "value": 7459.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000044", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 4959.0, + "value": 4959.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000045", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 8861.0, + "value": 8861.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000046", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 5074.0, + "value": 5074.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000047", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 3321.0, + "value": 3321.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000061", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 10438.0, + "value": 10438.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000062", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 11470.0, + "value": 11470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000063", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 7331.0, + "value": 7331.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000064", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 6921.0, + "value": 6921.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000065", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 8323.0, + "value": 8323.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000066", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 17425.0, + "value": 17425.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000067", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 10863.0, + "value": 10863.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000068", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 3989.0, + "value": 3989.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000069", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 5519.0, + "value": 5519.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000070", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 10821.0, + "value": 10821.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000071", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 14362.0, + "value": 14362.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000072", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 8431.0, + "value": 8431.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000073", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 10188.0, + "value": 10188.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000074", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 3885.0, + "value": 3885.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000075", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 4574.0, + "value": 4574.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000076", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 14857.0, + "value": 14857.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000077", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 4174.0, + "value": 4174.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000078", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 7615.0, + "value": 7615.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000079", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 4244.0, + "value": 4244.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000080", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 5925.0, + "value": 5925.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000081", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 12141.0, + "value": 12141.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000082", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 6692.0, + "value": 6692.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000083", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 6156.0, + "value": 6156.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000084", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 11602.0, + "value": 11602.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000085", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 5891.0, + "value": 5891.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000086", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 8061.0, + "value": 8061.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000087", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 5230.0, + "value": 5230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000088", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 7521.0, + "value": 7521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000089", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 3836.0, + "value": 3836.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000090", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 10529.0, + "value": 10529.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000091", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 9465.0, + "value": 9465.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000092", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 6873.0, + "value": 6873.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000093", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 7343.0, + "value": 7343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000094", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 6602.0, + "value": 6602.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000095", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 8682.0, + "value": 8682.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000096", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 11009.0, + "value": 11009.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000098", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 7902.0, + "value": 7902.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000099", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 7966.0, + "value": 7966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000102", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 4987.0, + "value": 4987.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000103", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 8889.0, + "value": 8889.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000105", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 10526.0, + "value": 10526.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000106", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 12382.0, + "value": 12382.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000107", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 9025.0, + "value": 9025.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000108", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 10766.0, + "value": 10766.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000109", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 10388.0, + "value": 10388.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000110", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 13442.0, + "value": 13442.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000111", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 6196.0, + "value": 6196.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000112", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 9548.0, + "value": 9548.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000113", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 14670.0, + "value": 14670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000114", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16990.0, + "value": 16990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000115", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 7769.0, + "value": 7769.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000116", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 6679.0, + "value": 6679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000117", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 12862.0, + "value": 12862.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000118", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 8310.0, + "value": 8310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000119", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 5498.0, + "value": 5498.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000120", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10726.0, + "value": 10726.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000121", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 12171.0, + "value": 12171.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000122", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 11479.0, + "value": 11479.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000123", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 16998.0, + "value": 16998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000124", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 2793.0, + "value": 2793.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000125", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 6713.0, + "value": 6713.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000126", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 7552.0, + "value": 7552.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000127", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 9177.0, + "value": 9177.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000128", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 8734.0, + "value": 8734.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000129", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 5792.0, + "value": 5792.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000130", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 11797.0, + "value": 11797.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000131", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 4617.0, + "value": 4617.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000132", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 7469.0, + "value": 7469.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000133", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 3489.0, + "value": 3489.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000134", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 7163.0, + "value": 7163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000135", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 3769.0, + "value": 3769.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000136", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 7962.0, + "value": 7962.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000137", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 13327.0, + "value": 13327.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000138", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 10877.0, + "value": 10877.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000139", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 6847.0, + "value": 6847.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000140", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 7621.0, + "value": 7621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000141", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 9980.0, + "value": 9980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000142", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 7361.0, + "value": 7361.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000143", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 10017.0, + "value": 10017.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000144", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 7086.0, + "value": 7086.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000145", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 12397.0, + "value": 12397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000146", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 11452.0, + "value": 11452.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000147", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 6791.0, + "value": 6791.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000148", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 15699.0, + "value": 15699.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000149", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 8112.0, + "value": 8112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000170", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 12902.0, + "value": 12902.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000171", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 10423.0, + "value": 10423.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000172", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 7607.0, + "value": 7607.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000173", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 8894.0, + "value": 8894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000174", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 11813.0, + "value": 11813.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000175", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 9572.0, + "value": 9572.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000176", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 5390.0, + "value": 5390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000177", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 9905.0, + "value": 9905.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000178", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 10507.0, + "value": 10507.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000179", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 6772.0, + "value": 6772.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000180", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 7517.0, + "value": 7517.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000181", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 5828.0, + "value": 5828.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000192", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 8628.0, + "value": 8628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000193", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 10320.0, + "value": 10320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000194", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 6444.0, + "value": 6444.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000195", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 9621.0, + "value": 9621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000196", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 6394.0, + "value": 6394.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000197", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 8601.0, + "value": 8601.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000198", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 5097.0, + "value": 5097.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000199", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 6966.0, + "value": 6966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000200", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 5472.0, + "value": 5472.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000202", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 14483.0, + "value": 14483.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000203", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 5611.0, + "value": 5611.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000207", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 6127.0, + "value": 6127.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000208", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 3645.0, + "value": 3645.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000209", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 6577.0, + "value": 6577.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000210", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 3753.0, + "value": 3753.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000211", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 7697.0, + "value": 7697.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000212", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 4916.0, + "value": 4916.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000213", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 7136.0, + "value": 7136.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000214", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 4121.0, + "value": 4121.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000215", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 4613.0, + "value": 4613.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000216", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 5160.0, + "value": 5160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000217", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 5580.0, + "value": 5580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000218", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 4855.0, + "value": 4855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000219", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 13386.0, + "value": 13386.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000220", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 8283.0, + "value": 8283.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000221", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 7552.0, + "value": 7552.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000222", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 8444.0, + "value": 8444.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000223", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 4429.0, + "value": 4429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000224", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 12585.0, + "value": 12585.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000225", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 7849.0, + "value": 7849.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000226", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 11804.0, + "value": 11804.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000227", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 6923.0, + "value": 6923.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000228", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 7390.0, + "value": 7390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000229", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 8203.0, + "value": 8203.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000234", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 5251.0, + "value": 5251.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000235", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 4903.0, + "value": 4903.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000236", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 7934.0, + "value": 7934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000237", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 8657.0, + "value": 8657.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000238", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 8448.0, + "value": 8448.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000239", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 8360.0, + "value": 8360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000240", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 7126.0, + "value": 7126.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000241", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 9130.0, + "value": 9130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000242", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 7848.0, + "value": 7848.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000243", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 8086.0, + "value": 8086.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000244", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 18204.0, + "value": 18204.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E07000245", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 11632.0, + "value": 11632.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000001", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 34911.0, + "value": 34911.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000002", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 18878.0, + "value": 18878.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000003", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 79087.0, + "value": 79087.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000004", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 32120.0, + "value": 32120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 29310.0, + "value": 29310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 34846.0, + "value": 34846.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000007", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 22551.0, + "value": 22551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 27317.0, + "value": 27317.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 16227.0, + "value": 16227.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 32284.0, + "value": 32284.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 20855.0, + "value": 20855.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000012", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 68118.0, + "value": 68118.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000013", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 19858.0, + "value": 19858.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000014", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 27415.0, + "value": 27415.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000015", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 33212.0, + "value": 33212.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000016", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 26555.0, + "value": 26555.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000017", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 35203.0, + "value": 35203.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000018", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 29608.0, + "value": 29608.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000019", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 58204.0, + "value": 58204.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000021", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 33014.0, + "value": 33014.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000022", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 18972.0, + "value": 18972.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000023", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 18579.0, + "value": 18579.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000024", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 33782.0, + "value": 33782.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000025", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 175630.0, + "value": 175630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000026", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 39222.0, + "value": 39222.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000027", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 31961.0, + "value": 31961.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000028", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 44238.0, + "value": 44238.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000029", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 16640.0, + "value": 16640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000030", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 34954.0, + "value": 34954.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000031", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 35164.0, + "value": 35164.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000032", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 72117.0, + "value": 72117.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000033", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 22061.0, + "value": 22061.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000034", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 44619.0, + "value": 44619.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000035", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 79644.0, + "value": 79644.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000036", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 35430.0, + "value": 35430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E08000037", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 21445.0, + "value": 21445.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000001", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 397.0, + "value": 397.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000002", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 30899.0, + "value": 30899.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000003", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 37006.0, + "value": 37006.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000004", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 18838.0, + "value": 18838.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 45348.0, + "value": 45348.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 22073.0, + "value": 22073.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000007", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 21679.0, + "value": 21679.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 46551.0, + "value": 46551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 42621.0, + "value": 42621.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 45894.0, + "value": 45894.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 32824.0, + "value": 32824.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000012", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 38243.0, + "value": 38243.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000013", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 18720.0, + "value": 18720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000014", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 37657.0, + "value": 37657.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000015", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 20817.0, + "value": 20817.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000016", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 21931.0, + "value": 21931.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000017", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 28416.0, + "value": 28416.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000018", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 31233.0, + "value": 31233.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000019", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 27037.0, + "value": 27037.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000020", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 11285.0, + "value": 11285.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000021", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 10711.0, + "value": 10711.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000022", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 37189.0, + "value": 37189.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000023", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 38628.0, + "value": 38628.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000024", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 17371.0, + "value": 17371.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000025", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 47521.0, + "value": 47521.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000026", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 28706.0, + "value": 28706.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000027", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 9528.0, + "value": 9528.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000028", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 37030.0, + "value": 37030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000029", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 15557.0, + "value": 15557.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000030", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 42405.0, + "value": 42405.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000031", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 31406.0, + "value": 31406.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000032", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 25770.0, + "value": 25770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@E09000033", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 19956.0, + "value": 19956.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000001", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000001", + "period": 2025, + "raw_value": 13135.0, + "value": 13135.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000002", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000002", + "period": 2025, + "raw_value": 21625.0, + "value": 21625.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000003", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000003", + "period": 2025, + "raw_value": 48120.0, + "value": 48120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000004", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000004", + "period": 2025, + "raw_value": 15125.0, + "value": 15125.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000005", + "period": 2025, + "raw_value": 22912.0, + "value": 22912.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000006", + "period": 2025, + "raw_value": 10920.0, + "value": 10920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000007", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000007", + "period": 2025, + "raw_value": 10992.0, + "value": 10992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000008", + "period": 2025, + "raw_value": 13054.0, + "value": 13054.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000009", + "period": 2025, + "raw_value": 13612.0, + "value": 13612.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@N09000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "N09000010", + "period": 2025, + "raw_value": 18024.0, + "value": 18024.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000005", + "period": 2025, + "raw_value": 5498.0, + "value": 5498.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000006", + "period": 2025, + "raw_value": 12702.0, + "value": 12702.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000008", + "period": 2025, + "raw_value": 13427.0, + "value": 13427.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000010", + "period": 2025, + "raw_value": 8447.0, + "value": 8447.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000011", + "period": 2025, + "raw_value": 4862.0, + "value": 4862.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000013", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000013", + "period": 2025, + "raw_value": 1494.0, + "value": 1494.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000014", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000014", + "period": 2025, + "raw_value": 14557.0, + "value": 14557.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000017", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000017", + "period": 2025, + "raw_value": 17221.0, + "value": 17221.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000018", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000018", + "period": 2025, + "raw_value": 9272.0, + "value": 9272.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000019", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000019", + "period": 2025, + "raw_value": 8135.0, + "value": 8135.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000020", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000020", + "period": 2025, + "raw_value": 6728.0, + "value": 6728.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000021", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000021", + "period": 2025, + "raw_value": 16009.0, + "value": 16009.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000023", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000023", + "period": 2025, + "raw_value": 1187.0, + "value": 1187.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000026", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000026", + "period": 2025, + "raw_value": 8627.0, + "value": 8627.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000027", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000027", + "period": 2025, + "raw_value": 1178.0, + "value": 1178.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000028", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000028", + "period": 2025, + "raw_value": 10210.0, + "value": 10210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000029", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000029", + "period": 2025, + "raw_value": 29567.0, + "value": 29567.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000030", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000030", + "period": 2025, + "raw_value": 6307.0, + "value": 6307.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000033", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000033", + "period": 2025, + "raw_value": 17953.0, + "value": 17953.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000034", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000034", + "period": 2025, + "raw_value": 14389.0, + "value": 14389.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000035", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000035", + "period": 2025, + "raw_value": 6299.0, + "value": 6299.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000036", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000036", + "period": 2025, + "raw_value": 36137.0, + "value": 36137.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000038", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000038", + "period": 2025, + "raw_value": 16998.0, + "value": 16998.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000039", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000039", + "period": 2025, + "raw_value": 11325.0, + "value": 11325.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000040", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000040", + "period": 2025, + "raw_value": 17289.0, + "value": 17289.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000041", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000041", + "period": 2025, + "raw_value": 9775.0, + "value": 9775.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000042", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000042", + "period": 2025, + "raw_value": 17083.0, + "value": 17083.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000045", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000045", + "period": 2025, + "raw_value": 5753.0, + "value": 5753.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000047", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000047", + "period": 2025, + "raw_value": 35501.0, + "value": 35501.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000048", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000048", + "period": 2025, + "raw_value": 10274.0, + "value": 10274.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000049", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000049", + "period": 2025, + "raw_value": 84123.0, + "value": 84123.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@S12000050", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "S12000050", + "period": 2025, + "raw_value": 37120.0, + "value": 37120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000001", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 6003.0, + "value": 6003.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000002", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 9188.0, + "value": 9188.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000003", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 10401.0, + "value": 10401.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000004", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 9411.0, + "value": 9411.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000005", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 12594.0, + "value": 12594.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000006", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 13056.0, + "value": 13056.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000008", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 5127.0, + "value": 5127.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000009", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 10712.0, + "value": 10712.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000010", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 16818.0, + "value": 16818.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000011", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 25031.0, + "value": 25031.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000012", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 16043.0, + "value": 16043.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000013", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 14056.0, + "value": 14056.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000014", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 10821.0, + "value": 10821.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000015", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 37177.0, + "value": 37177.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000016", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 25470.0, + "value": 25470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000018", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 19112.0, + "value": 19112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000019", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 8752.0, + "value": 8752.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000020", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 10574.0, + "value": 10574.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000021", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 5811.0, + "value": 5811.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000022", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 17966.0, + "value": 17966.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000023", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 8841.0, + "value": 8841.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "uc_households@W06000024", + "metric": "uc_households", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 7163.0, + "value": 7163.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000001", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 1078164416.6666667, + "value": 1458342997.7684658, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000002", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 1569349347.368421, + "value": 2122727847.8202868, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000003", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 1685258000.0, + "value": 2279507805.8053966, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000004", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 2367880187.5, + "value": 3202833851.3261447, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000005", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 1372312960.0, + "value": 1856213175.862633, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000006", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 1699161931.25, + "value": 2298314492.8620706, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000007", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 2957695384.0, + "value": 4000627627.949305, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000008", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 1575282083.3333333, + "value": 2130752564.476015, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000009", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 1728502321.0526316, + "value": 2338000788.7173476, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000010", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 2886439150.0, + "value": 3904245268.9186425, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000011", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 4595575976.744186, + "value": 6216051970.179126, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000012", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 1818208321.7391305, + "value": 2459338606.8985744, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000013", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 2035163830.4347825, + "value": 2752796211.3628283, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000014", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 2741453504.166667, + "value": 3708135289.671062, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000015", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 2949735677.419355, + "value": 3989861197.359745, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000016", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 3192593651.3513517, + "value": 4318354904.127534, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000017", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 560918400.0, + "value": 758707492.3957481, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000018", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 3303444565.7894735, + "value": 4468293681.894715, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000019", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 2658026465.2173915, + "value": 3595290498.8437204, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000020", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 2316589739.1304345, + "value": 3133457543.7093387, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000021", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 3031426658.8235297, + "value": 4100357768.077534, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000022", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 2825409259.259259, + "value": 3821695230.686533, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000023", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 6569699072.727273, + "value": 8886283475.927303, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000024", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 3296662646.1538463, + "value": 4459120345.380213, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000025", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 4202550271.875, + "value": 5684438910.261013, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000026", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 3577789537.5, + "value": 4839377221.920994, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000027", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 1895688658.8235295, + "value": 2564139790.563225, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000030", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 3277060222.222222, + "value": 4432605783.001726, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000031", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 2596700063.636364, + "value": 3512339395.1516395, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000032", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 2328354095.2380953, + "value": 3149370206.0896316, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000033", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 2640653647.0588236, + "value": 3571791738.0597377, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000034", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 2232013963.157895, + "value": 3019058952.210914, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000035", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 3659048815.7894735, + "value": 4949289863.8755, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000036", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 1987475893.3333335, + "value": 2688292719.989098, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000037", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 2579361609.090909, + "value": 3488887115.158329, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000038", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 2441100200.0, + "value": 3301872449.5911694, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000039", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 1751302650.0, + "value": 2368840890.239166, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000040", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 2523600333.333333, + "value": 3413463492.572908, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000041", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 2912496040.0, + "value": 3939490248.708095, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000042", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 3902725887.5, + "value": 5278891495.827372, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000043", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 4281443866.6666665, + "value": 5791151689.642954, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000044", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 2728011920.0, + "value": 3689953980.915781, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000045", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 3224404115.625, + "value": 4361382263.50994, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000046", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 1978156527.777778, + "value": 2675687192.21291, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000047", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 6522087418.181818, + "value": 8821883165.598751, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000049", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 5912189929.411764, + "value": 7996925748.756673, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000050", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 5042570000.0, + "value": 6820663468.928864, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000051", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 4492654325.641026, + "value": 6076838444.964568, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000052", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 7718537191.780822, + "value": 10440220890.844992, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000053", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 35136600.0, + "value": 47526345.50286181, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000054", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 7648557883.870968, + "value": 10345565723.134544, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000055", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 2557294000.0, + "value": 3459038102.6165166, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E06000056", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 4246550833.333333, + "value": 5743954796.436358, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000008", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 2050847938.4615383, + "value": 2774010794.9304986, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000009", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 1265646060.0, + "value": 1711933765.1308258, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000010", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 1312471136.3636363, + "value": 1775270136.818925, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000011", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 2661445818.181818, + "value": 3599915572.140043, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000012", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 2513354940.0, + "value": 3399605404.329518, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000032", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 1712227725.0, + "value": 2315987501.2929273, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000033", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 969705000.0, + "value": 1311638999.3867538, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000034", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 1358193015.3846154, + "value": 1837114305.5600982, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000035", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 1079220690.0, + "value": 1459771730.5253475, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000036", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 1487201920.0, + "value": 2011613880.7522485, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000037", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 1286912581.8181818, + "value": 1740699213.7961793, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000038", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 1384562446.1538463, + "value": 1872782033.1561735, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000039", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 1435616000.0, + "value": 1941837913.3278823, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000040", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 2211684620.0, + "value": 2991561146.8806214, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000041", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 1744092079.9999998, + "value": 2359087754.1618967, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000042", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 1146734727.2727273, + "value": 1551092332.4537277, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000043", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 1334170200.0, + "value": 1804620648.6917417, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000044", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 1318050291.6666667, + "value": 1782816594.4313848, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000045", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 1947254494.736842, + "value": 2633888591.920213, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000046", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 918109344.4444444, + "value": 1241849863.4891431, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000047", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 813321314.2857143, + "value": 1100111843.1374838, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000061", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 1465835230.7692308, + "value": 1982712943.9901881, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000062", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 1230138954.5454545, + "value": 1663906267.8305953, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000063", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 1496145969.2307692, + "value": 2023711749.46852, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000064", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 1403910327.2727273, + "value": 1898952296.7219207, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000065", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 2441972342.857143, + "value": 3303052124.424717, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000066", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 2585200800.0, + "value": 3496785301.2264924, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000067", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 2182085466.666667, + "value": 2951524843.1997824, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000068", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 1304820022.2222223, + "value": 1764921113.4596167, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000069", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 1255024100.0, + "value": 1697566326.59444, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000070", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 2751777447.619047, + "value": 3722099626.102869, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000071", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 2718908100.0, + "value": 3677640003.618152, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000072", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 2079584470.5882354, + "value": 2812880302.919533, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000073", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 1196969509.0909092, + "value": 1619040728.0569391, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000074", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 947553750.0, + "value": 1281676852.7698283, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000075", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 1235961320.0, + "value": 1671781695.5110385, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000076", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 1990179227.7777777, + "value": 2691949294.808985, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000077", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 1406046577.777778, + "value": 1901841824.4389935, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000078", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 1893078879.9999998, + "value": 2560609760.6214223, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000079", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 1493231472.7272727, + "value": 2019769553.3598454, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000080", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 1218484580.0, + "value": 1648142368.3278823, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000081", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 1835818600.0000002, + "value": 2483158560.139003, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000082", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 1853133640.0, + "value": 2506579169.231398, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000083", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 1447593033.3333333, + "value": 1958038246.4363587, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000084", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 2939684136.3636365, + "value": 3976265316.9088683, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000085", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 1964624133.3333333, + "value": 2657383051.976015, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000086", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 2040156160.0, + "value": 2759548918.789861, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000087", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 1774628657.142857, + "value": 2400392032.7707043, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000088", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 1162435920.0, + "value": 1572330025.0695012, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000089", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 1652329745.4545455, + "value": 2234968504.8390694, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000090", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 1746686170.5882354, + "value": 2362596563.937521, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000091", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 2709414104.347826, + "value": 3664798268.2889543, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000092", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 1421130975.0, + "value": 1922245229.267171, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000093", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 2032219839.9999998, + "value": 2748814121.275552, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000094", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 1974404821.4285715, + "value": 2670612572.2389326, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000095", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 1401765207.6923077, + "value": 1896050772.5470157, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000096", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 2396685363.6363635, + "value": 3241796208.3364305, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000098", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 1634720600.0, + "value": 2211150083.851186, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000099", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 2021550266.6666667, + "value": 2734382280.1580815, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000102", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 1476162900.0, + "value": 1996682319.971382, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000103", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 1445101066.6666665, + "value": 1954667571.1638048, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000105", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 1819142850.0, + "value": 2460602665.2596073, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000106", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 2123937852.6315787, + "value": 2872873420.0456166, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000107", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 1663334400.0, + "value": 2249853582.338512, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000108", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 1631978285.7142859, + "value": 2207440784.254176, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000109", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 1410913107.6923077, + "value": 1908424373.1807032, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000110", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 2536878694.736842, + "value": 3431424023.52283, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000111", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 1927191160.0, + "value": 2606750593.973835, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000112", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 1573056628.5714285, + "value": 2127742377.6077561, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000113", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 1916979794.117647, + "value": 2592938531.8226633, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000114", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 1856852941.1764705, + "value": 2511609957.4335046, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000115", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 1973546900.0, + "value": 2669452133.5445623, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000116", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 1844529750.0, + "value": 2494941405.508994, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000117", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 1108109333.3333335, + "value": 1498846986.6448627, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000118", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 1587752057.1428573, + "value": 2147619657.0143676, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000119", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 1205063377.777778, + "value": 1629988628.527301, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000120", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 959044333.3333334, + "value": 1297219205.573726, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000121", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 1793342200.0, + "value": 2425704279.9264107, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000122", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 1029831707.6923076, + "value": 1392967377.3098936, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000123", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 1713525935.2941177, + "value": 2317743481.9789815, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000124", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 906388962.5, + "value": 1225996681.288328, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000125", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 914919937.5, + "value": 1237535818.9774122, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000126", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 1553037200.0, + "value": 2100663767.8659036, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000127", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 1496434166.6666665, + "value": 2024101570.080403, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000128", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 1512856600.0, + "value": 2046314824.652494, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000129", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 1301375833.3333335, + "value": 1760262446.6816573, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000130", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 2275931863.6363635, + "value": 3078463029.779603, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000131", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 1332416610.0, + "value": 1802248713.8941128, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000132", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 1527528214.2857141, + "value": 2066159892.462913, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000133", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 717141600.0, + "value": 970017573.0171709, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000134", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 1386898130.7692308, + "value": 1875941318.7448897, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000135", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 650615700.0, + "value": 880033541.8847097, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000136", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 809712650.0, + "value": 1095230704.2211773, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000137", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 1719218700.0, + "value": 2325443609.546198, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000138", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 1201402390.909091, + "value": 1625036717.221066, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000139", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 1570853423.0769231, + "value": 2124762285.466067, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000140", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 1140794081.8181818, + "value": 1543056917.291682, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000141", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 1938529687.5, + "value": 2622087273.546096, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000142", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 1237628863.6363637, + "value": 1674037242.5760055, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000143", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 1841659605.882353, + "value": 2491059201.1699777, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000144", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 1874632888.8888888, + "value": 2535659408.3764877, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000145", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 1262993723.0769231, + "value": 1708346170.4006543, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000146", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 2038122947.368421, + "value": 2756798761.802298, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000147", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 1456057400.0, + "value": 1969487288.5936222, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000148", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 1970143292.857143, + "value": 2664848358.306565, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000149", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 2000202186.6666667, + "value": 2705506514.5489235, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000170", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 1481254900.0, + "value": 2003569843.2747343, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000171", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 1511394971.4285715, + "value": 2044337801.7054083, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000172", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 1453938921.4285715, + "value": 1966621799.4875016, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000173", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 1550310406.6666665, + "value": 2096975462.16544, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000174", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 1309371692.3076923, + "value": 1771077777.5960753, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000175", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 1631108123.076923, + "value": 2206263787.8986096, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000176", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 1695356893.3333333, + "value": 2293167735.7290816, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000177", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 2378079778.9473686, + "value": 3216629987.1820807, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000178", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 2116536033.3333333, + "value": 2862861597.008722, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000179", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 2425441680.0, + "value": 3280692476.81112, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000180", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 2189852400.0, + "value": 2962030525.5110383, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000181", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 1779135480.0, + "value": 2406488035.8053966, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000192", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 1333127046.1538463, + "value": 1803209661.5699103, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000193", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 1635562793.3333335, + "value": 2212289248.4641595, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000194", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 1524042000.0, + "value": 2061444381.4390843, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000195", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 1645094506.25, + "value": 2225182000.7882767, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000196", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 1502556292.857143, + "value": 2032382459.0833433, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000197", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 2010448618.75, + "value": 2719366007.822721, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000198", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 1343305115.3846154, + "value": 1816976686.1201963, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000199", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 1003626450.0, + "value": 1357521712.9292722, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000200", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 1347065454.5454547, + "value": 1822062982.9777749, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000202", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 1805665531.25, + "value": 2442373021.3166904, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000203", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 1471079025.0, + "value": 1989805786.6772282, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000207", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 2491667333.333333, + "value": 3370270389.343145, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000208", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 1305389677.777778, + "value": 1765691638.9729266, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000209", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 2280274222.2222223, + "value": 3084336575.7245393, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000210", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 1520699207.6923077, + "value": 2056922865.3515944, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000211", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 2446494122.2222223, + "value": 3309168357.879077, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000212", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 1395261900.0, + "value": 1887254291.1488144, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000213", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 1631681307.692308, + "value": 2207039086.8765335, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000214", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 1482929466.6666667, + "value": 2005834889.8064868, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000215", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 1444674572.7272727, + "value": 1954090688.4170818, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000216", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 2140803952.9411767, + "value": 2895686785.8977447, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000217", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 1684759358.3333335, + "value": 2278833334.8511176, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000218", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 896744000.0, + "value": 1212950745.7072773, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000219", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 1752168847.0588236, + "value": 2370012522.6877017, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000220", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 1580420350.0, + "value": 2137702668.8368766, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000221", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 2131982613.3333335, + "value": 2883754896.2442083, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000222", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 2239672900.0, + "value": 3029418556.684383, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000223", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 896075250.0, + "value": 1212046183.4116926, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000224", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 2416934315.7894735, + "value": 3269185275.465852, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000225", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 1981878471.4285715, + "value": 2680721554.669431, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000226", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 1561068615.3846152, + "value": 2111527192.968111, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000227", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 2409041250.0, + "value": 3258508984.31112, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000228", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 2495577958.8235297, + "value": 3375559965.9720554, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000229", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 1675527584.6153846, + "value": 2266346285.24121, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000234", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 1456689800.0, + "value": 1970342683.2788227, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000235", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 1156511200.0, + "value": 1564316150.9403107, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000236", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 1135833092.3076923, + "value": 1536346600.9403107, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000237", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 1441965057.142857, + "value": 1950425752.885177, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000238", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 1911766042.105263, + "value": 2585886324.7364116, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E07000239", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 1368987714.2857144, + "value": 1851715393.587198, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000001", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 3294895200.0, + "value": 4456729668.520033, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000002", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 2450054707.6923075, + "value": 3313984464.5952573, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000003", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 6158664449.1228075, + "value": 8330311255.078826, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000004", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 2630217151.5151515, + "value": 3557675161.810253, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000005", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 2559446064.0, + "value": 3461949019.9280457, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000006", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 3298457120.0, + "value": 4461547580.343418, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000007", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 4102490571.428571, + "value": 5549096506.774909, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000008", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 2875335030.0, + "value": 3889225652.8025346, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000009", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 3214009328.5714283, + "value": 4347322102.853054, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000010", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 4167217600.0, + "value": 5636647354.701553, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000011", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 1883080500.0, + "value": 2547085786.6925592, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000012", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 5951930357.377049, + "value": 8050679308.005711, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000013", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 2388063391.3043475, + "value": 3230133986.15308, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000014", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 3762471160.5263157, + "value": 5089180635.568812, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000015", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 4348039276.190476, + "value": 5881229740.505393, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000016", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 2939041600.0, + "value": 3975396211.610793, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000017", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 3661856200.0, + "value": 4953087178.127555, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000018", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 3075629772.7272725, + "value": 4160147630.0360513, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000019", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 6437937928.571428, + "value": 8708061176.07464, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000021", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 3374376872.413793, + "value": 4564237891.4068, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000022", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 2782067120.0, + "value": 3763069937.2526574, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000023", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 1836326500.0, + "value": 2483845554.067866, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000024", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 3272646697.222222, + "value": 4426635976.189584, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000025", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 12299151200.0, + "value": 16636035055.273916, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000026", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 4007562314.2857146, + "value": 5420694978.256045, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000027", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 4052142158.139535, + "value": 5480994411.367396, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000028", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 3543719457.8947372, + "value": 4793293469.519517, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000029", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 3071735396.551724, + "value": 4154880032.4985194, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000030", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 3183477533.3333335, + "value": 4306024292.32761, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000031", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 2972941427.2727275, + "value": 4021249677.895265, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000032", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 5423513750.819673, + "value": 7335934278.2448435, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000033", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 2568513111.111111, + "value": 3474213257.6087947, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000034", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 4940250616.949153, + "value": 6682264581.429383, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000035", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 10101011057.943924, + "value": 13662794392.971167, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E08000036", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 4384748333.333333, + "value": 5930883017.511583, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000001", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 319410000.0, + "value": 432039241.61896974, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000002", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 2163649009.090909, + "value": 2926587386.1722293, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000003", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 5760908626.829268, + "value": 7792300160.20631, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000004", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 3396423928.571429, + "value": 4594059103.711599, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000005", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 4177933270.5882354, + "value": 5651141547.727383, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000006", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 5363425128.205128, + "value": 7254657414.826928, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000007", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 4085702667.857143, + "value": 5526388911.122387, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000008", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 5659349604.545455, + "value": 7654929749.2390175, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000009", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 5013240646.153846, + "value": 6780992100.490597, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000010", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 4187294772.222223, + "value": 5663804069.4592085, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000011", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 4000805915.1515155, + "value": 5411556161.193291, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000012", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 3817779417.8571434, + "value": 5163991497.947817, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000013", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 3534763952.0, + "value": 4781180104.330336, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000014", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 3997874833.333333, + "value": 5407591531.514036, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000015", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 3360080966.666667, + "value": 4544901013.1711645, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000016", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 3605798790.0000005, + "value": 4877262999.474653, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000017", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 4000475500.0, + "value": 5411109236.201962, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000018", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 3750722142.857143, + "value": 5073288720.21376, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000019", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 4019687721.73913, + "value": 5437096004.650004, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000020", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 3248969923.8095236, + "value": 4394610381.407935, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000021", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 2682134620.0, + "value": 3627899587.191333, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000022", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 5444858605.714285, + "value": 7364805681.523186, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000023", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 4499605888.888889, + "value": 6086241244.230945, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000024", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 3344677596.0, + "value": 4524066159.593622, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000025", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 3600696589.1891894, + "value": 4870361678.386113, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000026", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 3695862938.7096777, + "value": 4999085254.587477, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000027", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 3696990782.6086955, + "value": 5000610794.873618, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000028", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 5145904418.181819, + "value": 6960435309.71159, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000029", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 3034866916.6666665, + "value": 4105011117.658081, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000030", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 4360498325.0, + "value": 5898082055.7083, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000031", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 3519214200.0, + "value": 4760147252.943582, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000032", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 6056060640.540541, + "value": 8191527648.90776, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@E09000033", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 4651070812.5, + "value": 6291115201.617436, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000001", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 881851666.6666666, + "value": 1192807129.6674843, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000002", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 1391559088.235294, + "value": 1882245806.7974124, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000003", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 1467107033.3333335, + "value": 1984433205.1444538, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000004", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 1195878560.0, + "value": 1617565092.2976289, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000005", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 1992944135.0, + "value": 2695689153.985078, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000006", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 1636713988.8888888, + "value": 2213846374.5866265, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000008", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 882510033.3333334, + "value": 1193697647.2949033, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000009", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 1526266800.0, + "value": 2064453682.6655765, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000010", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 2250007680.0, + "value": 3043397550.809485, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000011", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 3035433322.580645, + "value": 4105777247.65252, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000012", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 1646043421.0526316, + "value": 2226465518.6233163, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000013", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 1770367578.9473684, + "value": 2394628428.0242715, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000014", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 1859082000.0, + "value": 2514625019.215045, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000015", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 4640989500.0, + "value": 6277479051.819297, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000016", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 2672479880.645161, + "value": 3614840427.2749453, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000018", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 2006830050.0, + "value": 2714471471.964432, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000019", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 743330000.0, + "value": 1005440435.4047425, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000020", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 1094245653.8461537, + "value": 1480094744.7874079, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000021", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 1352319136.3636363, + "value": 1829169199.7788596, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000022", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 1896080070.0, + "value": 2564669219.7853637, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000023", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 1726589905.2631578, + "value": 2335414023.5335884, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_bhc@W06000024", + "metric": "ons/equiv_net_income_bhc", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 675882928.5714285, + "value": 914210412.5832262, + "adjustment_factor": 1.3526165167620605, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000001", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 130293833.33333349, + "value": 158838772.08480585, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000002", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 162073063.1578946, + "value": 197580236.0052072, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000003", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 176473600.0, + "value": 215135660.77738515, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000004", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 209043512.5, + "value": 254841031.13957596, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000005", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 98162120.0, + "value": 119667602.12014134, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000006", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 145122906.25, + "value": 176916617.159894, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000007", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 155725360.0, + "value": 189841869.9646643, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000008", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 143979150.0, + "value": 175522285.33568904, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000009", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 174930300.0, + "value": 213254252.65017667, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000010", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 335229650.0, + "value": 408672188.1625442, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000011", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 285742623.25581455, + "value": 348343480.6475478, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000012", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 140259182.60869575, + "value": 170987342.75618386, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000013", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 152708869.56521726, + "value": 186164522.9681977, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000014", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 187653720.83333397, + "value": 228765136.70494777, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000015", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 210963187.0967741, + "value": 257181270.48900023, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000016", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 366323697.2972975, + "value": 446578358.8959987, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000017", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 13355200.0, + "value": 16281074.204946997, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000018", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 382113631.57894707, + "value": 465827572.0662075, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000019", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 121719678.2608695, + "value": 148386180.21201405, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000020", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 197928043.47826052, + "value": 241290371.02473456, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000021", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 254567105.8823533, + "value": 310337991.27000666, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000022", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 276787962.9629631, + "value": 337427021.9866511, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000023", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 896865840.000001, + "value": 1093352349.1166089, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000024", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 220238615.38461542, + "value": 268488771.4052732, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000025", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 428116125.0, + "value": 521908350.2650177, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000026", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 362289675.0, + "value": 441660557.86219084, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000027", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 219360376.4705882, + "value": 267418126.79276654, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000030", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 349363733.333333, + "value": 425902784.45229644, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000031", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 225933654.54545498, + "value": 275431486.99004227, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000032", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 376280666.66666675, + "value": 458716713.78091884, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000033", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 243327247.0588236, + "value": 296635689.87736446, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000034", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 323151184.21052647, + "value": 393947556.72308, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000035", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 440552410.5263157, + "value": 537069193.0444485, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000036", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 187927520.0, + "value": 229098920.14134276, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000037", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 205427836.3636365, + "value": 250433228.07581127, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000038", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 339543050.0, + "value": 413930573.3215548, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000039", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 362467600.0, + "value": 441877462.8975265, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000040", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 197690488.88888884, + "value": 241000772.67373374, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000041", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 161843760.0, + "value": 197300696.81978798, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000042", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 509665887.5, + "value": 621324138.4717314, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000043", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 626140012.121212, + "value": 763315562.4799228, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000044", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 312225720.0, + "value": 380628527.91519433, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000045", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 394140009.375, + "value": 480488704.0083922, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000046", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 123072500.0, + "value": 150035379.85865724, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000047", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 483394240.909091, + "value": 589296866.1259236, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000049", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 212912894.11764622, + "value": 259558121.8041977, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000050", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 262774842.55319214, + "value": 320343889.33163, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000051", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 196126389.7435894, + "value": 239094008.69801536, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000052", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 600597602.7397261, + "value": 732177289.55903, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000053", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 8478000.0, + "value": 10335371.024734983, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000054", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 569964650.0, + "value": 694833230.565371, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000055", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 257453250.0, + "value": 313856435.5123675, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E06000056", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 298228257.5757575, + "value": 363564483.6170895, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000008", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 211502523.0769229, + "value": 257838764.88176113, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000009", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 52456230.0, + "value": 63948407.59717315, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000010", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 98986372.72727251, + "value": 120672433.18342409, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000011", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 141878545.4545455, + "value": 172961477.67426926, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000012", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 117912960.0, + "value": 143745481.2720848, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000032", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 148782318.75, + "value": 181377738.40547705, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000033", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 64882080.0, + "value": 79096528.62190813, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000034", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 97964384.61538482, + "value": 119426546.61592849, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000035", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 77156370.0, + "value": 94059885.68904594, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000036", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 87581160.0, + "value": 106768551.9434629, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000037", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 104153927.27272725, + "value": 126972102.15226467, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000038", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 70749230.76923084, + "value": 86249062.2451754, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000039", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 74646000.0, + "value": 90999540.6360424, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000040", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 122555980.0, + "value": 149405700.0, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000041", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 208113839.99999976, + "value": 253707684.80565342, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000042", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 94913354.5454545, + "value": 115707092.99710885, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000043", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 78371700.0, + "value": 95541471.73144877, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000044", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 60969250.00000024, + "value": 74326470.84805682, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000045", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 118416252.63157868, + "value": 144359035.89362067, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000046", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 56176244.44444442, + "value": 68483407.5382803, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000047", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 48572371.42857146, + "value": 59213668.349318564, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000061", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 150162153.84615397, + "value": 183059869.52976367, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000062", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 116945945.45454526, + "value": 142566611.94988734, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000063", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 94433292.30769229, + "value": 115121858.11361781, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000064", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 55115345.4545455, + "value": 67190085.44812083, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000065", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 143358600.0, + "value": 174765784.45229682, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000066", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 266919900.0, + "value": 325397051.2367491, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000067", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 150189866.66666698, + "value": 183093653.71024773, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000068", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 129727355.55555558, + "value": 158148189.63486457, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000069", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 136469850.0, + "value": 166367838.3392226, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000070", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 212559009.52380943, + "value": 259126707.72337192, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000071", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 252282150.0, + "value": 307552444.34628975, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000072", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 231706788.2352941, + "value": 282469406.152567, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000073", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 193070700.00000012, + "value": 235368874.55830404, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000074", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 54056250.0, + "value": 65898962.01413427, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000075", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 108804420.0, + "value": 132641430.74204947, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000076", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 172374777.77777767, + "value": 210138863.36866888, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000077", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 95269511.1111114, + "value": 116141276.79623121, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000078", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 141769320.0, + "value": 172828322.96819788, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000079", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 118469427.27272749, + "value": 144423860.102795, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000080", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 92670330.0, + "value": 112972663.78091873, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000081", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 223474900.00000024, + "value": 272434065.371025, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000082", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 118025093.33333349, + "value": 143882180.9187281, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000083", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 92776933.33333325, + "value": 113102621.90812711, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000084", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 258154295.4545455, + "value": 314711066.8968841, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000085", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 128631920.0, + "value": 156812764.66431096, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000086", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 105499146.66666675, + "value": 128612033.92226158, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000087", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 52113214.28571415, + "value": 63530243.563856475, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000088", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 86212800.0, + "value": 105100409.89399293, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000089", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 96276909.090909, + "value": 117369376.80693854, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000090", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 166756358.82352948, + "value": 203289554.04281864, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000091", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 200659869.5652175, + "value": 244620689.04593652, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000092", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 180138750.0, + "value": 219603776.50176677, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000093", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 108321840.0, + "value": 132053126.50176679, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000094", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 97150321.42857146, + "value": 118434137.43059066, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000095", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 184531523.07692313, + "value": 224958923.89236212, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000096", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 243271490.90909052, + "value": 296567718.5994213, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000098", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 207500184.61538458, + "value": 252959589.01875505, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000099", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 148637840.0, + "value": 181201607.0671378, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000102", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 152039250.0, + "value": 185348202.29681978, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000103", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 223567966.6666665, + "value": 272547521.2014132, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000105", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 159218057.1428573, + "value": 194099751.64058578, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000106", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 182982315.78947353, + "value": 223070314.30165502, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000107", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 202468430.76923084, + "value": 246825472.13916835, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000108", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 109761371.4285717, + "value": 133808032.30691603, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000109", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 203484738.46153855, + "value": 248064433.8135364, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000110", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 166776631.57894754, + "value": 203314268.17928234, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000111", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 152593806.66666675, + "value": 186024251.943463, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000112", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 182648585.7142856, + "value": 222663470.21706197, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000113", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 174723794.11764693, + "value": 213002505.1964247, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000114", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 152207058.82352948, + "value": 185552774.89087516, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000115", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 180499800.00000024, + "value": 220043925.7950533, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000116", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 188414150.0, + "value": 229692161.6607774, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000117", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 110977066.66666687, + "value": 135290063.60424054, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000118", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 61232657.14285731, + "value": 74647585.56284726, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000119", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 38023844.44444466, + "value": 46354156.65488836, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000120", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 89294333.33333337, + "value": 108857049.46996471, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000121", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 117290311.11111116, + "value": 142986421.672556, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000122", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 104827907.69230759, + "value": 127793739.05952692, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000123", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 138849247.0588236, + "value": 169268516.73248813, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000124", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 58174725.0, + "value": 70919717.75618374, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000125", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 70290300.0, + "value": 85689588.33922261, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000126", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 91456000.0, + "value": 111492296.81978798, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000127", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 75064373.33333302, + "value": 91509571.73144838, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000128", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 83040307.14285707, + "value": 101232883.26602718, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000129", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 37962708.33333349, + "value": 46279626.766784646, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000130", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 129123750.0, + "value": 157412345.40636042, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000131", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 40008870.0, + "value": 48774064.134275615, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000132", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 82998642.85714269, + "value": 101182091.11559798, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000133", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 34275150.0, + "value": 41784193.462897524, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000134", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 77145992.30769253, + "value": 94047234.43870644, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000135", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 22993950.0, + "value": 28031493.81625442, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000136", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 80125900.0, + "value": 97679984.09893993, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000137", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 110081800.0, + "value": 134198660.77738516, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000138", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 166550154.54545474, + "value": 203038174.26919395, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000139", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 72953492.30769229, + "value": 88936236.2054906, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000140", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 82146054.5454545, + "value": 100142716.67202051, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000141", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 100167187.5, + "value": 122111942.35865724, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000142", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 50429045.4545455, + "value": 61477104.88274981, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000143", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 104385564.70588231, + "value": 127254487.0089378, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000144", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 71558222.22222209, + "value": 87235288.57479371, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000145", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 95255630.76923084, + "value": 116124355.5313945, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000146", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 149130947.36842108, + "value": 181802745.02510697, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000147", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 29024400.0, + "value": 35383102.47349823, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000148", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 216398071.42857146, + "value": 263806836.19384155, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000149", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 64654653.33333349, + "value": 78819277.03180231, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000170", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 131841225.0, + "value": 160725168.2862191, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000171", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 95932414.28571415, + "value": 116949409.64159499, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000172", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 66323657.14285731, + "value": 80853928.319031, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000173", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 94510166.66666651, + "value": 115215574.2049468, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000174", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 101601923.0769229, + "value": 123861001.63087773, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000175", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 106251761.53846145, + "value": 129529532.617559, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000176", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 35583206.66666651, + "value": 43378820.848056346, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000177", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 185196821.05263186, + "value": 225769976.19490457, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000178", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 275883122.2222223, + "value": 336323947.58539474, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000179", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 138368250.0, + "value": 168682142.2261484, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000180", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 82550700.0, + "value": 100636012.36749117, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000181", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 106837693.33333325, + "value": 130243831.09540626, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000192", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 110313923.07692313, + "value": 134481637.67328086, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000193", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 124812966.66666698, + "value": 152157150.17667884, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000194", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 30800250.0, + "value": 37548007.95053004, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000195", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 138232012.5, + "value": 168516057.64134276, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000196", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 65228271.42857146, + "value": 79518564.10903588, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000197", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 49914068.75, + "value": 60849306.42667845, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000198", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 78193846.15384626, + "value": 95324653.4384345, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000199", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 78290100.0, + "value": 95441994.69964664, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000200", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 66878181.81818199, + "value": 81529938.96562822, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000202", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 221291656.25, + "value": 269772513.80300355, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000203", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 63558300.0, + "value": 77482733.21554771, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000207", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 207227166.6666665, + "value": 252626757.95052984, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000208", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 167393344.44444442, + "value": 204066091.28386334, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000209", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 240697333.33333325, + "value": 293429611.3074204, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000210", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 170553715.38461542, + "value": 207918840.30986685, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000211", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 246045888.8888893, + "value": 299949935.2179039, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000212", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 159209660.0, + "value": 194089514.8409894, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000213", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 188444076.92307734, + "value": 229728645.0122321, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000214", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 137430533.3333335, + "value": 167538989.39929348, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000215", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 157065045.4545455, + "value": 191475055.41278514, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000216", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 184185035.29411793, + "value": 224536527.1253381, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000217", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 213055241.66666698, + "value": 259731655.03533608, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000218", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 51220000.0, + "value": 62441342.75618374, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000219", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 154446494.11764717, + "value": 188282828.51797977, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000220", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 76787900.0, + "value": 93610690.81272085, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000221", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 61446133.33333349, + "value": 74907830.38869277, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000222", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 111461820.00000024, + "value": 135881017.31448793, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000223", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 61583550.0, + "value": 75075352.47349824, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000224", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 192360436.8421054, + "value": 234503006.04426277, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000225", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 138774014.2857144, + "value": 169176801.8677437, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000226", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 234510307.69230747, + "value": 285887124.2185374, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000227", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 191787750.0, + "value": 233804854.24028268, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000228", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 189674358.82352972, + "value": 231228458.6364585, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000229", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 164618584.61538458, + "value": 200683433.54172325, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000234", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 75163071.42857146, + "value": 91629892.73094401, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000235", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 57096000.0, + "value": 69604664.31095406, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000236", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 107175184.61538458, + "value": 130655260.39684692, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000237", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 160999200.0, + "value": 196271109.54063603, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000238", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 124975705.2631576, + "value": 152355541.75190592, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E07000239", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 80281142.85714293, + "value": 97869237.7587078, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000001", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 326842200.0, + "value": 398447204.94699645, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000002", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 155184615.38461494, + "value": 189182658.33106768, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000003", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 747794771.9298248, + "value": 911622601.822578, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000004", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 222689272.727273, + "value": 271476321.87600416, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000005", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 221587688.0, + "value": 270133400.56537104, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000006", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 326162000.0, + "value": 397617985.8657244, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000007", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 250280571.42857122, + "value": 305112357.3952547, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000008", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 256779660.0, + "value": 313035274.5583039, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000009", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 146466407.14285707, + "value": 178554453.93740526, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000010", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 326637162.5, + "value": 398197247.5706714, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000011", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 223657105.0, + "value": 272656188.0742049, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000012", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 732001036.0655746, + "value": 892368754.2142165, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000013", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 199005282.60869503, + "value": 242603613.07420418, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000014", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 243231113.1578946, + "value": 296518494.83912945, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000015", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 247962390.47619057, + "value": 302286306.4109037, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000016", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 190173280.0, + "value": 231836684.09893993, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000017", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 212544415.38461542, + "value": 259108916.2815983, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000018", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 232337954.5454545, + "value": 283238849.18085444, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000019", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 505319642.85714245, + "value": 616025713.0237249, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000021", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 227386168.96551752, + "value": 277202220.11697364, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000022", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 170009866.66666698, + "value": 207255844.5229686, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000023", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 198329200.0, + "value": 241779413.42756185, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000024", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 362119052.7777772, + "value": 441452555.5064775, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000025", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 1742906400.0, + "value": 2124744551.2367492, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000026", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 435951750.0, + "value": 531460613.9575972, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000027", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 346816446.5116277, + "value": 422797434.79332703, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000028", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 525097031.578948, + "value": 640135957.2252194, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000029", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 164772144.82758617, + "value": 200870635.9205556, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000030", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 334375928.2051282, + "value": 407631431.91084534, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000031", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 346009472.727273, + "value": 421813668.1657568, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000032", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 461707400.0, + "value": 562858844.5229682, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000033", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 156825066.66666698, + "value": 191182501.76678485, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000034", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 401229440.6779671, + "value": 489131296.93957114, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000035", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 1135135104.6728954, + "value": 1383821947.3927524, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E08000036", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 391191666.66666603, + "value": 476894434.6289745, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000001", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 28009800.0, + "value": 34146222.61484099, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000002", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 416202627.27272725, + "value": 507384828.30067456, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000003", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 766014519.5121946, + "value": 933833954.8823574, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000004", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 274327857.1428571, + "value": 334427953.054013, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000005", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 980991011.7647061, + "value": 1195907770.5258784, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000006", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 307177984.6153841, + "value": 374474928.2413693, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000007", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 810647403.5714288, + "value": 988245067.9581022, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000008", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 671571981.818182, + "value": 818700825.8914232, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000009", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 893116292.3076916, + "value": 1088781345.7461257, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000010", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 600920130.5555563, + "value": 732570477.1790351, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000011", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 556435515.1515155, + "value": 678340115.6440736, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000012", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 838039900.0000005, + "value": 1021638747.349824, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000013", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 657751424.0, + "value": 801852442.6855124, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000014", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 840444077.7777772, + "value": 1024569635.4534739, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000015", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 443727900.0000005, + "value": 540940372.79152, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000016", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 337252410.0000005, + "value": 411138096.996467, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000017", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 550918725.0, + "value": 671614700.0883392, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000018", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 552312221.4285717, + "value": 673313485.487128, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000019", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 678408834.7826085, + "value": 827035505.3003532, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000020", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 374868895.2380948, + "value": 456995649.6718824, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000021", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 219847100.0, + "value": 268011482.33215547, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000022", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 1142154239.999999, + "value": 1392378843.8162532, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000023", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 741831511.1111116, + "value": 904352902.2379277, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000024", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 328877496.0, + "value": 400928396.18374556, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000025", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 885033364.8648653, + "value": 1078927600.2769558, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000026", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 515219419.35483885, + "value": 628094345.1498919, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000027", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 114390565.21739101, + "value": 139451395.75971696, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000028", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 998180981.8181825, + "value": 1216863741.0857701, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000029", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 192488450.0, + "value": 234659064.4876325, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000030", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 919486559.375, + "value": 1120928844.4677563, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000031", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 508624942.8571429, + "value": 620055142.3523474, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000032", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 734866883.7837849, + "value": 895862455.4961334, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@E09000033", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 861236250.0, + "value": 1049916983.2155477, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000001", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 67808400.0, + "value": 82663950.53003533, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000002", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 88080970.58823538, + "value": 107377861.67117034, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000003", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 96112400.0, + "value": 117168826.85512367, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000004", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 81948200.0, + "value": 99901515.90106007, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000005", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 172295825.0, + "value": 210042613.51590106, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000006", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 157976522.22222233, + "value": 192586219.67020038, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000008", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 68307855.55555558, + "value": 83272827.44405186, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000009", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 122420400.0, + "value": 149240416.96113074, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000010", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 154033956.0, + "value": 187779911.02473497, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000011", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 229900638.70967722, + "value": 280267563.09130263, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000012", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 58763815.78947377, + "value": 71637867.30518888, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000013", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 90586105.26315784, + "value": 110431824.43741858, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000014", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 185755000.0, + "value": 226450441.69611308, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000015", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 606520850.0, + "value": 739398209.3639576, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000016", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 78670980.64516115, + "value": 95906319.16106218, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000018", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 90237450.0, + "value": 110006785.33568905, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000019", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 15844222.222222209, + "value": 19315394.581860997, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000020", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 21977776.92307675, + "value": 26792696.24898049, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000021", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 155879427.27272725, + "value": 190029690.4914873, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000022", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 194529030.0, + "value": 237146697.34982333, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000023", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 109911336.84210515, + "value": 133990852.33401512, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_housing_costs@W06000024", + "metric": "ons/equiv_housing_costs", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 22836371.428571463, + "value": 27839392.730944008, + "adjustment_factor": 1.2190812720848057, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000001", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 947870583.3333333, + "value": 1299504225.68366, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000002", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 1407276284.2105265, + "value": 1925147611.8150795, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000003", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 1508784400.0, + "value": 2064372145.0280113, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000004", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 2158836675.0, + "value": 2947992820.1865687, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000005", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 1274150840.0, + "value": 1736545573.7424917, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000006", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 1554039025.0, + "value": 2121397875.7021766, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000007", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 2801970024.0, + "value": 3810785757.9846406, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000008", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 1431302933.3333333, + "value": 1955230279.140326, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000009", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 1553572021.0526316, + "value": 2124746536.0671709, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000010", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 2551209500.0, + "value": 3495573080.7560983, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000011", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 4309833353.488372, + "value": 5867708489.531578, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000012", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 1677949139.1304348, + "value": 2288351264.1423903, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000013", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 1882454960.8695652, + "value": 2566631688.3946304, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000014", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 2553799783.333333, + "value": 3479370152.966114, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000015", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 2738772490.322581, + "value": 3732679926.8707447, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000016", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 2826269954.0540543, + "value": 3871776545.231535, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000017", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 547563200.0, + "value": 742426418.1908011, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000018", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 2921330934.2105265, + "value": 4002466109.828508, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000019", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 2536306786.956522, + "value": 3446904318.631706, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000020", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 2118661695.652174, + "value": 2892167172.684604, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000021", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 2776859552.9411764, + "value": 3790019776.8075275, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000022", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 2548621296.296296, + "value": 3484268208.699882, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000023", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 5672833232.727272, + "value": 7792931126.810695, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000024", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 3076424030.769231, + "value": 4190631573.9749393, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000025", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 3774434146.875, + "value": 5162530559.9959955, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000026", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 3215499862.5, + "value": 4397716664.058803, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000027", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 1676328282.3529413, + "value": 2296721663.770458, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000030", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 2927696488.888889, + "value": 4006702998.54943, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000031", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 2370766409.090909, + "value": 3236907908.1615973, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000032", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 1952073428.5714285, + "value": 2690653492.308713, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000033", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 2397326400.0, + "value": 3275156048.182373, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000034", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 1908862778.9473686, + "value": 2625111395.487834, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000035", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 3218496405.263158, + "value": 4412220670.831051, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000036", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 1799548373.3333335, + "value": 2459193799.8477554, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000037", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 2373933772.7272725, + "value": 3238453887.0825176, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000038", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 2101557150.0, + "value": 2887941876.2696147, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000039", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 1388835050.0, + "value": 1926963427.3416393, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000040", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 2325909844.444444, + "value": 3172462719.899174, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000041", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 2750652280.0, + "value": 3742189551.888307, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000042", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 3393060000.0, + "value": 4657567357.35564, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000043", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 3655303854.5454545, + "value": 5027836127.163031, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000044", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 2415786200.0, + "value": 3309325453.0005865, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000045", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 2830264106.25, + "value": 3880893559.501548, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000046", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 1855084027.777778, + "value": 2525651812.354253, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000047", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 6038693177.272727, + "value": 8232586299.472828, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000049", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 5699277035.294118, + "value": 7737367626.952476, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000050", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 4779795157.446808, + "value": 6500319579.597234, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000051", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 4296527935.897436, + "value": 5837744436.266553, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000052", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 7117939589.041096, + "value": 9708043601.285961, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000053", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 26658600.0, + "value": 37190974.47812683, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000054", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 7078593233.870968, + "value": 9650732492.569174, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000055", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 2299840750.0, + "value": 3145181667.104149, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E06000056", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 3948322575.7575755, + "value": 5380390312.819269, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000008", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 1839345415.3846154, + "value": 2516172030.0487375, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000009", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 1213189830.0, + "value": 1647985357.5336525, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000010", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 1213484763.6363637, + "value": 1654597703.635501, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000011", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 2519567272.7272725, + "value": 3426954094.4657736, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000012", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 2395441980.0, + "value": 3255859923.057433, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000032", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 1563445406.25, + "value": 2134609762.8874502, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000033", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 904822920.0, + "value": 1232542470.7648456, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000034", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 1260228630.7692306, + "value": 1717687758.9441698, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000035", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 1002064320.0, + "value": 1365711844.8363016, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000036", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 1399620760.0, + "value": 1904845328.8087857, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000037", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 1182758654.5454545, + "value": 1613727111.6439147, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000038", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 1313813215.3846154, + "value": 1786532970.910998, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000039", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 1360970000.0, + "value": 1850838372.69184, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000040", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 2089128640.0, + "value": 2842155446.8806214, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000041", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 1535978240.0, + "value": 2105380069.3562434, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000042", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 1051821372.7272727, + "value": 1435385239.4566188, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000043", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 1255798500.0, + "value": 1709079176.9602928, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000044", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 1257081041.6666665, + "value": 1708490123.583328, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000045", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 1828838242.1052632, + "value": 2489529556.0265927, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000046", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 861933100.0, + "value": 1173366455.950863, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000047", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 764748942.8571428, + "value": 1040898174.7881653, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000061", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 1315673076.9230769, + "value": 1799653074.4604244, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000062", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 1113193009.0909092, + "value": 1521339655.880708, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000063", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 1401712676.9230769, + "value": 1908589891.354902, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000064", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 1348794981.8181818, + "value": 1831762211.2738, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000065", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 2298613742.857143, + "value": 3128286339.97242, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000066", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 2318280900.0, + "value": 3171388249.989743, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000067", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 2031895600.0, + "value": 2768431189.489535, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000068", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 1175092666.6666667, + "value": 1606772923.824752, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000069", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 1118554250.0, + "value": 1531198488.2552173, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000070", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 2539218438.0952377, + "value": 3462972918.379497, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000071", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 2466625950.0, + "value": 3370087559.2718625, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000072", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 1847877682.3529413, + "value": 2530410896.766966, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000073", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 1003898809.0909091, + "value": 1383671853.498635, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000074", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 893497500.0, + "value": 1215777890.7556942, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000075", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 1127156900.0, + "value": 1539140264.768989, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000076", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 1817804450.0, + "value": 2481810431.440316, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000077", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 1310777066.6666665, + "value": 1785700547.6427622, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000078", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 1751309559.9999998, + "value": 2387781437.6532245, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000079", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 1374762045.4545453, + "value": 1875345693.2570505, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000080", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 1125814250.0, + "value": 1535169704.5469635, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000081", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 1612343700.0, + "value": 2210724494.7679777, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000082", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 1735108546.6666665, + "value": 2362696988.3126698, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000083", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 1354816100.0, + "value": 1844935624.5282316, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000084", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 2681529840.909091, + "value": 3661554250.0119843, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000085", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 1835992213.3333333, + "value": 2500570287.311704, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000086", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 1934657013.3333333, + "value": 2630936884.8675995, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000087", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 1722515442.857143, + "value": 2336861789.2068477, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000088", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 1076223120.0, + "value": 1467229615.1755083, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000089", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 1556052836.3636365, + "value": 2117599128.0321307, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000090", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 1579929811.764706, + "value": 2159307009.8947024, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000091", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 2508754234.7826085, + "value": 3420177579.2430177, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000092", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 1240992225.0, + "value": 1702641452.7654042, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000093", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 1923897999.9999998, + "value": 2616760994.773785, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000094", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 1877254500.0, + "value": 2552178434.808342, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000095", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 1217233684.6153846, + "value": 1671091848.6546535, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000096", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 2153413872.727273, + "value": 2945228489.737009, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000098", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 1427220415.3846154, + "value": 1958190494.8324308, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000099", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 1872912426.6666667, + "value": 2553180673.090944, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000102", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 1324123650.0, + "value": 1811334117.6745622, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000103", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 1221533100.0, + "value": 1682120049.9623916, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000105", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 1659924792.8571427, + "value": 2266502913.6190214, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000106", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 1940955536.8421052, + "value": 2649803105.743962, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000107", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 1460865969.2307692, + "value": 2003028110.1993437, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000108", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 1522216914.2857141, + "value": 2073632751.9472601, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000109", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 1207428369.2307692, + "value": 1660359939.3671668, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000110", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 2370102063.1578946, + "value": 3228109755.343548, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000111", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 1774597353.3333333, + "value": 2420726342.030372, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000112", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 1390408042.857143, + "value": 1905078907.3906941, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000113", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 1742256000.0, + "value": 2379936026.626239, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000114", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 1704645882.352941, + "value": 2326057182.5426292, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000115", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 1793047099.9999998, + "value": 2449408207.749509, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000116", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 1656115600.0, + "value": 2265249243.8482165, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000117", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 997132266.6666666, + "value": 1363556923.0406222, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000118", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 1526519400.0, + "value": 2072972071.4515204, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000119", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 1167039533.3333333, + "value": 1583634471.8724127, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000120", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 869750000.0, + "value": 1188362156.1037612, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000121", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 1676051888.8888888, + "value": 2282717858.2538548, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000122", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 925003800.0, + "value": 1265173638.2503667, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000123", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 1574676688.235294, + "value": 2148474965.2464933, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000124", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 848214237.5, + "value": 1155076963.532144, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000125", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 844629637.5, + "value": 1151846230.6381896, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000126", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 1461581200.0, + "value": 1989171471.0461156, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000127", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 1421369793.3333335, + "value": 1932591998.3489547, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000128", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 1429816292.857143, + "value": 1945081941.3864667, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000129", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 1263413125.0, + "value": 1713982819.9148726, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000130", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 2146808113.6363635, + "value": 2921050684.3732424, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000131", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 1292407740.0, + "value": 1753474649.7598372, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000132", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 1444529571.4285715, + "value": 1964977801.347315, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000133", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 682866450.0, + "value": 928233379.5542734, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000134", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 1309752138.4615383, + "value": 1781894084.3061833, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000135", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 627621750.0, + "value": 852002048.0684553, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000136", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 729586750.0, + "value": 997550720.1222374, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000137", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 1609136900.0, + "value": 2191244948.7688127, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000138", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 1034852236.3636363, + "value": 1421998542.951872, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000139", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 1497899930.7692308, + "value": 2035826049.2605765, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000140", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 1058648027.2727273, + "value": 1442914200.6196616, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000141", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 1838362500.0, + "value": 2499975331.1874385, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000142", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 1187199818.1818182, + "value": 1612560137.6932557, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000143", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 1737274041.1764708, + "value": 2363804714.16104, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000144", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 1803074666.6666667, + "value": 2448424119.801694, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000145", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 1167738092.3076923, + "value": 1592221814.8692598, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000146", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 1888992000.0, + "value": 2574996016.777191, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000147", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 1427033000.0, + "value": 1934104186.1201239, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000148", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 1753745221.4285715, + "value": 2401041522.1127234, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000149", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 1935547533.3333333, + "value": 2626687237.5171213, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000170", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 1349413675.0, + "value": 1842844674.9885151, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000171", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 1415462557.1428573, + "value": 1927388392.0638134, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000172", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 1387615264.2857141, + "value": 1885767871.1684706, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000173", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 1455800240.0, + "value": 1981759887.9604933, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000174", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 1207769769.2307694, + "value": 1647216775.9651976, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000175", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 1524856361.5384614, + "value": 2076734255.2810507, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000176", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 1659773686.6666667, + "value": 2249788914.8810253, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000177", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 2192882957.894737, + "value": 2990860010.987176, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000178", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 1840652911.111111, + "value": 2526537649.423327, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000179", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 2287073430.0, + "value": 3112010334.5849714, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000180", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 2107301700.0, + "value": 2861394513.143547, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000181", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 1672297786.6666667, + "value": 2276244204.7099905, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000192", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 1222813123.0769231, + "value": 1668728023.8966293, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000193", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 1510749826.6666665, + "value": 2060132098.2874806, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000194", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 1493241750.0, + "value": 2023896373.4885542, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000195", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 1506862493.75, + "value": 2056665943.146934, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000196", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 1437328021.4285715, + "value": 1952863894.9743073, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000197", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 1960534550.0, + "value": 2658516701.3960423, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000198", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 1265111269.2307692, + "value": 1721652032.6817617, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000199", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 925336350.0, + "value": 1262079718.2296255, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000200", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 1280187272.7272727, + "value": 1740533044.0121467, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000202", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 1584373875.0, + "value": 2172600507.513687, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000203", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 1407520725.0, + "value": 1912323053.4616804, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000207", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 2284440166.6666665, + "value": 3117643631.392615, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000208", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 1137996333.3333335, + "value": 1561625547.6890633, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000209", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 2039576888.888889, + "value": 2790906964.417119, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000210", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 1350145492.3076923, + "value": 1849004025.0417275, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000211", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 2200448233.333333, + "value": 3009218422.661173, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000212", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 1236052240.0, + "value": 1693164776.307825, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000213", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 1443237230.7692306, + "value": 1977310441.8643014, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000214", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 1345498933.3333333, + "value": 1838295900.4071934, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000215", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 1287609527.2727273, + "value": 1762615633.0042968, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000216", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 1956618917.6470587, + "value": 2671150258.7724066, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000217", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 1471704116.6666665, + "value": 2019101679.8157816, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000218", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 845524000.0, + "value": 1150509402.9510937, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000219", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 1597722352.9411764, + "value": 2181729694.169722, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000220", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 1503632450.0, + "value": 2044091978.0241559, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000221", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 2070536480.0, + "value": 2808847065.8555155, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000222", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 2128211079.9999998, + "value": 2893537539.369895, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000223", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 834491700.0, + "value": 1136970830.9381943, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000224", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 2224573878.947368, + "value": 3034682269.421589, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000225", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 1843104457.142857, + "value": 2511544752.8016877, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000226", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 1326558307.6923077, + "value": 1825640068.7495737, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000227", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 2217253500.0, + "value": 3024704130.0708375, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000228", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 2305903600.0, + "value": 3144331507.335597, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000229", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 1510909000.0, + "value": 2065662851.6994867, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000234", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 1381526728.5714285, + "value": 1878712790.5478787, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000235", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 1099415200.0, + "value": 1494711486.6293566, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000236", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 1028657907.6923077, + "value": 1405691340.5434637, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000237", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 1280965857.142857, + "value": 1754154643.3445408, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000238", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 1786790336.8421054, + "value": 2433530782.9845057, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E07000239", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 1288706571.4285715, + "value": 1753846155.8284903, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000001", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 2968053000.0, + "value": 4058282463.573036, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000002", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 2294870092.3076925, + "value": 3124801806.2641897, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000003", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 5410869677.192983, + "value": 7418688653.256248, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000004", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 2407527878.7878785, + "value": 3286198839.934249, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000005", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 2337858376.0, + "value": 3191815619.3626747, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000006", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 2972295120.0, + "value": 4063929594.4776936, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000007", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 3852210000.0, + "value": 5243984149.379654, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000008", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 2618555370.0, + "value": 3576190378.2442307, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000009", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 3067542921.428571, + "value": 4168767648.915649, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000010", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 3840580437.5, + "value": 5238450107.130882, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000011", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 1659423395.0, + "value": 2274429598.6183543, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000012", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 5219929321.311475, + "value": 7158310553.791494, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000013", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 2189058108.6956525, + "value": 2987530373.078876, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000014", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 3519240047.368421, + "value": 4792662140.729683, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000015", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 4100076885.714286, + "value": 5578943434.094489, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000016", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 2748868320.0, + "value": 3743559527.511853, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000017", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 3449311784.6153846, + "value": 4693978261.845957, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000018", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 2843291818.181818, + "value": 3876908780.855197, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000019", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 5932618285.714286, + "value": 8092035463.050916, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000021", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 3146990703.4482756, + "value": 4287035671.2898264, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000022", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 2612057253.333333, + "value": 3555814092.7296886, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000023", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 1637997300.0, + "value": 2242066140.640304, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000024", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 2910527644.4444447, + "value": 3985183420.6831064, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000025", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 10556244800.0, + "value": 14511290504.037167, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000026", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 3571610564.2857146, + "value": 4889234364.298449, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000027", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 3705325711.6279073, + "value": 5058196976.574069, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000028", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 3018622426.315789, + "value": 4153157512.2942977, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000029", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 2906963251.724138, + "value": 3954009396.577964, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000030", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 2849101605.1282053, + "value": 3898392860.4167647, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000031", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 2626931954.5454545, + "value": 3599436009.7295084, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000032", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 4961806350.819673, + "value": 6773075433.721875, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000033", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 2411688044.444444, + "value": 3283030755.84201, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000034", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 4539021176.271186, + "value": 6193133284.489812, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000035", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 8965875953.271029, + "value": 12278972445.578415, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E08000036", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 3993556666.666667, + "value": 5453988582.882608, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000001", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 291400200.0, + "value": 397893019.00412875, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000002", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 1747446381.8181818, + "value": 2419202557.871555, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000003", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 4994894107.317074, + "value": 6858466205.323953, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000004", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 3122096071.4285717, + "value": 4259631150.657586, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000005", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 3196942258.8235292, + "value": 4455233777.201504, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000006", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 5056247143.589744, + "value": 6880182486.585559, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000007", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 3275055264.285714, + "value": 4538143843.164285, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000008", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 4987777622.727273, + "value": 6836228923.347594, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000009", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 4120124353.846154, + "value": 5692210754.744471, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000010", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 3586374641.6666665, + "value": 4931233592.280173, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000011", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 3444370400.0, + "value": 4733216045.549217, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000012", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 2979739517.857143, + "value": 4142352750.597993, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000013", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 2877012528.0, + "value": 3979327661.644823, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000014", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 3157430755.555556, + "value": 4383021896.060562, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000015", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 2916353066.6666665, + "value": 4003960640.3796444, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000016", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 3268546380.0, + "value": 4466124902.478187, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000017", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 3449556775.0, + "value": 4739494536.113624, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000018", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 3198409921.428571, + "value": 4399975234.726632, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000019", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 3341278886.9565215, + "value": 4610060499.349651, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000020", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 2874101028.571429, + "value": 3937614731.7360525, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000021", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 2462287520.0, + "value": 3359888104.8591776, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000022", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 4302704365.714286, + "value": 5972426837.706932, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000023", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 3757774377.7777777, + "value": 5181888341.993017, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000024", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 3015800100.0, + "value": 4123137763.409877, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000025", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 2715663224.324324, + "value": 3791434078.1091576, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000026", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 3180643519.354839, + "value": 4370990909.437585, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000027", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 3582600217.3913045, + "value": 4861159399.113901, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000028", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 4147723436.3636365, + "value": 5743571568.62582, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000029", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 2842378466.6666665, + "value": 3870352053.1704483, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000030", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 3441011765.625, + "value": 4777153211.240543, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000031", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 3010589257.142857, + "value": 4140092110.591234, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000032", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 5321193756.756756, + "value": 7295665193.411626, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@E09000033", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 3789834562.5, + "value": 5241198218.401889, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000001", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 814043266.6666666, + "value": 1110143179.137449, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000002", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 1303478117.6470587, + "value": 1774867945.1262422, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000003", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 1370994633.3333335, + "value": 1867264378.28933, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000004", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 1113930360.0, + "value": 1517663576.3965688, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000005", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 1820648310.0, + "value": 2485646540.469177, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000006", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 1478737466.6666665, + "value": 2021260154.9164262, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000008", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 814202177.7777778, + "value": 1110424819.8508515, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000009", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 1403846400.0, + "value": 1915213265.7044458, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000010", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 2095973724.0, + "value": 2855617639.78475, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000011", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 2805532683.870968, + "value": 3825509684.5612173, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000012", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 1587279605.2631578, + "value": 2154827651.3181276, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000013", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 1679781473.6842105, + "value": 2284196603.586853, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000014", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 1673327000.0, + "value": 2288174577.518932, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000015", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 4034468650.0, + "value": 5538080842.455339, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000016", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 2593808900.0, + "value": 3518934108.113883, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000018", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 1916592600.0, + "value": 2604464686.6287427, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000019", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 727485777.7777778, + "value": 986125040.8228815, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000020", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 1072267876.923077, + "value": 1453302048.5384274, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000021", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 1196439709.090909, + "value": 1639139509.2873724, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000022", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 1701551040.0, + "value": 2327522522.43554, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000023", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 1616678568.4210527, + "value": 2201423171.1995735, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "ons/equiv_net_income_ahc@W06000024", + "metric": "ons/equiv_net_income_ahc", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 653046557.1428571, + "value": 886371019.8522822, + "adjustment_factor": null, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000001", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 12905.229000000001, + "value": 12905.229000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000002", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 17234.932, + "value": 17234.932, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000003", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 22688.211600000002, + "value": 22688.211600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000004", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 27974.837999999996, + "value": 27974.837999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000005", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 16333.720200000002, + "value": 16333.720200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000006", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 17093.0305, + "value": 17093.0305, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000007", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 31860.3222, + "value": 31860.3222, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000008", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 19686.945, + "value": 19686.945, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000009", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 20473.324, + "value": 20473.324, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000010", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 26893.428799999998, + "value": 26893.428799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000011", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 66042.2638, + "value": 66042.2638, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000012", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 24432.117400000003, + "value": 24432.117400000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000013", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 27813.0573, + "value": 27813.0573, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000014", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 31397.6366, + "value": 31397.6366, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000015", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 33692.4228, + "value": 33692.4228, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000016", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 31935.920899999997, + "value": 31935.920899999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000017", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 7069.909, + "value": 7069.909, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000018", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 28017.727000000003, + "value": 28017.727000000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000019", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 35226.3231, + "value": 35226.3231, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000020", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 23366.154, + "value": 23366.154, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000021", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 33660.6551, + "value": 33660.6551, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000022", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 28854.925, + "value": 28854.925, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000023", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 47775.3534, + "value": 47775.3534, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000024", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 37035.76240000001, + "value": 37035.76240000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000025", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 42941.5236, + "value": 42941.5236, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000026", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 33496.7592, + "value": 33496.7592, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000027", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 24793.6512, + "value": 24793.6512, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000030", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 27934.1868, + "value": 27934.1868, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000031", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 22265.9922, + "value": 22265.9922, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000032", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 20634.916, + "value": 20634.916, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000033", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 24670.525599999997, + "value": 24670.525599999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000034", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 17032.3382, + "value": 17032.3382, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000035", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 36892.598000000005, + "value": 36892.598000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000036", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 14416.1512, + "value": 14416.1512, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000037", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 23296.971, + "value": 23296.971, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000038", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 15492.6387, + "value": 15492.6387, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000039", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 10327.330999999998, + "value": 10327.330999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000040", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 20546.2704, + "value": 20546.2704, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000041", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 25120.364800000003, + "value": 25120.364800000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000042", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 26906.9658, + "value": 26906.9658, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000043", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 30775.407, + "value": 30775.407, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000044", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 21711.06, + "value": 21711.06, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000045", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 22943.8713, + "value": 22943.8713, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000046", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 28993.29, + "value": 28993.29, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000047", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 81626.39970000001, + "value": 81626.39970000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000049", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 69208.0048, + "value": 69208.0048, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000050", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 57516.32920000001, + "value": 57516.32920000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000051", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 59223.3697, + "value": 59223.3697, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000052", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 106327.054, + "value": 106327.054, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000054", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 80870.456, + "value": 80870.456, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000055", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 23294.46, + "value": 23294.46, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000056", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 40368.396499999995, + "value": 40368.396499999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000057", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 57696.269400000005, + "value": 57696.269400000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000058", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 60305.7898, + "value": 60305.7898, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000059", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 78198.58200000001, + "value": 78198.58200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000060", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 77114.79999999999, + "value": 77114.79999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000061", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 47415.491200000004, + "value": 47415.491200000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E06000062", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 53933.0484, + "value": 53933.0484, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000008", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 12955.336800000001, + "value": 12955.336800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000009", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 13474.926599999999, + "value": 13474.926599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000010", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 16681.0072, + "value": 16681.0072, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000011", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 27407.719999999998, + "value": 27407.719999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000012", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 24473.6388, + "value": 24473.6388, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000032", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 23141.102399999996, + "value": 23141.102399999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000033", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 12426.328800000001, + "value": 12426.328800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000034", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 17267.239400000002, + "value": 17267.239400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000035", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 15550.7211, + "value": 15550.7211, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000036", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 18885.3168, + "value": 18885.3168, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000037", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 16369.957999999999, + "value": 16369.957999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000038", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 19158.1842, + "value": 19158.1842, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000039", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 16313.544000000002, + "value": 16313.544000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000040", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 31470.505599999997, + "value": 31470.505599999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000041", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 16270.7184, + "value": 16270.7184, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000042", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 14217.567, + "value": 14217.567, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000043", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 18155.6991, + "value": 18155.6991, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000044", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 18035.0975, + "value": 18035.0975, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000045", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 25981.659600000003, + "value": 25981.659600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000046", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 14031.5399, + "value": 14031.5399, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000047", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 11619.7876, + "value": 11619.7876, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000061", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 16492.575999999997, + "value": 16492.575999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000062", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 12702.242, + "value": 12702.242, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000063", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 18571.768799999998, + "value": 18571.768799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000064", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 20516.3046, + "value": 20516.3046, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000065", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 30501.248799999998, + "value": 30501.248799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000066", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 23023.143, + "value": 23023.143, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000067", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 22186.2204, + "value": 22186.2204, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000068", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 11960.0716, + "value": 11960.0716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000069", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 16974.606, + "value": 16974.606, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000070", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 26925.6971, + "value": 26925.6971, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000071", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 26081.112, + "value": 26081.112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000072", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 19214.9754, + "value": 19214.9754, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000073", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 8866.109400000001, + "value": 8866.109400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000074", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 12206.25, + "value": 12206.25, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000075", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 15463.739300000001, + "value": 15463.739300000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000076", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 31526.597400000002, + "value": 31526.597400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000077", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 13205.093399999998, + "value": 13205.093399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000078", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 18340.083300000002, + "value": 18340.083300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000079", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 16470.2029, + "value": 16470.2029, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000080", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 16341.984699999999, + "value": 16341.984699999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000081", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 17331.3096, + "value": 17331.3096, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000082", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 21443.5532, + "value": 21443.5532, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000083", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 15999.9279, + "value": 15999.9279, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000084", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 23277.0865, + "value": 23277.0865, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000085", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 21145.1898, + "value": 21145.1898, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000086", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 20037.248000000003, + "value": 20037.248000000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000087", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 20885.5866, + "value": 20885.5866, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000088", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 12349.983600000001, + "value": 12349.983600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000089", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 14722.737600000002, + "value": 14722.737600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000090", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 20787.1731, + "value": 20787.1731, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000091", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 36215.5654, + "value": 36215.5654, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000092", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 9998.683200000001, + "value": 9998.683200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000093", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 19415.8692, + "value": 19415.8692, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000094", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 18700.144, + "value": 18700.144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000095", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 13190.019, + "value": 13190.019, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000096", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 19708.449599999996, + "value": 19708.449599999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000098", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 13231.42, + "value": 13231.42, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000099", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 19033.586, + "value": 19033.586, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000102", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 12903.985799999999, + "value": 12903.985799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000103", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 9471.091999999999, + "value": 9471.091999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000105", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 18089.620799999997, + "value": 18089.620799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000106", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 24713.020800000002, + "value": 24713.020800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000107", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 12438.4512, + "value": 12438.4512, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000108", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 19759.213200000002, + "value": 19759.213200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000109", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 13134.7152, + "value": 13134.7152, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000110", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 24331.7736, + "value": 24331.7736, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000111", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 18845.4985, + "value": 18845.4985, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000112", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 18992.0002, + "value": 18992.0002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000113", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 20913.1215, + "value": 20913.1215, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000114", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 22833.62, + "value": 22833.62, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000115", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 18418.3974, + "value": 18418.3974, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000116", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 16337.952400000002, + "value": 16337.952400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000117", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 13105.9264, + "value": 13105.9264, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000118", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 18453.589200000002, + "value": 18453.589200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000119", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 16358.61, + "value": 16358.61, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000120", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 11953.844000000001, + "value": 11953.844000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000121", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 23223.4816, + "value": 23223.4816, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000122", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 14225.2642, + "value": 14225.2642, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000123", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 18144.3708, + "value": 18144.3708, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000124", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 11691.1137, + "value": 11691.1137, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000125", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 10613.835299999999, + "value": 10613.835299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000126", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 19429.541400000002, + "value": 19429.541400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000127", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 19000.669499999996, + "value": 19000.669499999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000128", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 22728.3859, + "value": 22728.3859, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000129", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 16953.365, + "value": 16953.365, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000130", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 27477.534, + "value": 27477.534, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000131", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 16504.6692, + "value": 16504.6692, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000132", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 19600.3944, + "value": 19600.3944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000133", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 9157.1148, + "value": 9157.1148, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000134", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 16581.5451, + "value": 16581.5451, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000135", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 9700.4313, + "value": 9700.4313, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000136", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 10006.181199999999, + "value": 10006.181199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000137", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 30680.4452, + "value": 30680.4452, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000138", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 11039.0679, + "value": 11039.0679, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000139", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 19895.9078, + "value": 19895.9078, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000140", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 16631.2458, + "value": 16631.2458, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000141", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 23820.15, + "value": 23820.15, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000142", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 17543.5335, + "value": 17543.5335, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000143", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 24240.174399999996, + "value": 24240.174399999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000144", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 26384.768, + "value": 26384.768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000145", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 17171.712, + "value": 17171.712, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000146", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 27957.081599999998, + "value": 27957.081599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000147", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 24070.9024, + "value": 24070.9024, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000148", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 14483.9373, + "value": 14483.9373, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000149", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 25632.705599999998, + "value": 25632.705599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000170", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 19404.848, + "value": 19404.848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000171", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 19523.1652, + "value": 19523.1652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000172", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 19175.136499999997, + "value": 19175.136499999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000173", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 20620.4, + "value": 20620.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000174", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 16656.804, + "value": 16656.804, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000175", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 20457.7716, + "value": 20457.7716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000176", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 20437.0651, + "value": 20437.0651, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000177", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 21389.1924, + "value": 21389.1924, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000178", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 13870.2618, + "value": 13870.2618, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000179", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 23172.069600000003, + "value": 23172.069600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000180", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 20940.7716, + "value": 20940.7716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000181", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 17546.651700000002, + "value": 17546.651700000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000192", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 14662.391800000001, + "value": 14662.391800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000193", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 18727.0743, + "value": 18727.0743, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000194", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 18840.627, + "value": 18840.627, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000195", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 20466.3513, + "value": 20466.3513, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000196", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 20320.912600000003, + "value": 20320.912600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000197", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 23262.2078, + "value": 23262.2078, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000198", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 20432.052, + "value": 20432.052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000199", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 10960.614, + "value": 10960.614, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000200", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 17446.8, + "value": 17446.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000202", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 16757.1712, + "value": 16757.1712, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000203", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 19138.4388, + "value": 19138.4388, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000207", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 18906.158999999996, + "value": 18906.158999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000208", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 11375.7872, + "value": 11375.7872, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000209", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 19270.656000000003, + "value": 19270.656000000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000210", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 15197.2788, + "value": 15197.2788, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000211", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 20216.9922, + "value": 20216.9922, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000212", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11294.479600000002, + "value": 11294.479600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000213", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 13983.772500000001, + "value": 13983.772500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000214", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 12973.6824, + "value": 12973.6824, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000215", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 13326.5643, + "value": 13326.5643, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000216", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 20129.542400000002, + "value": 20129.542400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000217", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 13301.277, + "value": 13301.277, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000218", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 10604.51, + "value": 10604.51, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000219", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 19782.4656, + "value": 19782.4656, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000220", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 15655.328999999998, + "value": 15655.328999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000221", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 24195.901599999997, + "value": 24195.901599999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000222", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 21265.4124, + "value": 21265.4124, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000223", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 11118.2526, + "value": 11118.2526, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000224", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 32232.4196, + "value": 32232.4196, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000225", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 22799.9134, + "value": 22799.9134, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000226", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 10888.6286, + "value": 10888.6286, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000227", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 24536.358, + "value": 24536.358, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000228", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 22628.262799999997, + "value": 22628.262799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000229", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 18130.908, + "value": 18130.908, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000234", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 17509.163800000002, + "value": 17509.163800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000235", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 15757.227199999998, + "value": 15757.227199999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000236", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 11193.5106, + "value": 11193.5106, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000237", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 14261.845800000001, + "value": 14261.845800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000238", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 23183.2952, + "value": 23183.2952, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000239", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 18472.431999999997, + "value": 18472.431999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000240", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 20605.5563, + "value": 20605.5563, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000241", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 12638.1615, + "value": 12638.1615, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000242", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 21136.7568, + "value": 21136.7568, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000243", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 9452.697900000001, + "value": 9452.697900000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000244", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 49570.3572, + "value": 49570.3572, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E07000245", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 26663.3956, + "value": 26663.3956, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000001", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 39438.28, + "value": 39438.28, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000002", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 27719.076, + "value": 27719.076, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000003", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 36182.342000000004, + "value": 36182.342000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000004", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 29506.751999999997, + "value": 29506.751999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000005", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 27265.3906, + "value": 27265.3906, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000006", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 25855.053600000003, + "value": 25855.053600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000007", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 46492.4808, + "value": 46492.4808, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000008", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 30355.735, + "value": 30355.735, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000009", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 33058.774600000004, + "value": 33058.774600000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000010", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 49228.119999999995, + "value": 49228.119999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000011", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 18824.1977, + "value": 18824.1977, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000012", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 51105.033299999996, + "value": 51105.033299999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000013", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 27892.0873, + "value": 27892.0873, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000014", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 46496.979400000004, + "value": 46496.979400000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000015", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 51441.79319999999, + "value": 51441.79319999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000016", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 35808.764200000005, + "value": 35808.764200000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000017", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 44769.862799999995, + "value": 44769.862799999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000018", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 38256.015, + "value": 38256.015, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000019", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 71834.915, + "value": 71834.915, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000021", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 30822.047, + "value": 30822.047, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000022", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 31111.805599999996, + "value": 31111.805599999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000023", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 20574.8731, + "value": 20574.8731, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000024", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 38546.8435, + "value": 38546.8435, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000025", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 116026.94399999999, + "value": 116026.94399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000026", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 40214.8722, + "value": 40214.8722, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000027", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 51291.219800000006, + "value": 51291.219800000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000028", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 36078.14199999999, + "value": 36078.14199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000029", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 34961.0081, + "value": 34961.0081, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000030", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 36361.224, + "value": 36361.224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000031", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 31489.729499999998, + "value": 31489.729499999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000032", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 67178.4267, + "value": 67178.4267, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000033", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 31331.838800000005, + "value": 31331.838800000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000034", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 62456.34010000001, + "value": 62456.34010000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000035", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 96361.7052, + "value": 96361.7052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000036", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 48708.465, + "value": 48708.465, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E08000037", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 27002.2966, + "value": 27002.2966, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000001", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 1194.1019999999999, + "value": 1194.1019999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000002", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 11735.6376, + "value": 11735.6376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000003", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 39716.1639, + "value": 39716.1639, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000004", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 31325.11, + "value": 31325.11, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000005", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 24718.7408, + "value": 24718.7408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000006", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 44605.586800000005, + "value": 44605.586800000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000007", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 15231.027800000002, + "value": 15231.027800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000008", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 37731.77820000001, + "value": 37731.77820000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000009", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 30474.252, + "value": 30474.252, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000010", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 32637.117699999995, + "value": 32637.117699999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000011", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 18864.2008, + "value": 18864.2008, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000012", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 10618.7081, + "value": 10618.7081, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000013", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 13023.413199999999, + "value": 13023.413199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000014", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 18538.2288, + "value": 18538.2288, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000015", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 26964.313599999998, + "value": 26964.313599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000016", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 35224.1406, + "value": 35224.1406, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000017", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 28967.2656, + "value": 28967.2656, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000018", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 21858.620300000002, + "value": 21858.620300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000019", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 11415.4768, + "value": 11415.4768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000020", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 14346.618, + "value": 14346.618, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000021", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 18598.4084, + "value": 18598.4084, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000022", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 16243.3728, + "value": 16243.3728, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000023", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 19105.3912, + "value": 19105.3912, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000024", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 20988.007199999996, + "value": 20988.007199999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000025", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 15581.8943, + "value": 15581.8943, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000026", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 28780.357500000002, + "value": 28780.357500000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000027", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 24679.588999999996, + "value": 24679.588999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000028", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 14167.5894, + "value": 14167.5894, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000029", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 23477.414800000002, + "value": 23477.414800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000030", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 10065.0065, + "value": 10065.0065, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000031", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 21084.414899999996, + "value": 21084.414899999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000032", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 24552.1291, + "value": 24552.1291, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_outright@E09000033", + "metric": "tenure/owned_outright", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 16734.8475, + "value": 16734.8475, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000001", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 11431.749, + "value": 11431.749, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000002", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 16246.6352, + "value": 16246.6352, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000003", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 17572.423600000002, + "value": 17572.423600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000004", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 28301.490299999998, + "value": 28301.490299999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000005", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 14758.5606, + "value": 14758.5606, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000006", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 17160.171700000003, + "value": 17160.171700000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000007", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 30828.189, + "value": 30828.189, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000008", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 16348.9794, + "value": 16348.9794, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000009", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 17195.0006, + "value": 17195.0006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000010", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 29826.417599999997, + "value": 29826.417599999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000011", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 46380.13, + "value": 46380.13, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000012", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 20605.6526, + "value": 20605.6526, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000013", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 21747.0156, + "value": 21747.0156, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000014", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 24842.9313, + "value": 24842.9313, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000015", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 30026.2984, + "value": 30026.2984, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000016", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 29311.748700000004, + "value": 29311.748700000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000017", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 4642.6014000000005, + "value": 4642.6014000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000018", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 29040.636000000002, + "value": 29040.636000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000019", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 20888.969399999998, + "value": 20888.969399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000020", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 23626.287999999997, + "value": 23626.287999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000021", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 29575.892099999997, + "value": 29575.892099999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000022", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 23648.2, + "value": 23648.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000023", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 56341.572, + "value": 56341.572, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000024", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 31016.149600000004, + "value": 31016.149600000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000025", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 43189.5357, + "value": 43189.5357, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000026", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 33302.0106, + "value": 33302.0106, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000027", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 16396.817600000002, + "value": 16396.817600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000030", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 34222.734000000004, + "value": 34222.734000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000031", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 25774.1117, + "value": 25774.1117, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000032", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 23074.162, + "value": 23074.162, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000033", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 23738.232, + "value": 23738.232, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000034", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 25721.0875, + "value": 25721.0875, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000035", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 42231.436200000004, + "value": 42231.436200000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000036", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 19817.8112, + "value": 19817.8112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000037", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 22777.0386, + "value": 22777.0386, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000038", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 19661.9115, + "value": 19661.9115, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000039", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 15920.8651, + "value": 15920.8651, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000040", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 20442.685999999998, + "value": 20442.685999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000041", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 29256.372, + "value": 29256.372, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000042", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 41191.748400000004, + "value": 41191.748400000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000043", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 33312.70880000001, + "value": 33312.70880000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000044", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 23554.777, + "value": 23554.777, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000045", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 26718.4092, + "value": 26718.4092, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000046", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 15720.8925, + "value": 15720.8925, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000047", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 66906.885, + "value": 66906.885, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000049", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 58209.562399999995, + "value": 58209.562399999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000050", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 50161.934799999995, + "value": 50161.934799999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000051", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 37644.4563, + "value": 37644.4563, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000052", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 65239.31399999999, + "value": 65239.31399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000054", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 66589.0776, + "value": 66589.0776, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000055", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 24950.855, + "value": 24950.855, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000056", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 47094.450000000004, + "value": 47094.450000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000057", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 40594.5486, + "value": 40594.5486, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000058", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 51161.700600000004, + "value": 51161.700600000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000059", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 43533.9292, + "value": 43533.9292, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000060", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 79692.6376, + "value": 79692.6376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000061", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 50766.1462, + "value": 50766.1462, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E06000062", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 60959.5371, + "value": 60959.5371, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000008", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 11150.3, + "value": 11150.3, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000009", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 12369.997500000001, + "value": 12369.997500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000010", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 13088.2427, + "value": 13088.2427, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000011", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 26239.144000000004, + "value": 26239.144000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000012", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 23441.900400000002, + "value": 23441.900400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000032", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 17834.1813, + "value": 17834.1813, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000033", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 11015.8488, + "value": 11015.8488, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000034", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 12985.2716, + "value": 12985.2716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000035", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 8216.0235, + "value": 8216.0235, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000036", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 16534.719, + "value": 16534.719, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000037", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 12839.102799999999, + "value": 12839.102799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000038", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 13869.679199999999, + "value": 13869.679199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000039", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 17598.36, + "value": 17598.36, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000040", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 18039.4388, + "value": 18039.4388, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000041", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 14194.8354, + "value": 14194.8354, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000042", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 10426.215800000002, + "value": 10426.215800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000043", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 11559.5172, + "value": 11559.5172, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000044", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 10824.992, + "value": 10824.992, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000045", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 17598.3558, + "value": 17598.3558, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000046", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 7662.981199999999, + "value": 7662.981199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000047", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 6244.208799999999, + "value": 6244.208799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000061", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 11315.840999999999, + "value": 11315.840999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000062", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 10489.462899999999, + "value": 10489.462899999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000063", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 12984.073599999998, + "value": 12984.073599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000064", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 10639.175399999998, + "value": 10639.175399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000065", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 22807.670599999998, + "value": 22807.670599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000066", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 26123.4402, + "value": 26123.4402, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000067", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 22212.214799999998, + "value": 22212.214799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000068", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 11830.703599999999, + "value": 11830.703599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000069", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 13157.1891, + "value": 13157.1891, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000070", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 26428.050499999998, + "value": 26428.050499999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000071", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 25714.446, + "value": 25714.446, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000072", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 19182.241199999997, + "value": 19182.241199999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000073", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 12311.096400000002, + "value": 12311.096400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000074", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 9240.48, + "value": 9240.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000075", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 13205.8698, + "value": 13205.8698, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000076", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 17017.887300000002, + "value": 17017.887300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000077", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 13585.7608, + "value": 13585.7608, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000078", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 15642.2343, + "value": 15642.2343, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000079", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 11326.562999999998, + "value": 11326.562999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000080", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 10781.7649, + "value": 10781.7649, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000081", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 18300.9321, + "value": 18300.9321, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000082", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 17069.9902, + "value": 17069.9902, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000083", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 13900.1676, + "value": 13900.1676, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000084", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 27400.587499999998, + "value": 27400.587499999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000085", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 18192.981799999998, + "value": 18192.981799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000086", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 21557.1188, + "value": 21557.1188, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000087", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 17150.111399999998, + "value": 17150.111399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000088", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 10995.724199999999, + "value": 10995.724199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000089", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 15785.78, + "value": 15785.78, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000090", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 15921.291900000002, + "value": 15921.291900000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000091", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 21896.8818, + "value": 21896.8818, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000092", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 14491.016099999999, + "value": 14491.016099999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000093", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 18699.1944, + "value": 18699.1944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000094", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 16005.7925, + "value": 16005.7925, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000095", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 14604.6585, + "value": 14604.6585, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000096", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 21439.5972, + "value": 21439.5972, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000098", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 14652.730599999999, + "value": 14652.730599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000099", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 18557.0372, + "value": 18557.0372, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000102", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 13703.8044, + "value": 13703.8044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000103", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 12542.262, + "value": 12542.262, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000105", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 18534.3597, + "value": 18534.3597, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000106", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 17581.0752, + "value": 17581.0752, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000107", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 18936.4224, + "value": 18936.4224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000108", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 14107.946800000002, + "value": 14107.946800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000109", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 13497.714, + "value": 13497.714, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000110", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 25278.84, + "value": 25278.84, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000111", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 17267.279899999998, + "value": 17267.279899999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000112", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 13215.609199999999, + "value": 13215.609199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000113", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 20659.0425, + "value": 20659.0425, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000114", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 15773.92, + "value": 15773.92, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000115", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 20266.6659, + "value": 20266.6659, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000116", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 15595.318200000002, + "value": 15595.318200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000117", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 10912.9664, + "value": 10912.9664, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000118", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 17841.9788, + "value": 17841.9788, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000119", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 10849.331000000002, + "value": 10849.331000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000120", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10130.848, + "value": 10130.848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000121", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 17645.5276, + "value": 17645.5276, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000122", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 10742.2252, + "value": 10742.2252, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000123", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 16952.230799999998, + "value": 16952.230799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000124", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 8960.245, + "value": 8960.245, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000125", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 10308.2253, + "value": 10308.2253, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000126", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 17889.3652, + "value": 17889.3652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000127", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 15782.931600000002, + "value": 15782.931600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000128", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 14955.958200000001, + "value": 14955.958200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000129", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 16540.3875, + "value": 16540.3875, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000130", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 24511.377, + "value": 24511.377, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000131", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 14960.892600000001, + "value": 14960.892600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000132", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 17409.9366, + "value": 17409.9366, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000133", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 7111.905299999999, + "value": 7111.905299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000134", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 16140.8097, + "value": 16140.8097, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000135", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 7452.3015000000005, + "value": 7452.3015000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000136", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 7739.132799999999, + "value": 7739.132799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000137", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 14789.8136, + "value": 14789.8136, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000138", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 10703.262600000002, + "value": 10703.262600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000139", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 16831.4689, + "value": 16831.4689, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000140", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 12166.1267, + "value": 12166.1267, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000141", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 19848.03, + "value": 19848.03, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000142", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 12580.6995, + "value": 12580.6995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000143", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 16840.160999999996, + "value": 16840.160999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000144", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 18529.408, + "value": 18529.408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000145", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 10788.5568, + "value": 10788.5568, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000146", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 17405.712, + "value": 17405.712, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000147", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 10269.800200000001, + "value": 10269.800200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000148", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 13310.7835, + "value": 13310.7835, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000149", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 19850.615400000002, + "value": 19850.615400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000170", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 17404.4044, + "value": 17404.4044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000171", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 15946.834200000001, + "value": 15946.834200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000172", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 15195.026200000002, + "value": 15195.026200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000173", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 17651.062400000003, + "value": 17651.062400000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000174", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 14284.122, + "value": 14284.122, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000175", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 16639.272, + "value": 16639.272, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000176", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 17703.4767, + "value": 17703.4767, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000177", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 22601.642, + "value": 22601.642, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000178", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 11721.5036, + "value": 11721.5036, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000179", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 21111.9201, + "value": 21111.9201, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000180", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 19560.819600000003, + "value": 19560.819600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000181", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 14720.570800000001, + "value": 14720.570800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000192", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 14671.083199999997, + "value": 14671.083199999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000193", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 15957.2523, + "value": 15957.2523, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000194", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 14916.446999999998, + "value": 14916.446999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000195", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 16080.323, + "value": 16080.323, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000196", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 14449.709299999999, + "value": 14449.709299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000197", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 18872.772100000002, + "value": 18872.772100000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000198", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 12914.0395, + "value": 12914.0395, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000199", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 11289.564, + "value": 11289.564, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000200", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 11372.58, + "value": 11372.58, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000202", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 16471.5376, + "value": 16471.5376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000203", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 14034.5595, + "value": 14034.5595, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000207", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 21513.33, + "value": 21513.33, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000208", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 12165.0764, + "value": 12165.0764, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000209", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 18434.256, + "value": 18434.256, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000210", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 12474.9901, + "value": 12474.9901, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000211", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 23359.064700000003, + "value": 23359.064700000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000212", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 12064.399400000002, + "value": 12064.399400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000213", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 15016.356000000002, + "value": 15016.356000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000214", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 13657.8344, + "value": 13657.8344, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000215", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 13604.4237, + "value": 13604.4237, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000216", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 18309.5968, + "value": 18309.5968, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000217", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 14664.5543, + "value": 14664.5543, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000218", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 9151.044, + "value": 9151.044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000219", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 19080.7992, + "value": 19080.7992, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000220", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 16642.602, + "value": 16642.602, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000221", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 19046.3192, + "value": 19046.3192, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000222", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 20288.556, + "value": 20288.556, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000223", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 9028.5636, + "value": 9028.5636, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000224", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 20439.5393, + "value": 20439.5393, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000225", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 13453.7348, + "value": 13453.7348, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000226", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 14901.905, + "value": 14901.905, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000227", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 21692.286, + "value": 21692.286, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000228", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 22906.998399999997, + "value": 22906.998399999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000229", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 15767.945399999999, + "value": 15767.945399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000234", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 14979.557999999999, + "value": 14979.557999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000235", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 9469.688800000002, + "value": 9469.688800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000236", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 12397.6224, + "value": 12397.6224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000237", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 13550.766, + "value": 13550.766, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000238", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 17688.5904, + "value": 17688.5904, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000239", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 13133.736, + "value": 13133.736, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000240", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 21514.017699999997, + "value": 21514.017699999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000241", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 14019.8106, + "value": 14019.8106, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000242", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 22767.909099999997, + "value": 22767.909099999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000243", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 11807.6574, + "value": 11807.6574, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000244", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 28007.9163, + "value": 28007.9163, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E07000245", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 22135.500600000003, + "value": 22135.500600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000001", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 34045.214, + "value": 34045.214, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000002", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 26484.4272, + "value": 26484.4272, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000003", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 47155.14720000001, + "value": 47155.14720000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000004", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 27355.218, + "value": 27355.218, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000005", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 27148.1007, + "value": 27148.1007, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000006", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 30056.7876, + "value": 30056.7876, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000007", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 44985.369600000005, + "value": 44985.369600000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000008", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 30455.262, + "value": 30455.262, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000009", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 33780.792100000006, + "value": 33780.792100000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000010", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 46408.951499999996, + "value": 46408.951499999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000011", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 20826.2096, + "value": 20826.2096, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000012", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 48677.3886, + "value": 48677.3886, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000013", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 24522.0297, + "value": 24522.0297, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000014", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 36441.91529999999, + "value": 36441.91529999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000015", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 42732.0716, + "value": 42732.0716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000016", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 32405.0947, + "value": 32405.0947, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000017", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 39443.931, + "value": 39443.931, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000018", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 34564.845, + "value": 34564.845, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000019", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 63948.615, + "value": 63948.615, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000021", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 30441.376299999996, + "value": 30441.376299999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000022", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 30794.24, + "value": 30794.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000023", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 18539.920499999997, + "value": 18539.920499999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000024", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 33342.103299999995, + "value": 33342.103299999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000025", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 112681.6416, + "value": 112681.6416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000026", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 37612.5756, + "value": 37612.5756, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000027", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 40640.9585, + "value": 40640.9585, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000028", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 34840.805, + "value": 34840.805, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000029", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 30200.5125, + "value": 30200.5125, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000030", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 30884.5952, + "value": 30884.5952, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000031", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 27021.237, + "value": 27021.237, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000032", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 63988.448300000004, + "value": 63988.448300000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000033", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 27577.0848, + "value": 27577.0848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000034", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 54980.8021, + "value": 54980.8021, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000035", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 101961.74759999999, + "value": 101961.74759999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000036", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 48586.005, + "value": 48586.005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E08000037", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 24634.923199999997, + "value": 24634.923199999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000001", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 742.014, + "value": 742.014, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000002", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 22621.4022, + "value": 22621.4022, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000003", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 41592.5181, + "value": 41592.5181, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000004", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 35585.020000000004, + "value": 35585.020000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000005", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 24683.157199999998, + "value": 24683.157199999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000006", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 49169.374, + "value": 49169.374, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000007", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 13848.918699999998, + "value": 13848.918699999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000008", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 49814.5122, + "value": 49814.5122, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000009", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 34403.82659999999, + "value": 34403.82659999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000010", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 33834.2554, + "value": 33834.2554, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000011", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 31558.1884, + "value": 31558.1884, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000012", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 19105.1881, + "value": 19105.1881, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000013", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 15452.6088, + "value": 15452.6088, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000014", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 23193.8044, + "value": 23193.8044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000015", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 26758.137, + "value": 26758.137, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000016", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 36733.1679, + "value": 36733.1679, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000017", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 34155.5956, + "value": 34155.5956, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000018", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 27614.140199999998, + "value": 27614.140199999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000019", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 16539.4144, + "value": 16539.4144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000020", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 9236.6804, + "value": 9236.6804, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000021", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 21958.459600000002, + "value": 21958.459600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000022", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 30843.551999999996, + "value": 30843.551999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000023", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 34771.567200000005, + "value": 34771.567200000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000024", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 25981.649100000002, + "value": 25981.649100000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000025", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 25041.9176, + "value": 25041.9176, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000026", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 33177.7887, + "value": 33177.7887, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000027", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 26519.663, + "value": 26519.663, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000028", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 27602.598, + "value": 27602.598, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000029", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 30616.9864, + "value": 30616.9864, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000030", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 23059.1107, + "value": 23059.1107, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000031", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 31621.477300000002, + "value": 31621.477300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000032", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 36601.495200000005, + "value": 36601.495200000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/owned_mortgage@E09000033", + "metric": "tenure/owned_mortgage", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 12581.950499999999, + "value": 12581.950499999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000001", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 7334.656000000001, + "value": 7334.656000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000002", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 12781.5702, + "value": 12781.5702, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000003", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 9793.9604, + "value": 9793.9604, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000004", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 14389.4526, + "value": 14389.4526, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000005", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 10155.3768, + "value": 10155.3768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000006", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 8051.3489, + "value": 8051.3489, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000007", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 13770.829800000001, + "value": 13770.829800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000008", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 11947.3311, + "value": 11947.3311, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000009", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 20732.48, + "value": 20732.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000010", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 28140.5264, + "value": 28140.5264, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000011", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 26064.112399999998, + "value": 26064.112399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000012", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 15710.85, + "value": 15710.85, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000013", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 12593.0733, + "value": 12593.0733, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000014", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 17125.9836, + "value": 17125.9836, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000015", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 22820.832000000002, + "value": 22820.832000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000016", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 38483.612700000005, + "value": 38483.612700000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000017", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 2711.1056, + "value": 2711.1056, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000018", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 36063.779500000004, + "value": 36063.779500000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000019", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 15687.4338, + "value": 15687.4338, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000020", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 16449.65, + "value": 16449.65, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000021", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 22808.4334, + "value": 22808.4334, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000022", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 15342.8, + "value": 15342.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000023", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 50170.8284, + "value": 50170.8284, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000024", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 17348.9784, + "value": 17348.9784, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000025", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 18494.616599999998, + "value": 18494.616599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000026", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 25798.4616, + "value": 25798.4616, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000027", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 16844.0608, + "value": 16844.0608, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000030", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 18625.9866, + "value": 18625.9866, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000031", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 20685.2251, + "value": 20685.2251, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000032", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 23366.24, + "value": 23366.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000033", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 20729.8224, + "value": 20729.8224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000034", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 12246.5565, + "value": 12246.5565, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000035", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 24175.2402, + "value": 24175.2402, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000036", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 7888.936, + "value": 7888.936, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000037", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 11465.176, + "value": 11465.176, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000038", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 21800.6943, + "value": 21800.6943, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000039", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 16335.0068, + "value": 16335.0068, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000040", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 12649.4832, + "value": 12649.4832, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000041", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 9862.7864, + "value": 9862.7864, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000042", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 23513.9058, + "value": 23513.9058, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000043", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 40317.6042, + "value": 40317.6042, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000044", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 24536.944, + "value": 24536.944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000045", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 29817.8265, + "value": 29817.8265, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000046", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 13486.155, + "value": 13486.155, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000047", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 40613.653000000006, + "value": 40613.653000000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000049", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 27155.1368, + "value": 27155.1368, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000050", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 24468.1012, + "value": 24468.1012, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000051", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 24398.409200000002, + "value": 24398.409200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000052", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 50307.42799999999, + "value": 50307.42799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000054", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 37789.7317, + "value": 37789.7317, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000055", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 14300.459999999997, + "value": 14300.459999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000056", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 16519.284, + "value": 16519.284, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000057", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 24638.819399999997, + "value": 24638.819399999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000058", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 44660.0098, + "value": 44660.0098, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000059", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 27843.434499999996, + "value": 27843.434499999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000060", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 34657.5944, + "value": 34657.5944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000061", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 27475.371, + "value": 27475.371, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E06000062", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 33267.920699999995, + "value": 33267.920699999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000008", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 16633.624, + "value": 16633.624, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000009", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 6116.173200000001, + "value": 6116.173200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000010", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 8829.8249, + "value": 8829.8249, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000011", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 12800.519999999999, + "value": 12800.519999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000012", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 9466.534800000001, + "value": 9466.534800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000032", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 8306.485200000001, + "value": 8306.485200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000033", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 6128.535599999999, + "value": 6128.535599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000034", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 7857.483, + "value": 7857.483, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000035", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 4697.1765000000005, + "value": 4697.1765000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000036", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 8486.3124, + "value": 8486.3124, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000037", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 6592.8324, + "value": 6592.8324, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000038", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 4736.661, + "value": 4736.661, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000039", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 6654.804, + "value": 6654.804, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000040", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 10812.977200000001, + "value": 10812.977200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000041", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 13075.4352, + "value": 13075.4352, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000042", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 6706.1306, + "value": 6706.1306, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000043", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 8864.0244, + "value": 8864.0244, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000044", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 6447.0065, + "value": 6447.0065, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000045", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 10734.9372, + "value": 10734.9372, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000046", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 6222.3651, + "value": 6222.3651, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000047", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 4549.1394, + "value": 4549.1394, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000061", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 12291.895, + "value": 12291.895, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000062", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 11630.2375, + "value": 11630.2375, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000063", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 7440.066400000001, + "value": 7440.066400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000064", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 6862.626, + "value": 6862.626, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000065", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 9209.0834, + "value": 9209.0834, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000066", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 10957.946999999998, + "value": 10957.946999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000067", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 9780.393, + "value": 9780.393, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000068", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 5274.9802, + "value": 5274.9802, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000069", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 5271.848999999999, + "value": 5271.848999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000070", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 11687.155, + "value": 11687.155, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000071", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 17177.505, + "value": 17177.505, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000072", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 8227.1956, + "value": 8227.1956, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000073", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 6004.120199999999, + "value": 6004.120199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000074", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 3272.67, + "value": 3272.67, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000075", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 3776.1533999999997, + "value": 3776.1533999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000076", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 13402.513700000001, + "value": 13402.513700000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000077", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 5403.2596, + "value": 5403.2596, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000078", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 12399.5256, + "value": 12399.5256, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000079", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 7177.549599999999, + "value": 7177.549599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000080", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 4998.2431, + "value": 4998.2431, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000081", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 11724.121200000001, + "value": 11724.121200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000082", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 7191.499400000001, + "value": 7191.499400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000083", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 5853.133000000001, + "value": 5853.133000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000084", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 11696.026999999998, + "value": 11696.026999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000085", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 6895.5144, + "value": 6895.5144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000086", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 7940.897999999999, + "value": 7940.897999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000087", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 6060.4194, + "value": 6060.4194, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000088", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 6785.665800000001, + "value": 6785.665800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000089", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 5355.176, + "value": 5355.176, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000090", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 6698.625, + "value": 6698.625, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000091", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 11177.2606, + "value": 11177.2606, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000092", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 8485.5177, + "value": 8485.5177, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000093", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 7954.5432, + "value": 7954.5432, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000094", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 9169.069500000001, + "value": 9169.069500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000095", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 6387.7947, + "value": 6387.7947, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000096", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 9201.0812, + "value": 9201.0812, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000098", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 7383.986000000001, + "value": 7383.986000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000099", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 8770.7672, + "value": 8770.7672, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000102", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 5005.3164, + "value": 5005.3164, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000103", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 11056.212, + "value": 11056.212, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000105", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 9585.9987, + "value": 9585.9987, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000106", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 14212.8576, + "value": 14212.8576, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000107", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 8421.772799999999, + "value": 8421.772799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000108", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 9634.4488, + "value": 9634.4488, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000109", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 8111.145600000001, + "value": 8111.145600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000110", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 12411.5544, + "value": 12411.5544, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000111", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 6587.347199999999, + "value": 6587.347199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000112", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 10914.720399999998, + "value": 10914.720399999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000113", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 11167.377, + "value": 11167.377, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000114", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16408.359999999997, + "value": 16408.359999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000115", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 6707.3396, + "value": 6707.3396, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000116", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 9278.1052, + "value": 9278.1052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000117", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 9760.6656, + "value": 9760.6656, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000118", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 6933.2556, + "value": 6933.2556, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000119", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 7224.1126, + "value": 7224.1126, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000120", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 8067.801, + "value": 8067.801, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000121", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 13093.1974, + "value": 13093.1974, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000122", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 8819.8922, + "value": 8819.8922, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000123", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 13292.361, + "value": 13292.361, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000124", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 4012.0499999999997, + "value": 4012.0499999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000125", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 5244.2676, + "value": 5244.2676, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000126", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 6214.149399999999, + "value": 6214.149399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000127", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 6804.326599999999, + "value": 6804.326599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000128", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 9249.7474, + "value": 9249.7474, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000129", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 5428.3125, + "value": 5428.3125, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000130", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 12794.319, + "value": 12794.319, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000131", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 5443.6311000000005, + "value": 5443.6311000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000132", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 7105.3902, + "value": 7105.3902, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000133", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 3896.0676, + "value": 3896.0676, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000134", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 6102.8361, + "value": 6102.8361, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000135", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 3639.0752999999995, + "value": 3639.0752999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000136", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 6010.177600000001, + "value": 6010.177600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000137", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 13449.4058, + "value": 13449.4058, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000138", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 11625.6645, + "value": 11625.6645, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000139", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 8020.5697, + "value": 8020.5697, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000140", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 7013.1269, + "value": 7013.1269, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000141", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 11432.415, + "value": 11432.415, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000142", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 7575.5205000000005, + "value": 7575.5205000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000143", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 10991.3739, + "value": 10991.3739, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000144", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 7081.376, + "value": 7081.376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000145", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 9781.8624, + "value": 9781.8624, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000146", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 12696.7248, + "value": 12696.7248, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000147", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 8750.856600000001, + "value": 8750.856600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000148", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 17648.8742, + "value": 17648.8742, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000149", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 8507.4066, + "value": 8507.4066, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000170", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 9353.5728, + "value": 9353.5728, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000171", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 8454.5494, + "value": 8454.5494, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000172", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 8351.9447, + "value": 8351.9447, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000173", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 8196.609, + "value": 8196.609, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000174", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 9178.533, + "value": 9178.533, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000175", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 8650.288199999999, + "value": 8650.288199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000176", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 7287.906300000001, + "value": 7287.906300000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000177", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 13014.065, + "value": 13014.065, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000178", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 17676.16, + "value": 17676.16, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000179", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 9784.1727, + "value": 9784.1727, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000180", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 9073.1844, + "value": 9073.1844, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000181", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 8367.8864, + "value": 8367.8864, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000192", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 6935.7372000000005, + "value": 6935.7372000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000193", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 10027.781500000001, + "value": 10027.781500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000194", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 5799.573000000001, + "value": 5799.573000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000195", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 7783.7311, + "value": 7783.7311, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000196", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 4884.2139, + "value": 4884.2139, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000197", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 9271.2568, + "value": 9271.2568, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000198", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 5396.027000000001, + "value": 5396.027000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000199", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 4690.827, + "value": 4690.827, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000200", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 6005.88, + "value": 6005.88, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000202", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 13728.2649, + "value": 13728.2649, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000203", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 6114.8997, + "value": 6114.8997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000207", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 9789.399000000001, + "value": 9789.399000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000208", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 5052.0773, + "value": 5052.0773, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000209", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 10967.992, + "value": 10967.992, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000210", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 5258.8824, + "value": 5258.8824, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000211", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 9402.277900000001, + "value": 9402.277900000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000212", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 6605.2848, + "value": 6605.2848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000213", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 7499.817, + "value": 7499.817, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000214", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 5458.812800000001, + "value": 5458.812800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000215", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 4734.2967, + "value": 4734.2967, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000216", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 7767.5488000000005, + "value": 7767.5488000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000217", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 8797.0751, + "value": 8797.0751, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000218", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 4164.58, + "value": 4164.58, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000219", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 9427.2276, + "value": 9427.2276, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000220", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 8495.249099999999, + "value": 8495.249099999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000221", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 8378.4776, + "value": 8378.4776, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000222", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 11866.3005, + "value": 11866.3005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000223", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 4121.2542, + "value": 4121.2542, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000224", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 13282.430800000002, + "value": 13282.430800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000225", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 9860.2996, + "value": 9860.2996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000226", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 9091.2996, + "value": 9091.2996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000227", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 9087.309, + "value": 9087.309, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000228", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 9432.6661, + "value": 9432.6661, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000229", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 10962.759399999999, + "value": 10962.759399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000234", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 4394.829, + "value": 4394.829, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000235", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 4658.082, + "value": 4658.082, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000236", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 5278.4478, + "value": 5278.4478, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000237", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 9472.1196, + "value": 9472.1196, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000238", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 7496.4292000000005, + "value": 7496.4292000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000239", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 7273.860000000001, + "value": 7273.860000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000240", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 9633.2303, + "value": 9633.2303, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000241", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 7615.2432, + "value": 7615.2432, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000242", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 9972.976799999999, + "value": 9972.976799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000243", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 5447.4412, + "value": 5447.4412, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000244", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 19746.1901, + "value": 19746.1901, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E07000245", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 17835.968999999997, + "value": 17835.968999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000001", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 21607.901, + "value": 21607.901, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000002", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 14331.6096, + "value": 14331.6096, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000003", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 71248.07759999999, + "value": 71248.07759999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000004", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 16783.828, + "value": 16783.828, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000005", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 16573.9651, + "value": 16573.9651, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000006", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 31818.0624, + "value": 31818.0624, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000007", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 18262.6416, + "value": 18262.6416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000008", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 17536.657400000004, + "value": 17536.657400000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000009", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 14748.4108, + "value": 14748.4108, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000010", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 23111.457499999997, + "value": 23111.457499999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000011", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 9501.297400000001, + "value": 9501.297400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000012", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 55005.8641, + "value": 55005.8641, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000013", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 12265.065400000001, + "value": 12265.065400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000014", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 22497.744400000003, + "value": 22497.744400000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000015", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 27203.554799999998, + "value": 27203.554799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000016", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 18952.4962, + "value": 18952.4962, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000017", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 26242.5612, + "value": 26242.5612, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000018", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 17362.170000000002, + "value": 17362.170000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000019", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 43560.21000000001, + "value": 43560.21000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000021", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 28329.267900000003, + "value": 28329.267900000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000022", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 14704.2496, + "value": 14704.2496, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000023", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 9109.485799999999, + "value": 9109.485799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000024", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 18228.8084, + "value": 18228.8084, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000025", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 98072.4096, + "value": 98072.4096, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000026", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 33306.7137, + "value": 33306.7137, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000027", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 19408.970400000002, + "value": 19408.970400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000028", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 25072.355, + "value": 25072.355, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000029", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 11552.255299999999, + "value": 11552.255299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000030", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 18517.29, + "value": 18517.29, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000031", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 20470.952699999998, + "value": 20470.952699999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000032", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 48668.157300000006, + "value": 48668.157300000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000033", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 18511.3896, + "value": 18511.3896, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000034", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 34423.0726, + "value": 34423.0726, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000035", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 75805.452, + "value": 75805.452, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000036", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 22900.02, + "value": 22900.02, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E08000037", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 14595.835999999998, + "value": 14595.835999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000001", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 2546.9262, + "value": 2546.9262, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000002", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 18992.814000000002, + "value": 18992.814000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000003", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 49559.5776, + "value": 49559.5776, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000004", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 14676.199999999999, + "value": 14676.199999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000005", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 44242.276, + "value": 44242.276, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000006", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 23579.5672, + "value": 23579.5672, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000007", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 34255.898700000005, + "value": 34255.898700000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000008", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 40469.5116, + "value": 40469.5116, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000009", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 46032.1596, + "value": 46032.1596, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000010", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 36639.669, + "value": 36639.669, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000011", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 29893.0292, + "value": 29893.0292, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000012", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 35558.351200000005, + "value": 35558.351200000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000013", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 30962.0884, + "value": 30962.0884, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000014", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 38537.2364, + "value": 38537.2364, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000015", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 26632.6382, + "value": 26632.6382, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000016", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 16234.7031, + "value": 16234.7031, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000017", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 28344.666, + "value": 28344.666, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000018", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 32165.0164, + "value": 32165.0164, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000019", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 31052.4128, + "value": 31052.4128, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000020", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 28639.7288, + "value": 28639.7288, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000021", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 18040.5874, + "value": 18040.5874, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000022", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 42642.220799999996, + "value": 42642.220799999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000023", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 33878.105599999995, + "value": 33878.105599999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000024", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 24085.536299999996, + "value": 24085.536299999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000025", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 47450.2756, + "value": 47450.2756, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000026", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 32690.3376, + "value": 32690.3376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000027", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 20119.7565, + "value": 20119.7565, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000028", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 38643.6372, + "value": 38643.6372, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000029", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 16774.287600000003, + "value": 16774.287600000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000030", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 49360.7205, + "value": 49360.7205, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000031", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 29069.532499999998, + "value": 29069.532499999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000032", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 50217.1415, + "value": 50217.1415, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/private_rent@E09000033", + "metric": "tenure/private_rent", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 45406.9035, + "value": 45406.9035, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000001", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 9262.459, + "value": 9262.459, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000002", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 13998.8626, + "value": 13998.8626, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000003", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 11581.4044, + "value": 11581.4044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000004", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 13091.2191, + "value": 13091.2191, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000005", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 7670.3423999999995, + "value": 7670.3423999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000006", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 13646.4489, + "value": 13646.4489, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000007", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 14078.659, + "value": 14078.659, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000008", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 10777.8678, + "value": 10777.8678, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000009", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 6381.7164999999995, + "value": 6381.7164999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000010", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 30611.6272, + "value": 30611.6272, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000011", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 13564.2872, + "value": 13564.2872, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000012", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 9077.380000000001, + "value": 9077.380000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000013", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 11027.1711, + "value": 11027.1711, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000014", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 12092.4485, + "value": 12092.4485, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000015", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 19112.4468, + "value": 19112.4468, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000016", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 27668.456399999995, + "value": 27668.456399999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000017", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 2270.384, + "value": 2270.384, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000018", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 31622.857500000002, + "value": 31622.857500000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000019", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 11024.2737, + "value": 11024.2737, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000020", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 13067.907999999998, + "value": 13067.907999999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000021", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 24354.019399999997, + "value": 24354.019399999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000022", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 11412.000000000002, + "value": 11412.000000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000023", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 37350.2462, + "value": 37350.2462, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000024", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 9247.1096, + "value": 9247.1096, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000025", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 13475.324100000002, + "value": 13475.324100000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000026", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 21960.7686, + "value": 21960.7686, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000027", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 4957.4704, + "value": 4957.4704, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000030", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 15079.0926, + "value": 15079.0926, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000031", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 15807.671, + "value": 15807.671, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000032", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 11864.681999999999, + "value": 11864.681999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000033", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 9205.42, + "value": 9205.42, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000034", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 11377.0178, + "value": 11377.0178, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000035", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 8158.7256, + "value": 8158.7256, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000036", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 8120.0768, + "value": 8120.0768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000037", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 9118.814400000001, + "value": 9118.814400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000038", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 10727.7555, + "value": 10727.7555, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000039", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 9839.7971, + "value": 9839.7971, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000040", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 7293.5604, + "value": 7293.5604, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000041", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 4924.4768, + "value": 4924.4768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000042", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 21500.6902, + "value": 21500.6902, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000043", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 16984.1398, + "value": 16984.1398, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000044", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 16352.219, + "value": 16352.219, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000045", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 22810.893, + "value": 22810.893, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000046", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 6574.6625, + "value": 6574.6625, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000047", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 45614.0623, + "value": 45614.0623, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000049", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 20283.296, + "value": 20283.296, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000050", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 23025.150400000002, + "value": 23025.150400000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000051", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 18312.764799999997, + "value": 18312.764799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000052", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 28636.1505, + "value": 28636.1505, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000054", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 29831.734699999997, + "value": 29831.734699999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000055", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 12411.72, + "value": 12411.72, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000056", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 16784.945, + "value": 16784.945, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000057", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 23992.362599999997, + "value": 23992.362599999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000058", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 17714.499799999998, + "value": 17714.499799999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000059", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 19685.054300000003, + "value": 19685.054300000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000060", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 28862.968, + "value": 28862.968, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000061", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 23275.8834, + "value": 23275.8834, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E06000062", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 24480.4938, + "value": 24480.4938, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000008", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 11727.492, + "value": 11727.492, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000009", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 5245.623, + "value": 5245.623, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000010", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 5479.5169, + "value": 5479.5169, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000011", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 10432.616000000002, + "value": 10432.616000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000012", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 9620.625600000001, + "value": 9620.625600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000032", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 6995.2311, + "value": 6995.2311, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000033", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 5691.286800000001, + "value": 5691.286800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000034", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 9948.006, + "value": 9948.006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000035", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 3819.0789, + "value": 3819.0789, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000036", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 6427.651800000001, + "value": 6427.651800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000037", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 4970.1068, + "value": 4970.1068, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000038", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 8222.4756, + "value": 8222.4756, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000039", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 4668.768, + "value": 4668.768, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000040", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 6465.078399999999, + "value": 6465.078399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000041", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 9018.2664, + "value": 9018.2664, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000042", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 4283.0866, + "value": 4283.0866, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000043", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 4622.079, + "value": 4622.079, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000044", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 4023.9705, + "value": 4023.9705, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000045", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 5529.031199999999, + "value": 5529.031199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000046", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 2540.1138, + "value": 2540.1138, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000047", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 2404.8642, + "value": 2404.8642, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000061", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 5505.127, + "value": 5505.127, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000062", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 5631.057599999999, + "value": 5631.057599999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000063", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 4692.0912, + "value": 4692.0912, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000064", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 4088.1042, + "value": 4088.1042, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000065", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 5747.9972, + "value": 5747.9972, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000066", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 16257.469799999999, + "value": 16257.469799999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000067", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 10807.1718, + "value": 10807.1718, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000068", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 3276.2446, + "value": 3276.2446, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000069", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 1989.0948, + "value": 1989.0948, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000070", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 10360.097399999999, + "value": 10360.097399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000071", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 10736.937000000002, + "value": 10736.937000000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000072", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 7927.132099999999, + "value": 7927.132099999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000073", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 10671.888300000002, + "value": 10671.888300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000074", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 3180.6, + "value": 3180.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000075", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 3107.6818000000003, + "value": 3107.6818000000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000076", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 5504.0016000000005, + "value": 5504.0016000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000077", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 4760.1903999999995, + "value": 4760.1903999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000078", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 6517.156800000001, + "value": 6517.156800000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000079", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 5622.684499999999, + "value": 5622.684499999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000080", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 5095.0073, + "value": 5095.0073, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000081", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 8050.637099999999, + "value": 8050.637099999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000082", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 6672.957200000001, + "value": 6672.957200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000083", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 5173.678400000001, + "value": 5173.678400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000084", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 14263.634499999998, + "value": 14263.634499999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000085", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 6484.314, + "value": 6484.314, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000086", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 7388.7352, + "value": 7388.7352, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000087", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 4542.8826, + "value": 4542.8826, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000088", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 5790.6264, + "value": 5790.6264, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000089", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 4104.3028, + "value": 4104.3028, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000090", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 10181.91, + "value": 10181.91, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000091", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 8276.2922, + "value": 8276.2922, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000092", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 6331.713299999999, + "value": 6331.713299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000093", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 8638.393199999999, + "value": 8638.393199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000094", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 7839.994000000001, + "value": 7839.994000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000095", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 5670.5127, + "value": 5670.5127, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000096", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 13056.5308, + "value": 13056.5308, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000098", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 7413.863400000001, + "value": 7413.863400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000099", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 10370.609600000002, + "value": 10370.609600000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000102", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 5244.8934, + "value": 5244.8934, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000103", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 6558.434, + "value": 6558.434, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000105", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 7373.0208, + "value": 7373.0208, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000106", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 7285.0464, + "value": 7285.0464, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000107", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 5899.3535999999995, + "value": 5899.3535999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000108", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 7046.3912, + "value": 7046.3912, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000109", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 6980.425200000001, + "value": 6980.425200000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000110", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 9178.711200000002, + "value": 9178.711200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000111", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 6312.8744, + "value": 6312.8744, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000112", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 5220.504000000001, + "value": 5220.504000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000113", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 7755.459000000001, + "value": 7755.459000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000114", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 7177.879999999999, + "value": 7177.879999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000115", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 8180.5971, + "value": 8180.5971, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000116", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 7011.6242, + "value": 7011.6242, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000117", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 6092.4416, + "value": 6092.4416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000118", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 6898.1632, + "value": 6898.1632, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000119", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 3170.1858, + "value": 3170.1858, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000120", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 4637.5070000000005, + "value": 4637.5070000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000121", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 6015.7934, + "value": 6015.7934, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000122", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 4278.6184, + "value": 4278.6184, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000123", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 11218.037400000001, + "value": 11218.037400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000124", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 2083.5913, + "value": 2083.5913, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000125", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 4394.6718, + "value": 4394.6718, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000126", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 5052.944, + "value": 5052.944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000127", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 6945.0723, + "value": 6945.0723, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000128", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 3832.9085, + "value": 3832.9085, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000129", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 3652.935, + "value": 3652.935, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000130", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 9009.148500000001, + "value": 9009.148500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000131", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 3499.7657999999997, + "value": 3499.7657999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000132", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 5330.2788, + "value": 5330.2788, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000133", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 2433.9123, + "value": 2433.9123, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000134", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 6143.3118, + "value": 6143.3118, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000135", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 1822.9302, + "value": 1822.9302, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000136", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 5648.508400000001, + "value": 5648.508400000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000137", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 5840.8108, + "value": 5840.8108, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000138", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 9134.754299999999, + "value": 9134.754299999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000139", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 6241.0536, + "value": 6241.0536, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000140", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 4892.5006, + "value": 4892.5006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000141", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 7749.405000000001, + "value": 7749.405000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000142", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 4645.2465, + "value": 4645.2465, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000143", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 8287.2907, + "value": 8287.2907, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000144", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 5758.6720000000005, + "value": 5758.6720000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000145", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 6801.8688, + "value": 6801.8688, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000146", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 9404.4816, + "value": 9404.4816, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000147", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 5282.4408, + "value": 5282.4408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000148", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 19021.8509, + "value": 19021.8509, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000149", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 7396.410500000001, + "value": 7396.410500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000170", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 8345.1748, + "value": 8345.1748, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000171", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 7533.4512, + "value": 7533.4512, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000172", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 5643.7287, + "value": 5643.7287, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000173", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 5077.773499999999, + "value": 5077.773499999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000174", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 7910.540999999999, + "value": 7910.540999999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000175", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 7589.001300000001, + "value": 7589.001300000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000176", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 4454.5518999999995, + "value": 4454.5518999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000177", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 8889.1006, + "value": 8889.1006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000178", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 11970.0746, + "value": 11970.0746, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000179", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 7434.9873, + "value": 7434.9873, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000180", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 7923.2244, + "value": 7923.2244, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000181", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 7345.891100000001, + "value": 7345.891100000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000192", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 7187.7878, + "value": 7187.7878, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000193", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 6586.021199999999, + "value": 6586.021199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000194", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 6077.916, + "value": 6077.916, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000195", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 9092.5946, + "value": 9092.5946, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000196", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 6466.164199999999, + "value": 6466.164199999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000197", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 8640.7633, + "value": 8640.7633, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000198", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 3612.8814999999995, + "value": 3612.8814999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000199", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 5953.995000000001, + "value": 5953.995000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000200", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 5374.74, + "value": 5374.74, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000202", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 12550.0263, + "value": 12550.0263, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000203", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 5055.102, + "value": 5055.102, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000207", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 5381.112, + "value": 5381.112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000208", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 2728.0591000000004, + "value": 2728.0591000000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000209", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 7087.096000000001, + "value": 7087.096000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000210", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 4207.8487, + "value": 4207.8487, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000211", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 6870.6652, + "value": 6870.6652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000212", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 4873.8362, + "value": 4873.8362, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000213", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 5300.874, + "value": 5300.874, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000214", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 3914.0696, + "value": 3914.0696, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000215", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 3957.7153, + "value": 3957.7153, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000216", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 6241.312000000001, + "value": 6241.312000000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000217", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 4674.0936, + "value": 4674.0936, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000218", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 3659.8659999999995, + "value": 3659.8659999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000219", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 8295.5076, + "value": 8295.5076, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000220", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 6215.118600000001, + "value": 6215.118600000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000221", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 7849.2480000000005, + "value": 7849.2480000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000222", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 9192.4692, + "value": 9192.4692, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000223", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 3409.9296, + "value": 3409.9296, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000224", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 6706.6103, + "value": 6706.6103, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000225", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 8004.0522, + "value": 8004.0522, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000226", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 10624.717, + "value": 10624.717, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000227", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 7054.0470000000005, + "value": 7054.0470000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000228", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 8381.0727, + "value": 8381.0727, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000229", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 4676.3872, + "value": 4676.3872, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000234", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 4386.5758000000005, + "value": 4386.5758000000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000235", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 5007.0019999999995, + "value": 5007.0019999999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000236", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 7508.4192, + "value": 7508.4192, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000237", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 7437.2686, + "value": 7437.2686, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000238", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 8987.6852, + "value": 8987.6852, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000239", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 6439.972, + "value": 6439.972, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000240", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 7238.195699999999, + "value": 7238.195699999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000241", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 11935.784699999998, + "value": 11935.784699999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000242", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 8143.3573, + "value": 8143.3573, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000243", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 9803.203500000001, + "value": 9803.203500000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000244", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 13422.536399999999, + "value": 13422.536399999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E07000245", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 12111.134800000002, + "value": 12111.134800000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000001", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 23698.605, + "value": 23698.605, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000002", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 12152.8176, + "value": 12152.8176, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000003", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 60146.43320000001, + "value": 60146.43320000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000004", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 19503.516, + "value": 19503.516, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000005", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 19235.5436, + "value": 19235.5436, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000006", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 27386.0964, + "value": 27386.0964, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000007", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 16894.8432, + "value": 16894.8432, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000008", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 21179.3456, + "value": 21179.3456, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000009", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 14681.0225, + "value": 14681.0225, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000010", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 24342.160500000005, + "value": 24342.160500000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000011", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 16921.295299999998, + "value": 16921.295299999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000012", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 52681.964900000006, + "value": 52681.964900000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000013", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 16323.716499999999, + "value": 16323.716499999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000014", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 17636.3609, + "value": 17636.3609, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000015", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 21860.2552, + "value": 21860.2552, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000016", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 20886.644899999996, + "value": 20886.644899999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000017", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 23025.644999999997, + "value": 23025.644999999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000018", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 23741.97, + "value": 23741.97, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000019", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 52583.065, + "value": 52583.065, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000021", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 33204.3088, + "value": 33204.3088, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000022", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 19612.081599999998, + "value": 19612.081599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000023", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 20062.7206, + "value": 20062.7206, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000024", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 32059.244799999997, + "value": 32059.244799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000025", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 96675.0048, + "value": 96675.0048, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000026", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 22991.4246, + "value": 22991.4246, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000027", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 25727.851300000002, + "value": 25727.851300000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000028", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 34267.7226, + "value": 34267.7226, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000029", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 12769.2241, + "value": 12769.2241, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000030", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 26462.890799999997, + "value": 26462.890799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000031", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 26159.0808, + "value": 26159.0808, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000032", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 30052.9544, + "value": 30052.9544, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000033", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 13046.6392, + "value": 13046.6392, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000034", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 26128.7852, + "value": 26128.7852, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000035", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 67371.2418, + "value": 67371.2418, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000036", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 32880.51, + "value": 32880.51, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E08000037", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 22757.044299999998, + "value": 22757.044299999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000001", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 430.9578, + "value": 430.9578, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000002", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 20552.1462, + "value": 20552.1462, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000003", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 18048.7404, + "value": 18048.7404, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000004", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 13713.67, + "value": 13713.67, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000005", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 24967.826, + "value": 24967.826, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000006", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 18472.472, + "value": 18472.472, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000007", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 29423.154799999997, + "value": 29423.154799999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000008", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 24945.492599999998, + "value": 24945.492599999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000009", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 22748.7618, + "value": 22748.7618, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000010", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 17811.9579, + "value": 17811.9579, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000011", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 33736.5816, + "value": 33736.5816, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000012", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 40788.1445, + "value": 40788.1445, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000013", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 21797.765199999998, + "value": 21797.765199999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000014", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 24822.730400000004, + "value": 24822.730400000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000015", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 9286.9112, + "value": 9286.9112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000016", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 13095.1161, + "value": 13095.1161, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000017", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 17760.472800000003, + "value": 17760.472800000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000018", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 21333.5192, + "value": 21333.5192, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000019", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 37488.696, + "value": 37488.696, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000020", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 14660.9728, + "value": 14660.9728, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000021", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 7021.982, + "value": 7021.982, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000022", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 44958.854400000004, + "value": 44958.854400000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000023", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 34636.936, + "value": 34636.936, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000024", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 10673.8074, + "value": 10673.8074, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000025", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 27444.463200000002, + "value": 27444.463200000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000026", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 9064.5162, + "value": 9064.5162, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000027", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 9385.991500000002, + "value": 9385.991500000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000028", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 50404.17540000001, + "value": 50404.17540000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000029", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 11479.3112, + "value": 11479.3112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000030", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 38054.162299999996, + "value": 38054.162299999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000031", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 21115.2852, + "value": 21115.2852, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000032", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 26022.234200000003, + "value": 26022.234200000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "tenure/social_rent@E09000033", + "metric": "tenure/social_rent", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 20100.78, + "value": 20100.78, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000001", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 43303809.024000004, + "value": 43303809.024000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000002", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 69020479.08, + "value": 69020479.08, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000003", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 58176124.77600001, + "value": 58176124.77600001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000004", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 91516918.53600001, + "value": 91516918.53600001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000005", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 57885647.760000005, + "value": 57885647.760000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000006", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 53138902.74, + "value": 53138902.74, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000007", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 107412472.44000001, + "value": 107412472.44000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000008", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 70967146.734, + "value": 70967146.734, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000009", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 136834368.0, + "value": 136834368.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000010", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 151958842.56, + "value": 151958842.56, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000011", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 172023141.84, + "value": 172023141.84, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000012", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 89551845.0, + "value": 89551845.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000013", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 79336361.79, + "value": 79336361.79, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000014", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 164409442.56, + "value": 164409442.56, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000015", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 171156240.0, + "value": 171156240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000016", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 288627095.25, + "value": 288627095.25, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000017", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 26189280.095999997, + "value": 26189280.095999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000018", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 292116613.95, + "value": 292116613.95, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000019", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 122361983.64, + "value": 122361983.64, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000020", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 120411438.0, + "value": 120411438.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000021", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 136850600.39999998, + "value": 136850600.39999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000022", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 193319280.0, + "value": 193319280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000023", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 677306183.4, + "value": 677306183.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000024", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 166550192.63999996, + "value": 166550192.63999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000025", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 210838629.24, + "value": 210838629.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000026", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 193488462.0, + "value": 193488462.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000027", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 131383674.24, + "value": 131383674.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000030", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 167633879.4, + "value": 167633879.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000031", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 179961458.36999997, + "value": 179961458.36999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000032", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 231325776.0, + "value": 231325776.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000033", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 205225241.76, + "value": 205225241.76, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000034", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 139610744.10000002, + "value": 139610744.10000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000035", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 246587450.04000002, + "value": 246587450.04000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000036", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 89933870.39999999, + "value": 89933870.39999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000037", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 130015095.84, + "value": 130015095.84, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000038", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 248527915.02, + "value": 248527915.02, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000039", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 186219077.51999998, + "value": 186219077.51999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000040", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 182152558.08, + "value": 182152558.08, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000041", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 130188780.47999999, + "value": 130188780.47999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000042", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 280756035.252, + "value": 280756035.252, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000043", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 532192375.44000006, + "value": 532192375.44000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000044", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 235554662.4, + "value": 235554662.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000045", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 286251134.40000004, + "value": 286251134.40000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000046", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 109237855.5, + "value": 109237855.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000047", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 231497822.1, + "value": 231497822.1, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000049", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 228103149.12, + "value": 228103149.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000050", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 198191619.71999997, + "value": 198191619.71999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000051", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 182988069.0, + "value": 182988069.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000052", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 431637732.24, + "value": 431637732.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000054", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 362781424.32, + "value": 362781424.32, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000055", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 141574553.99999997, + "value": 141574553.99999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000056", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 173452482.0, + "value": 173452482.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000057", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 147832916.4, + "value": 147832916.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000058", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 455532099.96000004, + "value": 455532099.96000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000059", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 267296971.20000002, + "value": 267296971.20000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E06000060", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 436685689.44, + "value": 436685689.44, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000008", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 239524185.60000002, + "value": 239524185.60000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000009", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 58715262.72, + "value": 58715262.72, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000010", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 71521581.69, + "value": 71521581.69, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000011", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 122884992.0, + "value": 122884992.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000012", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 119278338.48, + "value": 119278338.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000032", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 58809915.216000006, + "value": 58809915.216000006, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000033", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 36624128.7456, + "value": 36624128.7456, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000034", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 56008138.82400001, + "value": 56008138.82400001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000035", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 40865435.55, + "value": 40865435.55, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000036", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 63647343.0, + "value": 63647343.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000037", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 43512693.84000001, + "value": 43512693.84000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000038", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 34103959.2, + "value": 34103959.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000039", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 52147044.144, + "value": 52147044.144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000040", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 97316794.8, + "value": 97316794.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000041", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 133369439.04, + "value": 133369439.04, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000042", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 54319657.86, + "value": 54319657.86, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000043", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 69139390.32, + "value": 69139390.32, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000044", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 59957160.45, + "value": 59957160.45, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000045", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 93393953.64, + "value": 93393953.64, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000046", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 48161105.874000005, + "value": 48161105.874000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000047", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 36848029.14, + "value": 36848029.14, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000061", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 121689760.50000001, + "value": 121689760.50000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000062", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 101183066.25, + "value": 101183066.25, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000063", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 89280796.8, + "value": 89280796.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000064", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 69998785.2, + "value": 69998785.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000065", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 107746275.78, + "value": 107746275.78, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000066", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 131495364.0, + "value": 131495364.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000067", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 99760008.6, + "value": 99760008.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000068", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 72794726.75999999, + "value": 72794726.75999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000069", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 61680633.300000004, + "value": 61680633.300000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000070", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 133233567.0, + "value": 133233567.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000071", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 175210551.0, + "value": 175210551.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000072", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 123407934.0, + "value": 123407934.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000073", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 80911523.8152, + "value": 80911523.8152, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000074", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 35148475.800000004, + "value": 35148475.800000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000075", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 45087271.59599999, + "value": 45087271.59599999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000076", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 127859980.69800001, + "value": 127859980.69800001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000077", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 69702048.84, + "value": 69702048.84, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000078", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 119035445.75999999, + "value": 119035445.75999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000079", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 79670800.56, + "value": 79670800.56, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000080", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 40665705.861600004, + "value": 40665705.861600004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000081", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 107346053.70719999, + "value": 107346053.70719999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000082", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 61271574.888000004, + "value": 61271574.888000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000083", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 60615045.348000005, + "value": 60615045.348000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000084", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 126317091.6, + "value": 126317091.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000085", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 74471555.52000001, + "value": 74471555.52000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000086", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 83379429.0, + "value": 83379429.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000087", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 64216203.962400004, + "value": 64216203.962400004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000088", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 62292412.044, + "value": 62292412.044, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000089", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 64262112.0, + "value": 64262112.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000090", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 70335562.5, + "value": 70335562.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000091", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 120714414.48, + "value": 120714414.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000092", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 91643591.16, + "value": 91643591.16, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000093", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 93068155.44, + "value": 93068155.44, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000094", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 109478689.83, + "value": 109478689.83, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000095", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 84318890.04000002, + "value": 84318890.04000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000096", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 121454271.83999999, + "value": 121454271.83999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000098", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 110759790.0, + "value": 110759790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000099", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 99986746.08, + "value": 99986746.08, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000102", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 75079746.0, + "value": 75079746.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000103", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 155892589.20000002, + "value": 155892589.20000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000105", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 100652986.35000001, + "value": 100652986.35000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000106", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 149235004.8, + "value": 149235004.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000107", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 108640869.11999999, + "value": 108640869.11999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000108", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 83819704.56, + "value": 83819704.56, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000109", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 87600372.48, + "value": 87600372.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000110", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 130321321.2, + "value": 130321321.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000111", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 106715024.64000002, + "value": 106715024.64000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000112", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 85527749.05439998, + "value": 85527749.05439998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000113", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 113907245.4, + "value": 113907245.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000114", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 147675240.0, + "value": 147675240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000115", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 85156383.5616, + "value": 85156383.5616, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000116", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 111337262.39999999, + "value": 111337262.39999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000117", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 52707594.24, + "value": 52707594.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000118", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 49919440.32, + "value": 49919440.32, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000119", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 50713270.45200001, + "value": 50713270.45200001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000120", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 45986465.699999996, + "value": 45986465.699999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000121", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 93485429.43599999, + "value": 93485429.43599999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000122", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 51331772.604, + "value": 51331772.604, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000123", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 87729582.6, + "value": 87729582.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000124", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 31293990.0, + "value": 31293990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000125", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 34612166.16, + "value": 34612166.16, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000126", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 44369026.716, + "value": 44369026.716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000127", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 44745251.721599996, + "value": 44745251.721599996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000128", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 66043196.436, + "value": 66043196.436, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000129", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 48854812.5, + "value": 48854812.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000130", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 91351437.66, + "value": 91351437.66, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000131", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 48992679.9, + "value": 48992679.9, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000132", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 57553660.620000005, + "value": 57553660.620000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000133", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 29220506.999999996, + "value": 29220506.999999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000134", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 47602121.58, + "value": 47602121.58, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000135", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 34716778.362, + "value": 34716778.362, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000136", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 45076332.0, + "value": 45076332.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000137", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 84731256.54, + "value": 84731256.54, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000138", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 87192483.75, + "value": 87192483.75, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000139", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 62560443.660000004, + "value": 62560443.660000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000140", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 54702389.82, + "value": 54702389.82, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000141", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 85743112.5, + "value": 85743112.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000142", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 54089216.37, + "value": 54089216.37, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000143", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 95624952.92999999, + "value": 95624952.92999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000144", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 65856796.800000004, + "value": 65856796.800000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000145", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 69842497.536, + "value": 69842497.536, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000146", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 105890684.832, + "value": 105890684.832, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000147", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 68256681.48, + "value": 68256681.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000148", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 158839867.79999998, + "value": 158839867.79999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000149", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 76566659.4, + "value": 76566659.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000170", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 64539652.32, + "value": 64539652.32, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000171", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 55800026.04000001, + "value": 55800026.04000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000172", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 67650752.07, + "value": 67650752.07, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000173", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 63933550.2, + "value": 63933550.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000174", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 65534725.62, + "value": 65534725.62, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000175", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 59686988.57999999, + "value": 59686988.57999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000176", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 64716607.944, + "value": 64716607.944, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000177", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 152264560.5, + "value": 152264560.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000178", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 270445248.0, + "value": 270445248.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000179", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 129151079.64, + "value": 129151079.64, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000180", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 111600168.12, + "value": 111600168.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000181", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 100414636.80000001, + "value": 100414636.80000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000192", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 52018029.0, + "value": 52018029.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000193", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 75208361.25, + "value": 75208361.25, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000194", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 52196157.00000001, + "value": 52196157.00000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000195", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 53707744.59, + "value": 53707744.59, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000196", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 42961545.4644, + "value": 42961545.4644, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000197", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 71759527.63199998, + "value": 71759527.63199998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000198", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 37232586.3, + "value": 37232586.3, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000199", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 40247295.660000004, + "value": 40247295.660000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000200", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 55854684.0, + "value": 55854684.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000202", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 115317425.16000001, + "value": 115317425.16000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000203", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 56868567.20999999, + "value": 56868567.20999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000207", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 152714624.4, + "value": 152714624.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000208", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 78812405.88, + "value": 78812405.88, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000209", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 171100675.2, + "value": 171100675.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000210", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 72572577.11999999, + "value": 72572577.11999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000211", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 118468701.54, + "value": 118468701.54, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000212", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 91152930.24, + "value": 91152930.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000213", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 103497474.60000001, + "value": 103497474.60000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000214", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 65505753.6, + "value": 65505753.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000215", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 68173872.48, + "value": 68173872.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000216", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 107192173.44, + "value": 107192173.44, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000217", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 121399636.38, + "value": 121399636.38, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000218", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 34732597.199999996, + "value": 34732597.199999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000219", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 70704207.0, + "value": 70704207.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000220", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 70850377.49399999, + "value": 70850377.49399999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000221", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 79930676.304, + "value": 79930676.304, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000222", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 123884177.22000001, + "value": 123884177.22000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000223", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 44806275.66240001, + "value": 44806275.66240001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000224", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 131496064.92, + "value": 131496064.92, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000225", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 112407415.44, + "value": 112407415.44, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000226", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 112695749.8416, + "value": 112695749.8416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000227", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 114500093.39999999, + "value": 114500093.39999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000228", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 113191993.2, + "value": 113191993.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000229", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 111820145.88000001, + "value": 111820145.88000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000234", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 38235012.3, + "value": 38235012.3, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000235", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 39127888.800000004, + "value": 39127888.800000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000236", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 44022254.652, + "value": 44022254.652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000237", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 73882532.88, + "value": 73882532.88, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000238", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 67018077.04800001, + "value": 67018077.04800001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000239", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 52371791.99999999, + "value": 52371791.99999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000240", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 144498454.49999997, + "value": 144498454.49999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000241", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 100521210.24000001, + "value": 100521210.24000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000242", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 131044915.152, + "value": 131044915.152, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000243", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 60466597.31999999, + "value": 60466597.31999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000244", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 148096425.75, + "value": 148096425.75, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E07000245", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 203330046.6, + "value": 203330046.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000001", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 149094516.9, + "value": 149094516.9, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000002", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 111786554.88, + "value": 111786554.88, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000003", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 726730391.52, + "value": 726730391.52, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000004", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 119836531.91999999, + "value": 119836531.91999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000005", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 109388169.66000001, + "value": 109388169.66000001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000006", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 286362561.59999996, + "value": 286362561.59999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000007", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 158884981.92, + "value": 158884981.92, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000008", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 131524930.5, + "value": 131524930.5, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000009", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 158397931.992, + "value": 158397931.992, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000010", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 145602182.24999997, + "value": 145602182.24999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000011", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 65558952.06, + "value": 65558952.06, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000012", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 379540462.29, + "value": 379540462.29, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000013", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 80949431.64, + "value": 80949431.64, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000014", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 160633895.016, + "value": 160633895.016, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000015", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 187704528.12, + "value": 187704528.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000016", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 108029228.34, + "value": 108029228.34, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000017", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 165328135.56, + "value": 165328135.56, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000018", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 109381671.0, + "value": 109381671.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000019", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 326701575.0, + "value": 326701575.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000021", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 237965850.36, + "value": 237965850.36, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000022", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 101459322.24, + "value": 101459322.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000023", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 54110345.652, + "value": 54110345.652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000024", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 109372850.4, + "value": 109372850.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000025", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 853229963.52, + "value": 853229963.52, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000026", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 291766812.01199996, + "value": 291766812.01199996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000027", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 146731816.224, + "value": 146731816.224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000028", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 200077392.9, + "value": 200077392.9, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000029", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 117833004.05999999, + "value": 117833004.05999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000030", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 138879675.0, + "value": 138879675.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000031", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 153532145.25, + "value": 153532145.25, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000032", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 335810285.37, + "value": 335810285.37, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000033", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 116621754.48, + "value": 116621754.48, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000034", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 216865357.38000003, + "value": 216865357.38000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000035", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 682249068.0, + "value": 682249068.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000036", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 158010138.0, + "value": 158010138.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E08000037", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 96332517.6, + "value": 96332517.6, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000001", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 53638265.77200001, + "value": 53638265.77200001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000002", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 290590054.2, + "value": 290590054.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000003", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 802865157.12, + "value": 802865157.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000004", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 205701619.2, + "value": 205701619.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000005", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 769815602.4, + "value": 769815602.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000006", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 367841248.32, + "value": 367841248.32, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000007", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 719373872.7, + "value": 719373872.7, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000008", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 582760967.04, + "value": 582760967.04, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000009", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 773340281.28, + "value": 773340281.28, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000010", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 571578836.4, + "value": 571578836.4, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000011", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 493234981.79999995, + "value": 493234981.79999995, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000012", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 682720343.0400001, + "value": 682720343.0400001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000013", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 636085144.0896, + "value": 636085144.0896, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000014", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 658986742.4399999, + "value": 658986742.4399999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000015", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 431448738.84000003, + "value": 431448738.84000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000016", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 233779724.64000002, + "value": 233779724.64000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000017", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 399659790.59999996, + "value": 399659790.59999996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000018", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 521073265.68, + "value": 521073265.68, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000019", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 633469221.12, + "value": 633469221.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000020", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 755745163.5744, + "value": 755745163.5744, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000021", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 292257515.88, + "value": 292257515.88, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000022", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 818730639.36, + "value": 818730639.36, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000023", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 528498447.36, + "value": 528498447.36, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000024", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 426313992.51, + "value": 426313992.51, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000025", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 839300474.8127999, + "value": 839300474.8127999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000026", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 490355064.0, + "value": 490355064.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000027", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 386299324.8, + "value": 386299324.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000028", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 741957834.24, + "value": 741957834.24, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000029", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 221420596.32000002, + "value": 221420596.32000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000030", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 932917617.45, + "value": 932917617.45, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000031", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 453484707.0, + "value": 453484707.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000032", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 1054559971.4999999, + "value": 1054559971.4999999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "rent/private_rent@E09000033", + "metric": "rent/private_rent", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 1089765684.0, + "value": 1089765684.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000001", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 24090.0, + "value": 24090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000002", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 33080.0, + "value": 33080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000003", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 26840.0, + "value": 26840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000004", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 34900.0, + "value": 34900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000005", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 23160.0, + "value": 23160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000006", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 27340.0, + "value": 27340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000007", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 27780.0, + "value": 27780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000008", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 35860.0, + "value": 35860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000009", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 32210.0, + "value": 32210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000010", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 82540.0, + "value": 82540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000011", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 40330.0, + "value": 40330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000012", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 38690.0, + "value": 38690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000013", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 35920.0, + "value": 35920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000014", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 13150.0, + "value": 13150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000015", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 58500.0, + "value": 58500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000016", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 86990.0, + "value": 86990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000017", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 1750.0, + "value": 1750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000018", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 92180.0, + "value": 92180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000019", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 14040.0, + "value": 14040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000020", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 26960.0, + "value": 26960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000021", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 70450.0, + "value": 70450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000022", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 9370.0, + "value": 9370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000023", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 56890.0, + "value": 56890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000024", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 13940.0, + "value": 13940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000025", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 14480.0, + "value": 14480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000026", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 48160.0, + "value": 48160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000027", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 13790.0, + "value": 13790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000030", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 15190.0, + "value": 15190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000031", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 35930.0, + "value": 35930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000032", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 21520.0, + "value": 21520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000033", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 17170.0, + "value": 17170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000034", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 7540.0, + "value": 7540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000035", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 11470.0, + "value": 11470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000036", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 1650.0, + "value": 1650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000037", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 2750.0, + "value": 2750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000038", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 7270.0, + "value": 7270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000039", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000040", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 2140.0, + "value": 2140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000041", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 2030.0, + "value": 2030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000042", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 18060.0, + "value": 18060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000043", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 30090.0, + "value": 30090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000044", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 27460.0, + "value": 27460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000045", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 36920.0, + "value": 36920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000046", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 10650.0, + "value": 10650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000047", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 144190.0, + "value": 144190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000049", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 31710.0, + "value": 31710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000050", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 35320.0, + "value": 35320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000051", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 27440.0, + "value": 27440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000052", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 66210.0, + "value": 66210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000053", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000054", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 27030.0, + "value": 27030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000055", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 10800.0, + "value": 10800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000056", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 11290.0, + "value": 11290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000057", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 70860.0, + "value": 70860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000058", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 26730.0, + "value": 26730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000059", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 20840.0, + "value": 20840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000060", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 6970.0, + "value": 6970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000061", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 48480.0, + "value": 48480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000062", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 38700.0, + "value": 38700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000063", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 64010.0, + "value": 64010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000064", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 29300.0, + "value": 29300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000065", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 48920.0, + "value": 48920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E06000066", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 43360.0, + "value": 43360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000008", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 4420.0, + "value": 4420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000009", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 5000.0, + "value": 5000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000010", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 17450.0, + "value": 17450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000011", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 12600.0, + "value": 12600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000012", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 2780.0, + "value": 2780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000032", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 22980.0, + "value": 22980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000033", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 22440.0, + "value": 22440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000034", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 27100.0, + "value": 27100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000035", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 3680.0, + "value": 3680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000036", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 22010.0, + "value": 22010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000037", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 8670.0, + "value": 8670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000038", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 19260.0, + "value": 19260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000039", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 11910.0, + "value": 11910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000040", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 6860.0, + "value": 6860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000041", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 13480.0, + "value": 13480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000042", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 6550.0, + "value": 6550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000043", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 10450.0, + "value": 10450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000044", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 5360.0, + "value": 5360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000045", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 9080.0, + "value": 9080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000046", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 8460.0, + "value": 8460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000047", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 3640.0, + "value": 3640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000061", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 8870.0, + "value": 8870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000062", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 14990.0, + "value": 14990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000063", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 4510.0, + "value": 4510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000064", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 5050.0, + "value": 5050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000065", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 4360.0, + "value": 4360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000066", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 9100.0, + "value": 9100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000067", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 6240.0, + "value": 6240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000068", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 690.0, + "value": 690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000069", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 3370.0, + "value": 3370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000070", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 5180.0, + "value": 5180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000071", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 9600.0, + "value": 9600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000072", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 2120.0, + "value": 2120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000073", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 2620.0, + "value": 2620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000074", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 2480.0, + "value": 2480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000075", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 1580.0, + "value": 1580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000076", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 13840.0, + "value": 13840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000077", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 1430.0, + "value": 1430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000078", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 9990.0, + "value": 9990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000079", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 3710.0, + "value": 3710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000080", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 7210.0, + "value": 7210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000081", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 17700.0, + "value": 17700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000082", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 7630.0, + "value": 7630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000083", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 7060.0, + "value": 7060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000084", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 2620.0, + "value": 2620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000085", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 3080.0, + "value": 3080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000086", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 4710.0, + "value": 4710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000087", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 3640.0, + "value": 3640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000088", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 6170.0, + "value": 6170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000089", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 780.0, + "value": 780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000090", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 8610.0, + "value": 8610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000091", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 7330.0, + "value": 7330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000092", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000093", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 3120.0, + "value": 3120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000094", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 3050.0, + "value": 3050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000095", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 590.0, + "value": 590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000096", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 1240.0, + "value": 1240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000098", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 820.0, + "value": 820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000099", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 3450.0, + "value": 3450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000102", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 890.0, + "value": 890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000103", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 470.0, + "value": 470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000105", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 4380.0, + "value": 4380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000106", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 7760.0, + "value": 7760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000107", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 1750.0, + "value": 1750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000108", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 7300.0, + "value": 7300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000109", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 3680.0, + "value": 3680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000110", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 4520.0, + "value": 4520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000111", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000112", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 7190.0, + "value": 7190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000113", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 10400.0, + "value": 10400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000114", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 16400.0, + "value": 16400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000115", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 1770.0, + "value": 1770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000116", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 3500.0, + "value": 3500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000117", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 25800.0, + "value": 25800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000118", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 15200.0, + "value": 15200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000119", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 7180.0, + "value": 7180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000120", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 21980.0, + "value": 21980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000121", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 23600.0, + "value": 23600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000122", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 25170.0, + "value": 25170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000123", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 31000.0, + "value": 31000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000124", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 3900.0, + "value": 3900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000125", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 16480.0, + "value": 16480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000126", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 10130.0, + "value": 10130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000127", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 14980.0, + "value": 14980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000128", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 12060.0, + "value": 12060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000129", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 5040.0, + "value": 5040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000130", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 13340.0, + "value": 13340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000131", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 4750.0, + "value": 4750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000132", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 8930.0, + "value": 8930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000133", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 3700.0, + "value": 3700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000134", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 10270.0, + "value": 10270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000135", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 4150.0, + "value": 4150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000136", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 15550.0, + "value": 15550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000137", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 28110.0, + "value": 28110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000138", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 28930.0, + "value": 28930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000139", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 14220.0, + "value": 14220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000140", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 16760.0, + "value": 16760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000141", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 20100.0, + "value": 20100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000142", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 17270.0, + "value": 17270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000143", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 16260.0, + "value": 16260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000144", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 5060.0, + "value": 5060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000145", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 20910.0, + "value": 20910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000146", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 24670.0, + "value": 24670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000147", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 12190.0, + "value": 12190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000148", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 28590.0, + "value": 28590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000149", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000170", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 30290.0, + "value": 30290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000171", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 28230.0, + "value": 28230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000172", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 16870.0, + "value": 16870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000173", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 14900.0, + "value": 14900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000174", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 27850.0, + "value": 27850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000175", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 24260.0, + "value": 24260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000176", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 6420.0, + "value": 6420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000177", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 6230.0, + "value": 6230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000178", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 2970.0, + "value": 2970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000179", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000180", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000181", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000192", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 14120.0, + "value": 14120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000193", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 18370.0, + "value": 18370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000194", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 6010.0, + "value": 6010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000195", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 24990.0, + "value": 24990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000196", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 6900.0, + "value": 6900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000197", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 12420.0, + "value": 12420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000198", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 9660.0, + "value": 9660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000199", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 9530.0, + "value": 9530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000200", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 5220.0, + "value": 5220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000202", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 19420.0, + "value": 19420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000203", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 5950.0, + "value": 5950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000207", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000208", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 160.0, + "value": 160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000209", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 2290.0, + "value": 2290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000210", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000211", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 1230.0, + "value": 1230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000212", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 2500.0, + "value": 2500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000213", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000214", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 740.0, + "value": 740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000215", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 940.0, + "value": 940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000216", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 1030.0, + "value": 1030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000217", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000218", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 6750.0, + "value": 6750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000219", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 20960.0, + "value": 20960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000220", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 9090.0, + "value": 9090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000221", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 3850.0, + "value": 3850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000222", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 5040.0, + "value": 5040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000223", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 2780.0, + "value": 2780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000224", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 8520.0, + "value": 8520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000225", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 3350.0, + "value": 3350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000226", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 1300.0, + "value": 1300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000227", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 2440.0, + "value": 2440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000228", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 2340.0, + "value": 2340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000229", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 8370.0, + "value": 8370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000234", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 3950.0, + "value": 3950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000235", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 4100.0, + "value": 4100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000236", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 8040.0, + "value": 8040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000237", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 9010.0, + "value": 9010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000238", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 7180.0, + "value": 7180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000239", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 11730.0, + "value": 11730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000240", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 880.0, + "value": 880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000241", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 1250.0, + "value": 1250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000242", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 1000.0, + "value": 1000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000243", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 1700.0, + "value": 1700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000244", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 28230.0, + "value": 28230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E07000245", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 12730.0, + "value": 12730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000001", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 65640.0, + "value": 65640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000002", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 30710.0, + "value": 30710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000003", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 137810.0, + "value": 137810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000004", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 51140.0, + "value": 51140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000005", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 51910.0, + "value": 51910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000006", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 63640.0, + "value": 63640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000007", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 31820.0, + "value": 31820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000008", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 53040.0, + "value": 53040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000009", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 20050.0, + "value": 20050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000010", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 68940.0, + "value": 68940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000011", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 38180.0, + "value": 38180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000012", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 143680.0, + "value": 143680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000013", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 37850.0, + "value": 37850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000014", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 39990.0, + "value": 39990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000015", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 61080.0, + "value": 61080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000016", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 65310.0, + "value": 65310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000017", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 82760.0, + "value": 82760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000018", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 64280.0, + "value": 64280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000019", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 152470.0, + "value": 152470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000021", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 77750.0, + "value": 77750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000022", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 50580.0, + "value": 50580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000023", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 45760.0, + "value": 45760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000024", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 80320.0, + "value": 80320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000025", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 164600.0, + "value": 164600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000026", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 63820.0, + "value": 63820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000027", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 43610.0, + "value": 43610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000028", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 59230.0, + "value": 59230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000029", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 14590.0, + "value": 14590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000030", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 52370.0, + "value": 52370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000031", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 57530.0, + "value": 57530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000032", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 92730.0, + "value": 92730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000033", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 44900.0, + "value": 44900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000034", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 86120.0, + "value": 86120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000035", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 143230.0, + "value": 143230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000036", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 79970.0, + "value": 79970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E08000037", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 56090.0, + "value": 56090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000002", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 6030.0, + "value": 6030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000003", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 3420.0, + "value": 3420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000004", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 4350.0, + "value": 4350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000005", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 6090.0, + "value": 6090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000006", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 2100.0, + "value": 2100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000007", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 3380.0, + "value": 3380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000008", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 4450.0, + "value": 4450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000009", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 5200.0, + "value": 5200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000010", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 5420.0, + "value": 5420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000011", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 10790.0, + "value": 10790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000012", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 8170.0, + "value": 8170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000013", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 4120.0, + "value": 4120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000014", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 7700.0, + "value": 7700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000015", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000016", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 5300.0, + "value": 5300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000017", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 1270.0, + "value": 1270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000018", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 2560.0, + "value": 2560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000019", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 4660.0, + "value": 4660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000020", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 1460.0, + "value": 1460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000021", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 630.0, + "value": 630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000022", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 5020.0, + "value": 5020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000023", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 9280.0, + "value": 9280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000024", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 1190.0, + "value": 1190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000025", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 5570.0, + "value": 5570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000026", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 2790.0, + "value": 2790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000027", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 600.0, + "value": 600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000028", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 13220.0, + "value": 13220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000029", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 990.0, + "value": 990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000030", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 4500.0, + "value": 4500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000031", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 5230.0, + "value": 5230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000032", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 6560.0, + "value": 6560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@E09000033", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000001", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 4960.0, + "value": 4960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000002", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 9310.0, + "value": 9310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000003", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 5460.0, + "value": 5460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000004", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 4160.0, + "value": 4160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000005", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 4520.0, + "value": 4520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000006", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 4510.0, + "value": 4510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000008", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 1780.0, + "value": 1780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000009", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 6730.0, + "value": 6730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000010", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 9370.0, + "value": 9370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000011", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 17730.0, + "value": 17730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000012", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 13830.0, + "value": 13830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000013", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 10600.0, + "value": 10600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000014", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 1510.0, + "value": 1510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000015", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 5320.0, + "value": 5320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000016", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 47080.0, + "value": 47080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000018", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 15550.0, + "value": 15550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000019", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 19200.0, + "value": 19200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000020", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 6300.0, + "value": 6300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000021", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 520.0, + "value": 520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000022", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 6910.0, + "value": 6910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000023", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 6090.0, + "value": 6090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/A@W06000024", + "metric": "voa/council_tax/A", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 14150.0, + "value": 14150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000001", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 7830.0, + "value": 7830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000002", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 11550.0, + "value": 11550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000003", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 13800.0, + "value": 13800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000004", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 17560.0, + "value": 17560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000005", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 11180.0, + "value": 11180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000006", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 12760.0, + "value": 12760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000007", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 21410.0, + "value": 21410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000008", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 9950.0, + "value": 9950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000009", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 21330.0, + "value": 21330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000010", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 24430.0, + "value": 24430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000011", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 38430.0, + "value": 38430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000012", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 18400.0, + "value": 18400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000013", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 16440.0, + "value": 16440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000014", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 25560.0, + "value": 25560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000015", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 22270.0, + "value": 22270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000016", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 28270.0, + "value": 28270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000017", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 4890.0, + "value": 4890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000018", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 25740.0, + "value": 25740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000019", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 20630.0, + "value": 20630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000020", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 22860.0, + "value": 22860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000021", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 25560.0, + "value": 25560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000022", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 19630.0, + "value": 19630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000023", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 76330.0, + "value": 76330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000024", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 22140.0, + "value": 22140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000025", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 37160.0, + "value": 37160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000026", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 33380.0, + "value": 33380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000027", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 17850.0, + "value": 17850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000030", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 28070.0, + "value": 28070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000031", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 22730.0, + "value": 22730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000032", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 28100.0, + "value": 28100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000033", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 16180.0, + "value": 16180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000034", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 14110.0, + "value": 14110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000035", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 38870.0, + "value": 38870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000036", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 5660.0, + "value": 5660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000037", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 7290.0, + "value": 7290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000038", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 14990.0, + "value": 14990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000039", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 10950.0, + "value": 10950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000040", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 4110.0, + "value": 4110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000041", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 4250.0, + "value": 4250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000042", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 35810.0, + "value": 35810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000043", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 30490.0, + "value": 30490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000044", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 31800.0, + "value": 31800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000045", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 35880.0, + "value": 35880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000046", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 18690.0, + "value": 18690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000047", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 36650.0, + "value": 36650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000049", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 39250.0, + "value": 39250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000050", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 39140.0, + "value": 39140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000051", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 38890.0, + "value": 38890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000052", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 73220.0, + "value": 73220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000053", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000054", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 42950.0, + "value": 42950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000055", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 19080.0, + "value": 19080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000056", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 25640.0, + "value": 25640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000057", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 26550.0, + "value": 26550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000058", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 34610.0, + "value": 34610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000059", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 31970.0, + "value": 31970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000060", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 26310.0, + "value": 26310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000061", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 42960.0, + "value": 42960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000062", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 41080.0, + "value": 41080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000063", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 25940.0, + "value": 25940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000064", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 24520.0, + "value": 24520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000065", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 65620.0, + "value": 65620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E06000066", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 72220.0, + "value": 72220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000008", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 11090.0, + "value": 11090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000009", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 11670.0, + "value": 11670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000010", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 13190.0, + "value": 13190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000011", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 21820.0, + "value": 21820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000012", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 8620.0, + "value": 8620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000032", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 12960.0, + "value": 12960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000033", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 6910.0, + "value": 6910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000034", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 10630.0, + "value": 10630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000035", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 7630.0, + "value": 7630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000036", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 14290.0, + "value": 14290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000037", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 13380.0, + "value": 13380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000038", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 10030.0, + "value": 10030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000039", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 11780.0, + "value": 11780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000040", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 14150.0, + "value": 14150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000041", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 15450.0, + "value": 15450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000042", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 9380.0, + "value": 9380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000043", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 11830.0, + "value": 11830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000044", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 9100.0, + "value": 9100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000045", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 14740.0, + "value": 14740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000046", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 7500.0, + "value": 7500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000047", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 6760.0, + "value": 6760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000061", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 13370.0, + "value": 13370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000062", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 12520.0, + "value": 12520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000063", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 6410.0, + "value": 6410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000064", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 7420.0, + "value": 7420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000065", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 8470.0, + "value": 8470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000066", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 16310.0, + "value": 16310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000067", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 17650.0, + "value": 17650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000068", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 3080.0, + "value": 3080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000069", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 6440.0, + "value": 6440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000070", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 10960.0, + "value": 10960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000071", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 23120.0, + "value": 23120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000072", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 5220.0, + "value": 5220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000073", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 8360.0, + "value": 8360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000074", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 3980.0, + "value": 3980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000075", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 4080.0, + "value": 4080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000076", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 18040.0, + "value": 18040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000077", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 4180.0, + "value": 4180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000078", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 13530.0, + "value": 13530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000079", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 5430.0, + "value": 5430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000080", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 10410.0, + "value": 10410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000081", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 16980.0, + "value": 16980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000082", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 13050.0, + "value": 13050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000083", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 7130.0, + "value": 7130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000084", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 13300.0, + "value": 13300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000085", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 6360.0, + "value": 6360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000086", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 12600.0, + "value": 12600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000087", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 7390.0, + "value": 7390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000088", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 13380.0, + "value": 13380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000089", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 2600.0, + "value": 2600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000090", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 14860.0, + "value": 14860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000091", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 12250.0, + "value": 12250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000092", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 9090.0, + "value": 9090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000093", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 10040.0, + "value": 10040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000094", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 7530.0, + "value": 7530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000095", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 3820.0, + "value": 3820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000096", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 8300.0, + "value": 8300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000098", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 3090.0, + "value": 3090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000099", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 9440.0, + "value": 9440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000102", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 2430.0, + "value": 2430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000103", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 4490.0, + "value": 4490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000105", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 13910.0, + "value": 13910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000106", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 14100.0, + "value": 14100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000107", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 6830.0, + "value": 6830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000108", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 17350.0, + "value": 17350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000109", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 7050.0, + "value": 7050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000110", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 9570.0, + "value": 9570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000111", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 3480.0, + "value": 3480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000112", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 13030.0, + "value": 13030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000113", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 16590.0, + "value": 16590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000114", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 20220.0, + "value": 20220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000115", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 4080.0, + "value": 4080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000116", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 5440.0, + "value": 5440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000117", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 5850.0, + "value": 5850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000118", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 12200.0, + "value": 12200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000119", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 7030.0, + "value": 7030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000120", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 5870.0, + "value": 5870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000121", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 16510.0, + "value": 16510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000122", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 4850.0, + "value": 4850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000123", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 13610.0, + "value": 13610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000124", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 5620.0, + "value": 5620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000125", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 5250.0, + "value": 5250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000126", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 13620.0, + "value": 13620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000127", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 9760.0, + "value": 9760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000128", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 12580.0, + "value": 12580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000129", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 15700.0, + "value": 15700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000130", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 22020.0, + "value": 22020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000131", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 9770.0, + "value": 9770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000132", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 16590.0, + "value": 16590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000133", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 7790.0, + "value": 7790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000134", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 14790.0, + "value": 14790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000135", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 6340.0, + "value": 6340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000136", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 6610.0, + "value": 6610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000137", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 15500.0, + "value": 15500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000138", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 9140.0, + "value": 9140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000139", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 14110.0, + "value": 14110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000140", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 9810.0, + "value": 9810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000141", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 15530.0, + "value": 15530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000142", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 8670.0, + "value": 8670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000143", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 18480.0, + "value": 18480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000144", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 16080.0, + "value": 16080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000145", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 12800.0, + "value": 12800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000146", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 17970.0, + "value": 17970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000147", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 14640.0, + "value": 14640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000148", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 23800.0, + "value": 23800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000149", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 18430.0, + "value": 18430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000170", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 11920.0, + "value": 11920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000171", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 9040.0, + "value": 9040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000172", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 13610.0, + "value": 13610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000173", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 15650.0, + "value": 15650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000174", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 9960.0, + "value": 9960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000175", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 8980.0, + "value": 8980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000176", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 11430.0, + "value": 11430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000177", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 16680.0, + "value": 16680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000178", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 9890.0, + "value": 9890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000179", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 6070.0, + "value": 6070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000180", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 6870.0, + "value": 6870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000181", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 6220.0, + "value": 6220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000192", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 14510.0, + "value": 14510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000193", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 12310.0, + "value": 12310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000194", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 11020.0, + "value": 11020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000195", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 10910.0, + "value": 10910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000196", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 10910.0, + "value": 10910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000197", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 14480.0, + "value": 14480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000198", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 10860.0, + "value": 10860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000199", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 12410.0, + "value": 12410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000200", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 12430.0, + "value": 12430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000202", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 23220.0, + "value": 23220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000203", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 13510.0, + "value": 13510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000207", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 1890.0, + "value": 1890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000208", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 1270.0, + "value": 1270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000209", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 3550.0, + "value": 3550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000210", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 2740.0, + "value": 2740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000211", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 4270.0, + "value": 4270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000212", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 1610.0, + "value": 1610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000213", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 1790.0, + "value": 1790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000214", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 2650.0, + "value": 2650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000215", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 2230.0, + "value": 2230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000216", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 3480.0, + "value": 3480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000217", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 3620.0, + "value": 3620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000218", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 7510.0, + "value": 7510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000219", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 13710.0, + "value": 13710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000220", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 12130.0, + "value": 12130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000221", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 8630.0, + "value": 8630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000222", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 12630.0, + "value": 12630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000223", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 5110.0, + "value": 5110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000224", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 12990.0, + "value": 12990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000225", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 6540.0, + "value": 6540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000226", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 7670.0, + "value": 7670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000227", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 6790.0, + "value": 6790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000228", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 7790.0, + "value": 7790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000229", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 11640.0, + "value": 11640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000234", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 7460.0, + "value": 7460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000235", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 7690.0, + "value": 7690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000236", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 12220.0, + "value": 12220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000237", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 15430.0, + "value": 15430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000238", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 12070.0, + "value": 12070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000239", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 11960.0, + "value": 11960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000240", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 3220.0, + "value": 3220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000241", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 5850.0, + "value": 5850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000242", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 6460.0, + "value": 6460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000243", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 6890.0, + "value": 6890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000244", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 31230.0, + "value": 31230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E07000245", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 29030.0, + "value": 29030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000001", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 22820.0, + "value": 22820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000002", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 18680.0, + "value": 18680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000003", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 43100.0, + "value": 43100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000004", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 17700.0, + "value": 17700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000005", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 17400.0, + "value": 17400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000006", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 31220.0, + "value": 31220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000007", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 29160.0, + "value": 29160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000008", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 19680.0, + "value": 19680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000009", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 23020.0, + "value": 23020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000010", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 34800.0, + "value": 34800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000011", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 15340.0, + "value": 15340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000012", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 44920.0, + "value": 44920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000013", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 19360.0, + "value": 19360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000014", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 28250.0, + "value": 28250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000015", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 33140.0, + "value": 33140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000016", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 19340.0, + "value": 19340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000017", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 27200.0, + "value": 27200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000018", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 24200.0, + "value": 24200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000019", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 42460.0, + "value": 42460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000021", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 21680.0, + "value": 21680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000022", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 16240.0, + "value": 16240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000023", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 10470.0, + "value": 10470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000024", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 20110.0, + "value": 20110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000025", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 132630.0, + "value": 132630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000026", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 44330.0, + "value": 44330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000027", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 40300.0, + "value": 40300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000028", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 44650.0, + "value": 44650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000029", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 12510.0, + "value": 12510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000030", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 27810.0, + "value": 27810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000031", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 25570.0, + "value": 25570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000032", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 46940.0, + "value": 46940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000033", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 18530.0, + "value": 18530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000034", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 35310.0, + "value": 35310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000035", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 80140.0, + "value": 80140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000036", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 31330.0, + "value": 31330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E08000037", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 13230.0, + "value": 13230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000001", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 350.0, + "value": 350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000002", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 12420.0, + "value": 12420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000003", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 9570.0, + "value": 9570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000004", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 11380.0, + "value": 11380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000005", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 14040.0, + "value": 14040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000006", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 10590.0, + "value": 10590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000007", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 12270.0, + "value": 12270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000008", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 24400.0, + "value": 24400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000009", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 14970.0, + "value": 14970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000010", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 12400.0, + "value": 12400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000011", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 22200.0, + "value": 22200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000012", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 31670.0, + "value": 31670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000013", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 6630.0, + "value": 6630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000014", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 19400.0, + "value": 19400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000015", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 4470.0, + "value": 4470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000016", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 11080.0, + "value": 11080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000017", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 6550.0, + "value": 6550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000018", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 9560.0, + "value": 9560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000019", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 6180.0, + "value": 6180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000020", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 3310.0, + "value": 3310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000021", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 3420.0, + "value": 3420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000022", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 33450.0, + "value": 33450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000023", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 36440.0, + "value": 36440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000024", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 8590.0, + "value": 8590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000025", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 34340.0, + "value": 34340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000026", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 14100.0, + "value": 14100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000027", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 2180.0, + "value": 2180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000028", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 38050.0, + "value": 38050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000029", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 8050.0, + "value": 8050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000030", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 25040.0, + "value": 25040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000031", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 32380.0, + "value": 32380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000032", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 13280.0, + "value": 13280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@E09000033", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 6460.0, + "value": 6460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000001", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 6930.0, + "value": 6930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000002", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 15800.0, + "value": 15800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000003", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 8340.0, + "value": 8340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000004", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 7420.0, + "value": 7420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000005", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 9640.0, + "value": 9640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000006", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 12770.0, + "value": 12770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000008", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 5000.0, + "value": 5000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000009", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 9460.0, + "value": 9460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000010", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 24550.0, + "value": 24550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000011", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 28650.0, + "value": 28650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000012", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 27500.0, + "value": 27500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000013", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 15370.0, + "value": 15370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000014", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 6680.0, + "value": 6680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000015", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 20420.0, + "value": 20420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000016", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 25500.0, + "value": 25500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000018", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 26890.0, + "value": 26890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000019", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 8160.0, + "value": 8160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000020", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 13120.0, + "value": 13120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000021", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 3450.0, + "value": 3450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000022", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 15400.0, + "value": 15400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000023", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 9440.0, + "value": 9440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/B@W06000024", + "metric": "voa/council_tax/B", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 6680.0, + "value": 6680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000001", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 6780.0, + "value": 6780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000002", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 11610.0, + "value": 11610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000003", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 14820.0, + "value": 14820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000004", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 16890.0, + "value": 16890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000005", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 7800.0, + "value": 7800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000006", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 8370.0, + "value": 8370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000007", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 19980.0, + "value": 19980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000008", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 9010.0, + "value": 9010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000009", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 11480.0, + "value": 11480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000010", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 11440.0, + "value": 11440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000011", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 33140.0, + "value": 33140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000012", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 9390.0, + "value": 9390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000013", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 11580.0, + "value": 11580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000014", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 27300.0, + "value": 27300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000015", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 17230.0, + "value": 17230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000016", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 16960.0, + "value": 16960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000017", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 3340.0, + "value": 3340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000018", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 17180.0, + "value": 17180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000019", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 17710.0, + "value": 17710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000020", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 14900.0, + "value": 14900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000021", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 15880.0, + "value": 15880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000022", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 21290.0, + "value": 21290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000023", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 41320.0, + "value": 41320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000024", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 23810.0, + "value": 23810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000025", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 30510.0, + "value": 30510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000026", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 23670.0, + "value": 23670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000027", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 17180.0, + "value": 17180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000030", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 25270.0, + "value": 25270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000031", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 15460.0, + "value": 15460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000032", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 22860.0, + "value": 22860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000033", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 24770.0, + "value": 24770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000034", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 27720.0, + "value": 27720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000035", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 35530.0, + "value": 35530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000036", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 19880.0, + "value": 19880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000037", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 20500.0, + "value": 20500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000038", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 31530.0, + "value": 31530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000039", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 24390.0, + "value": 24390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000040", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 10700.0, + "value": 10700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000041", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 12130.0, + "value": 12130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000042", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 32280.0, + "value": 32280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000043", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 35410.0, + "value": 35410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000044", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 22440.0, + "value": 22440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000045", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 23760.0, + "value": 23760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000046", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 18000.0, + "value": 18000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000047", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 32590.0, + "value": 32590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000049", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 37540.0, + "value": 37540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000050", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 33010.0, + "value": 33010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000051", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 31760.0, + "value": 31760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000052", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 61520.0, + "value": 61520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000053", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000054", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 58820.0, + "value": 58820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000055", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 20170.0, + "value": 20170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000056", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 36860.0, + "value": 36860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000057", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 21800.0, + "value": 21800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000058", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 54390.0, + "value": 54390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000059", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 43430.0, + "value": 43430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000060", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 54560.0, + "value": 54560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000061", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 29500.0, + "value": 29500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000062", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 46110.0, + "value": 46110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000063", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 20470.0, + "value": 20470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000064", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 23280.0, + "value": 23280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000065", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 70150.0, + "value": 70150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E06000066", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 59900.0, + "value": 59900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000008", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 20890.0, + "value": 20890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000009", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 8580.0, + "value": 8580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000010", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 9030.0, + "value": 9030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000011", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 19420.0, + "value": 19420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000012", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 22500.0, + "value": 22500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000032", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 11020.0, + "value": 11020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000033", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 4880.0, + "value": 4880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000034", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 6530.0, + "value": 6530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000035", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 7720.0, + "value": 7720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000036", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 7900.0, + "value": 7900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000037", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 9510.0, + "value": 9510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000038", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 8200.0, + "value": 8200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000039", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 9770.0, + "value": 9770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000040", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 17830.0, + "value": 17830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000041", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 14560.0, + "value": 14560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000042", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 7290.0, + "value": 7290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000043", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 10620.0, + "value": 10620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000044", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 9570.0, + "value": 9570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000045", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 14520.0, + "value": 14520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000046", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000047", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 5760.0, + "value": 5760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000061", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 10980.0, + "value": 10980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000062", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 7810.0, + "value": 7810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000063", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 13850.0, + "value": 13850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000064", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 10230.0, + "value": 10230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000065", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 17900.0, + "value": 17900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000066", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 24750.0, + "value": 24750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000067", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 20390.0, + "value": 20390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000068", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 6950.0, + "value": 6950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000069", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 13880.0, + "value": 13880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000070", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 23980.0, + "value": 23980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000071", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 21170.0, + "value": 21170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000072", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 12060.0, + "value": 12060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000073", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 19630.0, + "value": 19630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000074", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 8640.0, + "value": 8640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000075", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 12110.0, + "value": 12110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000076", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 22070.0, + "value": 22070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000077", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 8770.0, + "value": 8770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000078", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 14150.0, + "value": 14150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000079", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 11550.0, + "value": 11550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000080", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 9230.0, + "value": 9230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000081", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 14340.0, + "value": 14340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000082", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 13150.0, + "value": 13150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000083", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 13060.0, + "value": 13060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000084", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 28100.0, + "value": 28100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000085", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 13430.0, + "value": 13430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000086", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 19810.0, + "value": 19810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000087", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 15710.0, + "value": 15710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000088", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 9230.0, + "value": 9230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000089", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 10120.0, + "value": 10120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000090", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 13770.0, + "value": 13770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000091", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 18260.0, + "value": 18260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000092", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 16950.0, + "value": 16950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000093", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 15600.0, + "value": 15600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000094", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 13750.0, + "value": 13750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000095", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 9960.0, + "value": 9960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000096", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 20760.0, + "value": 20760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000098", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 7450.0, + "value": 7450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000099", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 20320.0, + "value": 20320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000102", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 6980.0, + "value": 6980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000103", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 16000.0, + "value": 16000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000105", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 13710.0, + "value": 13710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000106", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 21250.0, + "value": 21250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000107", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 15370.0, + "value": 15370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000108", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 14600.0, + "value": 14600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000109", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 15260.0, + "value": 15260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000110", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 21210.0, + "value": 21210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000111", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 11660.0, + "value": 11660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000112", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 14680.0, + "value": 14680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000113", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 17920.0, + "value": 17920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000114", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 18390.0, + "value": 18390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000115", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 16220.0, + "value": 16220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000116", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 14220.0, + "value": 14220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000117", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 6530.0, + "value": 6530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000118", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 9810.0, + "value": 9810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000119", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 9690.0, + "value": 9690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000120", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 5900.0, + "value": 5900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000121", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 12830.0, + "value": 12830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000122", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 4640.0, + "value": 4640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000123", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 11260.0, + "value": 11260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000124", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 5810.0, + "value": 5810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000125", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 4430.0, + "value": 4430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000126", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 13130.0, + "value": 13130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000127", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 10530.0, + "value": 10530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000128", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 13420.0, + "value": 13420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000129", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 10280.0, + "value": 10280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000130", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 19430.0, + "value": 19430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000131", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 8640.0, + "value": 8640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000132", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 11540.0, + "value": 11540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000133", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 4100.0, + "value": 4100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000134", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 8280.0, + "value": 8280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000135", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000136", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 6240.0, + "value": 6240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000137", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 16290.0, + "value": 16290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000138", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 4950.0, + "value": 4950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000139", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 13430.0, + "value": 13430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000140", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 10700.0, + "value": 10700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000141", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 11790.0, + "value": 11790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000142", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 8200.0, + "value": 8200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000143", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 14810.0, + "value": 14810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000144", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 21850.0, + "value": 21850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000145", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 9080.0, + "value": 9080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000146", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 13850.0, + "value": 13850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000147", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 11880.0, + "value": 11880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000148", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 9090.0, + "value": 9090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000149", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 16780.0, + "value": 16780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000170", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 9110.0, + "value": 9110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000171", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 7100.0, + "value": 7100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000172", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 11200.0, + "value": 11200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000173", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 10760.0, + "value": 10760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000174", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 7030.0, + "value": 7030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000175", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 9640.0, + "value": 9640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000176", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 12090.0, + "value": 12090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000177", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 19780.0, + "value": 19780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000178", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 19810.0, + "value": 19810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000179", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 18530.0, + "value": 18530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000180", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 19390.0, + "value": 19390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000181", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 17990.0, + "value": 17990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000192", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 8860.0, + "value": 8860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000193", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 9590.0, + "value": 9590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000194", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 12460.0, + "value": 12460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000195", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 11780.0, + "value": 11780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000196", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 12080.0, + "value": 12080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000197", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 14660.0, + "value": 14660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000198", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 10880.0, + "value": 10880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000199", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 6180.0, + "value": 6180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000200", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 9280.0, + "value": 9280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000202", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 11540.0, + "value": 11540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000203", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 11200.0, + "value": 11200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000207", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 8180.0, + "value": 8180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000208", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 5610.0, + "value": 5610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000209", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 12790.0, + "value": 12790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000210", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 4520.0, + "value": 4520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000211", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 13130.0, + "value": 13130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000212", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 8040.0, + "value": 8040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000213", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 10140.0, + "value": 10140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000214", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 6380.0, + "value": 6380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000215", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 5440.0, + "value": 5440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000216", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 10920.0, + "value": 10920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000217", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 11320.0, + "value": 11320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000218", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 6520.0, + "value": 6520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000219", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 14700.0, + "value": 14700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000220", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 12530.0, + "value": 12530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000221", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 18950.0, + "value": 18950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000222", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 18940.0, + "value": 18940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000223", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 11580.0, + "value": 11580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000224", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 21180.0, + "value": 21180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000225", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 15290.0, + "value": 15290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000226", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 22570.0, + "value": 22570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000227", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 14020.0, + "value": 14020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000228", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 15320.0, + "value": 15320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000229", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 13190.0, + "value": 13190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000234", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 9350.0, + "value": 9350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000235", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 8820.0, + "value": 8820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000236", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 7970.0, + "value": 7970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000237", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 12030.0, + "value": 12030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000238", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 14580.0, + "value": 14580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000239", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 12080.0, + "value": 12080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000240", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 10530.0, + "value": 10530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000241", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 16360.0, + "value": 16360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000242", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 16520.0, + "value": 16520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000243", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 21760.0, + "value": 21760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000244", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 23810.0, + "value": 23810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E07000245", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 17370.0, + "value": 17370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000001", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 18990.0, + "value": 18990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000002", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 17540.0, + "value": 17540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000003", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 38170.0, + "value": 38170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000004", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 16730.0, + "value": 16730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000005", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 13280.0, + "value": 13280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000006", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 22180.0, + "value": 22180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000007", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 28940.0, + "value": 28940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000008", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 20250.0, + "value": 20250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000009", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 27720.0, + "value": 27720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000010", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 25810.0, + "value": 25810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000011", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 10660.0, + "value": 10660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000012", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 29870.0, + "value": 29870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000013", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 15770.0, + "value": 15770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000014", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 31380.0, + "value": 31380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000015", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 27740.0, + "value": 27740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000016", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 14570.0, + "value": 14570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000017", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 16270.0, + "value": 16270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000018", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 16130.0, + "value": 16130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000019", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 33260.0, + "value": 33260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000021", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 20520.0, + "value": 20520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000022", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 20200.0, + "value": 20200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000023", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 8880.0, + "value": 8880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000024", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 18370.0, + "value": 18370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000025", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 85230.0, + "value": 85230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000026", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 25210.0, + "value": 25210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000027", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 31110.0, + "value": 31110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000028", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 21640.0, + "value": 21640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000029", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 23390.0, + "value": 23390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000030", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 18930.0, + "value": 18930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000031", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 17660.0, + "value": 17660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000032", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 41630.0, + "value": 41630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000033", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 16060.0, + "value": 16060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000034", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 33310.0, + "value": 33310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000035", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 73400.0, + "value": 73400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000036", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 24780.0, + "value": 24780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E08000037", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 15950.0, + "value": 15950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000001", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 690.0, + "value": 690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000002", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 50340.0, + "value": 50340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000003", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 32530.0, + "value": 32530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000004", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 31230.0, + "value": 31230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000005", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 41900.0, + "value": 41900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000006", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 30460.0, + "value": 30460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000007", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 20780.0, + "value": 20780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000008", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 52850.0, + "value": 52850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000009", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 36980.0, + "value": 36980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000010", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 35190.0, + "value": 35190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000011", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 45460.0, + "value": 45460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000012", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 35990.0, + "value": 35990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000013", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 14510.0, + "value": 14510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000014", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 36160.0, + "value": 36160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000015", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 22800.0, + "value": 22800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000016", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 29790.0, + "value": 29790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000017", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 28300.0, + "value": 28300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000018", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 30620.0, + "value": 30620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000019", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 29760.0, + "value": 29760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000020", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 9370.0, + "value": 9370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000021", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 16020.0, + "value": 16020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000022", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 42330.0, + "value": 42330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000023", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 48040.0, + "value": 48040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000024", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 24140.0, + "value": 24140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000025", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 56120.0, + "value": 56120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000026", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 27920.0, + "value": 27920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000027", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 13480.0, + "value": 13480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000028", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 35710.0, + "value": 35710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000029", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 28300.0, + "value": 28300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000030", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 40570.0, + "value": 40570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000031", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 39150.0, + "value": 39150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000032", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 37340.0, + "value": 37340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@E09000033", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 15690.0, + "value": 15690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000001", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 7210.0, + "value": 7210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000002", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 12700.0, + "value": 12700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000003", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 15610.0, + "value": 15610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000004", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 14970.0, + "value": 14970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000005", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 20990.0, + "value": 20990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000006", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 17250.0, + "value": 17250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000008", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 7730.0, + "value": 7730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000009", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 14520.0, + "value": 14520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000010", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 18930.0, + "value": 18930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000011", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 25020.0, + "value": 25020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000012", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 11720.0, + "value": 11720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000013", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 14840.0, + "value": 14840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000014", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 14520.0, + "value": 14520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000015", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 34920.0, + "value": 34920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000016", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 17510.0, + "value": 17510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000018", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 18930.0, + "value": 18930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000019", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 2730.0, + "value": 2730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000020", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 12050.0, + "value": 12050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000021", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 7140.0, + "value": 7140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000022", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 18470.0, + "value": 18470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000023", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 13330.0, + "value": 13330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/C@W06000024", + "metric": "voa/council_tax/C", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 2270.0, + "value": 2270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000001", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 3630.0, + "value": 3630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000002", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 5620.0, + "value": 5620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000003", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 6090.0, + "value": 6090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000004", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 10400.0, + "value": 10400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000005", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 5950.0, + "value": 5950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000006", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 5230.0, + "value": 5230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000007", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 12400.0, + "value": 12400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000008", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 4960.0, + "value": 4960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000009", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 4860.0, + "value": 4860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000010", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 4990.0, + "value": 4990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000011", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 25660.0, + "value": 25660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000012", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 5330.0, + "value": 5330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000013", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 7850.0, + "value": 7850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000014", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 13880.0, + "value": 13880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000015", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 8900.0, + "value": 8900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000016", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000017", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 2570.0, + "value": 2570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000018", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 7790.0, + "value": 7790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000019", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 13820.0, + "value": 13820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000020", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 10050.0, + "value": 10050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000021", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 5100.0, + "value": 5100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000022", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 14500.0, + "value": 14500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000023", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 19900.0, + "value": 19900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000024", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 18060.0, + "value": 18060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000025", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 24250.0, + "value": 24250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000026", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 10310.0, + "value": 10310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000027", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 10750.0, + "value": 10750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000030", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 18530.0, + "value": 18530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000031", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 9010.0, + "value": 9010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000032", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 8000.0, + "value": 8000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000033", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 12900.0, + "value": 12900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000034", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 12800.0, + "value": 12800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000035", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 19470.0, + "value": 19470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000036", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 10500.0, + "value": 10500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000037", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 17840.0, + "value": 17840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000038", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 12220.0, + "value": 12220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000039", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 13670.0, + "value": 13670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000040", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 16670.0, + "value": 16670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000041", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 21120.0, + "value": 21120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000042", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 16440.0, + "value": 16440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000043", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 20470.0, + "value": 20470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000044", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 6280.0, + "value": 6280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000045", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 9790.0, + "value": 9790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000046", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 13460.0, + "value": 13460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000047", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 23630.0, + "value": 23630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000049", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 28220.0, + "value": 28220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000050", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 22530.0, + "value": 22530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000051", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 22070.0, + "value": 22070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000052", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 45030.0, + "value": 45030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000053", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 270.0, + "value": 270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000054", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 41200.0, + "value": 41200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000055", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 12480.0, + "value": 12480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000056", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 26700.0, + "value": 26700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000057", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 18410.0, + "value": 18410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000058", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 36070.0, + "value": 36070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000059", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 37400.0, + "value": 37400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000060", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 47150.0, + "value": 47150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000061", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 18750.0, + "value": 18750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000062", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 24480.0, + "value": 24480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000063", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 15630.0, + "value": 15630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000064", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 17770.0, + "value": 17770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000065", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 46130.0, + "value": 46130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E06000066", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 40390.0, + "value": 40390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000008", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 10610.0, + "value": 10610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000009", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 7610.0, + "value": 7610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000010", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 4960.0, + "value": 4960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000011", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 12970.0, + "value": 12970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000012", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 13830.0, + "value": 13830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000032", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 7050.0, + "value": 7050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000033", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 3040.0, + "value": 3040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000034", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 4070.0, + "value": 4070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000035", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 5850.0, + "value": 5850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000036", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 5080.0, + "value": 5080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000037", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 5120.0, + "value": 5120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000038", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 5700.0, + "value": 5700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000039", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 8370.0, + "value": 8370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000040", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 13670.0, + "value": 13670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000041", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 10030.0, + "value": 10030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000042", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 6700.0, + "value": 6700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000043", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 8670.0, + "value": 8670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000044", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 8500.0, + "value": 8500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000045", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 12280.0, + "value": 12280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000046", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 6150.0, + "value": 6150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000047", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 4560.0, + "value": 4560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000061", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 8760.0, + "value": 8760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000062", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 5800.0, + "value": 5800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000063", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 10360.0, + "value": 10360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000064", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 9430.0, + "value": 9430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000065", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 16070.0, + "value": 16070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000066", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 14900.0, + "value": 14900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000067", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 10900.0, + "value": 10900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000068", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 8900.0, + "value": 8900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000069", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 8710.0, + "value": 8710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000070", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 18540.0, + "value": 18540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000071", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 16230.0, + "value": 16230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000072", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 14210.0, + "value": 14210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000073", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 5240.0, + "value": 5240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000074", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 5690.0, + "value": 5690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000075", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 10890.0, + "value": 10890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000076", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 12380.0, + "value": 12380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000077", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 8080.0, + "value": 8080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000078", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 9450.0, + "value": 9450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000079", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 7770.0, + "value": 7770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000080", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 6150.0, + "value": 6150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000081", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 6110.0, + "value": 6110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000082", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 8640.0, + "value": 8640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000083", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 6790.0, + "value": 6790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000084", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 15490.0, + "value": 15490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000085", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 11590.0, + "value": 11590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000086", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 11260.0, + "value": 11260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000087", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 10880.0, + "value": 10880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000088", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 5170.0, + "value": 5170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000089", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 9720.0, + "value": 9720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000090", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 10550.0, + "value": 10550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000091", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 19460.0, + "value": 19460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000092", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 9310.0, + "value": 9310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000093", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 11420.0, + "value": 11420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000094", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 11310.0, + "value": 11310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000095", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 14530.0, + "value": 14530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000096", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 16240.0, + "value": 16240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000098", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 14980.0, + "value": 14980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000099", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 10450.0, + "value": 10450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000102", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 10030.0, + "value": 10030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000103", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 14260.0, + "value": 14260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000105", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 10220.0, + "value": 10220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000106", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 14160.0, + "value": 14160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000107", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 14590.0, + "value": 14590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000108", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 7750.0, + "value": 7750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000109", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 10970.0, + "value": 10970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000110", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 20600.0, + "value": 20600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000111", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 12160.0, + "value": 12160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000112", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 8720.0, + "value": 8720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000113", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 12190.0, + "value": 12190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000114", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 8250.0, + "value": 8250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000115", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 14410.0, + "value": 14410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000116", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 11090.0, + "value": 11090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000117", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 3080.0, + "value": 3080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000118", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 7020.0, + "value": 7020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000119", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 7560.0, + "value": 7560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000120", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 2870.0, + "value": 2870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000121", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 6740.0, + "value": 6740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000122", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 3500.0, + "value": 3500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000123", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 7490.0, + "value": 7490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000124", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 5100.0, + "value": 5100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000125", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 3460.0, + "value": 3460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000126", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 8660.0, + "value": 8660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000127", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 7650.0, + "value": 7650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000128", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 7900.0, + "value": 7900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000129", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 6940.0, + "value": 6940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000130", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 11510.0, + "value": 11510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000131", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 7110.0, + "value": 7110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000132", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 7590.0, + "value": 7590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000133", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 4050.0, + "value": 4050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000134", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 7300.0, + "value": 7300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000135", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 3290.0, + "value": 3290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000136", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 2390.0, + "value": 2390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000137", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 6970.0, + "value": 6970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000138", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 2570.0, + "value": 2570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000139", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 7480.0, + "value": 7480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000140", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 4790.0, + "value": 4790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000141", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 9650.0, + "value": 9650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000142", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 6290.0, + "value": 6290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000143", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 8550.0, + "value": 8550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000144", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 10660.0, + "value": 10660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000145", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 4480.0, + "value": 4480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000146", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 10010.0, + "value": 10010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000147", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 9220.0, + "value": 9220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000148", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 3760.0, + "value": 3760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000149", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 11990.0, + "value": 11990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000170", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 4460.0, + "value": 4460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000171", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 7070.0, + "value": 7070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000172", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 6230.0, + "value": 6230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000173", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 7070.0, + "value": 7070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000174", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 4250.0, + "value": 4250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000175", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 6640.0, + "value": 6640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000176", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 10200.0, + "value": 10200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000177", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 12700.0, + "value": 12700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000178", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 16320.0, + "value": 16320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000179", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 15260.0, + "value": 15260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000180", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 14150.0, + "value": 14150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000181", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 11950.0, + "value": 11950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000192", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 5680.0, + "value": 5680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000193", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 6790.0, + "value": 6790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000194", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 7530.0, + "value": 7530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000195", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 4990.0, + "value": 4990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000196", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 7570.0, + "value": 7570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000197", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 10060.0, + "value": 10060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000198", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 6360.0, + "value": 6360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000199", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 4020.0, + "value": 4020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000200", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 7820.0, + "value": 7820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000202", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 4510.0, + "value": 4510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000203", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 8080.0, + "value": 8080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000207", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 14150.0, + "value": 14150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000208", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 9290.0, + "value": 9290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000209", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 16940.0, + "value": 16940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000210", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 8420.0, + "value": 8420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000211", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 18260.0, + "value": 18260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000212", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 11690.0, + "value": 11690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000213", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 15180.0, + "value": 15180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000214", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 10230.0, + "value": 10230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000215", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 9130.0, + "value": 9130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000216", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 13590.0, + "value": 13590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000217", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 12600.0, + "value": 12600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000218", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 4060.0, + "value": 4060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000219", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 7910.0, + "value": 7910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000220", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 7400.0, + "value": 7400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000221", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 11350.0, + "value": 11350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000222", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 13730.0, + "value": 13730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000223", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 6340.0, + "value": 6340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000224", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 16680.0, + "value": 16680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000225", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 13040.0, + "value": 13040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000226", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 9100.0, + "value": 9100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000227", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 14410.0, + "value": 14410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000228", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 17830.0, + "value": 17830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000229", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 9760.0, + "value": 9760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000234", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 8060.0, + "value": 8060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000235", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 5980.0, + "value": 5980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000236", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 4490.0, + "value": 4490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000237", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 5670.0, + "value": 5670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000238", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 8550.0, + "value": 8550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000239", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 6540.0, + "value": 6540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000240", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 16530.0, + "value": 16530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000241", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 12550.0, + "value": 12550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000242", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 17010.0, + "value": 17010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000243", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 3380.0, + "value": 3380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000244", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 18810.0, + "value": 18810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E07000245", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 12390.0, + "value": 12390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000001", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 11000.0, + "value": 11000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000002", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 9380.0, + "value": 9380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000003", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 21260.0, + "value": 21260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000004", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 7310.0, + "value": 7310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000005", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 8260.0, + "value": 8260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000006", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 12350.0, + "value": 12350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000007", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 19920.0, + "value": 19920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000008", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 7290.0, + "value": 7290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000009", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 15590.0, + "value": 15590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000010", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 13480.0, + "value": 13480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000011", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 5000.0, + "value": 5000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000012", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 14000.0, + "value": 14000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000013", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 7030.0, + "value": 7030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000014", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 15840.0, + "value": 15840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000015", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 13690.0, + "value": 13690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000016", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 9790.0, + "value": 9790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000017", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 10220.0, + "value": 10220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000018", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 9790.0, + "value": 9790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000019", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 16910.0, + "value": 16910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000021", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 10160.0, + "value": 10160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000022", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 8490.0, + "value": 8490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000023", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 4940.0, + "value": 4940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000024", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 10090.0, + "value": 10090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000025", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 44530.0, + "value": 44530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000026", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 10750.0, + "value": 10750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000027", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 16400.0, + "value": 16400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000028", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 7680.0, + "value": 7680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000029", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 17700.0, + "value": 17700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000030", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 10490.0, + "value": 10490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000031", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 7370.0, + "value": 7370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000032", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 19000.0, + "value": 19000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000033", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 7730.0, + "value": 7730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000034", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 17860.0, + "value": 17860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000035", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 38150.0, + "value": 38150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000036", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 16330.0, + "value": 16330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E08000037", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 6070.0, + "value": 6070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000001", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 950.0, + "value": 950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000002", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 10770.0, + "value": 10770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000003", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 39640.0, + "value": 39640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000004", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 28140.0, + "value": 28140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000005", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 39340.0, + "value": 39340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000006", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 36460.0, + "value": 36460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000007", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 26560.0, + "value": 26560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000008", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 42340.0, + "value": 42340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000009", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 48680.0, + "value": 48680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000010", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 37170.0, + "value": 37170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000011", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 27100.0, + "value": 27100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000012", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 25200.0, + "value": 25200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000013", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 25920.0, + "value": 25920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000014", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 28640.0, + "value": 28640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000015", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 30020.0, + "value": 30020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000016", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 36200.0, + "value": 36200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000017", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 47450.0, + "value": 47450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000018", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 40720.0, + "value": 40720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000019", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 33560.0, + "value": 33560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000020", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 14110.0, + "value": 14110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000021", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 21010.0, + "value": 21010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000022", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 33160.0, + "value": 33160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000023", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 27670.0, + "value": 27670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000024", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 28360.0, + "value": 28360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000025", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 26900.0, + "value": 26900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000026", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 32140.0, + "value": 32140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000027", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 20700.0, + "value": 20700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000028", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 28440.0, + "value": 28440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000029", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 24800.0, + "value": 24800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000030", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 32250.0, + "value": 32250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000031", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 23440.0, + "value": 23440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000032", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 35080.0, + "value": 35080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@E09000033", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 23130.0, + "value": 23130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000001", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 7400.0, + "value": 7400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000002", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 10720.0, + "value": 10720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000003", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 11970.0, + "value": 11970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000004", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 8050.0, + "value": 8050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000005", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 13400.0, + "value": 13400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000006", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 10350.0, + "value": 10350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000008", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 7570.0, + "value": 7570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000009", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 11520.0, + "value": 11520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000010", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 14700.0, + "value": 14700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000011", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 17330.0, + "value": 17330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000012", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 7430.0, + "value": 7430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000013", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 11050.0, + "value": 11050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000014", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 11910.0, + "value": 11910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000015", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 37370.0, + "value": 37370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000016", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 9660.0, + "value": 9660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000018", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 9540.0, + "value": 9540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000019", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 1810.0, + "value": 1810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000020", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 4350.0, + "value": 4350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000021", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 9460.0, + "value": 9460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000022", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 12990.0, + "value": 12990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000023", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 10630.0, + "value": 10630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/D@W06000024", + "metric": "voa/council_tax/D", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000001", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 2070.0, + "value": 2070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000002", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 2810.0, + "value": 2810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000003", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 3610.0, + "value": 3610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000004", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 6430.0, + "value": 6430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000005", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 3590.0, + "value": 3590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000006", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 3890.0, + "value": 3890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000007", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 7960.0, + "value": 7960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000008", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 2780.0, + "value": 2780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000009", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 1950.0, + "value": 1950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000010", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 1410.0, + "value": 1410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000011", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 17380.0, + "value": 17380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000012", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 2520.0, + "value": 2520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000013", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 4020.0, + "value": 4020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000014", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 8030.0, + "value": 8030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000015", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 4850.0, + "value": 4850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000016", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 3570.0, + "value": 3570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000017", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 2400.0, + "value": 2400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000018", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 2660.0, + "value": 2660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000019", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 12660.0, + "value": 12660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000020", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 5870.0, + "value": 5870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000021", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 1980.0, + "value": 1980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000022", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 10460.0, + "value": 10460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000023", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 10120.0, + "value": 10120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000024", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 13390.0, + "value": 13390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000025", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 13700.0, + "value": 13700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000026", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 5250.0, + "value": 5250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000027", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 5450.0, + "value": 5450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000030", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 9640.0, + "value": 9640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000031", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 4930.0, + "value": 4930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000032", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 3520.0, + "value": 3520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000033", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 6820.0, + "value": 6820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000034", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 4860.0, + "value": 4860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000035", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 10230.0, + "value": 10230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000036", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 8670.0, + "value": 8670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000037", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 10950.0, + "value": 10950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000038", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 5920.0, + "value": 5920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000039", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 4700.0, + "value": 4700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000040", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 13590.0, + "value": 13590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000041", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 17040.0, + "value": 17040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000042", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 13300.0, + "value": 13300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000043", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 11720.0, + "value": 11720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000044", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 3790.0, + "value": 3790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000045", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 3200.0, + "value": 3200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000046", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000047", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 11500.0, + "value": 11500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000049", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 23520.0, + "value": 23520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000050", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 17600.0, + "value": 17600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000051", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 17630.0, + "value": 17630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000052", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 26830.0, + "value": 26830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000053", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 330.0, + "value": 330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000054", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 31680.0, + "value": 31680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000055", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 8960.0, + "value": 8960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000056", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 17800.0, + "value": 17800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000057", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 12210.0, + "value": 12210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000058", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 21890.0, + "value": 21890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000059", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 28890.0, + "value": 28890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000060", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 36730.0, + "value": 36730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000061", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 12750.0, + "value": 12750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000062", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 17970.0, + "value": 17970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000063", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 8470.0, + "value": 8470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000064", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 12750.0, + "value": 12750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000065", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 37890.0, + "value": 37890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E06000066", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 31050.0, + "value": 31050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000008", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 6060.0, + "value": 6060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000009", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 5110.0, + "value": 5110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000010", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 2520.0, + "value": 2520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000011", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 10360.0, + "value": 10360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000012", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 12340.0, + "value": 12340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000032", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 3630.0, + "value": 3630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000033", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 1150.0, + "value": 1150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000034", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 2150.0, + "value": 2150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000035", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 5290.0, + "value": 5290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000036", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 2430.0, + "value": 2430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000037", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 4100.0, + "value": 4100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000038", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 3300.0, + "value": 3300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000039", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 5700.0, + "value": 5700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000040", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 11400.0, + "value": 11400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000041", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 4570.0, + "value": 4570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000042", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 5010.0, + "value": 5010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000043", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 5100.0, + "value": 5100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000044", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 7590.0, + "value": 7590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000045", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 8610.0, + "value": 8610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000046", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 3520.0, + "value": 3520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000047", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 3710.0, + "value": 3710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000061", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 4600.0, + "value": 4600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000062", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 2350.0, + "value": 2350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000063", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 6260.0, + "value": 6260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000064", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 7690.0, + "value": 7690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000065", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 12010.0, + "value": 12010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000066", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 7930.0, + "value": 7930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000067", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 8240.0, + "value": 8240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000068", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 6470.0, + "value": 6470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000069", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 4480.0, + "value": 4480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000070", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 11460.0, + "value": 11460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000071", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 9320.0, + "value": 9320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000072", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 10280.0, + "value": 10280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000073", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 3070.0, + "value": 3070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000074", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 4710.0, + "value": 4710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000075", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 5350.0, + "value": 5350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000076", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 6120.0, + "value": 6120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000077", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 7610.0, + "value": 7610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000078", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 5270.0, + "value": 5270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000079", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 6740.0, + "value": 6740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000080", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 4670.0, + "value": 4670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000081", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 3880.0, + "value": 3880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000082", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 7320.0, + "value": 7320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000083", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 6070.0, + "value": 6070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000084", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 11350.0, + "value": 11350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000085", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 9270.0, + "value": 9270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000086", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 8190.0, + "value": 8190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000087", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 8130.0, + "value": 8130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000088", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000089", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 8280.0, + "value": 8280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000090", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 5950.0, + "value": 5950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000091", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 13700.0, + "value": 13700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000092", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 4250.0, + "value": 4250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000093", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 8800.0, + "value": 8800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000094", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 9190.0, + "value": 9190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000095", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 7880.0, + "value": 7880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000096", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 9420.0, + "value": 9420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000098", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 8990.0, + "value": 8990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000099", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 7490.0, + "value": 7490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000102", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 7560.0, + "value": 7560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000103", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 3890.0, + "value": 3890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000105", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 7120.0, + "value": 7120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000106", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 7950.0, + "value": 7950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000107", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 7750.0, + "value": 7750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000108", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 4650.0, + "value": 4650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000109", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 4780.0, + "value": 4780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000110", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 10980.0, + "value": 10980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000111", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 7730.0, + "value": 7730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000112", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 5280.0, + "value": 5280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000113", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 6130.0, + "value": 6130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000114", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 4210.0, + "value": 4210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000115", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 9650.0, + "value": 9650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000116", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 7180.0, + "value": 7180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000117", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 1350.0, + "value": 1350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000118", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 5490.0, + "value": 5490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000119", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 5420.0, + "value": 5420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000120", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 870.0, + "value": 870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000121", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 4270.0, + "value": 4270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000122", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 1890.0, + "value": 1890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000123", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 3750.0, + "value": 3750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000124", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 4310.0, + "value": 4310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000125", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 2040.0, + "value": 2040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000126", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 4510.0, + "value": 4510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000127", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 5430.0, + "value": 5430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000128", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 6050.0, + "value": 6050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000129", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 4640.0, + "value": 4640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000130", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 7600.0, + "value": 7600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000131", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 7400.0, + "value": 7400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000132", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 4630.0, + "value": 4630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000133", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 2690.0, + "value": 2690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000134", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 5420.0, + "value": 5420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000135", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 2200.0, + "value": 2200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000136", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 880.0, + "value": 880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000137", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 3790.0, + "value": 3790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000138", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 1440.0, + "value": 1440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000139", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 3840.0, + "value": 3840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000140", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 2150.0, + "value": 2150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000141", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 6080.0, + "value": 6080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000142", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 3970.0, + "value": 3970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000143", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 5040.0, + "value": 5040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000144", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 5650.0, + "value": 5650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000145", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 2020.0, + "value": 2020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000146", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 5410.0, + "value": 5410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000147", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 5130.0, + "value": 5130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000148", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 2360.0, + "value": 2360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000149", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 7950.0, + "value": 7950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000170", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000171", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 3530.0, + "value": 3530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000172", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 2840.0, + "value": 2840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000173", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 4390.0, + "value": 4390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000174", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 1770.0, + "value": 1770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000175", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 4570.0, + "value": 4570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000176", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 7720.0, + "value": 7720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000177", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 9260.0, + "value": 9260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000178", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 7670.0, + "value": 7670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000179", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 10980.0, + "value": 10980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000180", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 10450.0, + "value": 10450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000181", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 7990.0, + "value": 7990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000192", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 2000.0, + "value": 2000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000193", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 5160.0, + "value": 5160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000194", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 5140.0, + "value": 5140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000195", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 2910.0, + "value": 2910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000196", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 5600.0, + "value": 5600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000197", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 7020.0, + "value": 7020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000198", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 4560.0, + "value": 4560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000199", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000200", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 4880.0, + "value": 4880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000202", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 2370.0, + "value": 2370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000203", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 6420.0, + "value": 6420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000207", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 11310.0, + "value": 11310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000208", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 7810.0, + "value": 7810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000209", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 10640.0, + "value": 10640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000210", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 7240.0, + "value": 7240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000211", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 11660.0, + "value": 11660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000212", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 6950.0, + "value": 6950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000213", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 10110.0, + "value": 10110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000214", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 6900.0, + "value": 6900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000215", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 7870.0, + "value": 7870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000216", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 10110.0, + "value": 10110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000217", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 6360.0, + "value": 6360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000218", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 2610.0, + "value": 2610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000219", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 3180.0, + "value": 3180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000220", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 5280.0, + "value": 5280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000221", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 10780.0, + "value": 10780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000222", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 8520.0, + "value": 8520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000223", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 2050.0, + "value": 2050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000224", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 10930.0, + "value": 10930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000225", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 9560.0, + "value": 9560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000226", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 3820.0, + "value": 3820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000227", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 11640.0, + "value": 11640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000228", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 12370.0, + "value": 12370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000229", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 5610.0, + "value": 5610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000234", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 7220.0, + "value": 7220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000235", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 5370.0, + "value": 5370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000236", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 3450.0, + "value": 3450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000237", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 3590.0, + "value": 3590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000238", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 7890.0, + "value": 7890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000239", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 3610.0, + "value": 3610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000240", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 13100.0, + "value": 13100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000241", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 5590.0, + "value": 5590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000242", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 12070.0, + "value": 12070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000243", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 3280.0, + "value": 3280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000244", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 11760.0, + "value": 11760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E07000245", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 7410.0, + "value": 7410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000001", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 5820.0, + "value": 5820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000002", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 5700.0, + "value": 5700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000003", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 7640.0, + "value": 7640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000004", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 3540.0, + "value": 3540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000005", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 4580.0, + "value": 4580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000006", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 3910.0, + "value": 3910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000007", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 13320.0, + "value": 13320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000008", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 4000.0, + "value": 4000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000009", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 7940.0, + "value": 7940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000010", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 7730.0, + "value": 7730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000011", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 2110.0, + "value": 2110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000012", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 5140.0, + "value": 5140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000013", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 3810.0, + "value": 3810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000014", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 8930.0, + "value": 8930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000015", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 8580.0, + "value": 8580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000016", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 4190.0, + "value": 4190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000017", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 4900.0, + "value": 4900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000018", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 5070.0, + "value": 5070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000019", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 9780.0, + "value": 9780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000021", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 5940.0, + "value": 5940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000022", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 4540.0, + "value": 4540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000023", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000024", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 3780.0, + "value": 3780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000025", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 23130.0, + "value": 23130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000026", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 5230.0, + "value": 5230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000027", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 7150.0, + "value": 7150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000028", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 2990.0, + "value": 2990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000029", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 12200.0, + "value": 12200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000030", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 5680.0, + "value": 5680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000031", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 3150.0, + "value": 3150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000032", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 13330.0, + "value": 13330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000033", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 5630.0, + "value": 5630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000034", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 12720.0, + "value": 12720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000035", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 22930.0, + "value": 22930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000036", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 8860.0, + "value": 8860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E08000037", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 2780.0, + "value": 2780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000001", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 2890.0, + "value": 2890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000002", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 1800.0, + "value": 1800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000003", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 33920.0, + "value": 33920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000004", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 19550.0, + "value": 19550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000005", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 23430.0, + "value": 23430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000006", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 29550.0, + "value": 29550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000007", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 19820.0, + "value": 19820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000008", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 24140.0, + "value": 24140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000009", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 25200.0, + "value": 25200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000010", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 21550.0, + "value": 21550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000011", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 12850.0, + "value": 12850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000012", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 13500.0, + "value": 13500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000013", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 17400.0, + "value": 17400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000014", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 11700.0, + "value": 11700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000015", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 22620.0, + "value": 22620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000016", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 16040.0, + "value": 16040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000017", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 18810.0, + "value": 18810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000018", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 16350.0, + "value": 16350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000019", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 19520.0, + "value": 19520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000020", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 13410.0, + "value": 13410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000021", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 15050.0, + "value": 15050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000022", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 16550.0, + "value": 16550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000023", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 8060.0, + "value": 8060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000024", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 13540.0, + "value": 13540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000025", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 7220.0, + "value": 7220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000026", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 19750.0, + "value": 19750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000027", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 19770.0, + "value": 19770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000028", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 21540.0, + "value": 21540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000029", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 12950.0, + "value": 12950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000030", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 27010.0, + "value": 27010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000031", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 8390.0, + "value": 8390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000032", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 26990.0, + "value": 26990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@E09000033", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 24460.0, + "value": 24460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000001", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 5540.0, + "value": 5540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000002", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 8300.0, + "value": 8300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000003", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 9300.0, + "value": 9300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000004", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 5660.0, + "value": 5660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000005", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 11140.0, + "value": 11140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000006", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 8270.0, + "value": 8270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000008", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 9180.0, + "value": 9180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000009", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 12550.0, + "value": 12550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000010", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 13440.0, + "value": 13440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000011", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 13200.0, + "value": 13200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000012", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 4580.0, + "value": 4580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000013", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 8020.0, + "value": 8020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000014", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 10790.0, + "value": 10790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000015", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 31540.0, + "value": 31540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000016", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 7140.0, + "value": 7140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000018", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 6840.0, + "value": 6840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000019", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 900.0, + "value": 900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000020", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 4330.0, + "value": 4330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000021", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 7660.0, + "value": 7660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000022", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 8560.0, + "value": 8560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000023", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 12660.0, + "value": 12660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/E@W06000024", + "metric": "voa/council_tax/E", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000001", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 930.0, + "value": 930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000002", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 1040.0, + "value": 1040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000003", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 1070.0, + "value": 1070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000004", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 3000.0, + "value": 3000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000005", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 1400.0, + "value": 1400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000006", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 1270.0, + "value": 1270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000007", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 4900.0, + "value": 4900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000008", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000009", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 580.0, + "value": 580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000010", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 320.0, + "value": 320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000011", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 7740.0, + "value": 7740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000012", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000013", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 1720.0, + "value": 1720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000014", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 3830.0, + "value": 3830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000015", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 2340.0, + "value": 2340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000016", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 1590.0, + "value": 1590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000017", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000018", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 1120.0, + "value": 1120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000019", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 7680.0, + "value": 7680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000020", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 2570.0, + "value": 2570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000021", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 560.0, + "value": 560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000022", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 5980.0, + "value": 5980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000023", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 4940.0, + "value": 4940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000024", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 6880.0, + "value": 6880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000025", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 6630.0, + "value": 6630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000026", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 1890.0, + "value": 1890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000027", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 2420.0, + "value": 2420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000030", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 4020.0, + "value": 4020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000031", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 2030.0, + "value": 2030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000032", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 1130.0, + "value": 1130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000033", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 3710.0, + "value": 3710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000034", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 2320.0, + "value": 2320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000035", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 4420.0, + "value": 4420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000036", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 5450.0, + "value": 5450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000037", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 7120.0, + "value": 7120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000038", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 3390.0, + "value": 3390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000039", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 1730.0, + "value": 1730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000040", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 8410.0, + "value": 8410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000041", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 11160.0, + "value": 11160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000042", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 7180.0, + "value": 7180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000043", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 4830.0, + "value": 4830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000044", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000045", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 1420.0, + "value": 1420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000046", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 3290.0, + "value": 3290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000047", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 4490.0, + "value": 4490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000049", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 15410.0, + "value": 15410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000050", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 10540.0, + "value": 10540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000051", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 9370.0, + "value": 9370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000052", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 9650.0, + "value": 9650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000053", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 270.0, + "value": 270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000054", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 18490.0, + "value": 18490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000055", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 5790.0, + "value": 5790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000056", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 10200.0, + "value": 10200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000057", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 7600.0, + "value": 7600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000058", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 9450.0, + "value": 9450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000059", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 16160.0, + "value": 16160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000060", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 29170.0, + "value": 29170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000061", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 5530.0, + "value": 5530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000062", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 10680.0, + "value": 10680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000063", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 2980.0, + "value": 2980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000064", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 6480.0, + "value": 6480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000065", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 22340.0, + "value": 22340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E06000066", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 16940.0, + "value": 16940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000008", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 3990.0, + "value": 3990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000009", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 2460.0, + "value": 2460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000010", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 710.0, + "value": 710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000011", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 4490.0, + "value": 4490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000012", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 8670.0, + "value": 8670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000032", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 1940.0, + "value": 1940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000033", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 350.0, + "value": 350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000034", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000035", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 3300.0, + "value": 3300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000036", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 920.0, + "value": 920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000037", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 2200.0, + "value": 2200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000038", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 1630.0, + "value": 1630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000039", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 2430.0, + "value": 2430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000040", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 6700.0, + "value": 6700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000041", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 2220.0, + "value": 2220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000042", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 2640.0, + "value": 2640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000043", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 2040.0, + "value": 2040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000044", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 4140.0, + "value": 4140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000045", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 4110.0, + "value": 4110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000046", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 1210.0, + "value": 1210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000047", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 1920.0, + "value": 1920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000061", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 2070.0, + "value": 2070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000062", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 860.0, + "value": 860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000063", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 3300.0, + "value": 3300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000064", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 4110.0, + "value": 4110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000065", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 8130.0, + "value": 8130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000066", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 4900.0, + "value": 4900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000067", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 4990.0, + "value": 4990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000068", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 4620.0, + "value": 4620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000069", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 1920.0, + "value": 1920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000070", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 6610.0, + "value": 6610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000071", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 4310.0, + "value": 4310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000072", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 7130.0, + "value": 7130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000073", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 1180.0, + "value": 1180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000074", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 3180.0, + "value": 3180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000075", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 2800.0, + "value": 2800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000076", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 2160.0, + "value": 2160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000077", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 5310.0, + "value": 5310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000078", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 2800.0, + "value": 2800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000079", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 5310.0, + "value": 5310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000080", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 2190.0, + "value": 2190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000081", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 930.0, + "value": 930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000082", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 4230.0, + "value": 4230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000083", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 3780.0, + "value": 3780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000084", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 6790.0, + "value": 6790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000085", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 6950.0, + "value": 6950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000086", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 3510.0, + "value": 3510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000087", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 3720.0, + "value": 3720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000088", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 1570.0, + "value": 1570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000089", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 7220.0, + "value": 7220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000090", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 2590.0, + "value": 2590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000091", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 7220.0, + "value": 7220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000092", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 1320.0, + "value": 1320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000093", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 5320.0, + "value": 5320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000094", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 7180.0, + "value": 7180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000095", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 3010.0, + "value": 3010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000096", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 5860.0, + "value": 5860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000098", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 4640.0, + "value": 4640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000099", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 4900.0, + "value": 4900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000102", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 4470.0, + "value": 4470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000103", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 2220.0, + "value": 2220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000105", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 6220.0, + "value": 6220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000106", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 4210.0, + "value": 4210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000107", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 3030.0, + "value": 3030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000108", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 2580.0, + "value": 2580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000109", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000110", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 6610.0, + "value": 6610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000111", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 6170.0, + "value": 6170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000112", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 2790.0, + "value": 2790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000113", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 2820.0, + "value": 2820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000114", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000115", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 5570.0, + "value": 5570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000116", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 5240.0, + "value": 5240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000117", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000118", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 2390.0, + "value": 2390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000119", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 2960.0, + "value": 2960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000120", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 280.0, + "value": 280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000121", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000122", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 1030.0, + "value": 1030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000123", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000124", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 2680.0, + "value": 2680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000125", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000126", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 1770.0, + "value": 1770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000127", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 2690.0, + "value": 2690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000128", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 2760.0, + "value": 2760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000129", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000130", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 3430.0, + "value": 3430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000131", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 4120.0, + "value": 4120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000132", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 2350.0, + "value": 2350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000133", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 1640.0, + "value": 1640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000134", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 2050.0, + "value": 2050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000135", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 650.0, + "value": 650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000136", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 240.0, + "value": 240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000137", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 1490.0, + "value": 1490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000138", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 530.0, + "value": 530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000139", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 1680.0, + "value": 1680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000140", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000141", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 3130.0, + "value": 3130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000142", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000143", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000144", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 2370.0, + "value": 2370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000145", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 640.0, + "value": 640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000146", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 2790.0, + "value": 2790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000147", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 2460.0, + "value": 2460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000148", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 930.0, + "value": 930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000149", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 3400.0, + "value": 3400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000170", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 520.0, + "value": 520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000171", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 1720.0, + "value": 1720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000172", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000173", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000174", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 470.0, + "value": 470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000175", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 2810.0, + "value": 2810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000176", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 4640.0, + "value": 4640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000177", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 4490.0, + "value": 4490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000178", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 3140.0, + "value": 3140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000179", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 6810.0, + "value": 6810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000180", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 6620.0, + "value": 6620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000181", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 4640.0, + "value": 4640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000192", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 660.0, + "value": 660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000193", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 2660.0, + "value": 2660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000194", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 4030.0, + "value": 4030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000195", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 1860.0, + "value": 1860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000196", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 3610.0, + "value": 3610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000197", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 3780.0, + "value": 3780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000198", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 2020.0, + "value": 2020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000199", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 600.0, + "value": 600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000200", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 2650.0, + "value": 2650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000202", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 960.0, + "value": 960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000203", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 3390.0, + "value": 3390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000207", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 8140.0, + "value": 8140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000208", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 4830.0, + "value": 4830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000209", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 6920.0, + "value": 6920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000210", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 6310.0, + "value": 6310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000211", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 7700.0, + "value": 7700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000212", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 4300.0, + "value": 4300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000213", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 4730.0, + "value": 4730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000214", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 5940.0, + "value": 5940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000215", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 4940.0, + "value": 4940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000216", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 7380.0, + "value": 7380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000217", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 4240.0, + "value": 4240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000218", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 1420.0, + "value": 1420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000219", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 870.0, + "value": 870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000220", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 3530.0, + "value": 3530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000221", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 6850.0, + "value": 6850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000222", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 5700.0, + "value": 5700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000223", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 760.0, + "value": 760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000224", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 6350.0, + "value": 6350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000225", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 6440.0, + "value": 6440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000226", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 2350.0, + "value": 2350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000227", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 8560.0, + "value": 8560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000228", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 9200.0, + "value": 9200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000229", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 2450.0, + "value": 2450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000234", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 3850.0, + "value": 3850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000235", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 4150.0, + "value": 4150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000236", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000237", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 1620.0, + "value": 1620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000238", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 6900.0, + "value": 6900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000239", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 1800.0, + "value": 1800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000240", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 9530.0, + "value": 9530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000241", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 4500.0, + "value": 4500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000242", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 8140.0, + "value": 8140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000243", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000244", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 5650.0, + "value": 5650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E07000245", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 3050.0, + "value": 3050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000001", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 2370.0, + "value": 2370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000002", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 1900.0, + "value": 1900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000003", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 3400.0, + "value": 3400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000004", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 1630.0, + "value": 1630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000005", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 1710.0, + "value": 1710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000006", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 1490.0, + "value": 1490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000007", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 6570.0, + "value": 6570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000008", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 950.0, + "value": 950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000009", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 4690.0, + "value": 4690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000010", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 2030.0, + "value": 2030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000011", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 330.0, + "value": 330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000012", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 2360.0, + "value": 2360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000013", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000014", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 3990.0, + "value": 3990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000015", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 4390.0, + "value": 4390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000016", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 1630.0, + "value": 1630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000017", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 2280.0, + "value": 2280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000018", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000019", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 4420.0, + "value": 4420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000021", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 2640.0, + "value": 2640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000022", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 1590.0, + "value": 1590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000023", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 730.0, + "value": 730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000024", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 1230.0, + "value": 1230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000025", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 9140.0, + "value": 9140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000026", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 2610.0, + "value": 2610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000027", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 2530.0, + "value": 2530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000028", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 550.0, + "value": 550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000029", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 9260.0, + "value": 9260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000030", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 2420.0, + "value": 2420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000031", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 1730.0, + "value": 1730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000032", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 6260.0, + "value": 6260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000033", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 3150.0, + "value": 3150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000034", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 5720.0, + "value": 5720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000035", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 10740.0, + "value": 10740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000036", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 2600.0, + "value": 2600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E08000037", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 900.0, + "value": 900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000001", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 1390.0, + "value": 1390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000002", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 390.0, + "value": 390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000003", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 20370.0, + "value": 20370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000004", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 5290.0, + "value": 5290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000005", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 6590.0, + "value": 6590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000006", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 18580.0, + "value": 18580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000007", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 12950.0, + "value": 12950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000008", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 11860.0, + "value": 11860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000009", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 10520.0, + "value": 10520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000010", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 9590.0, + "value": 9590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000011", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 4010.0, + "value": 4010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000012", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 4950.0, + "value": 4950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000013", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 11330.0, + "value": 11330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000014", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 5540.0, + "value": 5540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000015", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 8550.0, + "value": 8550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000016", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 6770.0, + "value": 6770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000017", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 10050.0, + "value": 10050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000018", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 6370.0, + "value": 6370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000019", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 10380.0, + "value": 10380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000020", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 12210.0, + "value": 12210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000021", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 8770.0, + "value": 8770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000022", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 10820.0, + "value": 10820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000023", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 2820.0, + "value": 2820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000024", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 5940.0, + "value": 5940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000025", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000026", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 7820.0, + "value": 7820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000027", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 12160.0, + "value": 12160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000028", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 7920.0, + "value": 7920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000029", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 7110.0, + "value": 7110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000030", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 14280.0, + "value": 14280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000031", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000032", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 20450.0, + "value": 20450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@E09000033", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 19180.0, + "value": 19180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000001", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 2770.0, + "value": 2770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000002", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 4030.0, + "value": 4030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000003", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 5120.0, + "value": 5120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000004", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 3920.0, + "value": 3920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000005", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 7830.0, + "value": 7830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000006", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 5190.0, + "value": 5190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000008", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 3890.0, + "value": 3890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000009", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 6070.0, + "value": 6070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000010", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 6700.0, + "value": 6700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000011", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 8180.0, + "value": 8180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000012", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 1530.0, + "value": 1530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000013", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 4480.0, + "value": 4480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000014", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 7740.0, + "value": 7740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000015", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 22250.0, + "value": 22250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000016", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 3520.0, + "value": 3520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000018", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 2430.0, + "value": 2430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000019", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 350.0, + "value": 350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000020", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 2410.0, + "value": 2410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000021", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 8100.0, + "value": 8100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000022", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 6090.0, + "value": 6090.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000023", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 9740.0, + "value": 9740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/F@W06000024", + "metric": "voa/council_tax/F", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 580.0, + "value": 580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000001", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 700.0, + "value": 700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000002", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 600.0, + "value": 600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000003", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 420.0, + "value": 420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000004", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 1610.0, + "value": 1610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000005", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 680.0, + "value": 680.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000006", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000007", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 2730.0, + "value": 2730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000008", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 580.0, + "value": 580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000009", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000010", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000011", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 3440.0, + "value": 3440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000012", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 510.0, + "value": 510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000013", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 550.0, + "value": 550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000014", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 1930.0, + "value": 1930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000015", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 710.0, + "value": 710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000016", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000017", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 1360.0, + "value": 1360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000018", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 760.0, + "value": 760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000019", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 3800.0, + "value": 3800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000020", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 1210.0, + "value": 1210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000021", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000022", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 5210.0, + "value": 5210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000023", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 2900.0, + "value": 2900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000024", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 3470.0, + "value": 3470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000025", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000026", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000027", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000030", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000031", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 1070.0, + "value": 1070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000032", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 290.0, + "value": 290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000033", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 1640.0, + "value": 1640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000034", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 890.0, + "value": 890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000035", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 1560.0, + "value": 1560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000036", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 2690.0, + "value": 2690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000037", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 4880.0, + "value": 4880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000038", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000039", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000040", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 9970.0, + "value": 9970.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000041", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 6830.0, + "value": 6830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000042", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 3240.0, + "value": 3240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000043", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 2840.0, + "value": 2840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000044", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 660.0, + "value": 660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000045", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000046", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 1570.0, + "value": 1570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000047", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 2310.0, + "value": 2310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000049", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 13130.0, + "value": 13130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000050", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 8110.0, + "value": 8110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000051", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 4830.0, + "value": 4830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000052", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 4430.0, + "value": 4430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000053", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000054", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 11570.0, + "value": 11570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000055", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 3290.0, + "value": 3290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000056", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 5700.0, + "value": 5700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000057", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 4550.0, + "value": 4550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000058", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 5820.0, + "value": 5820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000059", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 8230.0, + "value": 8230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000060", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 31530.0, + "value": 31530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000061", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 3060.0, + "value": 3060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000062", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 6520.0, + "value": 6520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000063", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000064", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 3440.0, + "value": 3440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000065", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 14070.0, + "value": 14070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E06000066", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 7820.0, + "value": 7820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000008", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 3270.0, + "value": 3270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000009", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 820.0, + "value": 820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000010", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 190.0, + "value": 190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000011", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000012", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 4900.0, + "value": 4900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000032", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 1550.0, + "value": 1550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000033", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000034", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000035", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 2170.0, + "value": 2170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000036", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 530.0, + "value": 530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000037", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 860.0, + "value": 860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000038", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 900.0, + "value": 900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000039", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000040", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 4270.0, + "value": 4270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000041", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000042", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000043", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 640.0, + "value": 640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000044", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 3200.0, + "value": 3200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000045", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 2060.0, + "value": 2060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000046", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 390.0, + "value": 390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000047", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 1050.0, + "value": 1050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000061", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 1130.0, + "value": 1130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000062", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000063", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 2420.0, + "value": 2420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000064", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 2770.0, + "value": 2770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000065", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 7340.0, + "value": 7340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000066", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 2080.0, + "value": 2080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000067", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 2500.0, + "value": 2500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000068", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 4060.0, + "value": 4060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000069", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 770.0, + "value": 770.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000070", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 4590.0, + "value": 4590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000071", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 2600.0, + "value": 2600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000072", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 6320.0, + "value": 6320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000073", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000074", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 1700.0, + "value": 1700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000075", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 1450.0, + "value": 1450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000076", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000077", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 4960.0, + "value": 4960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000078", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 2210.0, + "value": 2210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000079", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 4950.0, + "value": 4950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000080", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 1040.0, + "value": 1040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000081", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 180.0, + "value": 180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000082", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 2660.0, + "value": 2660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000083", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 2130.0, + "value": 2130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000084", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 3570.0, + "value": 3570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000085", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 5160.0, + "value": 5160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000086", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 1210.0, + "value": 1210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000087", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 1530.0, + "value": 1530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000088", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 330.0, + "value": 330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000089", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 4050.0, + "value": 4050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000090", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 990.0, + "value": 990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000091", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 4700.0, + "value": 4700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000092", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 330.0, + "value": 330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000093", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 3950.0, + "value": 3950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000094", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 6020.0, + "value": 6020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000095", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 2350.0, + "value": 2350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000096", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 5260.0, + "value": 5260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000098", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 4750.0, + "value": 4750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000099", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 3630.0, + "value": 3630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000102", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 5170.0, + "value": 5170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000103", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 1930.0, + "value": 1930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000105", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 3570.0, + "value": 3570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000106", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 2320.0, + "value": 2320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000107", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 1120.0, + "value": 1120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000108", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 1590.0, + "value": 1590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000109", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 1100.0, + "value": 1100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000110", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 4720.0, + "value": 4720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000111", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 7990.0, + "value": 7990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000112", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 1980.0, + "value": 1980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000113", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 1310.0, + "value": 1310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000114", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000115", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 5100.0, + "value": 5100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000116", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 5620.0, + "value": 5620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000117", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000118", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 1050.0, + "value": 1050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000119", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 1690.0, + "value": 1690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000120", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 170.0, + "value": 170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000121", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 870.0, + "value": 870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000122", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 550.0, + "value": 550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000123", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 1080.0, + "value": 1080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000124", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 2050.0, + "value": 2050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000125", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 470.0, + "value": 470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000126", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 610.0, + "value": 610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000127", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 1700.0, + "value": 1700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000128", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 1150.0, + "value": 1150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000129", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 550.0, + "value": 550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000130", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 2070.0, + "value": 2070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000131", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 2840.0, + "value": 2840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000132", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 1160.0, + "value": 1160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000133", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 1050.0, + "value": 1050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000134", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 990.0, + "value": 990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000135", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 490.0, + "value": 490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000136", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000137", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 610.0, + "value": 610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000138", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000139", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 430.0, + "value": 430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000140", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000141", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 1130.0, + "value": 1130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000142", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 550.0, + "value": 550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000143", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 830.0, + "value": 830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000144", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 880.0, + "value": 880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000145", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 260.0, + "value": 260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000146", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 1220.0, + "value": 1220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000147", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 1100.0, + "value": 1100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000148", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 610.0, + "value": 610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000149", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 1580.0, + "value": 1580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000170", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000171", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 740.0, + "value": 740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000172", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 510.0, + "value": 510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000173", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 950.0, + "value": 950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000174", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 210.0, + "value": 210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000175", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 1530.0, + "value": 1530.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000176", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 2720.0, + "value": 2720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000177", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 2890.0, + "value": 2890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000178", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 3370.0, + "value": 3370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000179", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 6420.0, + "value": 6420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000180", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 4870.0, + "value": 4870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000181", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 3100.0, + "value": 3100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000192", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 280.0, + "value": 280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000193", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 1300.0, + "value": 1300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000194", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 2730.0, + "value": 2730.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000195", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000196", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 2490.0, + "value": 2490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000197", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 1660.0, + "value": 1660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000198", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 810.0, + "value": 810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000199", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000200", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 1800.0, + "value": 1800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000202", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000203", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 1740.0, + "value": 1740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000207", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 11460.0, + "value": 11460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000208", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 4180.0, + "value": 4180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000209", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 7590.0, + "value": 7590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000210", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 7830.0, + "value": 7830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000211", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 7540.0, + "value": 7540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000212", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 3230.0, + "value": 3230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000213", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 2200.0, + "value": 2200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000214", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 5330.0, + "value": 5330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000215", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 6400.0, + "value": 6400.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000216", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 8910.0, + "value": 8910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000217", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 5260.0, + "value": 5260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000218", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 790.0, + "value": 790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000219", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000220", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 1910.0, + "value": 1910.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000221", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 5980.0, + "value": 5980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000222", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 4720.0, + "value": 4720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000223", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000224", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 2800.0, + "value": 2800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000225", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 6020.0, + "value": 6020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000226", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 470.0, + "value": 470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000227", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 8080.0, + "value": 8080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000228", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 5050.0, + "value": 5050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000229", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 930.0, + "value": 930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000234", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 2920.0, + "value": 2920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000235", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 2550.0, + "value": 2550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000236", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 480.0, + "value": 480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000237", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000238", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 4850.0, + "value": 4850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000239", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 1300.0, + "value": 1300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000240", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 8270.0, + "value": 8270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000241", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 3960.0, + "value": 3960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000242", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 5950.0, + "value": 5950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000243", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 430.0, + "value": 430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000244", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 3070.0, + "value": 3070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E07000245", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 2100.0, + "value": 2100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000001", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 1930.0, + "value": 1930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000002", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 1320.0, + "value": 1320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000003", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 1270.0, + "value": 1270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000004", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 940.0, + "value": 940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000005", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 900.0, + "value": 900.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000006", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 880.0, + "value": 880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000007", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 3620.0, + "value": 3620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000008", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000009", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 4230.0, + "value": 4230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000010", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 650.0, + "value": 650.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000011", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000012", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 1760.0, + "value": 1760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000013", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 600.0, + "value": 600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000014", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 2740.0, + "value": 2740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000015", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 3220.0, + "value": 3220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000016", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 710.0, + "value": 710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000017", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000018", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 810.0, + "value": 810.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000019", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 2890.0, + "value": 2890.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000021", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 1930.0, + "value": 1930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000022", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000023", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000024", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 700.0, + "value": 700.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000025", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 5960.0, + "value": 5960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000026", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 1490.0, + "value": 1490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000027", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000028", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000029", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 5820.0, + "value": 5820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000030", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 860.0, + "value": 860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000031", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 1000.0, + "value": 1000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000032", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 3820.0, + "value": 3820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000033", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 1380.0, + "value": 1380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000034", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 2330.0, + "value": 2330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000035", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 7490.0, + "value": 7490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000036", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 1230.0, + "value": 1230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E08000037", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 390.0, + "value": 390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000001", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 1500.0, + "value": 1500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000002", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000003", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 16820.0, + "value": 16820.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000004", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 1750.0, + "value": 1750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000005", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 3460.0, + "value": 3460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000006", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 14120.0, + "value": 14120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000007", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 13140.0, + "value": 13140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000008", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 7520.0, + "value": 7520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000009", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 7200.0, + "value": 7200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000010", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 6050.0, + "value": 6050.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000011", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 2280.0, + "value": 2280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000012", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 1320.0, + "value": 1320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000013", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 12270.0, + "value": 12270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000014", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 4800.0, + "value": 4800.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000015", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 6220.0, + "value": 6220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000016", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 3140.0, + "value": 3140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000017", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 5340.0, + "value": 5340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000018", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 4120.0, + "value": 4120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000019", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 7300.0, + "value": 7300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000020", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 19930.0, + "value": 19930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000021", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 4460.0, + "value": 4460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000022", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 5960.0, + "value": 5960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000023", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 1360.0, + "value": 1360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000024", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 4180.0, + "value": 4180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000025", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 240.0, + "value": 240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000026", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 3320.0, + "value": 3320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000027", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 13290.0, + "value": 13290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000028", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 4590.0, + "value": 4590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000029", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 3780.0, + "value": 3780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000030", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 5570.0, + "value": 5570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000031", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 440.0, + "value": 440.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000032", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 15230.0, + "value": 15230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@E09000033", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 24500.0, + "value": 24500.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000001", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 1080.0, + "value": 1080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000002", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 1280.0, + "value": 1280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000003", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 1940.0, + "value": 1940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000004", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 2060.0, + "value": 2060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000005", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 3230.0, + "value": 3230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000006", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 2570.0, + "value": 2570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000008", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 980.0, + "value": 980.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000009", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 2120.0, + "value": 2120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000010", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 2260.0, + "value": 2260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000011", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 3880.0, + "value": 3880.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000012", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 540.0, + "value": 540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000013", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 1510.0, + "value": 1510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000014", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 5920.0, + "value": 5920.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000015", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 10590.0, + "value": 10590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000016", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 1190.0, + "value": 1190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000018", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000019", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000020", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 690.0, + "value": 690.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000021", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 5520.0, + "value": 5520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000022", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 2710.0, + "value": 2710.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000023", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 4180.0, + "value": 4180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/G@W06000024", + "metric": "voa/council_tax/G", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 160.0, + "value": 160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000001", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000002", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000003", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000004", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000005", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000006", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000007", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000008", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000009", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000010", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000011", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 300.0, + "value": 300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000012", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000013", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000014", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000015", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000016", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000017", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 170.0, + "value": 170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000018", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000019", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 190.0, + "value": 190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000020", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000021", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000022", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000023", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000024", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 290.0, + "value": 290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000025", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000026", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000027", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000030", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000031", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000032", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000033", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000034", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000035", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000036", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 310.0, + "value": 310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000037", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 780.0, + "value": 780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000038", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000039", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000040", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 2020.0, + "value": 2020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000041", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 570.0, + "value": 570.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000042", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 180.0, + "value": 180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000043", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000044", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000045", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000046", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000047", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 280.0, + "value": 280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000049", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 2010.0, + "value": 2010.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000050", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 640.0, + "value": 640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000051", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000052", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000053", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000054", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 1370.0, + "value": 1370.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000055", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000056", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 410.0, + "value": 410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000057", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 590.0, + "value": 590.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000058", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 1310.0, + "value": 1310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000059", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 740.0, + "value": 740.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000060", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 6160.0, + "value": 6160.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000061", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 280.0, + "value": 280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000062", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 490.0, + "value": 490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000063", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000064", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000065", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 1310.0, + "value": 1310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E06000066", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 520.0, + "value": 520.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000008", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 510.0, + "value": 510.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000009", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000010", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000011", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 180.0, + "value": 180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000012", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 420.0, + "value": 420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000032", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000033", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000034", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000035", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000036", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000037", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000038", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000039", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000040", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 210.0, + "value": 210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000041", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000042", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000043", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000044", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000045", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000046", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000047", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000061", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000062", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000063", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000064", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 280.0, + "value": 280.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000065", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 950.0, + "value": 950.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000066", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000067", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000068", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 660.0, + "value": 660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000069", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000070", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000071", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 170.0, + "value": 170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000072", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 1260.0, + "value": 1260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000073", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000074", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 190.0, + "value": 190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000075", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000076", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000077", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000078", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000079", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 780.0, + "value": 780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000080", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000081", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000082", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 260.0, + "value": 260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000083", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 210.0, + "value": 210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000084", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000085", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 670.0, + "value": 670.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000086", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000087", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000088", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000089", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 260.0, + "value": 260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000090", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000091", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000092", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000093", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 560.0, + "value": 560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000094", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 750.0, + "value": 750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000095", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000096", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 850.0, + "value": 850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000098", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 1230.0, + "value": 1230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000099", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000102", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 1630.0, + "value": 1630.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000103", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000105", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000106", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000107", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000108", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000109", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000110", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 390.0, + "value": 390.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000111", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 1550.0, + "value": 1550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000112", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000113", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000114", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000115", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 470.0, + "value": 470.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000116", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 620.0, + "value": 620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000117", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000118", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000119", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000120", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000121", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000122", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000123", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000124", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 240.0, + "value": 240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000125", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000126", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000127", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000128", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000129", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000130", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000131", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 260.0, + "value": 260.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000132", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000133", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000134", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000135", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000136", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000137", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000138", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000139", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000140", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000141", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000142", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000143", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000144", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000145", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000146", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000147", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000148", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000149", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000170", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000171", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000172", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000173", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000174", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000175", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000176", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000177", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 270.0, + "value": 270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000178", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 610.0, + "value": 610.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000179", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 990.0, + "value": 990.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000180", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 490.0, + "value": 490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000181", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 420.0, + "value": 420.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000192", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000193", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000194", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 430.0, + "value": 430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000195", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000196", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000197", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000198", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000199", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000200", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000202", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000203", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000207", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 4550.0, + "value": 4550.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000208", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000209", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 1860.0, + "value": 1860.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000210", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 1080.0, + "value": 1080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000211", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 1140.0, + "value": 1140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000212", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 1140.0, + "value": 1140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000213", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 120.0, + "value": 120.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000214", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 540.0, + "value": 540.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000215", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 1290.0, + "value": 1290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000216", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 2180.0, + "value": 2180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000217", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 830.0, + "value": 830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000218", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000219", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000220", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000221", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 1000.0, + "value": 1000.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000222", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 460.0, + "value": 460.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000223", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000224", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 310.0, + "value": 310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000225", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 1360.0, + "value": 1360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000226", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000227", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 840.0, + "value": 840.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000228", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 450.0, + "value": 450.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000229", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000234", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000235", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000236", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000237", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000238", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000239", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000240", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 1410.0, + "value": 1410.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000241", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 750.0, + "value": 750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000242", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 870.0, + "value": 870.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000243", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000244", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E07000245", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000001", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000002", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 180.0, + "value": 180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000003", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000004", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 80.0, + "value": 80.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000005", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000006", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000007", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 230.0, + "value": 230.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000008", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000009", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 1070.0, + "value": 1070.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000010", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000011", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 20.0, + "value": 20.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000012", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 150.0, + "value": 150.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000013", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000014", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 290.0, + "value": 290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000015", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 290.0, + "value": 290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000016", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000017", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000018", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000019", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000021", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000022", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000023", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000024", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000025", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 930.0, + "value": 930.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000026", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 190.0, + "value": 190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000027", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 140.0, + "value": 140.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000028", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000029", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 490.0, + "value": 490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000030", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000031", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 130.0, + "value": 130.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000032", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 330.0, + "value": 330.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000033", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 60.0, + "value": 60.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000034", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 170.0, + "value": 170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000035", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 760.0, + "value": 760.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000036", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 100.0, + "value": 100.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E08000037", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000001", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 310.0, + "value": 310.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000002", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 10.0, + "value": 10.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000003", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 4350.0, + "value": 4350.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000004", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000005", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 250.0, + "value": 250.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000006", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 1750.0, + "value": 1750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000007", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 4940.0, + "value": 4940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000008", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 660.0, + "value": 660.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000009", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 1060.0, + "value": 1060.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000010", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 1020.0, + "value": 1020.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000011", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 360.0, + "value": 360.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000012", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 50.0, + "value": 50.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000013", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 2940.0, + "value": 2940.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000014", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 750.0, + "value": 750.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000015", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 1320.0, + "value": 1320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000016", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 380.0, + "value": 380.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000017", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 490.0, + "value": 490.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000018", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 1030.0, + "value": 1030.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000019", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 960.0, + "value": 960.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000020", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 15480.0, + "value": 15480.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000021", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 1080.0, + "value": 1080.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000022", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 1180.0, + "value": 1180.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000023", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 190.0, + "value": 190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000024", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 1850.0, + "value": 1850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000025", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 40.0, + "value": 40.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000026", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 220.0, + "value": 220.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000027", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 3640.0, + "value": 3640.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000028", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 830.0, + "value": 830.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000029", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 290.0, + "value": 290.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000030", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 780.0, + "value": 780.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000031", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 30.0, + "value": 30.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000032", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 3040.0, + "value": 3040.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@E09000033", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 17190.0, + "value": 17190.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000001", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 170.0, + "value": 170.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000002", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 210.0, + "value": 210.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000003", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 430.0, + "value": 430.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000004", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 320.0, + "value": 320.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000005", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 600.0, + "value": 600.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000006", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 720.0, + "value": 720.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000008", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000009", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 340.0, + "value": 340.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000010", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 300.0, + "value": 300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000011", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 1200.0, + "value": 1200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000012", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 110.0, + "value": 110.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000013", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 300.0, + "value": 300.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000014", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 2270.0, + "value": 2270.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000015", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 2850.0, + "value": 2850.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000016", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 200.0, + "value": 200.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000018", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 90.0, + "value": 90.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000020", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 70.0, + "value": 70.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000021", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 1790.0, + "value": 1790.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000022", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 560.0, + "value": 560.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "voa/council_tax/H@W06000023", + "metric": "voa/council_tax/H", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 580.0, + "value": 580.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000001", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000001", + "period": 2025, + "raw_value": 69738772.716, + "value": 69738772.716, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000002", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000002", + "period": 2025, + "raw_value": 96111361.854, + "value": 96111361.854, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000003", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000003", + "period": 2025, + "raw_value": 108610441.7904, + "value": 108610441.7904, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000004", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000004", + "period": 2025, + "raw_value": 163386702.9723, + "value": 163386702.9723, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000005", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000005", + "period": 2025, + "raw_value": 89851198.602, + "value": 89851198.602, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000006", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000006", + "period": 2025, + "raw_value": 90641943.9813, + "value": 90641943.9813, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000007", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000007", + "period": 2025, + "raw_value": 179465496.1275, + "value": 179465496.1275, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000008", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000008", + "period": 2025, + "raw_value": 97480357.175, + "value": 97480357.175, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000009", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000009", + "period": 2025, + "raw_value": 105132843.1146, + "value": 105132843.1146, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000010", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000010", + "period": 2025, + "raw_value": 158193802.34239998, + "value": 158193802.34239998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000011", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000011", + "period": 2025, + "raw_value": 322923928.2, + "value": 322923928.2, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000012", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000012", + "period": 2025, + "raw_value": 119402941.722, + "value": 119402941.722, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000013", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000013", + "period": 2025, + "raw_value": 124935934.9014, + "value": 124935934.9014, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000014", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000014", + "period": 2025, + "raw_value": 161307680.6415, + "value": 161307680.6415, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000015", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000015", + "period": 2025, + "raw_value": 172765773.66, + "value": 172765773.66, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000016", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000016", + "period": 2025, + "raw_value": 216985639.7625, + "value": 216985639.7625, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000017", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000017", + "period": 2025, + "raw_value": 44849143.4966, + "value": 44849143.4966, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000018", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000018", + "period": 2025, + "raw_value": 204079861.5691, + "value": 204079861.5691, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000019", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000019", + "period": 2025, + "raw_value": 191881285.7988, + "value": 191881285.7988, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000020", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000020", + "period": 2025, + "raw_value": 136176527.1748, + "value": 136176527.1748, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000021", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000021", + "period": 2025, + "raw_value": 153262730.4136, + "value": 153262730.4136, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000022", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000022", + "period": 2025, + "raw_value": 170676301.01860002, + "value": 170676301.01860002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000023", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000023", + "period": 2025, + "raw_value": 385352247.8376, + "value": 385352247.8376, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000024", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000024", + "period": 2025, + "raw_value": 208481532.3544, + "value": 208481532.3544, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000025", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000025", + "period": 2025, + "raw_value": 266248336.30640003, + "value": 266248336.30640003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000026", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000026", + "period": 2025, + "raw_value": 191876739.2955, + "value": 191876739.2955, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000027", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000027", + "period": 2025, + "raw_value": 128340628.3275, + "value": 128340628.3275, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000030", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000030", + "period": 2025, + "raw_value": 192953720.862, + "value": 192953720.862, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000031", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000031", + "period": 2025, + "raw_value": 146052091.4337, + "value": 146052091.4337, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000032", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000032", + "period": 2025, + "raw_value": 145845376.1913, + "value": 145845376.1913, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000033", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000033", + "period": 2025, + "raw_value": 142569029.64220002, + "value": 142569029.64220002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000034", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000034", + "period": 2025, + "raw_value": 123409210.8492, + "value": 123409210.8492, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000035", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000035", + "period": 2025, + "raw_value": 218665514.865, + "value": 218665514.865, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000036", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000036", + "period": 2025, + "raw_value": 113227158.584, + "value": 113227158.584, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000037", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000037", + "period": 2025, + "raw_value": 170564587.45200002, + "value": 170564587.45200002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000038", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000038", + "period": 2025, + "raw_value": 160555291.3094, + "value": 160555291.3094, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000039", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000039", + "period": 2025, + "raw_value": 108753476.0536, + "value": 108753476.0536, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000040", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000040", + "period": 2025, + "raw_value": 141816135.0368, + "value": 141816135.0368, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000041", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000041", + "period": 2025, + "raw_value": 194973858.872, + "value": 194973858.872, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000042", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000042", + "period": 2025, + "raw_value": 241552441.9611, + "value": 241552441.9611, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000043", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000043", + "period": 2025, + "raw_value": 250160876.49659997, + "value": 250160876.49659997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000044", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000044", + "period": 2025, + "raw_value": 141561630.9178, + "value": 141561630.9178, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000045", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000045", + "period": 2025, + "raw_value": 166766709.22, + "value": 166766709.22, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000046", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000046", + "period": 2025, + "raw_value": 156531403.0753, + "value": 156531403.0753, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000047", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000047", + "period": 2025, + "raw_value": 398097461.3715, + "value": 398097461.3715, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000049", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000049", + "period": 2025, + "raw_value": 405983135.6229, + "value": 405983135.6229, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000050", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000050", + "period": 2025, + "raw_value": 334162542.90389997, + "value": 334162542.90389997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000051", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000051", + "period": 2025, + "raw_value": 311591738.141, + "value": 311591738.141, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000052", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000052", + "period": 2025, + "raw_value": 580602125.5231999, + "value": 580602125.5231999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000053", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000053", + "period": 2025, + "raw_value": 2924282.0840000003, + "value": 2924282.0840000003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000054", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000054", + "period": 2025, + "raw_value": 509263386.9618, + "value": 509263386.9618, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000055", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000055", + "period": 2025, + "raw_value": 161728840.13579997, + "value": 161728840.13579997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000056", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000056", + "period": 2025, + "raw_value": 287374256.8704, + "value": 287374256.8704, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000057", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000057", + "period": 2025, + "raw_value": 307605231.7234, + "value": 307605231.7234, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000058", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000058", + "period": 2025, + "raw_value": 374759089.9416, + "value": 374759089.9416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000059", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000059", + "period": 2025, + "raw_value": 455833178.642, + "value": 455833178.642, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000060", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000060", + "period": 2025, + "raw_value": 600363690.9438, + "value": 600363690.9438, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000061", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000061", + "period": 2025, + "raw_value": 290406600.0528, + "value": 290406600.0528, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000062", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000062", + "period": 2025, + "raw_value": 367682918.7856, + "value": 367682918.7856, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000063", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000063", + "period": 2025, + "raw_value": 236997160.946, + "value": 236997160.946, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000064", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000064", + "period": 2025, + "raw_value": 242993207.1637, + "value": 242993207.1637, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000065", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000065", + "period": 2025, + "raw_value": 660473592.9662, + "value": 660473592.9662, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E06000066", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E06000066", + "period": 2025, + "raw_value": 564425860.5495, + "value": 564425860.5495, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000008", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000008", + "period": 2025, + "raw_value": 116051433.2028, + "value": 116051433.2028, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000009", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000009", + "period": 2025, + "raw_value": 84112209.39359999, + "value": 84112209.39359999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000010", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000010", + "period": 2025, + "raw_value": 83011632.47899999, + "value": 83011632.47899999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000011", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000011", + "period": 2025, + "raw_value": 170498919.052, + "value": 170498919.052, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000012", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000012", + "period": 2025, + "raw_value": 176533018.1875, + "value": 176533018.1875, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000032", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000032", + "period": 2025, + "raw_value": 103047976.3088, + "value": 103047976.3088, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000033", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000033", + "period": 2025, + "raw_value": 61046074.74419999, + "value": 61046074.74419999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000034", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000034", + "period": 2025, + "raw_value": 72837728.4498, + "value": 72837728.4498, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000035", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000035", + "period": 2025, + "raw_value": 77618344.90799999, + "value": 77618344.90799999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000036", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000036", + "period": 2025, + "raw_value": 83145730.2816, + "value": 83145730.2816, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000037", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000037", + "period": 2025, + "raw_value": 78740328.56319998, + "value": 78740328.56319998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000038", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000038", + "period": 2025, + "raw_value": 84402991.51889999, + "value": 84402991.51889999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000039", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000039", + "period": 2025, + "raw_value": 92340288.9864, + "value": 92340288.9864, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000040", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000040", + "period": 2025, + "raw_value": 172658590.1726, + "value": 172658590.1726, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000041", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000041", + "period": 2025, + "raw_value": 102276147.5008, + "value": 102276147.5008, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000042", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000042", + "period": 2025, + "raw_value": 83891659.18439999, + "value": 83891659.18439999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000043", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000043", + "period": 2025, + "raw_value": 101676124.8487, + "value": 101676124.8487, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000044", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000044", + "period": 2025, + "raw_value": 121130556.9588, + "value": 121130556.9588, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000045", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000045", + "period": 2025, + "raw_value": 140888947.77359998, + "value": 140888947.77359998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000046", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000046", + "period": 2025, + "raw_value": 70389872.715, + "value": 70389872.715, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000047", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000047", + "period": 2025, + "raw_value": 61999400.275, + "value": 61999400.275, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000061", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000061", + "period": 2025, + "raw_value": 100026807.228, + "value": 100026807.228, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000062", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000062", + "period": 2025, + "raw_value": 78580133.0378, + "value": 78580133.0378, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000063", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000063", + "period": 2025, + "raw_value": 109470855.4599, + "value": 109470855.4599, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000064", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000064", + "period": 2025, + "raw_value": 108819546.892, + "value": 108819546.892, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000065", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000065", + "period": 2025, + "raw_value": 192940927.45, + "value": 192940927.45, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000066", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000066", + "period": 2025, + "raw_value": 147426464.96799996, + "value": 147426464.96799996, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000067", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000067", + "period": 2025, + "raw_value": 136107360.4854, + "value": 136107360.4854, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000068", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000068", + "period": 2025, + "raw_value": 79803886.9956, + "value": 79803886.9956, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000069", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000069", + "period": 2025, + "raw_value": 74080576.29450001, + "value": 74080576.29450001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000070", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000070", + "period": 2025, + "raw_value": 167657590.00199997, + "value": 167657590.00199997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000071", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000071", + "period": 2025, + "raw_value": 154434870.98549998, + "value": 154434870.98549998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000072", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000072", + "period": 2025, + "raw_value": 130820750.1822, + "value": 130820750.1822, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000073", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000073", + "period": 2025, + "raw_value": 70293043.71090001, + "value": 70293043.71090001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000074", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000074", + "period": 2025, + "raw_value": 64400222.8441, + "value": 64400222.8441, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000075", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000075", + "period": 2025, + "raw_value": 80682376.7428, + "value": 80682376.7428, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000076", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000076", + "period": 2025, + "raw_value": 127770023.7539, + "value": 127770023.7539, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000077", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000077", + "period": 2025, + "raw_value": 95153738.8794, + "value": 95153738.8794, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000078", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000078", + "period": 2025, + "raw_value": 107492824.5912, + "value": 107492824.5912, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000079", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000079", + "period": 2025, + "raw_value": 108783482.755, + "value": 108783482.755, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000080", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000080", + "period": 2025, + "raw_value": 77993453.2818, + "value": 77993453.2818, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000081", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000081", + "period": 2025, + "raw_value": 96160677.12, + "value": 96160677.12, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000082", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000082", + "period": 2025, + "raw_value": 120515229.9472, + "value": 120515229.9472, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000083", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000083", + "period": 2025, + "raw_value": 91803099.7013, + "value": 91803099.7013, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000084", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000084", + "period": 2025, + "raw_value": 161429600.6554, + "value": 161429600.6554, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000085", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000085", + "period": 2025, + "raw_value": 125280437.9112, + "value": 125280437.9112, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000086", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000086", + "period": 2025, + "raw_value": 120453442.6446, + "value": 120453442.6446, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000087", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000087", + "period": 2025, + "raw_value": 102211759.96500002, + "value": 102211759.96500002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000088", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000088", + "period": 2025, + "raw_value": 65026548.9783, + "value": 65026548.9783, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000089", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000089", + "period": 2025, + "raw_value": 104670992.251, + "value": 104670992.251, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000090", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000090", + "period": 2025, + "raw_value": 100856260.4384, + "value": 100856260.4384, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000091", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000091", + "period": 2025, + "raw_value": 182225326.0744, + "value": 182225326.0744, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000092", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000092", + "period": 2025, + "raw_value": 77926023.73, + "value": 77926023.73, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000093", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000093", + "period": 2025, + "raw_value": 122507609.308, + "value": 122507609.308, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000094", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000094", + "period": 2025, + "raw_value": 130385919.4664, + "value": 130385919.4664, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000095", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000095", + "period": 2025, + "raw_value": 86002461.67589998, + "value": 86002461.67589998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000096", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000096", + "period": 2025, + "raw_value": 148105614.2813, + "value": 148105614.2813, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000098", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000098", + "period": 2025, + "raw_value": 105962184.0536, + "value": 105962184.0536, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000099", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000099", + "period": 2025, + "raw_value": 126916316.3428, + "value": 126916316.3428, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000102", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000102", + "period": 2025, + "raw_value": 95732065.0638, + "value": 95732065.0638, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000103", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000103", + "period": 2025, + "raw_value": 88923036.06899999, + "value": 88923036.06899999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000105", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000105", + "period": 2025, + "raw_value": 122977522.2408, + "value": 122977522.2408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000106", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000106", + "period": 2025, + "raw_value": 136703588.4309, + "value": 136703588.4309, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000107", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000107", + "period": 2025, + "raw_value": 102951399.283, + "value": 102951399.283, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000108", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000108", + "period": 2025, + "raw_value": 105381919.746, + "value": 105381919.746, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000109", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000109", + "period": 2025, + "raw_value": 87394547.95199999, + "value": 87394547.95199999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000110", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000110", + "period": 2025, + "raw_value": 174634859.47349998, + "value": 174634859.47349998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000111", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000111", + "period": 2025, + "raw_value": 135170775.26360002, + "value": 135170775.26360002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000112", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000112", + "period": 2025, + "raw_value": 108702648.8625, + "value": 108702648.8625, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000113", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000113", + "period": 2025, + "raw_value": 124193966.6175, + "value": 124193966.6175, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000114", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000114", + "period": 2025, + "raw_value": 122454935.628, + "value": 122454935.628, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000115", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000115", + "period": 2025, + "raw_value": 135852345.3209, + "value": 135852345.3209, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000116", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000116", + "period": 2025, + "raw_value": 121677542.9905, + "value": 121677542.9905, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000117", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000117", + "period": 2025, + "raw_value": 63026276.850200005, + "value": 63026276.850200005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000118", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000118", + "period": 2025, + "raw_value": 95874955.1254, + "value": 95874955.1254, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000119", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000119", + "period": 2025, + "raw_value": 82953511.2036, + "value": 82953511.2036, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000120", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000120", + "period": 2025, + "raw_value": 56535230.0986, + "value": 56535230.0986, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000121", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000121", + "period": 2025, + "raw_value": 111255931.6554, + "value": 111255931.6554, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000122", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000122", + "period": 2025, + "raw_value": 68878098.31379999, + "value": 68878098.31379999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000123", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000123", + "period": 2025, + "raw_value": 120344265.1854, + "value": 120344265.1854, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000124", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000124", + "period": 2025, + "raw_value": 62155509.495000005, + "value": 62155509.495000005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000125", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000125", + "period": 2025, + "raw_value": 55365000.885, + "value": 55365000.885, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000126", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000126", + "period": 2025, + "raw_value": 95763190.6902, + "value": 95763190.6902, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000127", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000127", + "period": 2025, + "raw_value": 99299213.7627, + "value": 99299213.7627, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000128", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000128", + "period": 2025, + "raw_value": 101098232.0347, + "value": 101098232.0347, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000129", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000129", + "period": 2025, + "raw_value": 87035255.8826, + "value": 87035255.8826, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000130", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000130", + "period": 2025, + "raw_value": 146830955.77319998, + "value": 146830955.77319998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000131", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000131", + "period": 2025, + "raw_value": 96766553.261, + "value": 96766553.261, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000132", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000132", + "period": 2025, + "raw_value": 97034200.9008, + "value": 97034200.9008, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000133", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000133", + "period": 2025, + "raw_value": 50451320.0556, + "value": 50451320.0556, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000134", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000134", + "period": 2025, + "raw_value": 92237450.964, + "value": 92237450.964, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000135", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000135", + "period": 2025, + "raw_value": 45705768.6095, + "value": 45705768.6095, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000136", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000136", + "period": 2025, + "raw_value": 47770163.303, + "value": 47770163.303, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000137", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000137", + "period": 2025, + "raw_value": 113440237.2128, + "value": 113440237.2128, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000138", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000138", + "period": 2025, + "raw_value": 61694105.2524, + "value": 61694105.2524, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000139", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000139", + "period": 2025, + "raw_value": 95308586.1792, + "value": 95308586.1792, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000140", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000140", + "period": 2025, + "raw_value": 71420499.24599999, + "value": 71420499.24599999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000141", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000141", + "period": 2025, + "raw_value": 114197302.8, + "value": 114197302.8, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000142", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000142", + "period": 2025, + "raw_value": 79041283.4475, + "value": 79041283.4475, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000143", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000143", + "period": 2025, + "raw_value": 117759650.8889, + "value": 117759650.8889, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000144", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000144", + "period": 2025, + "raw_value": 122031390.72980002, + "value": 122031390.72980002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000145", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000145", + "period": 2025, + "raw_value": 78466876.354, + "value": 78466876.354, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000146", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000146", + "period": 2025, + "raw_value": 139444747.608, + "value": 139444747.608, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000147", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000147", + "period": 2025, + "raw_value": 115525372.7991, + "value": 115525372.7991, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000148", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000148", + "period": 2025, + "raw_value": 104319095.832, + "value": 104319095.832, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000149", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000149", + "period": 2025, + "raw_value": 135243344.1359, + "value": 135243344.1359, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000170", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000170", + "period": 2025, + "raw_value": 93062738.9692, + "value": 93062738.9692, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000171", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000171", + "period": 2025, + "raw_value": 104384221.326, + "value": 104384221.326, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000172", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000172", + "period": 2025, + "raw_value": 94838792.4596, + "value": 94838792.4596, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000173", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000173", + "period": 2025, + "raw_value": 105315566.5125, + "value": 105315566.5125, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000174", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000174", + "period": 2025, + "raw_value": 82840253.6524, + "value": 82840253.6524, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000175", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000175", + "period": 2025, + "raw_value": 115832603.688, + "value": 115832603.688, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000176", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000176", + "period": 2025, + "raw_value": 126555776.2623, + "value": 126555776.2623, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000177", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000177", + "period": 2025, + "raw_value": 157880562.9144, + "value": 157880562.9144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000178", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000178", + "period": 2025, + "raw_value": 133562326.464, + "value": 133562326.464, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000179", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000179", + "period": 2025, + "raw_value": 169008476.30990002, + "value": 169008476.30990002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000180", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000180", + "period": 2025, + "raw_value": 156141676.0416, + "value": 156141676.0416, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000181", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000181", + "period": 2025, + "raw_value": 128058641.1165, + "value": 128058641.1165, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000192", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000192", + "period": 2025, + "raw_value": 73182739.00659999, + "value": 73182739.00659999, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000193", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000193", + "period": 2025, + "raw_value": 98871566.2002, + "value": 98871566.2002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000194", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000194", + "period": 2025, + "raw_value": 99099705.438, + "value": 99099705.438, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000195", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000195", + "period": 2025, + "raw_value": 92254905.4325, + "value": 92254905.4325, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000196", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000196", + "period": 2025, + "raw_value": 94538916.1434, + "value": 94538916.1434, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000197", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000197", + "period": 2025, + "raw_value": 117457312.0128, + "value": 117457312.0128, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000198", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000198", + "period": 2025, + "raw_value": 81123728.30800001, + "value": 81123728.30800001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000199", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000199", + "period": 2025, + "raw_value": 55627499.18880001, + "value": 55627499.18880001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000200", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000200", + "period": 2025, + "raw_value": 86388232.49550001, + "value": 86388232.49550001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000202", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000202", + "period": 2025, + "raw_value": 100245258.675, + "value": 100245258.675, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000203", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000203", + "period": 2025, + "raw_value": 98656457.408, + "value": 98656457.408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000207", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000207", + "period": 2025, + "raw_value": 174567000.205, + "value": 174567000.205, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000208", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000208", + "period": 2025, + "raw_value": 86398878.87280001, + "value": 86398878.87280001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000209", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000209", + "period": 2025, + "raw_value": 159479498.871, + "value": 159479498.871, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000210", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000210", + "period": 2025, + "raw_value": 107809539.0484, + "value": 107809539.0484, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000211", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000211", + "period": 2025, + "raw_value": 167523096.6898, + "value": 167523096.6898, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000212", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000212", + "period": 2025, + "raw_value": 92856672.7589, + "value": 92856672.7589, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000213", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000213", + "period": 2025, + "raw_value": 106445081.7136, + "value": 106445081.7136, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000214", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000214", + "period": 2025, + "raw_value": 105937943.7816, + "value": 105937943.7816, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000215", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000215", + "period": 2025, + "raw_value": 103822024.38, + "value": 103822024.38, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000216", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000216", + "period": 2025, + "raw_value": 157838242.44239998, + "value": 157838242.44239998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000217", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000217", + "period": 2025, + "raw_value": 114327659.514, + "value": 114327659.514, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000218", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000218", + "period": 2025, + "raw_value": 56553111.487, + "value": 56553111.487, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000219", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000219", + "period": 2025, + "raw_value": 105203242.1352, + "value": 105203242.1352, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000220", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000220", + "period": 2025, + "raw_value": 104257558.485, + "value": 104257558.485, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000221", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000221", + "period": 2025, + "raw_value": 156157534.5785, + "value": 156157534.5785, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000222", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000222", + "period": 2025, + "raw_value": 147803375.902, + "value": 147803375.902, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000223", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000223", + "period": 2025, + "raw_value": 56716252.510400005, + "value": 56716252.510400005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000224", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000224", + "period": 2025, + "raw_value": 168637981.04999998, + "value": 168637981.04999998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000225", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000225", + "period": 2025, + "raw_value": 147627418.8024, + "value": 147627418.8024, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000226", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000226", + "period": 2025, + "raw_value": 89533759.2908, + "value": 89533759.2908, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000227", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000227", + "period": 2025, + "raw_value": 161787091.53750002, + "value": 161787091.53750002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000228", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000228", + "period": 2025, + "raw_value": 167375845.5958, + "value": 167375845.5958, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000229", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000229", + "period": 2025, + "raw_value": 99423479.24490002, + "value": 99423479.24490002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000234", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000234", + "period": 2025, + "raw_value": 95860549.425, + "value": 95860549.425, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000235", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000235", + "period": 2025, + "raw_value": 83479413.6048, + "value": 83479413.6048, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000236", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000236", + "period": 2025, + "raw_value": 66457090.224, + "value": 66457090.224, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000237", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000237", + "period": 2025, + "raw_value": 82468785.04810001, + "value": 82468785.04810001, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000238", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000238", + "period": 2025, + "raw_value": 131136427.7655, + "value": 131136427.7655, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000239", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000239", + "period": 2025, + "raw_value": 88924076.83229998, + "value": 88924076.83229998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000240", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000240", + "period": 2025, + "raw_value": 159353973.01559997, + "value": 159353973.01559997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000241", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000241", + "period": 2025, + "raw_value": 110078150.397, + "value": 110078150.397, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000242", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000242", + "period": 2025, + "raw_value": 163143549.60119998, + "value": 163143549.60119998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000243", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000243", + "period": 2025, + "raw_value": 69980502.8671, + "value": 69980502.8671, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000244", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000244", + "period": 2025, + "raw_value": 226694674.284, + "value": 226694674.284, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E07000245", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E07000245", + "period": 2025, + "raw_value": 145044054.46629998, + "value": 145044054.46629998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000001", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000001", + "period": 2025, + "raw_value": 200612072.67079997, + "value": 200612072.67079997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000002", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000002", + "period": 2025, + "raw_value": 151795814.6185, + "value": 151795814.6185, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000003", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000003", + "period": 2025, + "raw_value": 329432337.26280004, + "value": 329432337.26280004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000004", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000004", + "period": 2025, + "raw_value": 159794278.8741, + "value": 159794278.8741, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000005", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000005", + "period": 2025, + "raw_value": 159790833.872, + "value": 159790833.872, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000006", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000006", + "period": 2025, + "raw_value": 217839621.46499997, + "value": 217839621.46499997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000007", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000007", + "period": 2025, + "raw_value": 262258400.663, + "value": 262258400.663, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000008", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000008", + "period": 2025, + "raw_value": 163602522.5507, + "value": 163602522.5507, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000009", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000009", + "period": 2025, + "raw_value": 190331322.582, + "value": 190331322.582, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000010", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000010", + "period": 2025, + "raw_value": 214035504.5928, + "value": 214035504.5928, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000011", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000011", + "period": 2025, + "raw_value": 102122010.025, + "value": 102122010.025, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000012", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000012", + "period": 2025, + "raw_value": 341610797.0288, + "value": 341610797.0288, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000013", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000013", + "period": 2025, + "raw_value": 135803491.6098, + "value": 135803491.6098, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000014", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000014", + "period": 2025, + "raw_value": 236006001.5674, + "value": 236006001.5674, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000015", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000015", + "period": 2025, + "raw_value": 252960384.5652, + "value": 252960384.5652, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000016", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000016", + "period": 2025, + "raw_value": 164690528.184, + "value": 164690528.184, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000017", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000017", + "period": 2025, + "raw_value": 193081752.63, + "value": 193081752.63, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000018", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000018", + "period": 2025, + "raw_value": 180542241.30550003, + "value": 180542241.30550003, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000019", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000019", + "period": 2025, + "raw_value": 393731372.7144, + "value": 393731372.7144, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000021", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000021", + "period": 2025, + "raw_value": 202683393.8353, + "value": 202683393.8353, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000022", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000022", + "period": 2025, + "raw_value": 161795549.77019998, + "value": 161795549.77019998, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000023", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000023", + "period": 2025, + "raw_value": 97994108.9063, + "value": 97994108.9063, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000024", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000024", + "period": 2025, + "raw_value": 174110755.3878, + "value": 174110755.3878, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000025", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000025", + "period": 2025, + "raw_value": 667795638.413, + "value": 667795638.413, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000026", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000026", + "period": 2025, + "raw_value": 240351793.43999997, + "value": 240351793.43999997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000027", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000027", + "period": 2025, + "raw_value": 214959553.9248, + "value": 214959553.9248, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000028", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000028", + "period": 2025, + "raw_value": 186768586.649, + "value": 186768586.649, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000029", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000029", + "period": 2025, + "raw_value": 178805570.0886, + "value": 178805570.0886, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000030", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000030", + "period": 2025, + "raw_value": 201080913.026, + "value": 201080913.026, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000031", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000031", + "period": 2025, + "raw_value": 176264505.8892, + "value": 176264505.8892, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000032", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000032", + "period": 2025, + "raw_value": 360921787.7391, + "value": 360921787.7391, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000033", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000033", + "period": 2025, + "raw_value": 159935951.571, + "value": 159935951.571, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000034", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000034", + "period": 2025, + "raw_value": 322588621.035, + "value": 322588621.035, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000035", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000035", + "period": 2025, + "raw_value": 573341150.031, + "value": 573341150.031, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000036", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000036", + "period": 2025, + "raw_value": 246450485.8683, + "value": 246450485.8683, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E08000037", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E08000037", + "period": 2025, + "raw_value": 151587307.6041, + "value": 151587307.6041, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000001", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000001", + "period": 2025, + "raw_value": 15244455.7524, + "value": 15244455.7524, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000002", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000002", + "period": 2025, + "raw_value": 129472518.3653, + "value": 129472518.3653, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000003", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000003", + "period": 2025, + "raw_value": 339539499.162, + "value": 339539499.162, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000004", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000004", + "period": 2025, + "raw_value": 206446665.3644, + "value": 206446665.3644, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000005", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000005", + "period": 2025, + "raw_value": 251602952.3661, + "value": 251602952.3661, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000006", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000006", + "period": 2025, + "raw_value": 304871061.41800004, + "value": 304871061.41800004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000007", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000007", + "period": 2025, + "raw_value": 220511198.178, + "value": 220511198.178, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000008", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000008", + "period": 2025, + "raw_value": 368973637.3935, + "value": 368973637.3935, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000009", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000009", + "period": 2025, + "raw_value": 274136385.72010005, + "value": 274136385.72010005, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000010", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000010", + "period": 2025, + "raw_value": 250144478.0601, + "value": 250144478.0601, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000011", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000011", + "period": 2025, + "raw_value": 204263058.6012, + "value": 204263058.6012, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000012", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000012", + "period": 2025, + "raw_value": 174558361.219, + "value": 174558361.219, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000013", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000013", + "period": 2025, + "raw_value": 141718057.4413, + "value": 141718057.4413, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000014", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000014", + "period": 2025, + "raw_value": 202145101.8972, + "value": 202145101.8972, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000015", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000015", + "period": 2025, + "raw_value": 232407940.58450004, + "value": 232407940.58450004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000016", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000016", + "period": 2025, + "raw_value": 228206356.3206, + "value": 228206356.3206, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000017", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000017", + "period": 2025, + "raw_value": 217533341.451, + "value": 217533341.451, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000018", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000018", + "period": 2025, + "raw_value": 208959599.4408, + "value": 208959599.4408, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000019", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000019", + "period": 2025, + "raw_value": 181931110.361, + "value": 181931110.361, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000020", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000020", + "period": 2025, + "raw_value": 171780148.848, + "value": 171780148.848, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000021", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000021", + "period": 2025, + "raw_value": 178293341.644, + "value": 178293341.644, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000022", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000022", + "period": 2025, + "raw_value": 245763600.6423, + "value": 245763600.6423, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000023", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000023", + "period": 2025, + "raw_value": 218508185.6243, + "value": 218508185.6243, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000024", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000024", + "period": 2025, + "raw_value": 175588523.8184, + "value": 175588523.8184, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000025", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000025", + "period": 2025, + "raw_value": 188163726.4957, + "value": 188163726.4957, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000026", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000026", + "period": 2025, + "raw_value": 220890933.1662, + "value": 220890933.1662, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000027", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000027", + "period": 2025, + "raw_value": 227971988.904, + "value": 227971988.904, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000028", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000028", + "period": 2025, + "raw_value": 227093195.8654, + "value": 227093195.8654, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000029", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000029", + "period": 2025, + "raw_value": 183237343.08, + "value": 183237343.08, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000030", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000030", + "period": 2025, + "raw_value": 222040965.5338, + "value": 222040965.5338, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000031", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000031", + "period": 2025, + "raw_value": 201084766.7584, + "value": 201084766.7584, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000032", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000032", + "period": 2025, + "raw_value": 156911704.16070002, + "value": 156911704.16070002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@E09000033", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "E09000033", + "period": 2025, + "raw_value": 170747374.67849997, + "value": 170747374.67849997, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000001", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000001", + "period": 2025, + "raw_value": 63114620.0, + "value": 63114620.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000002", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000002", + "period": 2025, + "raw_value": 119406313.0, + "value": 119406313.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000003", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000003", + "period": 2025, + "raw_value": 110610412.0, + "value": 110610412.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000004", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000004", + "period": 2025, + "raw_value": 82023146.0, + "value": 82023146.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000005", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000005", + "period": 2025, + "raw_value": 131972547.0, + "value": 131972547.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000006", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000006", + "period": 2025, + "raw_value": 104887499.37199567, + "value": 104887499.37199567, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000008", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000008", + "period": 2025, + "raw_value": 70082599.0, + "value": 70082599.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000009", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000009", + "period": 2025, + "raw_value": 111301517.0, + "value": 111301517.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000010", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000010", + "period": 2025, + "raw_value": 151662184.0, + "value": 151662184.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000011", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000011", + "period": 2025, + "raw_value": 177267464.0, + "value": 177267464.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000012", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000012", + "period": 2025, + "raw_value": 106279092.92000002, + "value": 106279092.92000002, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000013", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000013", + "period": 2025, + "raw_value": 115651162.0, + "value": 115651162.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000014", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000014", + "period": 2025, + "raw_value": 118046914.0, + "value": 118046914.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000015", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000015", + "period": 2025, + "raw_value": 250934240.0, + "value": 250934240.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000016", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000016", + "period": 2025, + "raw_value": 151783228.38, + "value": 151783228.38, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000018", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000018", + "period": 2025, + "raw_value": 105324903.21000004, + "value": 105324903.21000004, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000019", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000019", + "period": 2025, + "raw_value": 45129431.0, + "value": 45129431.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000020", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000020", + "period": 2025, + "raw_value": 60708353.0, + "value": 60708353.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000021", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000021", + "period": 2025, + "raw_value": 98574346.0, + "value": 98574346.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000022", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000022", + "period": 2025, + "raw_value": 107214282.0, + "value": 107214282.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000023", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000023", + "period": 2025, + "raw_value": 129025924.0, + "value": 129025924.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + }, + { + "name": "housing/council_tax_net@W06000024", + "metric": "housing/council_tax_net", + "area_type": "local_authority", + "geography_id": "W06000024", + "period": 2025, + "raw_value": 41504016.0, + "value": 41504016.0, + "adjustment_factor": 1.0, + "boundary_mapped_from_2010": false + } + ] +} 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 new file mode 100644 index 00000000..42fafcfe --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/local_target_reference_membership.json @@ -0,0 +1,243734 @@ +{ + "source_fact_feed": ".codex-work/consumer_facts_uk.jsonl", + "target_period": 2025, + "candidate_count": 18631, + "contract_target_count": 25, + "active_reference_count": 17077, + "status_counts": { + "active": 17077, + "no_fact_at_or_before_period": 314, + "no_fact_for_area": 1239, + "signed_deferral_compile_error": 1 + }, + "areas_by_geography_level": { + "constituency": [ + "E14001063", + "E14001064", + "E14001065", + "E14001066", + "E14001067", + "E14001068", + "E14001069", + "E14001070", + "E14001071", + "E14001072", + "E14001073", + "E14001074", + "E14001075", + "E14001076", + "E14001077", + "E14001078", + "E14001079", + "E14001080", + "E14001081", + "E14001082", + "E14001083", + "E14001084", + "E14001085", + "E14001086", + "E14001087", + "E14001088", + "E14001089", + "E14001090", + "E14001091", + "E14001092", + "E14001093", + "E14001094", + "E14001095", + "E14001096", + "E14001097", + "E14001098", + "E14001099", + "E14001100", + "E14001101", + "E14001102", + "E14001103", + "E14001104", + "E14001105", + "E14001106", + "E14001107", + "E14001108", + "E14001109", + "E14001110", + "E14001111", + "E14001112", + "E14001113", + "E14001114", + "E14001115", + "E14001116", + "E14001117", + "E14001118", + "E14001119", + "E14001120", + "E14001121", + "E14001122", + "E14001123", + "E14001124", + "E14001125", + "E14001126", + "E14001127", + "E14001128", + "E14001129", + "E14001130", + "E14001131", + "E14001132", + "E14001133", + "E14001134", + "E14001135", + "E14001136", + "E14001137", + "E14001138", + "E14001139", + "E14001140", + "E14001141", + "E14001142", + "E14001143", + "E14001144", + "E14001145", + "E14001146", + "E14001147", + "E14001148", + "E14001149", + "E14001150", + "E14001151", + "E14001152", + "E14001153", + "E14001154", + "E14001155", + "E14001156", + "E14001157", + "E14001158", + "E14001159", + "E14001160", + "E14001161", + "E14001162", + "E14001163", + "E14001164", + "E14001165", + "E14001166", + "E14001167", + "E14001168", + "E14001169", + "E14001170", + "E14001171", + "E14001172", + "E14001173", + "E14001174", + "E14001175", + "E14001176", + "E14001177", + "E14001178", + "E14001179", + "E14001180", + "E14001181", + "E14001182", + "E14001183", + "E14001184", + "E14001185", + "E14001186", + "E14001187", + "E14001188", + "E14001189", + "E14001190", + "E14001191", + "E14001192", + "E14001193", + "E14001194", + "E14001195", + "E14001196", + "E14001197", + "E14001198", + "E14001199", + "E14001200", + "E14001201", + "E14001202", + "E14001203", + "E14001204", + "E14001205", + "E14001206", + "E14001207", + "E14001208", + "E14001209", + "E14001210", + "E14001211", + "E14001212", + "E14001213", + "E14001214", + "E14001215", + "E14001216", + "E14001217", + "E14001218", + "E14001219", + "E14001220", + "E14001221", + "E14001222", + "E14001223", + "E14001224", + "E14001225", + "E14001226", + "E14001227", + "E14001228", + "E14001229", + "E14001230", + "E14001231", + "E14001232", + "E14001233", + "E14001234", + "E14001235", + "E14001236", + "E14001237", + "E14001238", + "E14001239", + "E14001240", + "E14001241", + "E14001242", + "E14001243", + "E14001244", + "E14001245", + "E14001246", + "E14001247", + "E14001248", + "E14001249", + "E14001250", + "E14001251", + "E14001252", + "E14001253", + "E14001254", + "E14001255", + "E14001256", + "E14001257", + "E14001258", + "E14001259", + "E14001260", + "E14001261", + "E14001262", + "E14001263", + "E14001264", + "E14001265", + "E14001266", + "E14001267", + "E14001268", + "E14001269", + "E14001270", + "E14001271", + "E14001272", + "E14001273", + "E14001274", + "E14001275", + "E14001276", + "E14001277", + "E14001278", + "E14001279", + "E14001280", + "E14001281", + "E14001282", + "E14001283", + "E14001284", + "E14001285", + "E14001286", + "E14001287", + "E14001288", + "E14001289", + "E14001290", + "E14001291", + "E14001292", + "E14001293", + "E14001294", + "E14001295", + "E14001296", + "E14001297", + "E14001298", + "E14001299", + "E14001300", + "E14001301", + "E14001302", + "E14001303", + "E14001304", + "E14001305", + "E14001306", + "E14001307", + "E14001308", + "E14001309", + "E14001310", + "E14001311", + "E14001312", + "E14001313", + "E14001314", + "E14001315", + "E14001316", + "E14001317", + "E14001318", + "E14001319", + "E14001320", + "E14001321", + "E14001322", + "E14001323", + "E14001324", + "E14001325", + "E14001326", + "E14001327", + "E14001328", + "E14001329", + "E14001330", + "E14001331", + "E14001332", + "E14001333", + "E14001334", + "E14001335", + "E14001336", + "E14001337", + "E14001338", + "E14001339", + "E14001340", + "E14001341", + "E14001342", + "E14001343", + "E14001344", + "E14001345", + "E14001346", + "E14001347", + "E14001348", + "E14001349", + "E14001350", + "E14001351", + "E14001352", + "E14001353", + "E14001354", + "E14001355", + "E14001356", + "E14001357", + "E14001358", + "E14001359", + "E14001360", + "E14001361", + "E14001362", + "E14001363", + "E14001364", + "E14001365", + "E14001366", + "E14001367", + "E14001368", + "E14001369", + "E14001370", + "E14001371", + "E14001372", + "E14001373", + "E14001374", + "E14001375", + "E14001376", + "E14001377", + "E14001378", + "E14001379", + "E14001380", + "E14001381", + "E14001382", + "E14001383", + "E14001384", + "E14001385", + "E14001386", + "E14001387", + "E14001388", + "E14001389", + "E14001390", + "E14001391", + "E14001392", + "E14001393", + "E14001394", + "E14001395", + "E14001396", + "E14001397", + "E14001398", + "E14001399", + "E14001400", + "E14001401", + "E14001402", + "E14001403", + "E14001404", + "E14001405", + "E14001406", + "E14001407", + "E14001408", + "E14001409", + "E14001410", + "E14001411", + "E14001412", + "E14001413", + "E14001414", + "E14001415", + "E14001416", + "E14001417", + "E14001418", + "E14001419", + "E14001420", + "E14001421", + "E14001422", + "E14001423", + "E14001424", + "E14001425", + "E14001426", + "E14001427", + "E14001428", + "E14001429", + "E14001430", + "E14001431", + "E14001432", + "E14001433", + "E14001434", + "E14001435", + "E14001436", + "E14001437", + "E14001438", + "E14001439", + "E14001440", + "E14001441", + "E14001442", + "E14001443", + "E14001444", + "E14001445", + "E14001446", + "E14001447", + "E14001448", + "E14001449", + "E14001450", + "E14001451", + "E14001452", + "E14001453", + "E14001454", + "E14001455", + "E14001456", + "E14001457", + "E14001458", + "E14001459", + "E14001460", + "E14001461", + "E14001462", + "E14001463", + "E14001464", + "E14001465", + "E14001466", + "E14001467", + "E14001468", + "E14001469", + "E14001470", + "E14001471", + "E14001472", + "E14001473", + "E14001474", + "E14001475", + "E14001476", + "E14001477", + "E14001478", + "E14001479", + "E14001480", + "E14001481", + "E14001482", + "E14001483", + "E14001484", + "E14001485", + "E14001486", + "E14001487", + "E14001488", + "E14001489", + "E14001490", + "E14001491", + "E14001492", + "E14001493", + "E14001494", + "E14001495", + "E14001496", + "E14001497", + "E14001498", + "E14001499", + "E14001500", + "E14001501", + "E14001502", + "E14001503", + "E14001504", + "E14001505", + "E14001506", + "E14001507", + "E14001508", + "E14001509", + "E14001510", + "E14001511", + "E14001512", + "E14001513", + "E14001514", + "E14001515", + "E14001516", + "E14001517", + "E14001518", + "E14001519", + "E14001520", + "E14001521", + "E14001522", + "E14001523", + "E14001524", + "E14001525", + "E14001526", + "E14001527", + "E14001528", + "E14001529", + "E14001530", + "E14001531", + "E14001532", + "E14001533", + "E14001534", + "E14001535", + "E14001536", + "E14001537", + "E14001538", + "E14001539", + "E14001540", + "E14001541", + "E14001542", + "E14001543", + "E14001544", + "E14001545", + "E14001546", + "E14001547", + "E14001548", + "E14001549", + "E14001550", + "E14001551", + "E14001552", + "E14001553", + "E14001554", + "E14001555", + "E14001556", + "E14001557", + "E14001558", + "E14001559", + "E14001560", + "E14001561", + "E14001562", + "E14001563", + "E14001564", + "E14001565", + "E14001566", + "E14001567", + "E14001568", + "E14001569", + "E14001570", + "E14001571", + "E14001572", + "E14001573", + "E14001574", + "E14001575", + "E14001576", + "E14001577", + "E14001578", + "E14001579", + "E14001580", + "E14001581", + "E14001582", + "E14001583", + "E14001584", + "E14001585", + "E14001586", + "E14001587", + "E14001588", + "E14001589", + "E14001590", + "E14001591", + "E14001592", + "E14001593", + "E14001594", + "E14001595", + "E14001596", + "E14001597", + "E14001598", + "E14001599", + "E14001600", + "E14001601", + "E14001602", + "E14001603", + "E14001604", + "E14001605", + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018", + "S14000021", + "S14000027", + "S14000045", + "S14000048", + "S14000051", + "S14000060", + "S14000061", + "S14000062", + "S14000063", + "S14000064", + "S14000065", + "S14000066", + "S14000067", + "S14000068", + "S14000069", + "S14000070", + "S14000071", + "S14000072", + "S14000073", + "S14000074", + "S14000075", + "S14000076", + "S14000077", + "S14000078", + "S14000079", + "S14000080", + "S14000081", + "S14000082", + "S14000083", + "S14000084", + "S14000085", + "S14000086", + "S14000087", + "S14000088", + "S14000089", + "S14000090", + "S14000091", + "S14000092", + "S14000093", + "S14000094", + "S14000095", + "S14000096", + "S14000097", + "S14000098", + "S14000099", + "S14000100", + "S14000101", + "S14000102", + "S14000103", + "S14000104", + "S14000105", + "S14000106", + "S14000107", + "S14000108", + "S14000109", + "S14000110", + "S14000111", + "W07000081", + "W07000082", + "W07000083", + "W07000084", + "W07000085", + "W07000086", + "W07000087", + "W07000088", + "W07000089", + "W07000090", + "W07000091", + "W07000092", + "W07000093", + "W07000094", + "W07000095", + "W07000096", + "W07000097", + "W07000098", + "W07000099", + "W07000100", + "W07000101", + "W07000102", + "W07000103", + "W07000104", + "W07000105", + "W07000106", + "W07000107", + "W07000108", + "W07000109", + "W07000110", + "W07000111", + "W07000112" + ], + "local_authority": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000053", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000016", + "E08000017", + "E08000018", + "E08000019", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000001", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011", + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + }, + "signed_deferrals": [ + { + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "reason_id": "uc_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts.", + "area_ids": [ + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018" + ] + }, + { + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "reason_id": "uc_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts.", + "area_ids": [ + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011" + ] + }, + { + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "reason_id": "uc_children_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts.", + "area_ids": [ + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018" + ] + }, + { + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "reason_id": "uc_children_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts.", + "area_ids": [ + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018" + ] + }, + { + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "reason_id": "uc_children_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts.", + "area_ids": [ + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018" + ] + }, + { + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "reason_id": "uc_children_gb_only_ni_absent", + "rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts.", + "area_ids": [ + "N05000001", + "N05000002", + "N05000003", + "N05000004", + "N05000005", + "N05000006", + "N05000007", + "N05000008", + "N05000009", + "N05000010", + "N05000011", + "N05000012", + "N05000013", + "N05000014", + "N05000015", + "N05000016", + "N05000017", + "N05000018" + ] + }, + { + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "reason_id": "spi_la_target_measure_coverage_absent", + "rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows.", + "area_ids": [ + "E06000027", + "E06000053" + ] + }, + { + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "reason_id": "spi_la_target_measure_coverage_absent", + "rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows.", + "area_ids": [ + "E06000027", + "E06000053" + ] + }, + { + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "reason_id": "spi_la_target_measure_coverage_absent", + "rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows.", + "area_ids": [ + "E06000027", + "E06000053" + ] + }, + { + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "reason_id": "spi_la_target_measure_coverage_absent", + "rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows.", + "area_ids": [ + "E06000027", + "E06000053" + ] + }, + { + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "reason_id": "spi_pcon_self_employment_mean_absent", + "rationale": "HMRC SPI constituency facts in the pinned feed publish self_employment_income_count for 650/650 constituencies but self_employment_income_mean for 649/650; E14001416 has the count fact but no mean fact, so count_x_mean cannot form the amount.", + "area_ids": [ + "E14001416" + ] + }, + { + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "reason_id": "msoa_mean_to_la_deferred", + "rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design.", + "area_ids": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000053", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000016", + "E08000017", + "E08000018", + "E08000019", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000001", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011", + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + }, + { + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "reason_id": "msoa_mean_to_la_deferred", + "rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design.", + "area_ids": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000053", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000016", + "E08000017", + "E08000018", + "E08000019", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000001", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011", + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + }, + { + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "reason_id": "msoa_mean_to_la_deferred", + "rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design.", + "area_ids": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000053", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000016", + "E08000017", + "E08000018", + "E08000019", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000001", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011", + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + }, + { + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "reason_id": "private_rent_pipr_after_target_period", + "rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run.", + "area_ids": [ + "E06000001", + "E06000002", + "E06000003", + "E06000004", + "E06000005", + "E06000006", + "E06000007", + "E06000008", + "E06000009", + "E06000010", + "E06000011", + "E06000012", + "E06000013", + "E06000014", + "E06000015", + "E06000016", + "E06000017", + "E06000018", + "E06000019", + "E06000020", + "E06000021", + "E06000022", + "E06000023", + "E06000024", + "E06000025", + "E06000026", + "E06000027", + "E06000030", + "E06000031", + "E06000032", + "E06000033", + "E06000034", + "E06000035", + "E06000036", + "E06000037", + "E06000038", + "E06000039", + "E06000040", + "E06000041", + "E06000042", + "E06000043", + "E06000044", + "E06000045", + "E06000046", + "E06000047", + "E06000049", + "E06000050", + "E06000051", + "E06000052", + "E06000054", + "E06000055", + "E06000056", + "E06000057", + "E06000058", + "E06000059", + "E06000060", + "E06000061", + "E06000062", + "E06000063", + "E06000064", + "E06000065", + "E06000066", + "E07000008", + "E07000009", + "E07000010", + "E07000011", + "E07000012", + "E07000032", + "E07000033", + "E07000034", + "E07000035", + "E07000036", + "E07000037", + "E07000038", + "E07000039", + "E07000040", + "E07000041", + "E07000042", + "E07000043", + "E07000044", + "E07000045", + "E07000046", + "E07000047", + "E07000061", + "E07000062", + "E07000063", + "E07000064", + "E07000065", + "E07000066", + "E07000067", + "E07000068", + "E07000069", + "E07000070", + "E07000071", + "E07000072", + "E07000073", + "E07000074", + "E07000075", + "E07000076", + "E07000077", + "E07000078", + "E07000079", + "E07000080", + "E07000081", + "E07000082", + "E07000083", + "E07000084", + "E07000085", + "E07000086", + "E07000087", + "E07000088", + "E07000089", + "E07000090", + "E07000091", + "E07000092", + "E07000093", + "E07000094", + "E07000095", + "E07000096", + "E07000098", + "E07000099", + "E07000102", + "E07000103", + "E07000105", + "E07000106", + "E07000107", + "E07000108", + "E07000109", + "E07000110", + "E07000111", + "E07000112", + "E07000113", + "E07000114", + "E07000115", + "E07000116", + "E07000117", + "E07000118", + "E07000119", + "E07000120", + "E07000121", + "E07000122", + "E07000123", + "E07000124", + "E07000125", + "E07000126", + "E07000127", + "E07000128", + "E07000129", + "E07000130", + "E07000131", + "E07000132", + "E07000133", + "E07000134", + "E07000135", + "E07000136", + "E07000137", + "E07000138", + "E07000139", + "E07000140", + "E07000141", + "E07000142", + "E07000143", + "E07000144", + "E07000145", + "E07000146", + "E07000147", + "E07000148", + "E07000149", + "E07000170", + "E07000171", + "E07000172", + "E07000173", + "E07000174", + "E07000175", + "E07000176", + "E07000177", + "E07000178", + "E07000179", + "E07000180", + "E07000181", + "E07000192", + "E07000193", + "E07000194", + "E07000195", + "E07000196", + "E07000197", + "E07000198", + "E07000199", + "E07000200", + "E07000202", + "E07000203", + "E07000207", + "E07000208", + "E07000209", + "E07000210", + "E07000211", + "E07000212", + "E07000213", + "E07000214", + "E07000215", + "E07000216", + "E07000217", + "E07000218", + "E07000219", + "E07000220", + "E07000221", + "E07000222", + "E07000223", + "E07000224", + "E07000225", + "E07000226", + "E07000227", + "E07000228", + "E07000229", + "E07000234", + "E07000235", + "E07000236", + "E07000237", + "E07000238", + "E07000239", + "E07000240", + "E07000241", + "E07000242", + "E07000243", + "E07000244", + "E07000245", + "E08000001", + "E08000002", + "E08000003", + "E08000004", + "E08000005", + "E08000006", + "E08000007", + "E08000008", + "E08000009", + "E08000010", + "E08000011", + "E08000012", + "E08000013", + "E08000014", + "E08000015", + "E08000017", + "E08000018", + "E08000021", + "E08000022", + "E08000023", + "E08000024", + "E08000025", + "E08000026", + "E08000027", + "E08000028", + "E08000029", + "E08000030", + "E08000031", + "E08000032", + "E08000033", + "E08000034", + "E08000035", + "E08000036", + "E08000037", + "E09000002", + "E09000003", + "E09000004", + "E09000005", + "E09000006", + "E09000007", + "E09000008", + "E09000009", + "E09000010", + "E09000011", + "E09000012", + "E09000013", + "E09000014", + "E09000015", + "E09000016", + "E09000017", + "E09000018", + "E09000019", + "E09000020", + "E09000021", + "E09000022", + "E09000023", + "E09000024", + "E09000025", + "E09000026", + "E09000027", + "E09000028", + "E09000029", + "E09000030", + "E09000031", + "E09000032", + "E09000033", + "W06000001", + "W06000002", + "W06000003", + "W06000004", + "W06000005", + "W06000006", + "W06000008", + "W06000009", + "W06000010", + "W06000011", + "W06000012", + "W06000013", + "W06000014", + "W06000015", + "W06000016", + "W06000018", + "W06000019", + "W06000020", + "W06000021", + "W06000022", + "W06000023", + "W06000024" + ] + }, + { + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "reason_id": "private_rent_pipr_english_lad_absent", + "rationale": "ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001.", + "area_ids": [ + "E06000053", + "E08000016", + "E08000019", + "E09000001" + ] + }, + { + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "reason_id": "private_rent_pipr_scotland_brma_grain", + "rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain.", + "area_ids": [ + "S12000005", + "S12000006", + "S12000008", + "S12000010", + "S12000011", + "S12000013", + "S12000014", + "S12000017", + "S12000018", + "S12000019", + "S12000020", + "S12000021", + "S12000023", + "S12000026", + "S12000027", + "S12000028", + "S12000029", + "S12000030", + "S12000033", + "S12000034", + "S12000035", + "S12000036", + "S12000038", + "S12000039", + "S12000040", + "S12000041", + "S12000042", + "S12000045", + "S12000047", + "S12000048", + "S12000049", + "S12000050" + ] + }, + { + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "reason_id": "private_rent_pipr_ni_absent", + "rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows.", + "area_ids": [ + "N09000001", + "N09000002", + "N09000003", + "N09000004", + "N09000005", + "N09000006", + "N09000007", + "N09000008", + "N09000009", + "N09000010", + "N09000011" + ] + } + ], + "targets": { + "hmrc.self_employment_income.amount": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "hmrc.self_employment_income.amount@E14001063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e45846311978ebb5369a89e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e24babb050ec05c3d6e4712" + }, + { + "name": "hmrc.self_employment_income.amount@E14001065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 248400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcdcb3bdc53da882c9025f3b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_feac8dc2c8d0050d1a2fb23f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 293400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fb7a88d5516c3f86e7b9946" + }, + { + "name": "hmrc.self_employment_income.amount@E14001068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16470b555b723a9a63f569e5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e30bdd5f435bd29a70adceb0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9de9f7d08ae27458bfdd0f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9efb206f67fbe74524eb37a6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 230300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27b0e3c2ef00752e99305f0c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 256800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb0325fb3de91eb04fac7fdf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c03335a64952261f576c3002" + }, + { + "name": "hmrc.self_employment_income.amount@E14001075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_432e687f2ce002c38602e065" + }, + { + "name": "hmrc.self_employment_income.amount@E14001076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1472d842a64eeb4a4dbeee6f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a1c16dd021bb0dbb6e61377" + }, + { + "name": "hmrc.self_employment_income.amount@E14001078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_060dc91bee991c5ee91d03a7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_11f00b8d6acc84666fe17417" + }, + { + "name": "hmrc.self_employment_income.amount@E14001080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 204600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f7fa62e314087e4cda8c14" + }, + { + "name": "hmrc.self_employment_income.amount@E14001081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 748800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce170488cd85495896c9e74" + }, + { + "name": "hmrc.self_employment_income.amount@E14001082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 263400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ebc8cc6eaa4c6b1468d901a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 249200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b57d4e1d0d4148a121141249" + }, + { + "name": "hmrc.self_employment_income.amount@E14001084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 151000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_810704f2f8d7c982a67029dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 281400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ad35309c964e6eb0c015dd4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 214200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af2c532f34a5964d298a03c7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30af1e637401fc9dd0a6b3e8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b1fa0fa0ed78b8fafb752b0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a7f9d10feb2b78a2919936" + }, + { + "name": "hmrc.self_employment_income.amount@E14001090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 186900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_196c5e3109ce816de488d9c3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c6f6574184843f995a1d6eb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 170800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e7c0b0f4f93794d81ae904d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_746444a8d1eca670fb677e59" + }, + { + "name": "hmrc.self_employment_income.amount@E14001094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27d91682765532aafaa7843" + }, + { + "name": "hmrc.self_employment_income.amount@E14001095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48bd1064ba421356bc65c5b3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6604c0a88f52f7bb82809cc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f2a4c43ffd7ab36a1adcf11" + }, + { + "name": "hmrc.self_employment_income.amount@E14001098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccc040b7d0f3a31810b4545e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6874be13de581c263483b50" + }, + { + "name": "hmrc.self_employment_income.amount@E14001100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c4d5fe1745b4801e93def61" + }, + { + "name": "hmrc.self_employment_income.amount@E14001101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6978494cd315dc3befbb1de" + }, + { + "name": "hmrc.self_employment_income.amount@E14001102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dd937304fb3de392f445f33" + }, + { + "name": "hmrc.self_employment_income.amount@E14001103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24ace194d7c67a9ba1fe5b42" + }, + { + "name": "hmrc.self_employment_income.amount@E14001104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a846567e83b7e92b45cd3294" + }, + { + "name": "hmrc.self_employment_income.amount@E14001105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a2abbdb24b7d72117cd568" + }, + { + "name": "hmrc.self_employment_income.amount@E14001106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_11244dfd7393b25509480661" + }, + { + "name": "hmrc.self_employment_income.amount@E14001107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a049b450003520373a3bc902" + }, + { + "name": "hmrc.self_employment_income.amount@E14001108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb3b71a4f0a9cdf4d947dc9f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e62a9efa6edb5fdd16dbb773" + }, + { + "name": "hmrc.self_employment_income.amount@E14001110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d8cf168ff1a4a06349e503e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c67139d360f7bf907bb8bdd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 110800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77040e65251d4ea6817008b3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001113", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b70d4098757e1d8052e9958c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001114", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ec608b9a0d1213e45a7b4fe" + }, + { + "name": "hmrc.self_employment_income.amount@E14001115", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a75f61bc4d2a8b25e7c3135b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001116", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be2e14508bc0b399cfcd8ed6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001117", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8719e26e653e4a494e853b7c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001118", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39abca0cd64b42a58f086e5e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001119", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fd7f6f6e456c56d1fb5562b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001120", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb8c3619b0481e9524ef7e08" + }, + { + "name": "hmrc.self_employment_income.amount@E14001121", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 186200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05e863645fad000400dc0082" + }, + { + "name": "hmrc.self_employment_income.amount@E14001122", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 312400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04857eee5bab31b68115aa98" + }, + { + "name": "hmrc.self_employment_income.amount@E14001123", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 243100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f51d6210b0eb24977ba92523" + }, + { + "name": "hmrc.self_employment_income.amount@E14001124", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 216000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_772ec895db0081b2b08d8515" + }, + { + "name": "hmrc.self_employment_income.amount@E14001125", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 260400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d71388f43818478095bf278" + }, + { + "name": "hmrc.self_employment_income.amount@E14001126", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dae9771a8567e74ae49687a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001127", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7907f8b4bb83cb9d951a4e9a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001128", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_acb030e6902103bb69d74ad3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001129", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e62cb730acf3b40236c984f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001130", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 204800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b532b2b734cfda9e3453482e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001131", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f86e4ef11935f71aee3be462" + }, + { + "name": "hmrc.self_employment_income.amount@E14001132", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2deaa66ca9f26ecd233bf8b2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001133", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8016f885fef6378d6104e0f4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001134", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44bb206e340244577d68a361" + }, + { + "name": "hmrc.self_employment_income.amount@E14001135", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b7437528956d67619cb9e64" + }, + { + "name": "hmrc.self_employment_income.amount@E14001136", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63ff1c38db2a088a293a2347" + }, + { + "name": "hmrc.self_employment_income.amount@E14001137", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 267400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cec4e4f1551d1ca086fd5fa" + }, + { + "name": "hmrc.self_employment_income.amount@E14001138", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 210000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b8f7f543748eb51e4b00dae" + }, + { + "name": "hmrc.self_employment_income.amount@E14001139", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 179200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5b2cbb239565fe20152003f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001140", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 81600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc1abd96cc8493d051c04994" + }, + { + "name": "hmrc.self_employment_income.amount@E14001141", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_350954fba39f939beacd5481" + }, + { + "name": "hmrc.self_employment_income.amount@E14001142", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9a6b1e78d2ba2282036519f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001143", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1590c48ffc6db8a2e4c926d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001144", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3981a359183cd245c450b0f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001145", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50dfb73ed6bb52ade4b43baa" + }, + { + "name": "hmrc.self_employment_income.amount@E14001146", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 157500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58414f259f27059b9c73fb23" + }, + { + "name": "hmrc.self_employment_income.amount@E14001147", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0a3d6a031888da5efa55ff1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001148", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 149800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e9ced4747d1ec2ae5ce788b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001149", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 226100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08e9b80c4766345af0ca2f74" + }, + { + "name": "hmrc.self_employment_income.amount@E14001150", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e55d6d11f26db84f5e92892" + }, + { + "name": "hmrc.self_employment_income.amount@E14001151", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 159600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa75d5eb988ec84341b07007" + }, + { + "name": "hmrc.self_employment_income.amount@E14001152", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a5950f1a1ae157aa1cbc06" + }, + { + "name": "hmrc.self_employment_income.amount@E14001153", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f99d24f7b1fb65141a15f76" + }, + { + "name": "hmrc.self_employment_income.amount@E14001154", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd01d9bb6cd9392d670044dd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001155", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 181600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb4ce1867b429dbda3d62792" + }, + { + "name": "hmrc.self_employment_income.amount@E14001156", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2aa7660a14fac5386dfcf9c2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001157", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 161700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c08ba94bf5869c07723e7cd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001158", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 170400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_405cbde66405f7bfa89d4055" + }, + { + "name": "hmrc.self_employment_income.amount@E14001159", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 159600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcbe6c29ba4e3bb5473c0882" + }, + { + "name": "hmrc.self_employment_income.amount@E14001160", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1368000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bd81d148753b313d116ec38" + }, + { + "name": "hmrc.self_employment_income.amount@E14001161", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1af0e4563f21d6840c9f6e12" + }, + { + "name": "hmrc.self_employment_income.amount@E14001162", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 434000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03ec61eea94b604ab86b458e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001163", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3730f40d65be9684c1b61f6f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001164", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 187200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f23a34757d8482183696905" + }, + { + "name": "hmrc.self_employment_income.amount@E14001165", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69f672fc2052ee12813183df" + }, + { + "name": "hmrc.self_employment_income.amount@E14001166", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b81ec823ef65aadce7e24d3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001167", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 254000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62660a512fc73cc37bbae225" + }, + { + "name": "hmrc.self_employment_income.amount@E14001168", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77bc492ca3d957919a8c20b3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001169", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 368100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24052aea6731884a5a0bf8b4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001170", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3f8ce4bd798e5221f4424dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001171", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 119000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1004adb9f5413b445f736fa" + }, + { + "name": "hmrc.self_employment_income.amount@E14001172", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2530000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23acc2c989b366b120c007b6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001173", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_13be53cb07ee40a5a0cee0d1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001174", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 90500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b5f0e5d4b3fedb13aea5534" + }, + { + "name": "hmrc.self_employment_income.amount@E14001175", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 372400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc035240cc4d6f689cd6be93" + }, + { + "name": "hmrc.self_employment_income.amount@E14001176", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 140400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b847e1ea04845c84b7c0b945" + }, + { + "name": "hmrc.self_employment_income.amount@E14001177", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 111500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e01dd3eb8a223e7a7fa1726" + }, + { + "name": "hmrc.self_employment_income.amount@E14001178", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7856bc894dfde5abdf29b32" + }, + { + "name": "hmrc.self_employment_income.amount@E14001179", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09350b504ec146cdfd295a9d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001180", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7456f1d2fed1b515acd4d2a5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001181", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3791960320a24c2b76cfc96" + }, + { + "name": "hmrc.self_employment_income.amount@E14001182", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6080fd1c377a8db78d096136" + }, + { + "name": "hmrc.self_employment_income.amount@E14001183", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccfeba36dfdf00fb1bc28837" + }, + { + "name": "hmrc.self_employment_income.amount@E14001184", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_433c596e012bab34c2211a6f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001185", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a59675e81af03a7dde5a650" + }, + { + "name": "hmrc.self_employment_income.amount@E14001186", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76b16fc4c640f7dfb96f8142" + }, + { + "name": "hmrc.self_employment_income.amount@E14001187", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 183600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3f974f188be2865b3339dd2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001188", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 137900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb59cd17e39450c0c8a1ca24" + }, + { + "name": "hmrc.self_employment_income.amount@E14001189", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 214000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71bc9f69c81c69fda40b42cb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001190", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e299868acd95a1428a914a81" + }, + { + "name": "hmrc.self_employment_income.amount@E14001191", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 162400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8e56e72a458bb1ee93b243c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001192", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 226400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_724355874866fa0702aaafa7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001193", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de19f4a2a7eb6ea00efea4fa" + }, + { + "name": "hmrc.self_employment_income.amount@E14001194", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ea152f3ef058c9bf557659b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001195", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_232ee80e96cf2dda4987701b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001196", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3712d02a55468e14cd536daa" + }, + { + "name": "hmrc.self_employment_income.amount@E14001197", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 182400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d8219ad34ea34ab0b2668d0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001198", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 93500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9dba30e36da63b107dcde7c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001199", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80087401fc1d0f642f30becb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001200", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bca5f4570fcedd2a5540f6ec" + }, + { + "name": "hmrc.self_employment_income.amount@E14001201", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 204400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3e956ab2e633b99dab741c0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001202", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 115200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d15b2090bf739c54560c49c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001203", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88f47757839685d193903f5a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001204", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0053060f653c0f710cc15579" + }, + { + "name": "hmrc.self_employment_income.amount@E14001205", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 588600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf0c18050fd9f7640609e883" + }, + { + "name": "hmrc.self_employment_income.amount@E14001206", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef4f65de6b086f5acff6d976" + }, + { + "name": "hmrc.self_employment_income.amount@E14001207", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 497200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_894027e4a78aad0330fe85ed" + }, + { + "name": "hmrc.self_employment_income.amount@E14001208", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 250800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff4fd3715fe33136fcd65868" + }, + { + "name": "hmrc.self_employment_income.amount@E14001209", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 224000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38bdea6b07ed8827b5715185" + }, + { + "name": "hmrc.self_employment_income.amount@E14001210", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 112000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d957da0ac65dc181423266f9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001211", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_519a03c174d137f8ffb0ca8f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001212", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 218400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af4d4e0c613ffcd025b3ac15" + }, + { + "name": "hmrc.self_employment_income.amount@E14001213", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 194000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b532e6aeb62879db95cc370" + }, + { + "name": "hmrc.self_employment_income.amount@E14001214", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 231000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5829ca68c008cbe134b01009" + }, + { + "name": "hmrc.self_employment_income.amount@E14001215", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 314300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af725dd0b2f69b0a85733f29" + }, + { + "name": "hmrc.self_employment_income.amount@E14001216", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29a195ad3a34515b575c6b9d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001217", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_64401bc1113d94ed9b047fd4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001218", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74e17aec2e0f7e833682c5e9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001219", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9969c4fbae93ba8f0196d569" + }, + { + "name": "hmrc.self_employment_income.amount@E14001220", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 145800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec6c5e15098b0cb7a209bf67" + }, + { + "name": "hmrc.self_employment_income.amount@E14001221", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 212800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_da8dd55424b9336eca0f731c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001222", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd08726b660e59a9bbcc7705" + }, + { + "name": "hmrc.self_employment_income.amount@E14001223", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 218400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0dbec55cc572b346437477d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001224", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 184800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cdeb65a89de03c55f4faf74" + }, + { + "name": "hmrc.self_employment_income.amount@E14001225", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 161700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_837e83d0018f910b2488c9c4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001226", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 288800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_232982952f58776c67f4515f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001227", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 230300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1a3bc99293925f6e336f58e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001228", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5c9ce50d5a94b2e24b3f9c7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001229", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 198900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_069714e0ec65c58e9387ec04" + }, + { + "name": "hmrc.self_employment_income.amount@E14001230", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 532000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52bd67444bad9811060a6c4b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001231", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c43f5bd4f5bc2a2722a3cb1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001232", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5b96fe35a60b4c4aef579dd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001233", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 145200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_313e2b762534d699e4c89eb2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001234", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 290400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d5b67465421c3f3ec9f84a0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001235", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_520fe8632cc10cab6d2bba49" + }, + { + "name": "hmrc.self_employment_income.amount@E14001236", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b8d251e3e40eb19a971d044" + }, + { + "name": "hmrc.self_employment_income.amount@E14001237", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 132000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_150a6be530027c23640d9bc8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001238", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 716400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5b4a2715565cf5abfbf9adc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001239", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e71646cf309e98e9c465069c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001240", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd755688bcb5f80999f90c70" + }, + { + "name": "hmrc.self_employment_income.amount@E14001241", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 167300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a93924cff08456bfdba85e5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001242", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d6163d8683213a6062d6e7a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001243", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33641c5ecc49f23fe73acc81" + }, + { + "name": "hmrc.self_employment_income.amount@E14001244", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_979390fa5e197fbd313e994c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001245", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54ee6cc9a241a593258accec" + }, + { + "name": "hmrc.self_employment_income.amount@E14001246", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57ded03f0e72a9e4954cddef" + }, + { + "name": "hmrc.self_employment_income.amount@E14001247", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d37e6f8dc048c601abaf349" + }, + { + "name": "hmrc.self_employment_income.amount@E14001248", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22252ee7790ad8759f6a22d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001249", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 474400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58d2dc7a1016a3dcc9309718" + }, + { + "name": "hmrc.self_employment_income.amount@E14001250", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 113500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ed54e8d069bf0e047f84865" + }, + { + "name": "hmrc.self_employment_income.amount@E14001251", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37d80de85d93c49b5f932237" + }, + { + "name": "hmrc.self_employment_income.amount@E14001252", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 106000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b11ad9e5cbeb23471822f33f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001253", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 142200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f004c434fc0cbd85c4b321" + }, + { + "name": "hmrc.self_employment_income.amount@E14001254", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_422560f6d89996c41921cd7a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001255", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 50700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ea55253650352401af1f47f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001256", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e4172c65073a427de77bfff" + }, + { + "name": "hmrc.self_employment_income.amount@E14001257", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 364000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e40d32341d2759b044760d26" + }, + { + "name": "hmrc.self_employment_income.amount@E14001258", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 335400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_362586b12c2b7091aecd859c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001259", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 260800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc286bc80f8f25ef927a25e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001260", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 331200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_deeed3bac41d3549e7a7a17e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001261", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_641f2fe5e86f5f02a50ce8ac" + }, + { + "name": "hmrc.self_employment_income.amount@E14001262", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b695ddc8add34a3ff87070d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001263", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceedf487d665b2634c610479" + }, + { + "name": "hmrc.self_employment_income.amount@E14001264", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 742000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bd831b2bb2ea45faef437a1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001265", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2240000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b29c20e822ca6099d3feac94" + }, + { + "name": "hmrc.self_employment_income.amount@E14001266", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 160000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb6fb7f8124e71dcdd608385" + }, + { + "name": "hmrc.self_employment_income.amount@E14001267", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 203700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f06499cb80b39a95498afb0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001268", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 549500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c15525ad4f8af56674987ee8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001269", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 200400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25a6e5bdf807ef3d5e17ca99" + }, + { + "name": "hmrc.self_employment_income.amount@E14001270", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 418500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3638c3ce40d31aa3c5727de4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001271", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 193500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_383ac1ba2924512cb05467cc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001272", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78355b6e9735b3fc07e86838" + }, + { + "name": "hmrc.self_employment_income.amount@E14001273", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 179900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e8a9b1c03ac2a74f765c3f8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001274", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 176800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dade73e9fcad8bda30194a9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001275", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 113000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5026978d32b76e71b0e469f4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001276", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 146300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_303266f2426c7e410b2f56cf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001277", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f5e173ae942462fbb94615" + }, + { + "name": "hmrc.self_employment_income.amount@E14001278", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 188300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db066f602f5487fc05f76387" + }, + { + "name": "hmrc.self_employment_income.amount@E14001279", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 397800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f007019822fe141273bb8ed" + }, + { + "name": "hmrc.self_employment_income.amount@E14001280", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 304500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_974601ff4bd6195205d6df68" + }, + { + "name": "hmrc.self_employment_income.amount@E14001281", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9fbbd9ebb29760fe0070de4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001282", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3371e1e275f74fd92983aa19" + }, + { + "name": "hmrc.self_employment_income.amount@E14001283", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 217700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08baca0d30a39e405f4452f2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001284", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 347400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30820f9c92b5ce4bbaf1affc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001285", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 195300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50963cd2a6e45b7c56a22604" + }, + { + "name": "hmrc.self_employment_income.amount@E14001286", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 96800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f7d70a783e3b0b935d18847" + }, + { + "name": "hmrc.self_employment_income.amount@E14001287", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 134400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1530d32ea3fb7674dec8ae" + }, + { + "name": "hmrc.self_employment_income.amount@E14001288", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e625f3aeef551b437abf5474" + }, + { + "name": "hmrc.self_employment_income.amount@E14001289", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 202300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dccaa12e5f09bcf5ae2dd7ca" + }, + { + "name": "hmrc.self_employment_income.amount@E14001290", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 896000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d589147423fb94577b49ba" + }, + { + "name": "hmrc.self_employment_income.amount@E14001291", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 161700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_00373bc7dc561176188603c8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001292", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 212800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a68d297cfbacc40c79b10691" + }, + { + "name": "hmrc.self_employment_income.amount@E14001293", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 568000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16892be1d68a6ab32fc47927" + }, + { + "name": "hmrc.self_employment_income.amount@E14001294", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 184800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_852d7219e063fbc82e3b2655" + }, + { + "name": "hmrc.self_employment_income.amount@E14001295", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a31bcb35d713b1494abd682c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001296", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 230400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4676e90125f7e2d9c830b600" + }, + { + "name": "hmrc.self_employment_income.amount@E14001297", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 58800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ce953108102545b1ecc3e38" + }, + { + "name": "hmrc.self_employment_income.amount@E14001298", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52ee8d2e3fa484c233b8efd3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001299", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d89c7dacc0e159151582739" + }, + { + "name": "hmrc.self_employment_income.amount@E14001300", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 244200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d6eed7d41a4c9d6cac87b23" + }, + { + "name": "hmrc.self_employment_income.amount@E14001301", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 219000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18847a7af742252dc72e532c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001302", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dbcd910914dd68c82a1ad23" + }, + { + "name": "hmrc.self_employment_income.amount@E14001303", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4416982a4bae778d6f2870ad" + }, + { + "name": "hmrc.self_employment_income.amount@E14001304", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_321b0996874042fa9731a9e8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001305", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 453600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_191a60f3b07af173bd4f6760" + }, + { + "name": "hmrc.self_employment_income.amount@E14001306", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 772800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83b6275517fc99db2d6a67c3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001307", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50823fcb3e0f07f3aee7a7e4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001308", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef94593aca3c65ef7856146a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001309", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21b0e79705332eed9d5fabeb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001310", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2799000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee58cabacd3868a0a94b8656" + }, + { + "name": "hmrc.self_employment_income.amount@E14001311", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bfd5ec327d5124d1959c94f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001312", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 232800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb0fe14357b64670148d713f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001313", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cb88e2b9a97670d38b2e6a3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001314", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_255a221d70afcb8ab2edfb08" + }, + { + "name": "hmrc.self_employment_income.amount@E14001315", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8327b4c0d677a840918c0444" + }, + { + "name": "hmrc.self_employment_income.amount@E14001316", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c53a04133118ce1de276620" + }, + { + "name": "hmrc.self_employment_income.amount@E14001317", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f08c58b03a6b1b3029fc84ae" + }, + { + "name": "hmrc.self_employment_income.amount@E14001318", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54897b4cedca4c94c0e231d5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001319", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83eeb85f65dd5a359ca730c5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001320", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebe5d645e37c0559c09bede9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001321", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 146000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_367d4b5ee58bba9dc4d03b30" + }, + { + "name": "hmrc.self_employment_income.amount@E14001322", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ae16fb9913943e022087950" + }, + { + "name": "hmrc.self_employment_income.amount@E14001323", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f3f4c58035441b5b709394" + }, + { + "name": "hmrc.self_employment_income.amount@E14001324", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_634ef9959eb8ab47ebbf56ee" + }, + { + "name": "hmrc.self_employment_income.amount@E14001325", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a54af4552941f820ffa6024" + }, + { + "name": "hmrc.self_employment_income.amount@E14001326", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_11e7c9329dedb25e634db828" + }, + { + "name": "hmrc.self_employment_income.amount@E14001327", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10f2dd93985c7cce5d318834" + }, + { + "name": "hmrc.self_employment_income.amount@E14001328", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3215133bf1fd2ebd8bf216c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001329", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_829ca3e26bb0a9721a20117d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001330", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de689225cbd12b4a47fcc9ed" + }, + { + "name": "hmrc.self_employment_income.amount@E14001331", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 175700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78f096152880b3e34198cdf7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001332", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 280800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a9b43a87bbfb1c248d32fc9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001333", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 280800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e29fc1d2c5b9924c06380273" + }, + { + "name": "hmrc.self_employment_income.amount@E14001334", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 331100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e7986b05b23dcfa8e011f4d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001335", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89e953d249b75152706f2c5a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001336", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bafaa0d8e2c37f7bf37f35fc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001337", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0293fbad56cd31d6674b85fb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001338", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_75fe4da87135d7cde05c7693" + }, + { + "name": "hmrc.self_employment_income.amount@E14001339", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d2d222d18a1216a6438c098" + }, + { + "name": "hmrc.self_employment_income.amount@E14001340", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9ec20c8916b93a02019d7a4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001341", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5942e150f1c4a2317821dad4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001342", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d72e6554bc25a239599e7c8d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001343", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a47514609ca26e22017b913" + }, + { + "name": "hmrc.self_employment_income.amount@E14001344", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54dbb03d85808eedf737440" + }, + { + "name": "hmrc.self_employment_income.amount@E14001345", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d395cc92bf3ead71079214a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001346", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 168800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8587229052bfc42725e0b2e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001347", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d29ba722bb0fc4e6c3fa749" + }, + { + "name": "hmrc.self_employment_income.amount@E14001348", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 202200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c5ce11b8ad2a507be60ed0b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001349", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e830d58c1e137883c183bc05" + }, + { + "name": "hmrc.self_employment_income.amount@E14001350", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f493ab7adcbc635adef1852" + }, + { + "name": "hmrc.self_employment_income.amount@E14001351", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 181600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d4372edc06d39e03eb55e5e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001352", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ace24346d41bd89b3e54fc2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001353", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_630c5c137f8ee42e5c59bfe0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001354", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_296a40b25be0d38ef33f720f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001355", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_451345d9e26100a8ff7a8ff8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001356", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b25524fc09ac4dfd09c906cf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001357", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b0a0b0c24880cf1899ebe5b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001358", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 142000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b279f4afe8623d390db17d4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001359", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 162600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b76d76ec934d28f17c03561" + }, + { + "name": "hmrc.self_employment_income.amount@E14001360", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 272800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b18cdf521b44445ae947fe5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001361", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_968cb2e24d9ffe9aa322e326" + }, + { + "name": "hmrc.self_employment_income.amount@E14001362", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70c9af7c01b1bbdc8c757ac5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001363", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad04b3be3048f7cef994eccb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001364", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2de8410e64c05966b739605e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001365", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b480155a61e298d69ef8a9a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001366", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 211200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_716336411271d3ee98ffdc86" + }, + { + "name": "hmrc.self_employment_income.amount@E14001367", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76c5e53e14135ecfb2825b9c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001368", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed0b152b41e9d51954bf7b07" + }, + { + "name": "hmrc.self_employment_income.amount@E14001369", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a64d9e718a6c57388b2aadc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001370", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fc91a076c3867dd37b0d6ba" + }, + { + "name": "hmrc.self_employment_income.amount@E14001371", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 234300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c80800ec2be0eb1bdd30e08" + }, + { + "name": "hmrc.self_employment_income.amount@E14001372", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1929d43945658317727c638c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001373", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 116000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d69ec113f7a85d82d9ee5f7f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001374", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 145000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1728e1b5dc2deb9b6382790c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001375", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8158b65a66a6512517cb6a31" + }, + { + "name": "hmrc.self_employment_income.amount@E14001376", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 180600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a765e7f964cae247ae8112d6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001377", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_358165d17b3e7a0eeecd529c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001378", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c04ecb61891b5fe61e12780a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001379", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 183500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b400f18b43eb55146c5a7e13" + }, + { + "name": "hmrc.self_employment_income.amount@E14001380", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bed02ad5742a4309d484478" + }, + { + "name": "hmrc.self_employment_income.amount@E14001381", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 132000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65143c8aadc00b7bbb2a331e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001382", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ab88476fdadc11582353410" + }, + { + "name": "hmrc.self_employment_income.amount@E14001383", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 90000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0484e9238d2e9e0ac498ed0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001384", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 190400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d3a3d36b90391ccf60faf47" + }, + { + "name": "hmrc.self_employment_income.amount@E14001385", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 188100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1890f0e4b9e437a499e1029" + }, + { + "name": "hmrc.self_employment_income.amount@E14001386", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 277600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d45ff80b35ab4fbde175af45" + }, + { + "name": "hmrc.self_employment_income.amount@E14001387", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 200000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c262334f744e3bb89d7d7138" + }, + { + "name": "hmrc.self_employment_income.amount@E14001388", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_098431ab7d15d2c9364f7ebf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001389", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a0d8cc1bfaa3d2c678749f0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001390", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3998a1d500901dcd6b81df9a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001391", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3914ddf68e32c4b38683ebe8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001392", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 205800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0b9cc1693a84832607ea46a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001393", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 246400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06f337476af5f1913498eea7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001394", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 150500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16b21807a5f951b089d9be4b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001395", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 190400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3218e453bf873b9ae2495b0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001396", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8109097ada9b74190636a13" + }, + { + "name": "hmrc.self_employment_income.amount@E14001397", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a548b49fe615bc1e47692a64" + }, + { + "name": "hmrc.self_employment_income.amount@E14001398", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 134400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91b65bd49e2b9d213a58938c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001399", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 157800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c008afb32f39ecb5e5ce706" + }, + { + "name": "hmrc.self_employment_income.amount@E14001400", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c2572aad25f8ae53823eac" + }, + { + "name": "hmrc.self_employment_income.amount@E14001401", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 146400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8787c60e40b7bee3b72f152f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001402", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 278400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_702e8b73f5449705e43ad0d3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001403", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58565c98d27813aeb65ed06b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001404", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f260e9553be81be9f760b269" + }, + { + "name": "hmrc.self_employment_income.amount@E14001405", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 194400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9092be8b1ee745fba6c47dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001406", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 176400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4dc5500bd31d923dea18804" + }, + { + "name": "hmrc.self_employment_income.amount@E14001407", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4728f2ecd31c0455c819877c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001408", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7642a81a664762fa74d6d83c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001409", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea98b6e5a57cc2ccaf09f991" + }, + { + "name": "hmrc.self_employment_income.amount@E14001410", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58d19a6b143b32319ea1d317" + }, + { + "name": "hmrc.self_employment_income.amount@E14001411", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_067ad6fa4122b101a1366e38" + }, + { + "name": "hmrc.self_employment_income.amount@E14001412", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7302cd2c7e8a18b77ed178a2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001413", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f816a913649369fc76dc30a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001414", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_592c7822c4c350c89f82c381" + }, + { + "name": "hmrc.self_employment_income.amount@E14001415", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 98500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f11ccd3fd84b6daa12222dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001416", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "signed_deferral_compile_error", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "error": "ledger_reference_compile_status_signed_deferral_compile_error", + "signed_reason_id": "spi_pcon_self_employment_mean_absent", + "signed_rationale": "HMRC SPI constituency facts in the pinned feed publish self_employment_income_count for 650/650 constituencies but self_employment_income_mean for 649/650; E14001416 has the count fact but no mean fact, so count_x_mean cannot form the amount." + }, + { + "name": "hmrc.self_employment_income.amount@E14001417", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 207900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01c72b67e88d1cd974198e9b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001418", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f732aa1a48c9d4eb791cec7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001419", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_849f0b9d31b49bd515753fc4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001420", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 239400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a753645e12b2a685190607a5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001421", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 174000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94dae41738c5aace556ebb69" + }, + { + "name": "hmrc.self_employment_income.amount@E14001422", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 96500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ba59643f32a93eacfe3b0a0" + }, + { + "name": "hmrc.self_employment_income.amount@E14001423", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4310ab2b3f91327b5a70928" + }, + { + "name": "hmrc.self_employment_income.amount@E14001424", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c41a5445a2edf0aee75cc6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001425", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14f62d0a6c34d51c33046937" + }, + { + "name": "hmrc.self_employment_income.amount@E14001426", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d76e619ff777f47432b59d22" + }, + { + "name": "hmrc.self_employment_income.amount@E14001427", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82c951b95a3e054c1e49d798" + }, + { + "name": "hmrc.self_employment_income.amount@E14001428", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20915729f02be9a2f0db983a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001429", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fbbde8ff016ab5dde9687ed" + }, + { + "name": "hmrc.self_employment_income.amount@E14001430", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 232800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5204af87d69f62582974cbf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001431", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09b8e645b68f4dcba9a85def" + }, + { + "name": "hmrc.self_employment_income.amount@E14001432", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 106500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9363cb85149c7561c0e6045" + }, + { + "name": "hmrc.self_employment_income.amount@E14001433", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1139c5bde207b429f629856f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001434", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 602100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e5cda2fb43705031786aef4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001435", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 402500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bac545109c0940304e2ecee" + }, + { + "name": "hmrc.self_employment_income.amount@E14001436", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cb05a8d15eb174dbdf89604" + }, + { + "name": "hmrc.self_employment_income.amount@E14001437", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 159600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d8b878176d16fc09406b0a4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001438", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9ef9525484ba0d1987be2c9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001439", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 188400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a93a062576990b6042ec1dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001440", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_831d8879f68585c60148c1e2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001441", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 132600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5b2241a4a2b1a44c4922556" + }, + { + "name": "hmrc.self_employment_income.amount@E14001442", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 270400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06c84df94d2589c81ddd5d80" + }, + { + "name": "hmrc.self_employment_income.amount@E14001443", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab326b207ed52758522f9b18" + }, + { + "name": "hmrc.self_employment_income.amount@E14001444", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_daf6a0ee7c034f92e2376c24" + }, + { + "name": "hmrc.self_employment_income.amount@E14001445", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 984000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_838d38c1981515492303e10c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001446", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cbc91c140e1a4122bf9dd80" + }, + { + "name": "hmrc.self_employment_income.amount@E14001447", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea49a0e946edaa083ef8b86d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001448", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 200000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb3868a9cdd9bc8be1a16da2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001449", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 213600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11ad64eaa5d970d9d14079a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001450", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 123000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47e43fa54e223505ac5420e3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001451", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7f89e5a5b4ec988c3882383" + }, + { + "name": "hmrc.self_employment_income.amount@E14001452", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d64feeca759ee7746382d1d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001453", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_427ca25554c4dcf1b2d4eaea" + }, + { + "name": "hmrc.self_employment_income.amount@E14001454", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 276600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e45be5d07cfe12f1feb1931" + }, + { + "name": "hmrc.self_employment_income.amount@E14001455", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eecc5945fee103794e22e57" + }, + { + "name": "hmrc.self_employment_income.amount@E14001456", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 466200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ae9690a446753f3a12761b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001457", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 159000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f90782e487c59a5e166d7fc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001458", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a84c1a3e9a5b5a0f7990849" + }, + { + "name": "hmrc.self_employment_income.amount@E14001459", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e827997539c0c4dd7065656f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001460", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 179900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a340affebbea6bf0833531b8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001461", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 109800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3f7836ac7d1867a37717337" + }, + { + "name": "hmrc.self_employment_income.amount@E14001462", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8146d9649b54297b6a3f5e5e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001463", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3667e58365c23b3cb93694e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001464", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3db482aaf0a3d37f1fada3c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001465", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 388200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df9978071c9621368d84b8da" + }, + { + "name": "hmrc.self_employment_income.amount@E14001466", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a8d4264000e7db15794e97d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001467", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 92400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fad4fce381d6491159cf3931" + }, + { + "name": "hmrc.self_employment_income.amount@E14001468", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b517ee4c66c0e63d8c2ab288" + }, + { + "name": "hmrc.self_employment_income.amount@E14001469", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c154247539f51aba6026e57" + }, + { + "name": "hmrc.self_employment_income.amount@E14001470", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54dd881765968e6fa9a79fb2" + }, + { + "name": "hmrc.self_employment_income.amount@E14001471", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05ca83d95e49fc4f98d7dc3f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001472", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee17f4fd281b5786e25dbb23" + }, + { + "name": "hmrc.self_employment_income.amount@E14001473", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86a0a568499dd41dbcb58e75" + }, + { + "name": "hmrc.self_employment_income.amount@E14001474", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f68a2a7d050e9cf44b5797a5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001475", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 176400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b66009d71a44286c53da025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001476", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 119000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d254100702d728316588625" + }, + { + "name": "hmrc.self_employment_income.amount@E14001477", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2603b049e43b449c4b572193" + }, + { + "name": "hmrc.self_employment_income.amount@E14001478", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22480afa4ec292b96bea61bf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001479", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 111200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c64114d00be6957f5b72afcb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001480", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59c17340296ca175b000b2fc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001481", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 211400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d45ddae121334cfb8e705871" + }, + { + "name": "hmrc.self_employment_income.amount@E14001482", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 193200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_963d7841cd1d5b4367104dac" + }, + { + "name": "hmrc.self_employment_income.amount@E14001483", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 129000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_323d7cbcd70f4d2be47b32df" + }, + { + "name": "hmrc.self_employment_income.amount@E14001484", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff1082271fb6730247c3423d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001485", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 113400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26c1530ae0806c9796426dc3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001486", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 116200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a98210876f01edd33a27d91c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001487", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c1d5c816bb9582a9b4dce9a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001488", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 132000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_633890ef4b5355835e8266dc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001489", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 156000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eacd786ab40f34996db05134" + }, + { + "name": "hmrc.self_employment_income.amount@E14001490", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 247200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4677faf1ec0178c3c1823d6a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001491", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e440392daf8108a42075cdee" + }, + { + "name": "hmrc.self_employment_income.amount@E14001492", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ac9c65d133759f0b2b66709" + }, + { + "name": "hmrc.self_employment_income.amount@E14001493", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 167200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c44e8003746a3cae515bfa5b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001494", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 196200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e101de62f5d6f30de4b098d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001495", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf84250ac36b60545547d699" + }, + { + "name": "hmrc.self_employment_income.amount@E14001496", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 293600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3839539f600fd2f411d39ea8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001497", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 128400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d495721c57ae463ac0d6d232" + }, + { + "name": "hmrc.self_employment_income.amount@E14001498", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 111600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f897ff202f74b208f626b859" + }, + { + "name": "hmrc.self_employment_income.amount@E14001499", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d513ce7cbd5bbf000c2e2b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001500", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7307f9b7626c3064b3079c79" + }, + { + "name": "hmrc.self_employment_income.amount@E14001501", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f65c478e62ca6ec14445ff" + }, + { + "name": "hmrc.self_employment_income.amount@E14001502", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ddd3ebcd57f30d0684f4b2d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001503", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 341900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f391d4cb80453df77a61777" + }, + { + "name": "hmrc.self_employment_income.amount@E14001504", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f06684a98af7e0980a9bd9b6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001505", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2136f2f4146bf149b17468da" + }, + { + "name": "hmrc.self_employment_income.amount@E14001506", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3041d729661c373240756a36" + }, + { + "name": "hmrc.self_employment_income.amount@E14001507", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 318400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_642bc01f4562b8e2b40c9c62" + }, + { + "name": "hmrc.self_employment_income.amount@E14001508", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 160800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e07fcd561355ef51965076b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001509", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6063382494f1d6731aca8f7f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001510", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2cbb4b2d24ea87574920a5a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001511", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24eb45b6f47f74fbbc8a50fd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001512", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fdba21fb6b75202c073bb65" + }, + { + "name": "hmrc.self_employment_income.amount@E14001513", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 96500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc3fd75f06136c301a01836b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001514", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 116400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18b729a80a632678c9e5d359" + }, + { + "name": "hmrc.self_employment_income.amount@E14001515", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c6e692beddeb98bf3bb322d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001516", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_689af322828ed13f7ffb0290" + }, + { + "name": "hmrc.self_employment_income.amount@E14001517", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7febe42ca0cf54521579d38" + }, + { + "name": "hmrc.self_employment_income.amount@E14001518", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4952ca4b80c2a9cbd5582764" + }, + { + "name": "hmrc.self_employment_income.amount@E14001519", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2abe6c65960e89de075d1d9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001520", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_516d4665cc96165016eb0dcb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001521", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de71553bc04962550178e110" + }, + { + "name": "hmrc.self_employment_income.amount@E14001522", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_724223205f9b7e28d31139d3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001523", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff48fa5e943336989cbdc190" + }, + { + "name": "hmrc.self_employment_income.amount@E14001524", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_101c49872c6a74be79c10c67" + }, + { + "name": "hmrc.self_employment_income.amount@E14001525", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 241000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35eccd06c20d12677dc111e8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001526", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 191800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ab4c081d9c38e9f8d6ec3ee" + }, + { + "name": "hmrc.self_employment_income.amount@E14001527", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 238000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a7a5dff0a2e901091b64f52" + }, + { + "name": "hmrc.self_employment_income.amount@E14001528", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 89500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a651110a9571b4cf967d1ef" + }, + { + "name": "hmrc.self_employment_income.amount@E14001529", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a581885e2243e5db06afa96" + }, + { + "name": "hmrc.self_employment_income.amount@E14001530", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 167300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b9bc550ee3514098775d937" + }, + { + "name": "hmrc.self_employment_income.amount@E14001531", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ae8b746426c77985e4d7d15" + }, + { + "name": "hmrc.self_employment_income.amount@E14001532", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 214200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10e1dc8bfd856948124d7c9d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001533", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 307200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61605e347d620cb7f4b04c48" + }, + { + "name": "hmrc.self_employment_income.amount@E14001534", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 150600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dba221443a793f53842eac97" + }, + { + "name": "hmrc.self_employment_income.amount@E14001535", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b791bea0b9eb1d4e950a5ef7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001536", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 123000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11a680293a5636a7738c8fe" + }, + { + "name": "hmrc.self_employment_income.amount@E14001537", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0765b77f23cca758b988e9ab" + }, + { + "name": "hmrc.self_employment_income.amount@E14001538", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd92a678545feda096c8c8a6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001539", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 246400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff805f81d597aa856de6b2d1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001540", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e8485a0e99ea1098d39949d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001541", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9bc2f0a119a6bf81acb06e8" + }, + { + "name": "hmrc.self_employment_income.amount@E14001542", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 115500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc3516218a6749d327d3bb21" + }, + { + "name": "hmrc.self_employment_income.amount@E14001543", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba3eb881a213cb6cdf12642c" + }, + { + "name": "hmrc.self_employment_income.amount@E14001544", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 201600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c1b426dc786d78fc0e095ab" + }, + { + "name": "hmrc.self_employment_income.amount@E14001545", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_605e80335973aed6f4c70edd" + }, + { + "name": "hmrc.self_employment_income.amount@E14001546", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 196000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a733c73c39dc6b7e9d6ae5a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001547", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f4827d5b588b40a61b1e8a9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001548", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7480a3e4405753a50574f1b7" + }, + { + "name": "hmrc.self_employment_income.amount@E14001549", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 321600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c58ec7fad76a6013227a7135" + }, + { + "name": "hmrc.self_employment_income.amount@E14001550", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 728000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fbe5b4f9d5c46c909a4a533" + }, + { + "name": "hmrc.self_employment_income.amount@E14001551", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10c2946f489a616c0622b4cb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001552", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48679897bee4261e7e06fe06" + }, + { + "name": "hmrc.self_employment_income.amount@E14001553", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 226600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_287b6733d769b0da7d363a72" + }, + { + "name": "hmrc.self_employment_income.amount@E14001554", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 149400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b6ecb7a3b7c4a0488e5225f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001555", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 350400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c5cb03c46475abdd8e7683e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001556", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 356300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1845b80085929abf7eec293" + }, + { + "name": "hmrc.self_employment_income.amount@E14001557", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_994cc048d998ce17c28d405e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001558", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 164500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6e48d6e791c516b82ce36bf" + }, + { + "name": "hmrc.self_employment_income.amount@E14001559", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 294000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f7b1b22a0330970942523d9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001560", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6760e06e5d25f1de12f01b79" + }, + { + "name": "hmrc.self_employment_income.amount@E14001561", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81343eee5be4a0ef9c3c0b2d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001562", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c6b7a2befd4f36e6089a3fc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001563", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 319800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4441e8b3ce2813cfde157b42" + }, + { + "name": "hmrc.self_employment_income.amount@E14001564", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_373246cdb0dbd7a29ef8a67a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001565", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 125500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2323761a9ecfd1782096dbfc" + }, + { + "name": "hmrc.self_employment_income.amount@E14001566", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 125000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e330dce027ac2f69e969793e" + }, + { + "name": "hmrc.self_employment_income.amount@E14001567", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3eb21db316d2f9f404aa6331" + }, + { + "name": "hmrc.self_employment_income.amount@E14001568", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 168000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f33dfd7b764d375ce2ed2f3b" + }, + { + "name": "hmrc.self_employment_income.amount@E14001569", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5394489fd1b23cd08e85d12" + }, + { + "name": "hmrc.self_employment_income.amount@E14001570", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 272000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17d83509d912a108acd06c53" + }, + { + "name": "hmrc.self_employment_income.amount@E14001571", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d54f7869e7c635018c918d08" + }, + { + "name": "hmrc.self_employment_income.amount@E14001572", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10d5cecfdadd66ad60ecc40a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001573", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d57d1611bb5fd496c0832de" + }, + { + "name": "hmrc.self_employment_income.amount@E14001574", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1fc7fab4a492f35cae30bec" + }, + { + "name": "hmrc.self_employment_income.amount@E14001575", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8697f09e3f7c54745511d240" + }, + { + "name": "hmrc.self_employment_income.amount@E14001576", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 291200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b262e6abc80b7123676239da" + }, + { + "name": "hmrc.self_employment_income.amount@E14001577", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f09c50a04a50fd6163e96f" + }, + { + "name": "hmrc.self_employment_income.amount@E14001578", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8182687166d98e694981d176" + }, + { + "name": "hmrc.self_employment_income.amount@E14001579", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 174600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e286fc6f53cbd114e04c5f9d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001580", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 183600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_42f32f7f2485de8b1f051ce5" + }, + { + "name": "hmrc.self_employment_income.amount@E14001581", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 98000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6f8e224f4fad982d68ce44a" + }, + { + "name": "hmrc.self_employment_income.amount@E14001582", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 213000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_579a5c4fc81fea54c298b110" + }, + { + "name": "hmrc.self_employment_income.amount@E14001583", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66ebf15059f3460a1ef3a674" + }, + { + "name": "hmrc.self_employment_income.amount@E14001584", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2df58b08e547d2d1d2d4072" + }, + { + "name": "hmrc.self_employment_income.amount@E14001585", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fefacc8cc298e11fe0512ef6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001586", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 759200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ad33af8676d4800975f1fb6" + }, + { + "name": "hmrc.self_employment_income.amount@E14001587", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 284900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc901baabb3f22cce7859247" + }, + { + "name": "hmrc.self_employment_income.amount@E14001588", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 198600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a963440fcb77b1b63a0bd5cb" + }, + { + "name": "hmrc.self_employment_income.amount@E14001589", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_871ea439594f8a7f07c49a39" + }, + { + "name": "hmrc.self_employment_income.amount@E14001590", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 178800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8de8221da88a3f792c1b1c31" + }, + { + "name": "hmrc.self_employment_income.amount@E14001591", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 205100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_afba38c34808dcea64f3a9a4" + }, + { + "name": "hmrc.self_employment_income.amount@E14001592", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 279300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7dacfa2739bb3e655356655" + }, + { + "name": "hmrc.self_employment_income.amount@E14001593", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08f5c4de25776df4ea0764c9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001594", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0be9aa5f14bafb8eb61d1da" + }, + { + "name": "hmrc.self_employment_income.amount@E14001595", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 89600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab4843a86e3c1333000019b3" + }, + { + "name": "hmrc.self_employment_income.amount@E14001596", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_204574b00c4dae65e05a90da" + }, + { + "name": "hmrc.self_employment_income.amount@E14001597", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 93000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bff876582d7fa920d876d123" + }, + { + "name": "hmrc.self_employment_income.amount@E14001598", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22e25d189ba389c079500a1" + }, + { + "name": "hmrc.self_employment_income.amount@E14001599", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec842a828fba47cc8c524960" + }, + { + "name": "hmrc.self_employment_income.amount@E14001600", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0aad3b8953e19586c10eb6d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001601", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 119400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b4c258f7c0207f2b49567d9" + }, + { + "name": "hmrc.self_employment_income.amount@E14001602", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ea4fa0e71901e76ff06a4ef" + }, + { + "name": "hmrc.self_employment_income.amount@E14001603", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 134400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_045b07440679a568e4dd6853" + }, + { + "name": "hmrc.self_employment_income.amount@E14001604", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 117500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e68c4b7a5ce833650bd98d9d" + }, + { + "name": "hmrc.self_employment_income.amount@E14001605", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 123000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e46d0dfa5353babd728b0556" + }, + { + "name": "hmrc.self_employment_income.amount@N05000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 111200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86720b75f5081d2ec22d6bc2" + }, + { + "name": "hmrc.self_employment_income.amount@N05000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91f792a638e87213286855af" + }, + { + "name": "hmrc.self_employment_income.amount@N05000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 183500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0a3590375d74d52442b290c" + }, + { + "name": "hmrc.self_employment_income.amount@N05000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a883d2974b0f8d395cdb6718" + }, + { + "name": "hmrc.self_employment_income.amount@N05000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90c7cb2f2d9f435ee2059caa" + }, + { + "name": "hmrc.self_employment_income.amount@N05000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 149100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b752ee18264c0382779e665" + }, + { + "name": "hmrc.self_employment_income.amount@N05000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 116000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_097015dbbeba393a6d1e3f93" + }, + { + "name": "hmrc.self_employment_income.amount@N05000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b40935394aef393c1a1f0f3" + }, + { + "name": "hmrc.self_employment_income.amount@N05000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_454b1aa71284c1e2b17d90a9" + }, + { + "name": "hmrc.self_employment_income.amount@N05000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 146400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80175614925c3b4348f5c8ce" + }, + { + "name": "hmrc.self_employment_income.amount@N05000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ceef5620ba7586bc505c14c" + }, + { + "name": "hmrc.self_employment_income.amount@N05000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6f924b8bbce9f3e2bb9357c" + }, + { + "name": "hmrc.self_employment_income.amount@N05000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_873dbb58b4b66a9e5b195a4e" + }, + { + "name": "hmrc.self_employment_income.amount@N05000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 109800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_616c5621ee96a6391de06118" + }, + { + "name": "hmrc.self_employment_income.amount@N05000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 180000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f7ec04b0289643b2b2f817f" + }, + { + "name": "hmrc.self_employment_income.amount@N05000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 115200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba218fdbc1940dbb89dcfac3" + }, + { + "name": "hmrc.self_employment_income.amount@N05000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_052ccfbea1172e1ac64b5aff" + }, + { + "name": "hmrc.self_employment_income.amount@N05000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_badfc0ef61522eb28996eedd" + }, + { + "name": "hmrc.self_employment_income.amount@S14000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 194000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33fdafaa883d982dd517057" + }, + { + "name": "hmrc.self_employment_income.amount@S14000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc9e8d15e9065da490812b40" + }, + { + "name": "hmrc.self_employment_income.amount@S14000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c381547a9688dcbff24440b" + }, + { + "name": "hmrc.self_employment_income.amount@S14000048", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35778d4205392d7c1bfe2fdc" + }, + { + "name": "hmrc.self_employment_income.amount@S14000051", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9645f84dd45d4a3764d8ff47" + }, + { + "name": "hmrc.self_employment_income.amount@S14000060", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3c67a6bb98c1b34fe8e98c" + }, + { + "name": "hmrc.self_employment_income.amount@S14000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55da0ab32ae427edde771ed5" + }, + { + "name": "hmrc.self_employment_income.amount@S14000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 92000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56a912f428c4a55f9f1d5483" + }, + { + "name": "hmrc.self_employment_income.amount@S14000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31e14e0c59adbc9bdc984d69" + }, + { + "name": "hmrc.self_employment_income.amount@S14000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a160fa554828474feec523f" + }, + { + "name": "hmrc.self_employment_income.amount@S14000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 166200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a86ee435750351ab2d7f557" + }, + { + "name": "hmrc.self_employment_income.amount@S14000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea7ba701b010850a3cfa2ad" + }, + { + "name": "hmrc.self_employment_income.amount@S14000067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34b97e23b2301fb904dfc69a" + }, + { + "name": "hmrc.self_employment_income.amount@S14000068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfd19e56a3b1154a36564230" + }, + { + "name": "hmrc.self_employment_income.amount@S14000069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71f1a907a59d2028eb9a3db7" + }, + { + "name": "hmrc.self_employment_income.amount@S14000070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5a3580368dc8d3c17b821ce" + }, + { + "name": "hmrc.self_employment_income.amount@S14000071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21d78e40662c066d18b1c218" + }, + { + "name": "hmrc.self_employment_income.amount@S14000072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8bc80e93f8f4b9753d03890" + }, + { + "name": "hmrc.self_employment_income.amount@S14000073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 128400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdbb81f8a906dff0085eee7b" + }, + { + "name": "hmrc.self_employment_income.amount@S14000074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26a5830998e62ec93f2527ea" + }, + { + "name": "hmrc.self_employment_income.amount@S14000075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c12d8982b3e007a4583aeef" + }, + { + "name": "hmrc.self_employment_income.amount@S14000076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01f9503b8bb4bb0cde879087" + }, + { + "name": "hmrc.self_employment_income.amount@S14000077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef79f6d4e8de3800b3a70c2f" + }, + { + "name": "hmrc.self_employment_income.amount@S14000078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8f46b826181355be78c8722" + }, + { + "name": "hmrc.self_employment_income.amount@S14000079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 322700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2806196faea8f5d6d6e996e8" + }, + { + "name": "hmrc.self_employment_income.amount@S14000080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 510000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8f6c8cdbb2fd8a9991e19b0" + }, + { + "name": "hmrc.self_employment_income.amount@S14000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 137000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85cbd74a205f4a0f3a8f341" + }, + { + "name": "hmrc.self_employment_income.amount@S14000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 236500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b5805e8761f237041cea43d" + }, + { + "name": "hmrc.self_employment_income.amount@S14000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f43d4a48af05718024dd676a" + }, + { + "name": "hmrc.self_employment_income.amount@S14000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e42800a550381190f064eda" + }, + { + "name": "hmrc.self_employment_income.amount@S14000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bb4ec724d74f3091d3c5f74" + }, + { + "name": "hmrc.self_employment_income.amount@S14000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfded7c8f86faf3378a4a934" + }, + { + "name": "hmrc.self_employment_income.amount@S14000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d75366bd9f2456db41c9d921" + }, + { + "name": "hmrc.self_employment_income.amount@S14000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3220cb705c8411bfafdcd318" + }, + { + "name": "hmrc.self_employment_income.amount@S14000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf10a8b36e498aaf77c99fdd" + }, + { + "name": "hmrc.self_employment_income.amount@S14000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7a12e354d9984238478c9a8" + }, + { + "name": "hmrc.self_employment_income.amount@S14000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c01b1176bb1cef0aa683952" + }, + { + "name": "hmrc.self_employment_income.amount@S14000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5023d6a0f2b07b835e90e6ff" + }, + { + "name": "hmrc.self_employment_income.amount@S14000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f33afc78fc562e9f4c9141f5" + }, + { + "name": "hmrc.self_employment_income.amount@S14000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_87c9be8c30756a1416afefaf" + }, + { + "name": "hmrc.self_employment_income.amount@S14000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af9b6831d932ac67e80d4d3b" + }, + { + "name": "hmrc.self_employment_income.amount@S14000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5432caf26884d7c7b17747bd" + }, + { + "name": "hmrc.self_employment_income.amount@S14000097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 184500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_201f579bdcb4c16bd5ac7034" + }, + { + "name": "hmrc.self_employment_income.amount@S14000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1869bb6d6c17813397cfed32" + }, + { + "name": "hmrc.self_employment_income.amount@S14000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b25455b55026a4f936d2b86d" + }, + { + "name": "hmrc.self_employment_income.amount@S14000100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37263994cd318f3c126c0aae" + }, + { + "name": "hmrc.self_employment_income.amount@S14000101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff85b46eb3f2f7ac6f6a99d7" + }, + { + "name": "hmrc.self_employment_income.amount@S14000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_36aeb1b28b0843af25cf9908" + }, + { + "name": "hmrc.self_employment_income.amount@S14000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10344005ea4246f5bf847df4" + }, + { + "name": "hmrc.self_employment_income.amount@S14000104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c931c01498f357ec529b2be6" + }, + { + "name": "hmrc.self_employment_income.amount@S14000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 157500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e3480f809e10c40d564c186" + }, + { + "name": "hmrc.self_employment_income.amount@S14000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_686d9ac43f1b929dc595ed15" + }, + { + "name": "hmrc.self_employment_income.amount@S14000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 81000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e66b9c98ede7f96c181e3c5" + }, + { + "name": "hmrc.self_employment_income.amount@S14000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6631ffe68af953434ca93d65" + }, + { + "name": "hmrc.self_employment_income.amount@S14000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3801e495b878f31004a2f31" + }, + { + "name": "hmrc.self_employment_income.amount@S14000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c829f1c33a9c72d16ac565d4" + }, + { + "name": "hmrc.self_employment_income.amount@S14000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b68adf61e097cfd164158375" + }, + { + "name": "hmrc.self_employment_income.amount@W07000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce71f5a2ce24a60810b11321" + }, + { + "name": "hmrc.self_employment_income.amount@W07000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ad1b28697a21fc435f50b75" + }, + { + "name": "hmrc.self_employment_income.amount@W07000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 109800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ac35955c5205c97608e1442" + }, + { + "name": "hmrc.self_employment_income.amount@W07000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 58200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd161937405877e1e9fcdcd" + }, + { + "name": "hmrc.self_employment_income.amount@W07000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 128800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0735600b61447944d67e52d" + }, + { + "name": "hmrc.self_employment_income.amount@W07000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_000bed988cf520a1fe47ccd5" + }, + { + "name": "hmrc.self_employment_income.amount@W07000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 140800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bb7088cd32f407336c468be" + }, + { + "name": "hmrc.self_employment_income.amount@W07000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a10a0e9d8a3b6665137abea4" + }, + { + "name": "hmrc.self_employment_income.amount@W07000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19332f782575eed3ca446dc3" + }, + { + "name": "hmrc.self_employment_income.amount@W07000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 112500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e7c4a4fd7c2106c90064474" + }, + { + "name": "hmrc.self_employment_income.amount@W07000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 81600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f4fe2de137a1aeabe90acce" + }, + { + "name": "hmrc.self_employment_income.amount@W07000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b34599d3376578e4e5a2806" + }, + { + "name": "hmrc.self_employment_income.amount@W07000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5c0324ca455227e357d5492" + }, + { + "name": "hmrc.self_employment_income.amount@W07000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0364527b7d66f258e631c770" + }, + { + "name": "hmrc.self_employment_income.amount@W07000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_455587f177c57c04340857db" + }, + { + "name": "hmrc.self_employment_income.amount@W07000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 149600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_558ec77ae8c143af69588def" + }, + { + "name": "hmrc.self_employment_income.amount@W07000097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 89200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b861a1637455c6a3e0a6aed5" + }, + { + "name": "hmrc.self_employment_income.amount@W07000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1c00c6941071309cc500bf1" + }, + { + "name": "hmrc.self_employment_income.amount@W07000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 81200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb41ab5c39b247c929609e3e" + }, + { + "name": "hmrc.self_employment_income.amount@W07000100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44d402fc512bd6151e798cd6" + }, + { + "name": "hmrc.self_employment_income.amount@W07000101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcbb94e6f5aeabb0ab16a725" + }, + { + "name": "hmrc.self_employment_income.amount@W07000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 137200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_608381d00d71c94d043ba023" + }, + { + "name": "hmrc.self_employment_income.amount@W07000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02c13dbeefb0d3456f1b0ac" + }, + { + "name": "hmrc.self_employment_income.amount@W07000104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6444487fa59df6baf546d51e" + }, + { + "name": "hmrc.self_employment_income.amount@W07000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9d09ca4a1cde547001f5e69" + }, + { + "name": "hmrc.self_employment_income.amount@W07000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 58200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b37c1b691603e41f0111a80d" + }, + { + "name": "hmrc.self_employment_income.amount@W07000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe53062a68ffb687cb333a3c" + }, + { + "name": "hmrc.self_employment_income.amount@W07000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18a230f2b003871782f754b4" + }, + { + "name": "hmrc.self_employment_income.amount@W07000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de0009fb66566cc3f21d2521" + }, + { + "name": "hmrc.self_employment_income.amount@W07000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 112500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79751b6b992c5ba9fd3cb9eb" + }, + { + "name": "hmrc.self_employment_income.amount@W07000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe89022868a9bc6c335445b2" + }, + { + "name": "hmrc.self_employment_income.amount@W07000112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f13d57d4f618c8f2fb673426" + } + ] + }, + "local_authority": { + "status": "partially_active", + "candidate_count": 361, + "candidates": [ + { + "name": "hmrc.self_employment_income.amount@E06000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbec9b93040523762bd93406" + }, + { + "name": "hmrc.self_employment_income.amount@E06000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 81600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_173c44da8d260687502318b5" + }, + { + "name": "hmrc.self_employment_income.amount@E06000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8d437b6aab8352341922f99" + }, + { + "name": "hmrc.self_employment_income.amount@E06000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc950a2e91a08f404fbdc078" + }, + { + "name": "hmrc.self_employment_income.amount@E06000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3416c9b9fade65fe7aea5964" + }, + { + "name": "hmrc.self_employment_income.amount@E06000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_741375497fc9a3ee4e6825f0" + }, + { + "name": "hmrc.self_employment_income.amount@E06000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 224000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_371d847ede443ecc27781fba" + }, + { + "name": "hmrc.self_employment_income.amount@E06000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc4dc441e0000d5b7630b3c" + }, + { + "name": "hmrc.self_employment_income.amount@E06000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d804e30d1684814935801f18" + }, + { + "name": "hmrc.self_employment_income.amount@E06000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0633ab52d0c92264b8594309" + }, + { + "name": "hmrc.self_employment_income.amount@E06000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 377400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9585ada3db741b3fc60d57be" + }, + { + "name": "hmrc.self_employment_income.amount@E06000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c44099e30483b22ad95d22d" + }, + { + "name": "hmrc.self_employment_income.amount@E06000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bac8a4db420dee2dec62ad9" + }, + { + "name": "hmrc.self_employment_income.amount@E06000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 241000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e3fc11af3209a618eab5709" + }, + { + "name": "hmrc.self_employment_income.amount@E06000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 180900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7285b838d644e82c8db59bd" + }, + { + "name": "hmrc.self_employment_income.amount@E06000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62437ea9f8b92242a27c403a" + }, + { + "name": "hmrc.self_employment_income.amount@E06000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d88b2dbe343449acbbb388b2" + }, + { + "name": "hmrc.self_employment_income.amount@E06000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 222200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb947c8eb7cfd737f7b3c789" + }, + { + "name": "hmrc.self_employment_income.amount@E06000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 316400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cc7192e01443287c42b543d" + }, + { + "name": "hmrc.self_employment_income.amount@E06000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6696c6102771c7aba751a170" + }, + { + "name": "hmrc.self_employment_income.amount@E06000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4555e588056701ce567f238" + }, + { + "name": "hmrc.self_employment_income.amount@E06000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 383500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3948b7d4412b6ae9582067a" + }, + { + "name": "hmrc.self_employment_income.amount@E06000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 711000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1def57b24d64fd0b5f3c0b94" + }, + { + "name": "hmrc.self_employment_income.amount@E06000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5361e44d80113f1c80ef711" + }, + { + "name": "hmrc.self_employment_income.amount@E06000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 362100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a0979a7a10978363f658b0c" + }, + { + "name": "hmrc.self_employment_income.amount@E06000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 229900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ff12c7a7d216814e580f37d" + }, + { + "name": "hmrc.self_employment_income.amount@E06000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.self_employment_income.amount@E06000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 227700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a230e5db95b65de6b8fc1d60" + }, + { + "name": "hmrc.self_employment_income.amount@E06000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 227000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18ec00a0ef0e2f33f132fcde" + }, + { + "name": "hmrc.self_employment_income.amount@E06000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 264600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6874d99a3684a6893b627ffb" + }, + { + "name": "hmrc.self_employment_income.amount@E06000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 238000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef3755d893a808179b5af801" + }, + { + "name": "hmrc.self_employment_income.amount@E06000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfcd9478925bf11e7e4c21e8" + }, + { + "name": "hmrc.self_employment_income.amount@E06000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 405000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70196d6686655438860b20c3" + }, + { + "name": "hmrc.self_employment_income.amount@E06000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81eb467d8f1533d2fd553d3b" + }, + { + "name": "hmrc.self_employment_income.amount@E06000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 332000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0736933d84e2353ef836fff" + }, + { + "name": "hmrc.self_employment_income.amount@E06000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 176800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb273960dded38a759f02a38" + }, + { + "name": "hmrc.self_employment_income.amount@E06000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 175500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6359f000bd8dea731d03c4b" + }, + { + "name": "hmrc.self_employment_income.amount@E06000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 303300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5de878834a6330d7390b19e5" + }, + { + "name": "hmrc.self_employment_income.amount@E06000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 264600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_553a0a0b693c630c3d85d965" + }, + { + "name": "hmrc.self_employment_income.amount@E06000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 283400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72ef4024dd2d7629e27b362" + }, + { + "name": "hmrc.self_employment_income.amount@E06000043", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 552300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10b84cedab2b9dade301e6ef" + }, + { + "name": "hmrc.self_employment_income.amount@E06000044", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 231000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_366c35c54d9b4c2959865ed8" + }, + { + "name": "hmrc.self_employment_income.amount@E06000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 241200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f33bd8bf49976c5529df6cd6" + }, + { + "name": "hmrc.self_employment_income.amount@E06000046", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71417937c5311421b2d921b4" + }, + { + "name": "hmrc.self_employment_income.amount@E06000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 379800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_315e59c3656164af04634eff" + }, + { + "name": "hmrc.self_employment_income.amount@E06000049", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 607200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41304746abf706d450e88c82" + }, + { + "name": "hmrc.self_employment_income.amount@E06000050", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 396800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07ea52ee34fab152405691a6" + }, + { + "name": "hmrc.self_employment_income.amount@E06000051", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 468600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cf61b5e4b52a1342813bea3" + }, + { + "name": "hmrc.self_employment_income.amount@E06000052", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 910800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f81e9234846b42a849cbecd" + }, + { + "name": "hmrc.self_employment_income.amount@E06000053", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.self_employment_income.amount@E06000054", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 755200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b59945e60108badc496d258" + }, + { + "name": "hmrc.self_employment_income.amount@E06000055", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 287000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbee19d831eb31a95d8f8c91" + }, + { + "name": "hmrc.self_employment_income.amount@E06000056", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 480700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_831799bbdf4eb6256432f06a" + }, + { + "name": "hmrc.self_employment_income.amount@E06000057", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 387600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90dc284cd0a28378ef036fd7" + }, + { + "name": "hmrc.self_employment_income.amount@E06000058", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 508200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8165974d8a929dc20f5f175a" + }, + { + "name": "hmrc.self_employment_income.amount@E06000059", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 572000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9973ad27d21d2707b1cb7bf8" + }, + { + "name": "hmrc.self_employment_income.amount@E06000060", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1413600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4cad9de29167b7f2538e0d1" + }, + { + "name": "hmrc.self_employment_income.amount@E06000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 456000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7f623a3f7d322a50c9c79ad" + }, + { + "name": "hmrc.self_employment_income.amount@E06000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 768500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_28859b84a5bb32185969a8e6" + }, + { + "name": "hmrc.self_employment_income.amount@E06000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 192500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ec67340d28df8055482be8f" + }, + { + "name": "hmrc.self_employment_income.amount@E06000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 314500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbcaa2a7f5f28fcb9791d0b2" + }, + { + "name": "hmrc.self_employment_income.amount@E06000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1061900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd6de148a16606774232207c" + }, + { + "name": "hmrc.self_employment_income.amount@E06000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 828000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c69f79cb334756fe03921a4a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 260000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c9ba42257cbf3fd0abd3569" + }, + { + "name": "hmrc.self_employment_income.amount@E07000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18ee415048b6e212fcf0448c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 107500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_87f287a79c95011290d8014b" + }, + { + "name": "hmrc.self_employment_income.amount@E07000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 281600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_501f841bca8201e4e7d4503c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 279000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2df6004ae3ce15f852d062b1" + }, + { + "name": "hmrc.self_employment_income.amount@E07000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 118200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b1d6ad1cd8ee2e416a39dbb" + }, + { + "name": "hmrc.self_employment_income.amount@E07000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1884dc36aa7bfb2751b59962" + }, + { + "name": "hmrc.self_employment_income.amount@E07000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aacca940e8494e2f56c7a3d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23da42f207bed999b88a462b" + }, + { + "name": "hmrc.self_employment_income.amount@E07000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2f09d8c5bfc3fccf6bd9b11" + }, + { + "name": "hmrc.self_employment_income.amount@E07000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 134400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_12ec05e5e297328040ed8276" + }, + { + "name": "hmrc.self_employment_income.amount@E07000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94c527031e416377cc994995" + }, + { + "name": "hmrc.self_employment_income.amount@E07000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c827136571354f16355f4a9" + }, + { + "name": "hmrc.self_employment_income.amount@E07000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 265100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_594760af19931631b76a795a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 145200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5964ec71ace56053f0d4d48e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b72cf5f73de010efdbbe74aa" + }, + { + "name": "hmrc.self_employment_income.amount@E07000043", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 200000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6627e69876b94765d4bc708a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000044", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 177600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_010167ce1482c71faae233cf" + }, + { + "name": "hmrc.self_employment_income.amount@E07000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 230000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa2ac8d32157585ec81ea31d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000046", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db76280189ecffaf0f991978" + }, + { + "name": "hmrc.self_employment_income.amount@E07000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d52bedad4f2f306600b3bd8" + }, + { + "name": "hmrc.self_employment_income.amount@E07000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7419d5f05348b7a70785dc4" + }, + { + "name": "hmrc.self_employment_income.amount@E07000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 113400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7056a2dc986faac6309e442" + }, + { + "name": "hmrc.self_employment_income.amount@E07000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 198400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7af51d9c59c7d290fcbf5c0e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 189000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80d6c191f5a38773bb00b344" + }, + { + "name": "hmrc.self_employment_income.amount@E07000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 464800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_022bc6fb143267dea7354793" + }, + { + "name": "hmrc.self_employment_income.amount@E07000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 300000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e9f79b8123e63214cde0d4c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 241200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8676ca935ded9d317c10b55c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 195500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9afbae6829f66c0442a7562a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 153000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c357fe945cd5143b716ea20" + }, + { + "name": "hmrc.self_employment_income.amount@E07000070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 337200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_330bc9e2a228fa07aa0bf328" + }, + { + "name": "hmrc.self_employment_income.amount@E07000071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 287100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b27f28663a1232a2782fe27" + }, + { + "name": "hmrc.self_employment_income.amount@E07000072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 389400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_148ef1fe15cfb0524df23829" + }, + { + "name": "hmrc.self_employment_income.amount@E07000073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 118000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4612e05cf842ece8003e76fa" + }, + { + "name": "hmrc.self_employment_income.amount@E07000074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 119500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0496f5024818a73b7987da6e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75f570bcbd3ce469ac8afd3" + }, + { + "name": "hmrc.self_employment_income.amount@E07000076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 182700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79aadb5477774452fe553255" + }, + { + "name": "hmrc.self_employment_income.amount@E07000077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 284800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d177d049bccb1e8a749fe762" + }, + { + "name": "hmrc.self_employment_income.amount@E07000078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 179900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bdf29bbdc62d26fd2531e02" + }, + { + "name": "hmrc.self_employment_income.amount@E07000079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 271200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc1c50911d5845f8f1844a85" + }, + { + "name": "hmrc.self_employment_income.amount@E07000080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8719ad3caa3fe2f211a6987e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 120600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad8117e35b83cb28445581c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 212400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec31ab98d12dbaa6eac8ae34" + }, + { + "name": "hmrc.self_employment_income.amount@E07000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d3b3cb8e4422fe69666987e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 286000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03a62e4a03f570ee936bff7c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 308000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a01981a4e33f72239fa868d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 203400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a78f9db2de922e9d0f50dbe" + }, + { + "name": "hmrc.self_employment_income.amount@E07000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94be34e086f7bac6ce979b16" + }, + { + "name": "hmrc.self_employment_income.amount@E07000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ea7f9a4cc12e9e1f2c309bd" + }, + { + "name": "hmrc.self_employment_income.amount@E07000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56ef2b4f3d38f5c5d917490e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90002e286310d6ef85f093b0" + }, + { + "name": "hmrc.self_employment_income.amount@E07000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 261000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7a7c0b330368c5f676115b9" + }, + { + "name": "hmrc.self_employment_income.amount@E07000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dabc627f2d0b94b2f8199509" + }, + { + "name": "hmrc.self_employment_income.amount@E07000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 242200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1080fd243417cc23c4c897d2" + }, + { + "name": "hmrc.self_employment_income.amount@E07000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 339300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e204fb1f0435d8a9114a8828" + }, + { + "name": "hmrc.self_employment_income.amount@E07000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 178500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c1978ae7d3d98196b7ea037" + }, + { + "name": "hmrc.self_employment_income.amount@E07000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 376200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f91fe8f000751e4b70032550" + }, + { + "name": "hmrc.self_employment_income.amount@E07000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 331200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4dac85a6f6b824754ca27c2" + }, + { + "name": "hmrc.self_employment_income.amount@E07000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 288000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_737e12e374a663b75a9efcc7" + }, + { + "name": "hmrc.self_employment_income.amount@E07000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 263200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_017c05e552cb49d87f6c171c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4432df0be47b19f9164b86f" + }, + { + "name": "hmrc.self_employment_income.amount@E07000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 243900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a9a29851b01d38769550674" + }, + { + "name": "hmrc.self_employment_income.amount@E07000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 252000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e855cc5e6b5e575df4c5d3e8" + }, + { + "name": "hmrc.self_employment_income.amount@E07000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32d7b12284e18865a23a7c04" + }, + { + "name": "hmrc.self_employment_income.amount@E07000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 141400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_42e98fbb1b84f5ca636ed4ff" + }, + { + "name": "hmrc.self_employment_income.amount@E07000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_443feb96241758e9649022d0" + }, + { + "name": "hmrc.self_employment_income.amount@E07000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 281600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07d9705f2871505660ddb2cf" + }, + { + "name": "hmrc.self_employment_income.amount@E07000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 473600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_446d93d78895504f80066aeb" + }, + { + "name": "hmrc.self_employment_income.amount@E07000112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 129000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa424dadbcef8be635527da1" + }, + { + "name": "hmrc.self_employment_income.amount@E07000113", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 204300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff577b073ffb4441c21a15b" + }, + { + "name": "hmrc.self_employment_income.amount@E07000114", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 168000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b258f27ea4c0e05e08104fc" + }, + { + "name": "hmrc.self_employment_income.amount@E07000115", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 296100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7675d5baaa821f0431892712" + }, + { + "name": "hmrc.self_employment_income.amount@E07000116", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 387000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb769857157cd69f63fbed2e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000117", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44aefaf4104773c4c3ed19b6" + }, + { + "name": "hmrc.self_employment_income.amount@E07000118", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06596769623ce64a9c2eb84f" + }, + { + "name": "hmrc.self_employment_income.amount@E07000119", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16a88e7cf4eccbc3e98bd507" + }, + { + "name": "hmrc.self_employment_income.amount@E07000120", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7161002f4e312b5b6ee8f0dc" + }, + { + "name": "hmrc.self_employment_income.amount@E07000121", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 159200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a97f431c57324b575dacbd52" + }, + { + "name": "hmrc.self_employment_income.amount@E07000122", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 88500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78a3d6ef8b24d1cd62518cc3" + }, + { + "name": "hmrc.self_employment_income.amount@E07000123", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 127800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2474449c2452f2c13da79b4" + }, + { + "name": "hmrc.self_employment_income.amount@E07000124", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_12156e86e2756d40ab74b246" + }, + { + "name": "hmrc.self_employment_income.amount@E07000125", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf15e7ba2aed975e358881c4" + }, + { + "name": "hmrc.self_employment_income.amount@E07000126", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_410ecc4545d4d3366128b578" + }, + { + "name": "hmrc.self_employment_income.amount@E07000127", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 111000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ec181f37fa27c5c6f81a594" + }, + { + "name": "hmrc.self_employment_income.amount@E07000128", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb0a2b5771c4bd0a13593f1c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000129", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 106000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33283772bf67843564b9e4bb" + }, + { + "name": "hmrc.self_employment_income.amount@E07000130", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 192000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b697bac9bee07f9fafe6888d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000131", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 177600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f34e884ec258d28293044791" + }, + { + "name": "hmrc.self_employment_income.amount@E07000132", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 132000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6232a9f037cedac63a5df257" + }, + { + "name": "hmrc.self_employment_income.amount@E07000133", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_482ebbb01d73f96fa7787607" + }, + { + "name": "hmrc.self_employment_income.amount@E07000134", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 125000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97b0ec62cd9d6543b5f4e2ac" + }, + { + "name": "hmrc.self_employment_income.amount@E07000135", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 58400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6e050c22cb5e2bcd501ac42" + }, + { + "name": "hmrc.self_employment_income.amount@E07000136", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6803c96836a001b722448f8" + }, + { + "name": "hmrc.self_employment_income.amount@E07000137", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e557ecd22498e790d20e8f6" + }, + { + "name": "hmrc.self_employment_income.amount@E07000138", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63de567a36d1384c738e885" + }, + { + "name": "hmrc.self_employment_income.amount@E07000139", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 137400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1891fc58fa1d71588b15af21" + }, + { + "name": "hmrc.self_employment_income.amount@E07000140", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 139800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b63046745791046eed8e5dc1" + }, + { + "name": "hmrc.self_employment_income.amount@E07000141", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 180800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_479bc5f0f0ca86f583f4eb43" + }, + { + "name": "hmrc.self_employment_income.amount@E07000142", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95c6100b4051667370f73e46" + }, + { + "name": "hmrc.self_employment_income.amount@E07000143", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 186400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7788f9f6e9f6ffde190132e" + }, + { + "name": "hmrc.self_employment_income.amount@E07000144", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 216000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb6499ef4c7e3ab3e74ad6d9" + }, + { + "name": "hmrc.self_employment_income.amount@E07000145", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50a565d46b353435158af838" + }, + { + "name": "hmrc.self_employment_income.amount@E07000146", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 252900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4637c427b42d77526cd545c1" + }, + { + "name": "hmrc.self_employment_income.amount@E07000147", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2bbea2b25141aa7b769d027" + }, + { + "name": "hmrc.self_employment_income.amount@E07000148", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 163800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95a598c9cbc3c83e0fe1104" + }, + { + "name": "hmrc.self_employment_income.amount@E07000149", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 221400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c52c6800094c83150be2416" + }, + { + "name": "hmrc.self_employment_income.amount@E07000170", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b09b0c3589fd36d80fd63d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000171", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 124200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd271c6788c136f4eafd613c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000172", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e886700af9fd9158710bf84a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000173", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd1427d6f6c214dbab0727c9" + }, + { + "name": "hmrc.self_employment_income.amount@E07000174", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e4ebe94712c79ef4ca44b3d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000175", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 170800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3672fc9404aef20f25bfba60" + }, + { + "name": "hmrc.self_employment_income.amount@E07000176", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 193200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_644a165963290e77410be401" + }, + { + "name": "hmrc.self_employment_income.amount@E07000177", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 237000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9875a148f9ae0b8fc3ac0d42" + }, + { + "name": "hmrc.self_employment_income.amount@E07000178", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 215200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26daea30f620809bd532befc" + }, + { + "name": "hmrc.self_employment_income.amount@E07000179", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 402000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4455529ba0fb4f5bc6daa7" + }, + { + "name": "hmrc.self_employment_income.amount@E07000180", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 294000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31287ea3fb4fbb16645418e8" + }, + { + "name": "hmrc.self_employment_income.amount@E07000181", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 300800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a45f6cdde191ba9f442c27fa" + }, + { + "name": "hmrc.self_employment_income.amount@E07000192", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0cf02f99c0c87f081d9637c" + }, + { + "name": "hmrc.self_employment_income.amount@E07000193", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 118800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dba346e011e58e1218b79e8f" + }, + { + "name": "hmrc.self_employment_income.amount@E07000194", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 161700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4981f584dd4c18cfcfd38d4" + }, + { + "name": "hmrc.self_employment_income.amount@E07000195", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 115200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_137d461a308351ea36ea9882" + }, + { + "name": "hmrc.self_employment_income.amount@E07000196", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 138600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59bf43d1af1c171cae66ef12" + }, + { + "name": "hmrc.self_employment_income.amount@E07000197", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 158900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_164134182bbd731b42eab704" + }, + { + "name": "hmrc.self_employment_income.amount@E07000198", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 117000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c4bc3f6c09c5a3916219c5d" + }, + { + "name": "hmrc.self_employment_income.amount@E07000199", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14c70de8dee2fe6d04de0f23" + }, + { + "name": "hmrc.self_employment_income.amount@E07000200", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 196200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f9a67f84f18c59c0d10a1cd" + }, + { + "name": "hmrc.self_employment_income.amount@E07000202", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 118200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0e4a159cacb83ab468a8ef2" + }, + { + "name": "hmrc.self_employment_income.amount@E07000203", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57ef767826feb3eb486eb7f" + }, + { + "name": "hmrc.self_employment_income.amount@E07000207", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 899800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48349b780ff16fa2f5cc3cae" + }, + { + "name": "hmrc.self_employment_income.amount@E07000208", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07d61cb43b96af852bc0d7b6" + }, + { + "name": "hmrc.self_employment_income.amount@E07000209", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 551000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7c3448c66e633cdf3df14d0" + }, + { + "name": "hmrc.self_employment_income.amount@E07000210", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 241500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_598041ecef5f118673c938e3" + }, + { + "name": "hmrc.self_employment_income.amount@E07000211", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 311000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2272016753ff8ba58d27758a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000212", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 164000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4621caeb7636c01314c9cc39" + }, + { + "name": "hmrc.self_employment_income.amount@E07000213", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0deb382f1b85af5bacb4a7f" + }, + { + "name": "hmrc.self_employment_income.amount@E07000214", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 171500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef04aebdbe2db9944c68d24" + }, + { + "name": "hmrc.self_employment_income.amount@E07000215", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 283200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4e6e8de67c21e441c0887fa" + }, + { + "name": "hmrc.self_employment_income.amount@E07000216", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 524000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b49d960b993f5c8d8c465763" + }, + { + "name": "hmrc.self_employment_income.amount@E07000217", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 279300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b599d062f7b4b26a56deba0" + }, + { + "name": "hmrc.self_employment_income.amount@E07000218", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3226b1dec5510592678cf21a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000219", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 96000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf98f3f247403e24c1da2913" + }, + { + "name": "hmrc.self_employment_income.amount@E07000220", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be61c33adb4788af916150a5" + }, + { + "name": "hmrc.self_employment_income.amount@E07000221", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 261000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9301bf7ab147be6aa59806b" + }, + { + "name": "hmrc.self_employment_income.amount@E07000222", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 205600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18a3b1c59eab43ce7bfb7876" + }, + { + "name": "hmrc.self_employment_income.amount@E07000223", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a64fde2c1990d8ff0a18e487" + }, + { + "name": "hmrc.self_employment_income.amount@E07000224", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 246400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_413103457ff0f59c2c77b0de" + }, + { + "name": "hmrc.self_employment_income.amount@E07000225", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 282600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9901b422db96896bdea9e3a3" + }, + { + "name": "hmrc.self_employment_income.amount@E07000226", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 152600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9a3a3976fcb4cc8b1b471ac" + }, + { + "name": "hmrc.self_employment_income.amount@E07000227", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 270000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29e28d1632ce77e041712fc1" + }, + { + "name": "hmrc.self_employment_income.amount@E07000228", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 310000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_abcd8da6cfb35a4cb06dd121" + }, + { + "name": "hmrc.self_employment_income.amount@E07000229", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8216ef6b0be9be038da90e50" + }, + { + "name": "hmrc.self_employment_income.amount@E07000234", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 210000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e471ac1361f70eb5a8695fa" + }, + { + "name": "hmrc.self_employment_income.amount@E07000235", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 144000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3addf3b231a68bfd717c58a6" + }, + { + "name": "hmrc.self_employment_income.amount@E07000236", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9962f6a406ddd85d5297393a" + }, + { + "name": "hmrc.self_employment_income.amount@E07000237", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 93000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f967b78a669eb9361c364eb4" + }, + { + "name": "hmrc.self_employment_income.amount@E07000238", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 197600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aba9c96b72907005bce1c140" + }, + { + "name": "hmrc.self_employment_income.amount@E07000239", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 119400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e802818db868fad63f2d51ae" + }, + { + "name": "hmrc.self_employment_income.amount@E07000240", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 664400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_724558102d84480c0235b078" + }, + { + "name": "hmrc.self_employment_income.amount@E07000241", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 204400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_737c6818014ee199c8abedb8" + }, + { + "name": "hmrc.self_employment_income.amount@E07000242", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 349800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b636dcdbb3f0e78f648dfd5" + }, + { + "name": "hmrc.self_employment_income.amount@E07000243", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 106500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaad56bf275504dc631e27ee" + }, + { + "name": "hmrc.self_employment_income.amount@E07000244", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 345000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8f715dd6858d2777aef32ba" + }, + { + "name": "hmrc.self_employment_income.amount@E07000245", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 264000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ee84aba3c4cfbedb5114a8" + }, + { + "name": "hmrc.self_employment_income.amount@E08000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 264000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07d6599af71dede532157a87" + }, + { + "name": "hmrc.self_employment_income.amount@E08000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 176000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5814984df71552363c66057" + }, + { + "name": "hmrc.self_employment_income.amount@E08000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 475200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32b28f3004a136dde3323ce1" + }, + { + "name": "hmrc.self_employment_income.amount@E08000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 192600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b72c004360603c87d1d6b5b" + }, + { + "name": "hmrc.self_employment_income.amount@E08000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 164800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d24000015234a905d32da87" + }, + { + "name": "hmrc.self_employment_income.amount@E08000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 258000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4fcc5ad7068888ef5cec8f9" + }, + { + "name": "hmrc.self_employment_income.amount@E08000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 438600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_28d0aac25c7206d757c3a078" + }, + { + "name": "hmrc.self_employment_income.amount@E08000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_747fcc55f3bd24028f1d362c" + }, + { + "name": "hmrc.self_employment_income.amount@E08000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 364800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f3f6d5a68720505350cd9a5" + }, + { + "name": "hmrc.self_employment_income.amount@E08000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 304500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3423fe6c6ae9ec164f42fe82" + }, + { + "name": "hmrc.self_employment_income.amount@E08000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 112200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d6381bc8afc271053337cbf" + }, + { + "name": "hmrc.self_employment_income.amount@E08000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 365500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5471501f9802fa8d8aa830a" + }, + { + "name": "hmrc.self_employment_income.amount@E08000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 130200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_035c74dc5719b825d6721744" + }, + { + "name": "hmrc.self_employment_income.amount@E08000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 242000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c839722889411031ef5b912" + }, + { + "name": "hmrc.self_employment_income.amount@E08000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 294000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d34bc0cb37a45773ee8e9a8" + }, + { + "name": "hmrc.self_employment_income.amount@E08000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 213400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b60da010d7d5cd89107ed6d" + }, + { + "name": "hmrc.self_employment_income.amount@E08000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 266500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39a68fddcc3c0da1e387902b" + }, + { + "name": "hmrc.self_employment_income.amount@E08000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 222200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1beb710b5184fb9e924307a" + }, + { + "name": "hmrc.self_employment_income.amount@E08000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 533600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f8b7bf23a737e2c8b9e7a19" + }, + { + "name": "hmrc.self_employment_income.amount@E08000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 289000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2199c73e33afede4273f8093" + }, + { + "name": "hmrc.self_employment_income.amount@E08000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92a576be472cb10cf9b98b2c" + }, + { + "name": "hmrc.self_employment_income.amount@E08000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df9a579eeeb37ddf52b4c098" + }, + { + "name": "hmrc.self_employment_income.amount@E08000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b60ba3c7a03b1dff1fba8a8" + }, + { + "name": "hmrc.self_employment_income.amount@E08000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 944000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c1f5c97204a64ab3f93b79b" + }, + { + "name": "hmrc.self_employment_income.amount@E08000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 229200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2423915970f14cdf71012a00" + }, + { + "name": "hmrc.self_employment_income.amount@E08000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 261300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de783e5e531eb748d8ea9acf" + }, + { + "name": "hmrc.self_employment_income.amount@E08000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 213600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_326bcb6afad2f91febc2dc67" + }, + { + "name": "hmrc.self_employment_income.amount@E08000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 276300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d1d12aa9c008cf270336404" + }, + { + "name": "hmrc.self_employment_income.amount@E08000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 229900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9134dd887e2aed9b58140605" + }, + { + "name": "hmrc.self_employment_income.amount@E08000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 201000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_707cae067684ec512f56bcbe" + }, + { + "name": "hmrc.self_employment_income.amount@E08000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 424000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f886c97c4a5d4005f9cf671d" + }, + { + "name": "hmrc.self_employment_income.amount@E08000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 183000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6997ace0805c08579e6fb49b" + }, + { + "name": "hmrc.self_employment_income.amount@E08000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 397100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6de2bbce600dabb3257051c" + }, + { + "name": "hmrc.self_employment_income.amount@E08000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 882000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbcd3abb657fd30e82596b53" + }, + { + "name": "hmrc.self_employment_income.amount@E08000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 306600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd763b2b015fad358f8eca1d" + }, + { + "name": "hmrc.self_employment_income.amount@E08000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 135100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e1a1d7b28bc46febbf8fb9e" + }, + { + "name": "hmrc.self_employment_income.amount@E09000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 588000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb2d4a5c47300aaf718a7d63" + }, + { + "name": "hmrc.self_employment_income.amount@E09000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 402800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_084e5530fff0dff66c865571" + }, + { + "name": "hmrc.self_employment_income.amount@E09000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1491000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e45a246ea45a83e798d5d9a" + }, + { + "name": "hmrc.self_employment_income.amount@E09000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 336000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ba1a7f7ad1813a053631e0" + }, + { + "name": "hmrc.self_employment_income.amount@E09000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 789600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_563c382c64d4652472725b8f" + }, + { + "name": "hmrc.self_employment_income.amount@E09000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 763400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_037e2ef0d4b4ad9b790d9ad1" + }, + { + "name": "hmrc.self_employment_income.amount@E09000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3043000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c4ec844ef3a9d423d1ee433" + }, + { + "name": "hmrc.self_employment_income.amount@E09000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 559200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b7e2f351aecbea4412d13c" + }, + { + "name": "hmrc.self_employment_income.amount@E09000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 948300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cd0ec8d43f86569cdd42b37" + }, + { + "name": "hmrc.self_employment_income.amount@E09000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 587400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0708d0b79c1f7b49cfc9544" + }, + { + "name": "hmrc.self_employment_income.amount@E09000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 664000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_624befade27981a7109841df" + }, + { + "name": "hmrc.self_employment_income.amount@E09000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 639200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_284cba989362f12dba7f233d" + }, + { + "name": "hmrc.self_employment_income.amount@E09000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1107600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_000c5d04aa3cc6e4072804c8" + }, + { + "name": "hmrc.self_employment_income.amount@E09000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1155600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f68c9a97b2d51d12afd5b739" + }, + { + "name": "hmrc.self_employment_income.amount@E09000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 679200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3c4016044340c70c70f1c5d" + }, + { + "name": "hmrc.self_employment_income.amount@E09000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 502000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab0ff8c40d5c2fa7014a0381" + }, + { + "name": "hmrc.self_employment_income.amount@E09000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 453900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15afade0621876d560128e2c" + }, + { + "name": "hmrc.self_employment_income.amount@E09000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 596000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59dbd715c0c1157eb464d0ed" + }, + { + "name": "hmrc.self_employment_income.amount@E09000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1177600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83b68f1adb6ba1a1ee3735f3" + }, + { + "name": "hmrc.self_employment_income.amount@E09000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3330000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0af37d15845bad62827b9f0a" + }, + { + "name": "hmrc.self_employment_income.amount@E09000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 382800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed41b6a0fe7f06e00c275257" + }, + { + "name": "hmrc.self_employment_income.amount@E09000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 943800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_351b123dd5943cc6f925dffd" + }, + { + "name": "hmrc.self_employment_income.amount@E09000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 598500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_efc7bb0a5e556559557da31a" + }, + { + "name": "hmrc.self_employment_income.amount@E09000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 990000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55e9afdb6f6d6924bd14c1e6" + }, + { + "name": "hmrc.self_employment_income.amount@E09000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 642000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c81dc3bd65f5d4f167e8711b" + }, + { + "name": "hmrc.self_employment_income.amount@E09000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 676000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_adc779b920e08152280e4772" + }, + { + "name": "hmrc.self_employment_income.amount@E09000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1248800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d51fbb61afe3c41b9081496" + }, + { + "name": "hmrc.self_employment_income.amount@E09000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 952000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cca9ade2fc8ab5d34b8e983e" + }, + { + "name": "hmrc.self_employment_income.amount@E09000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 315900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4319daad099b967229d56ee" + }, + { + "name": "hmrc.self_employment_income.amount@E09000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 536000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d13d51971fecdc36f6f7083" + }, + { + "name": "hmrc.self_employment_income.amount@E09000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 648000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_762e120b05a8659d3253a54b" + }, + { + "name": "hmrc.self_employment_income.amount@E09000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1996800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c3e48b8bd0c0faa27d57a60" + }, + { + "name": "hmrc.self_employment_income.amount@E09000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2457000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_009f7a406f74bbd381601519" + }, + { + "name": "hmrc.self_employment_income.amount@N09000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 145600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fad8816f555ae50db04ecfb2" + }, + { + "name": "hmrc.self_employment_income.amount@N09000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 283400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_444ed490d6fc8de9191b26f1" + }, + { + "name": "hmrc.self_employment_income.amount@N09000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 330000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97e812f1330fd52b20a283d5" + }, + { + "name": "hmrc.self_employment_income.amount@N09000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 214000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5c3b465265a738f84cf2f39" + }, + { + "name": "hmrc.self_employment_income.amount@N09000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 165600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4efeff373cd1203387257643" + }, + { + "name": "hmrc.self_employment_income.amount@N09000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09931d7e5f3c8932e313c4fd" + }, + { + "name": "hmrc.self_employment_income.amount@N09000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 200800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf96f351cf22ae6c7c30111e" + }, + { + "name": "hmrc.self_employment_income.amount@N09000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 147700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f67e5d2970de49128e7b46f" + }, + { + "name": "hmrc.self_employment_income.amount@N09000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 173000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fddfdf53d74b6137b138ffa0" + }, + { + "name": "hmrc.self_employment_income.amount@N09000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 244400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b1e4df6579f48e2d277a135" + }, + { + "name": "hmrc.self_employment_income.amount@N09000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 238500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4461575e8866699444acc70c" + }, + { + "name": "hmrc.self_employment_income.amount@S12000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a86360688684e6c891c3cec3" + }, + { + "name": "hmrc.self_employment_income.amount@S12000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 192600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae3112fb08695b78e63bd13b" + }, + { + "name": "hmrc.self_employment_income.amount@S12000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 101000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_899ed00cc937141265e39abe" + }, + { + "name": "hmrc.self_employment_income.amount@S12000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 186200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f697b0ab4953add1519c1d8e" + }, + { + "name": "hmrc.self_employment_income.amount@S12000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 194000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_411520bf3c22b92520362d7b" + }, + { + "name": "hmrc.self_employment_income.amount@S12000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de59810c9016ede2b25df71" + }, + { + "name": "hmrc.self_employment_income.amount@S12000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cccba25c0856ecf72a8a0eb6" + }, + { + "name": "hmrc.self_employment_income.amount@S12000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 304500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b9db5f02c9f9172ce14bfbe" + }, + { + "name": "hmrc.self_employment_income.amount@S12000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65562e4a27ca6c4133964fef" + }, + { + "name": "hmrc.self_employment_income.amount@S12000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 121500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34be5c937e0cc84848c41a02" + }, + { + "name": "hmrc.self_employment_income.amount@S12000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 87200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3b2b5d1923dcf86de2a75c3" + }, + { + "name": "hmrc.self_employment_income.amount@S12000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_008f9ae0e338e445386db3c7" + }, + { + "name": "hmrc.self_employment_income.amount@S12000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74689b09f1ccbd374c309d9e" + }, + { + "name": "hmrc.self_employment_income.amount@S12000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 178400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9c47d576ceded614452f6ca" + }, + { + "name": "hmrc.self_employment_income.amount@S12000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25cf5ea9541f347eadb06716" + }, + { + "name": "hmrc.self_employment_income.amount@S12000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 114800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd3e285f222c75b268ee12ad" + }, + { + "name": "hmrc.self_employment_income.amount@S12000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 297700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2979e3517988c1a4cd33904" + }, + { + "name": "hmrc.self_employment_income.amount@S12000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 160000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61c1f10af0d52f099928c540" + }, + { + "name": "hmrc.self_employment_income.amount@S12000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f949037d0c4cfe98fb08701" + }, + { + "name": "hmrc.self_employment_income.amount@S12000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 319200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b0dddd24db0700ad81d19df" + }, + { + "name": "hmrc.self_employment_income.amount@S12000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 157800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25c82aae5f43d3782ca2e332" + }, + { + "name": "hmrc.self_employment_income.amount@S12000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1983801170fad89c679f36d7" + }, + { + "name": "hmrc.self_employment_income.amount@S12000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 142200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8a7e6bd5342264316e182fb" + }, + { + "name": "hmrc.self_employment_income.amount@S12000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f72f7205f7b0f361811c89a" + }, + { + "name": "hmrc.self_employment_income.amount@S12000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 154000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19c2a8e4795477b7019e1fd" + }, + { + "name": "hmrc.self_employment_income.amount@S12000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 149400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6512c016fbf9560092f6ec4c" + }, + { + "name": "hmrc.self_employment_income.amount@S12000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 86000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_926a2ecd7e304efff0336924" + }, + { + "name": "hmrc.self_employment_income.amount@S12000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 178000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a17ce98ce40d138a8b801af7" + }, + { + "name": "hmrc.self_employment_income.amount@S12000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 355200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_335c7da13da2a957d75aac75" + }, + { + "name": "hmrc.self_employment_income.amount@S12000048", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 252900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_295da016057ac5972a5d4b38" + }, + { + "name": "hmrc.self_employment_income.amount@S12000049", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 570400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_451dcdfbddc0935276cb557f" + }, + { + "name": "hmrc.self_employment_income.amount@S12000050", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 231000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4a835dce2ae00eeaac2e96" + }, + { + "name": "hmrc.self_employment_income.amount@W06000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e726fab36fb39a56e3e91c7" + }, + { + "name": "hmrc.self_employment_income.amount@W06000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 173700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_236d271645df27c7e229a1c4" + }, + { + "name": "hmrc.self_employment_income.amount@W06000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 126000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc200b08a84c833262db16a6" + }, + { + "name": "hmrc.self_employment_income.amount@W06000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_748b8d09f41d0416d7c8264a" + }, + { + "name": "hmrc.self_employment_income.amount@W06000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 142800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74b4ed379bc03ed1c2af3ab7" + }, + { + "name": "hmrc.self_employment_income.amount@W06000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_550ec3f17d056ca9a1bf77d3" + }, + { + "name": "hmrc.self_employment_income.amount@W06000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 102600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d000ae3d57f6cecd4fd1bd26" + }, + { + "name": "hmrc.self_employment_income.amount@W06000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 140800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b0abd9fd1d80dddb77af2c3" + }, + { + "name": "hmrc.self_employment_income.amount@W06000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 190300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d33f422c6f81e261b915838" + }, + { + "name": "hmrc.self_employment_income.amount@W06000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 170400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_11f6847663c2f8a7abca0e35" + }, + { + "name": "hmrc.self_employment_income.amount@W06000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86e57647443fc30d8990e71d" + }, + { + "name": "hmrc.self_employment_income.amount@W06000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 103500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e12982b0af2118ea4bc56b0" + }, + { + "name": "hmrc.self_employment_income.amount@W06000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 168700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ab7bccef8b7b2319afa7016" + }, + { + "name": "hmrc.self_employment_income.amount@W06000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 331500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_610d2a243bb8b1dd7ed6037f" + }, + { + "name": "hmrc.self_employment_income.amount@W06000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 184500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_739d484c57fc8809d16a343c" + }, + { + "name": "hmrc.self_employment_income.amount@W06000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 169600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_140366f3a3e1a38f0fe88f67" + }, + { + "name": "hmrc.self_employment_income.amount@W06000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7e5856439f14a5c0a855b4" + }, + { + "name": "hmrc.self_employment_income.amount@W06000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b75245dda6d0d16857342211" + }, + { + "name": "hmrc.self_employment_income.amount@W06000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 133200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dc3117977243753f52f447e" + }, + { + "name": "hmrc.self_employment_income.amount@W06000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f02e924d4b0921f404a65a0" + }, + { + "name": "hmrc.self_employment_income.amount@W06000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 219600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b55fa1261579149f3f69a1" + }, + { + "name": "hmrc.self_employment_income.amount@W06000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20ea366fe8872de28ec7105d" + } + ] + } + } + }, + "hmrc.self_employment_income.count": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "hmrc.self_employment_income.count@E14001063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bee36e301f98a0a2ad97fb9f" + }, + { + "name": "hmrc.self_employment_income.count@E14001064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c3dc931bc730c24ff43694c" + }, + { + "name": "hmrc.self_employment_income.count@E14001065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca5725348ccf99587b7146bc" + }, + { + "name": "hmrc.self_employment_income.count@E14001066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f74c7c22a3ca2a1306804c26" + }, + { + "name": "hmrc.self_employment_income.count@E14001067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cd3e00fb76c9926428c0456" + }, + { + "name": "hmrc.self_employment_income.count@E14001068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7ce6083f8958d680c5280c0" + }, + { + "name": "hmrc.self_employment_income.count@E14001069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b62208bc4b9deff51edd768a" + }, + { + "name": "hmrc.self_employment_income.count@E14001070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50ba2c956c968843c075820b" + }, + { + "name": "hmrc.self_employment_income.count@E14001071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_75602647cb8d0408d8cffcd9" + }, + { + "name": "hmrc.self_employment_income.count@E14001072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e88645b8832a15218801a9b" + }, + { + "name": "hmrc.self_employment_income.count@E14001073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5aa9cb8971a8e8dd0957ff0" + }, + { + "name": "hmrc.self_employment_income.count@E14001074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53c4658d66187b484db20990" + }, + { + "name": "hmrc.self_employment_income.count@E14001075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_062c9fc88084ef4e4599dbe5" + }, + { + "name": "hmrc.self_employment_income.count@E14001076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b4fd874dd31d09af0491def" + }, + { + "name": "hmrc.self_employment_income.count@E14001077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32b79a63db6eed68f06a4b59" + }, + { + "name": "hmrc.self_employment_income.count@E14001078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_959c7c2f7429dbfa19c925eb" + }, + { + "name": "hmrc.self_employment_income.count@E14001079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21d44fe2f9c311a1a4684076" + }, + { + "name": "hmrc.self_employment_income.count@E14001080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_464ba8d6b6ca531a7d6aa591" + }, + { + "name": "hmrc.self_employment_income.count@E14001081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35fee076ff99259f0c416533" + }, + { + "name": "hmrc.self_employment_income.count@E14001082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f93aeb8f94ee2bd428cd9e99" + }, + { + "name": "hmrc.self_employment_income.count@E14001083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe4af4da7d0e015e518082e" + }, + { + "name": "hmrc.self_employment_income.count@E14001084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e06f5277b42869163ae6687" + }, + { + "name": "hmrc.self_employment_income.count@E14001085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c630a128c8f69674d8220339" + }, + { + "name": "hmrc.self_employment_income.count@E14001086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_627dd9b5b7d9152c32315ada" + }, + { + "name": "hmrc.self_employment_income.count@E14001087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3c8cec14dbcd15b081c75d1" + }, + { + "name": "hmrc.self_employment_income.count@E14001088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_def5a891c842f156f40d2633" + }, + { + "name": "hmrc.self_employment_income.count@E14001089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c099d8cc07b3d6000e38dd86" + }, + { + "name": "hmrc.self_employment_income.count@E14001090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f666ff6cd526804b5cc70afd" + }, + { + "name": "hmrc.self_employment_income.count@E14001091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a3eacb5007ba8cee9d052a0" + }, + { + "name": "hmrc.self_employment_income.count@E14001092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_60ea0e20ab4b801d9f28d392" + }, + { + "name": "hmrc.self_employment_income.count@E14001093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbe88cf28d41a62783d9b395" + }, + { + "name": "hmrc.self_employment_income.count@E14001094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4e3af14ea8262929756d871" + }, + { + "name": "hmrc.self_employment_income.count@E14001095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef1945191cf0991d60066343" + }, + { + "name": "hmrc.self_employment_income.count@E14001096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5475ddcbe3a69d412355c16" + }, + { + "name": "hmrc.self_employment_income.count@E14001097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9112a20ea5b63f177c8a3e4" + }, + { + "name": "hmrc.self_employment_income.count@E14001098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05436acb65ffdeb3f790c9a" + }, + { + "name": "hmrc.self_employment_income.count@E14001099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee878b5b506153eba08cd5fe" + }, + { + "name": "hmrc.self_employment_income.count@E14001100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_168cc207c598f67c61b92b82" + }, + { + "name": "hmrc.self_employment_income.count@E14001101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a2455048bba60facd2dc264" + }, + { + "name": "hmrc.self_employment_income.count@E14001102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67d6c1f63913d4f710026c63" + }, + { + "name": "hmrc.self_employment_income.count@E14001103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47791dc698335657b44db16e" + }, + { + "name": "hmrc.self_employment_income.count@E14001104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_146548c278a575d9a348becb" + }, + { + "name": "hmrc.self_employment_income.count@E14001105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f86a4078eb15a1803bb4206" + }, + { + "name": "hmrc.self_employment_income.count@E14001106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dc849025109771da11da0ae" + }, + { + "name": "hmrc.self_employment_income.count@E14001107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9275cae11d136884ce48268" + }, + { + "name": "hmrc.self_employment_income.count@E14001108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a093550b684c770c17e1dc22" + }, + { + "name": "hmrc.self_employment_income.count@E14001109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fe1f2e794facf66ffbe87eb" + }, + { + "name": "hmrc.self_employment_income.count@E14001110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_370d9b64b5bacc3f85babf78" + }, + { + "name": "hmrc.self_employment_income.count@E14001111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0310004efe6aa8d4c1a57ce8" + }, + { + "name": "hmrc.self_employment_income.count@E14001112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_46b53ae317fb58b6fd855a66" + }, + { + "name": "hmrc.self_employment_income.count@E14001113", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_941570c398a621a5d9ab8de5" + }, + { + "name": "hmrc.self_employment_income.count@E14001114", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcdd39fa0d132a0edfde1a05" + }, + { + "name": "hmrc.self_employment_income.count@E14001115", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67163a5f5b3054ab1b75b725" + }, + { + "name": "hmrc.self_employment_income.count@E14001116", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77e528c808d08ffdb331de4" + }, + { + "name": "hmrc.self_employment_income.count@E14001117", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34c066653d7c2adf5d59b8da" + }, + { + "name": "hmrc.self_employment_income.count@E14001118", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7490ab55069b68eebcc16f5e" + }, + { + "name": "hmrc.self_employment_income.count@E14001119", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b47e5fd41e1790e15c7a83e9" + }, + { + "name": "hmrc.self_employment_income.count@E14001120", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0016857fe0ac61533ad67cbb" + }, + { + "name": "hmrc.self_employment_income.count@E14001121", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65906c13a3c0b1a3220b1c2a" + }, + { + "name": "hmrc.self_employment_income.count@E14001122", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dafe93cd73bd4590e1b13850" + }, + { + "name": "hmrc.self_employment_income.count@E14001123", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_243897d4538071cbcf87ffb1" + }, + { + "name": "hmrc.self_employment_income.count@E14001124", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7da0af28ffec93a8f877e9cc" + }, + { + "name": "hmrc.self_employment_income.count@E14001125", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93e078df66ab08238b79a37c" + }, + { + "name": "hmrc.self_employment_income.count@E14001126", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21ab0732304129fed105ce78" + }, + { + "name": "hmrc.self_employment_income.count@E14001127", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47992d70fe9f4808a89fc28c" + }, + { + "name": "hmrc.self_employment_income.count@E14001128", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_601084df2464bc0ed908624e" + }, + { + "name": "hmrc.self_employment_income.count@E14001129", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6662d99953c9e8400e5269d" + }, + { + "name": "hmrc.self_employment_income.count@E14001130", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b436e53efea23e85c6b9bfe3" + }, + { + "name": "hmrc.self_employment_income.count@E14001131", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d90c2bd1535a648426a2df2" + }, + { + "name": "hmrc.self_employment_income.count@E14001132", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_02ef90b107b19a5aa616acda" + }, + { + "name": "hmrc.self_employment_income.count@E14001133", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_46c82deeae995e5895526212" + }, + { + "name": "hmrc.self_employment_income.count@E14001134", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a1eeee6931acfe0d90883f4" + }, + { + "name": "hmrc.self_employment_income.count@E14001135", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf7216911bbd91919088f00" + }, + { + "name": "hmrc.self_employment_income.count@E14001136", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea72bd69b9477eac6d5ec833" + }, + { + "name": "hmrc.self_employment_income.count@E14001137", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_263df7d23c66f1c501505ac4" + }, + { + "name": "hmrc.self_employment_income.count@E14001138", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f2744d56d1b770056c14e49" + }, + { + "name": "hmrc.self_employment_income.count@E14001139", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c18e714d9d55d415f7ba62c" + }, + { + "name": "hmrc.self_employment_income.count@E14001140", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_360f48925d560f54c1dcfcce" + }, + { + "name": "hmrc.self_employment_income.count@E14001141", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ddb94ea86355ff852f0050b" + }, + { + "name": "hmrc.self_employment_income.count@E14001142", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc47e3ceca7b2256c7aaf55f" + }, + { + "name": "hmrc.self_employment_income.count@E14001143", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_033a6ca4a4eb9346af5186d8" + }, + { + "name": "hmrc.self_employment_income.count@E14001144", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c41a19af5acc6d6d6fd09f19" + }, + { + "name": "hmrc.self_employment_income.count@E14001145", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95048aaad5cbb6dde7e5e927" + }, + { + "name": "hmrc.self_employment_income.count@E14001146", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f910720534084c1522f07d" + }, + { + "name": "hmrc.self_employment_income.count@E14001147", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d108af265220163572da345" + }, + { + "name": "hmrc.self_employment_income.count@E14001148", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_894fb51acce323de2ca48ab4" + }, + { + "name": "hmrc.self_employment_income.count@E14001149", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a57365e55ba7007d0923a87" + }, + { + "name": "hmrc.self_employment_income.count@E14001150", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9cc9adf5786e7876f10c7cf" + }, + { + "name": "hmrc.self_employment_income.count@E14001151", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3f98c5b101a06648868bb32" + }, + { + "name": "hmrc.self_employment_income.count@E14001152", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5609c4f1d498ae080bae7acc" + }, + { + "name": "hmrc.self_employment_income.count@E14001153", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05523b9ee2bdbac0802d8844" + }, + { + "name": "hmrc.self_employment_income.count@E14001154", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3b7ab8e6cf4cccb71aae5b0" + }, + { + "name": "hmrc.self_employment_income.count@E14001155", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f6222f5bc919b404e9e7a7f" + }, + { + "name": "hmrc.self_employment_income.count@E14001156", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54271cfb0908fcca5070df9c" + }, + { + "name": "hmrc.self_employment_income.count@E14001157", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37672e0d503d2c777348acd3" + }, + { + "name": "hmrc.self_employment_income.count@E14001158", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6f7c8e8045ea03b1a7f394e" + }, + { + "name": "hmrc.self_employment_income.count@E14001159", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d666ba4382427422465057a" + }, + { + "name": "hmrc.self_employment_income.count@E14001160", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6476748fc3954a889656f7c4" + }, + { + "name": "hmrc.self_employment_income.count@E14001161", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26d287c7ed135f3df15dc96d" + }, + { + "name": "hmrc.self_employment_income.count@E14001162", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fd0c19062a94ec598e07d4a" + }, + { + "name": "hmrc.self_employment_income.count@E14001163", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_752c7422a9472f88dd688ff4" + }, + { + "name": "hmrc.self_employment_income.count@E14001164", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d90e56cba37e57d17fb6ae8" + }, + { + "name": "hmrc.self_employment_income.count@E14001165", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec5e553bf6ce2936b78a58e8" + }, + { + "name": "hmrc.self_employment_income.count@E14001166", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fdc8c0a3de5456630c38306" + }, + { + "name": "hmrc.self_employment_income.count@E14001167", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10a48747d473b198b9ddb633" + }, + { + "name": "hmrc.self_employment_income.count@E14001168", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bb93e6124e9179d640223dc" + }, + { + "name": "hmrc.self_employment_income.count@E14001169", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_620af4be0116955da2f11232" + }, + { + "name": "hmrc.self_employment_income.count@E14001170", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eabb4b90c163455bdb3bf11c" + }, + { + "name": "hmrc.self_employment_income.count@E14001171", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94e2e6419a1abefafd08f048" + }, + { + "name": "hmrc.self_employment_income.count@E14001172", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63b2ed682f39ea5876633363" + }, + { + "name": "hmrc.self_employment_income.count@E14001173", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_faabc60565eb86e83d145c0d" + }, + { + "name": "hmrc.self_employment_income.count@E14001174", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59e12efa89c8d4bb0c933782" + }, + { + "name": "hmrc.self_employment_income.count@E14001175", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e3a112f989645323c71c0a" + }, + { + "name": "hmrc.self_employment_income.count@E14001176", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c8c386376f0e8b0d1b381ee" + }, + { + "name": "hmrc.self_employment_income.count@E14001177", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ec70116b03c473d16d4c3c1" + }, + { + "name": "hmrc.self_employment_income.count@E14001178", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04f07224a2353ddf56532110" + }, + { + "name": "hmrc.self_employment_income.count@E14001179", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c36398acfc2e148e040e58a" + }, + { + "name": "hmrc.self_employment_income.count@E14001180", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc828e31cc66d7bed1c36da4" + }, + { + "name": "hmrc.self_employment_income.count@E14001181", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8368f0a8315a2e0b0591948" + }, + { + "name": "hmrc.self_employment_income.count@E14001182", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dfb9f986a0e10890e153602" + }, + { + "name": "hmrc.self_employment_income.count@E14001183", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1af1b9030d15ca6c2658d5b3" + }, + { + "name": "hmrc.self_employment_income.count@E14001184", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ea33237d3074729479681e" + }, + { + "name": "hmrc.self_employment_income.count@E14001185", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d976d8bb744ddecd5decf3fe" + }, + { + "name": "hmrc.self_employment_income.count@E14001186", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a5adf3719c03801a22e2914" + }, + { + "name": "hmrc.self_employment_income.count@E14001187", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c43bed6c71228de5636fd7ec" + }, + { + "name": "hmrc.self_employment_income.count@E14001188", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a525ae62769a9422336c7a03" + }, + { + "name": "hmrc.self_employment_income.count@E14001189", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_636d997f1b411eb83fe381df" + }, + { + "name": "hmrc.self_employment_income.count@E14001190", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4185a4d9728166145b6176a1" + }, + { + "name": "hmrc.self_employment_income.count@E14001191", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62d2b33556910291ddc5e218" + }, + { + "name": "hmrc.self_employment_income.count@E14001192", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58c71e4d3d8c7739986cd373" + }, + { + "name": "hmrc.self_employment_income.count@E14001193", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaf11fc908568ad5e5b91cea" + }, + { + "name": "hmrc.self_employment_income.count@E14001194", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_789fd5754ee1f281359e162a" + }, + { + "name": "hmrc.self_employment_income.count@E14001195", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_311528a69e4bb0ce70569fb7" + }, + { + "name": "hmrc.self_employment_income.count@E14001196", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85bfec2a8e135d4c8a969f4" + }, + { + "name": "hmrc.self_employment_income.count@E14001197", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45cf5ab56f06beebac5b41bb" + }, + { + "name": "hmrc.self_employment_income.count@E14001198", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d60722b54f6d2e51aea9e9" + }, + { + "name": "hmrc.self_employment_income.count@E14001199", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a0c4c9120567602906dcab" + }, + { + "name": "hmrc.self_employment_income.count@E14001200", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ff52199dcf81296aaf268f4" + }, + { + "name": "hmrc.self_employment_income.count@E14001201", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e5d519907ca8e17280ed2fc" + }, + { + "name": "hmrc.self_employment_income.count@E14001202", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_888d991d632c557484c890d0" + }, + { + "name": "hmrc.self_employment_income.count@E14001203", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d129c7ed2de2f73dedd51aca" + }, + { + "name": "hmrc.self_employment_income.count@E14001204", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57beb1a1075f45807f0fbde" + }, + { + "name": "hmrc.self_employment_income.count@E14001205", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f014fb94bc818cc12fa384a1" + }, + { + "name": "hmrc.self_employment_income.count@E14001206", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fc2f349ae210540712ecd47" + }, + { + "name": "hmrc.self_employment_income.count@E14001207", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0646a7cf01e7345ec84858b" + }, + { + "name": "hmrc.self_employment_income.count@E14001208", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_021bbf34aa8fec368bcfac9d" + }, + { + "name": "hmrc.self_employment_income.count@E14001209", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fe052bdc40549f207d8be11" + }, + { + "name": "hmrc.self_employment_income.count@E14001210", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c074c63da9c1725c9f61e97" + }, + { + "name": "hmrc.self_employment_income.count@E14001211", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cc61791dfa5d53d4283f9c5" + }, + { + "name": "hmrc.self_employment_income.count@E14001212", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_670ccbfee8d14e8282e7a800" + }, + { + "name": "hmrc.self_employment_income.count@E14001213", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6a9cc5386023156315b165b" + }, + { + "name": "hmrc.self_employment_income.count@E14001214", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5840d6fa9946627ba8c92ae" + }, + { + "name": "hmrc.self_employment_income.count@E14001215", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_174b4e39885f4b22362e6e9a" + }, + { + "name": "hmrc.self_employment_income.count@E14001216", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40e9af5ba0296a99d12d4a64" + }, + { + "name": "hmrc.self_employment_income.count@E14001217", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f31dae386ad026b8da019fa" + }, + { + "name": "hmrc.self_employment_income.count@E14001218", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd3488c9122605e5e8439280" + }, + { + "name": "hmrc.self_employment_income.count@E14001219", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af6050f9a8d811fba978cacd" + }, + { + "name": "hmrc.self_employment_income.count@E14001220", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d8eafe68b47890d482e556f" + }, + { + "name": "hmrc.self_employment_income.count@E14001221", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19f4c70b7831109c77e15e3" + }, + { + "name": "hmrc.self_employment_income.count@E14001222", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2feb5783063f70e0411edff1" + }, + { + "name": "hmrc.self_employment_income.count@E14001223", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10597de68bf27b1442b22dd2" + }, + { + "name": "hmrc.self_employment_income.count@E14001224", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b64e7981ba20331c7111dbc" + }, + { + "name": "hmrc.self_employment_income.count@E14001225", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6da3aa196501a13dfe43bf4d" + }, + { + "name": "hmrc.self_employment_income.count@E14001226", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c34e7f233d374af370b3d9" + }, + { + "name": "hmrc.self_employment_income.count@E14001227", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8368c94ecf186f32cfca8d77" + }, + { + "name": "hmrc.self_employment_income.count@E14001228", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdb2ae36f666c680ff068ec7" + }, + { + "name": "hmrc.self_employment_income.count@E14001229", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b48d7543092bb6bfb3dcedd7" + }, + { + "name": "hmrc.self_employment_income.count@E14001230", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c06f83f466a2a15a2552c8b3" + }, + { + "name": "hmrc.self_employment_income.count@E14001231", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_002ee421aacac6fd86d16d41" + }, + { + "name": "hmrc.self_employment_income.count@E14001232", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57e0d791fefde54690e861a9" + }, + { + "name": "hmrc.self_employment_income.count@E14001233", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c9ab889b00064a2847dccf9" + }, + { + "name": "hmrc.self_employment_income.count@E14001234", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e44d0b65dd908475e400642" + }, + { + "name": "hmrc.self_employment_income.count@E14001235", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db11099bcc4280ef310d6216" + }, + { + "name": "hmrc.self_employment_income.count@E14001236", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbbd3cad37d17814c54f54ab" + }, + { + "name": "hmrc.self_employment_income.count@E14001237", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_371c095f1e910af5540d0adb" + }, + { + "name": "hmrc.self_employment_income.count@E14001238", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a39c73ea55c28e7ea932a2e" + }, + { + "name": "hmrc.self_employment_income.count@E14001239", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ecb9587c3f0ad1446924e5e" + }, + { + "name": "hmrc.self_employment_income.count@E14001240", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a714c38dce7562c3318a1bd" + }, + { + "name": "hmrc.self_employment_income.count@E14001241", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd48261d95583e4e0bee2677" + }, + { + "name": "hmrc.self_employment_income.count@E14001242", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4246240147df9de2d359467" + }, + { + "name": "hmrc.self_employment_income.count@E14001243", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07adadc895fdf90e35b6a927" + }, + { + "name": "hmrc.self_employment_income.count@E14001244", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b1d053ca668bcc355a8c974" + }, + { + "name": "hmrc.self_employment_income.count@E14001245", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ce7d05c3ce43de17831ffa4" + }, + { + "name": "hmrc.self_employment_income.count@E14001246", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_377f5daf09836eeb419857e6" + }, + { + "name": "hmrc.self_employment_income.count@E14001247", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ede07e0fde04d980a3691eff" + }, + { + "name": "hmrc.self_employment_income.count@E14001248", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6226e8879f69b73a9328fbfe" + }, + { + "name": "hmrc.self_employment_income.count@E14001249", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e6acb572df67bba986fa318" + }, + { + "name": "hmrc.self_employment_income.count@E14001250", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2588af00f42cfcb997af6533" + }, + { + "name": "hmrc.self_employment_income.count@E14001251", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17a3e705351d2fe80966e0d6" + }, + { + "name": "hmrc.self_employment_income.count@E14001252", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e836f9ea220d8b891db557b2" + }, + { + "name": "hmrc.self_employment_income.count@E14001253", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a814dce3650d04b08f985c4" + }, + { + "name": "hmrc.self_employment_income.count@E14001254", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57474b52dc3bceb6bb76dc89" + }, + { + "name": "hmrc.self_employment_income.count@E14001255", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e094348b6afddf9793a582d" + }, + { + "name": "hmrc.self_employment_income.count@E14001256", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54eff8a41c186618247612a8" + }, + { + "name": "hmrc.self_employment_income.count@E14001257", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a9d6d11f8270188935a96e4" + }, + { + "name": "hmrc.self_employment_income.count@E14001258", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ded4373f9015e0cbe5c7af17" + }, + { + "name": "hmrc.self_employment_income.count@E14001259", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43b5073e275c327fea5c9eec" + }, + { + "name": "hmrc.self_employment_income.count@E14001260", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84e55d2a64cbd6e45c72459f" + }, + { + "name": "hmrc.self_employment_income.count@E14001261", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3000c034b7c1031060312a61" + }, + { + "name": "hmrc.self_employment_income.count@E14001262", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18169a1ae170d09fa6cf2275" + }, + { + "name": "hmrc.self_employment_income.count@E14001263", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_065d3b66da7a75ba0e2eba41" + }, + { + "name": "hmrc.self_employment_income.count@E14001264", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76fa5a2af6cd793a4c51bd5e" + }, + { + "name": "hmrc.self_employment_income.count@E14001265", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_039913330c43e60bf27e9e8b" + }, + { + "name": "hmrc.self_employment_income.count@E14001266", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f790b5427e4a3c23aa3b132" + }, + { + "name": "hmrc.self_employment_income.count@E14001267", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83448847a646fc97166de6f" + }, + { + "name": "hmrc.self_employment_income.count@E14001268", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d982bb9af3ac1abd74bcda6" + }, + { + "name": "hmrc.self_employment_income.count@E14001269", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21f5824d38b9326111ac93ae" + }, + { + "name": "hmrc.self_employment_income.count@E14001270", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1c45e50f2500d80d7983d82" + }, + { + "name": "hmrc.self_employment_income.count@E14001271", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ed2085f590920a739364dd9" + }, + { + "name": "hmrc.self_employment_income.count@E14001272", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_813201b219fad96c7bb728df" + }, + { + "name": "hmrc.self_employment_income.count@E14001273", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9f8e00acce134dd531e6571" + }, + { + "name": "hmrc.self_employment_income.count@E14001274", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b7bcbe9755aed990b0baa2" + }, + { + "name": "hmrc.self_employment_income.count@E14001275", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4394e817088b79af8e950f8" + }, + { + "name": "hmrc.self_employment_income.count@E14001276", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c91f68bee1401adda370b08f" + }, + { + "name": "hmrc.self_employment_income.count@E14001277", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bb3248461b5891766c0b1f4" + }, + { + "name": "hmrc.self_employment_income.count@E14001278", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98454a8ce4d14feedf088907" + }, + { + "name": "hmrc.self_employment_income.count@E14001279", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85153c09fbc71984cac92ee2" + }, + { + "name": "hmrc.self_employment_income.count@E14001280", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81d77845e70d77dab835554a" + }, + { + "name": "hmrc.self_employment_income.count@E14001281", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4162d3be5157a122dad527d" + }, + { + "name": "hmrc.self_employment_income.count@E14001282", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a06fa8c69e9daf4d7fdf238c" + }, + { + "name": "hmrc.self_employment_income.count@E14001283", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16a4c725106efa231e7a4e88" + }, + { + "name": "hmrc.self_employment_income.count@E14001284", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_867f719a5275657145229833" + }, + { + "name": "hmrc.self_employment_income.count@E14001285", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0fd668c31590b9879ab7c11" + }, + { + "name": "hmrc.self_employment_income.count@E14001286", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b5ec65b2872b226c8579af" + }, + { + "name": "hmrc.self_employment_income.count@E14001287", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71930e5ccdd4b34e50960073" + }, + { + "name": "hmrc.self_employment_income.count@E14001288", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d47cabde46f24d437a1de09" + }, + { + "name": "hmrc.self_employment_income.count@E14001289", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05af1c0c9a4487f7fded0626" + }, + { + "name": "hmrc.self_employment_income.count@E14001290", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbd925ab83fbb8f7d143cf19" + }, + { + "name": "hmrc.self_employment_income.count@E14001291", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08f705af4d3253117d957f7b" + }, + { + "name": "hmrc.self_employment_income.count@E14001292", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_64e139a7f0fe6f2d9c0c3bcb" + }, + { + "name": "hmrc.self_employment_income.count@E14001293", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_724cc3a19a45a7c190d1904a" + }, + { + "name": "hmrc.self_employment_income.count@E14001294", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a34b9970448ef93da053cbc0" + }, + { + "name": "hmrc.self_employment_income.count@E14001295", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a34adb785d8af9287ad22a9" + }, + { + "name": "hmrc.self_employment_income.count@E14001296", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67c3590abead9aa47a9fc8b3" + }, + { + "name": "hmrc.self_employment_income.count@E14001297", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c7dafc5f56797d37101c989" + }, + { + "name": "hmrc.self_employment_income.count@E14001298", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c27757e46a89eae18646024" + }, + { + "name": "hmrc.self_employment_income.count@E14001299", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_131bea7ce5cbe75c5a00caad" + }, + { + "name": "hmrc.self_employment_income.count@E14001300", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1495adbc0e65a10372bb0db0" + }, + { + "name": "hmrc.self_employment_income.count@E14001301", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4c5dc8b5c13e0ac70e90f75" + }, + { + "name": "hmrc.self_employment_income.count@E14001302", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15339effff47bcbbefa99c91" + }, + { + "name": "hmrc.self_employment_income.count@E14001303", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd341aec6befa2717f332679" + }, + { + "name": "hmrc.self_employment_income.count@E14001304", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dd3cc8fd42f24b6fe66350f" + }, + { + "name": "hmrc.self_employment_income.count@E14001305", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5d96e1a07f20f8bb8a0f8ed" + }, + { + "name": "hmrc.self_employment_income.count@E14001306", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_107b6953c7ccd16a7542c740" + }, + { + "name": "hmrc.self_employment_income.count@E14001307", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18c0fb72f0800eafa4398fd2" + }, + { + "name": "hmrc.self_employment_income.count@E14001308", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ffbcc092548f7949c64c60c" + }, + { + "name": "hmrc.self_employment_income.count@E14001309", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f10eed6cc89e09a929e2315" + }, + { + "name": "hmrc.self_employment_income.count@E14001310", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b14bc4ba9df2222e239f6880" + }, + { + "name": "hmrc.self_employment_income.count@E14001311", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d884cf4578143be1fd83a3b" + }, + { + "name": "hmrc.self_employment_income.count@E14001312", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0189f11af0ff18f0ec62bd55" + }, + { + "name": "hmrc.self_employment_income.count@E14001313", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_49dc8cc1a1b80ed38e9a7c9a" + }, + { + "name": "hmrc.self_employment_income.count@E14001314", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e6d47316658cd5ba096c6c1" + }, + { + "name": "hmrc.self_employment_income.count@E14001315", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9545d791d6df94c5c0733fb" + }, + { + "name": "hmrc.self_employment_income.count@E14001316", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_018751edacca708eac609b07" + }, + { + "name": "hmrc.self_employment_income.count@E14001317", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e34e45a26fc28a069918a19" + }, + { + "name": "hmrc.self_employment_income.count@E14001318", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9784ea9e8db99be6305268f" + }, + { + "name": "hmrc.self_employment_income.count@E14001319", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c416ab586dc5a5db3a8a4e5" + }, + { + "name": "hmrc.self_employment_income.count@E14001320", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d449337cd425da8e31cd9e98" + }, + { + "name": "hmrc.self_employment_income.count@E14001321", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47a17543f4876ac8c990ebb9" + }, + { + "name": "hmrc.self_employment_income.count@E14001322", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3034350237aba61bd7c561" + }, + { + "name": "hmrc.self_employment_income.count@E14001323", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55126b5394872b49e8dd9c73" + }, + { + "name": "hmrc.self_employment_income.count@E14001324", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa3987aa2aec8c67705d7fe" + }, + { + "name": "hmrc.self_employment_income.count@E14001325", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_777dde52e6b7f25c4e5cf643" + }, + { + "name": "hmrc.self_employment_income.count@E14001326", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6912a6851aadaed43c70647a" + }, + { + "name": "hmrc.self_employment_income.count@E14001327", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26aefb8c6c614a68e5b2fcb9" + }, + { + "name": "hmrc.self_employment_income.count@E14001328", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d5b4ae270f22998b7fe9d6f" + }, + { + "name": "hmrc.self_employment_income.count@E14001329", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ba6a817dd0dd6db3f8c12e0" + }, + { + "name": "hmrc.self_employment_income.count@E14001330", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff9bce5b8b2f6881c32d440b" + }, + { + "name": "hmrc.self_employment_income.count@E14001331", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85cb37075a8cb1124d6edaab" + }, + { + "name": "hmrc.self_employment_income.count@E14001332", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_313ced3b9de35654dbbdb50c" + }, + { + "name": "hmrc.self_employment_income.count@E14001333", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_99563dbb26abcfd60776011d" + }, + { + "name": "hmrc.self_employment_income.count@E14001334", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56bebef2add0aaad2141a2d8" + }, + { + "name": "hmrc.self_employment_income.count@E14001335", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_49f81cb638f757cf344e8289" + }, + { + "name": "hmrc.self_employment_income.count@E14001336", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c78e5112ad448fed74acf17" + }, + { + "name": "hmrc.self_employment_income.count@E14001337", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_452c56f1e98cf66d42fb4ca0" + }, + { + "name": "hmrc.self_employment_income.count@E14001338", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31c9f6b17c9184d9b8829a97" + }, + { + "name": "hmrc.self_employment_income.count@E14001339", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba5b671a0494555a4b4e9b11" + }, + { + "name": "hmrc.self_employment_income.count@E14001340", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67f908b582da4def8bc1e252" + }, + { + "name": "hmrc.self_employment_income.count@E14001341", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec98b6b2e878b4a2cca2ff2" + }, + { + "name": "hmrc.self_employment_income.count@E14001342", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3886b55e8bb213399331bfe" + }, + { + "name": "hmrc.self_employment_income.count@E14001343", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_979f39a675ffc5d90e9d9531" + }, + { + "name": "hmrc.self_employment_income.count@E14001344", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c45ab168b439e160dea3a015" + }, + { + "name": "hmrc.self_employment_income.count@E14001345", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5d6fd7588469a7a94554c29" + }, + { + "name": "hmrc.self_employment_income.count@E14001346", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f924983cfac9ad13d6c2060f" + }, + { + "name": "hmrc.self_employment_income.count@E14001347", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12bd315ce6bfad81d9b14c2" + }, + { + "name": "hmrc.self_employment_income.count@E14001348", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_028fcd500f4d5399f18b7a78" + }, + { + "name": "hmrc.self_employment_income.count@E14001349", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ca3be324dbfddb90fae2776" + }, + { + "name": "hmrc.self_employment_income.count@E14001350", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0acea90e20d79167f5aee68c" + }, + { + "name": "hmrc.self_employment_income.count@E14001351", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fc6d712909d5625b838fedf" + }, + { + "name": "hmrc.self_employment_income.count@E14001352", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_486e4f17a17bb9460843eb94" + }, + { + "name": "hmrc.self_employment_income.count@E14001353", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0ae36f47f476a29e3e977e7" + }, + { + "name": "hmrc.self_employment_income.count@E14001354", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c31046a73fa5acf31ec621f" + }, + { + "name": "hmrc.self_employment_income.count@E14001355", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c833bacd930b8401f8d59f8" + }, + { + "name": "hmrc.self_employment_income.count@E14001356", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a78dbd08bf5b7e375388d54" + }, + { + "name": "hmrc.self_employment_income.count@E14001357", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e32e67b075afef80cd7b3b5" + }, + { + "name": "hmrc.self_employment_income.count@E14001358", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3a81695dc499bb0dfce1cf7" + }, + { + "name": "hmrc.self_employment_income.count@E14001359", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c8fbf8117315f39d58c1982" + }, + { + "name": "hmrc.self_employment_income.count@E14001360", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0047a710808f9f7d0ca61baa" + }, + { + "name": "hmrc.self_employment_income.count@E14001361", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22f3ca40f539c3ea25ba259f" + }, + { + "name": "hmrc.self_employment_income.count@E14001362", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6da5d34b3fccdad082ace5b4" + }, + { + "name": "hmrc.self_employment_income.count@E14001363", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d432fdf50055f2a2ff7cdb8" + }, + { + "name": "hmrc.self_employment_income.count@E14001364", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e7280a23e55c39517e0380a" + }, + { + "name": "hmrc.self_employment_income.count@E14001365", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1baf707d030cc1ca27b1c662" + }, + { + "name": "hmrc.self_employment_income.count@E14001366", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_015d22bde1699c6d85a83e55" + }, + { + "name": "hmrc.self_employment_income.count@E14001367", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77e5b865d809088e45fcf46c" + }, + { + "name": "hmrc.self_employment_income.count@E14001368", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_75dbef1d6d3ec9b1d1431a52" + }, + { + "name": "hmrc.self_employment_income.count@E14001369", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd050aedb3b78147715122e0" + }, + { + "name": "hmrc.self_employment_income.count@E14001370", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f021cd8d0c08e676eaab812" + }, + { + "name": "hmrc.self_employment_income.count@E14001371", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3255bcf011892956d3ad7362" + }, + { + "name": "hmrc.self_employment_income.count@E14001372", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_184c24777456ffcf8983c0c7" + }, + { + "name": "hmrc.self_employment_income.count@E14001373", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1ce559970f55fada2ab1020" + }, + { + "name": "hmrc.self_employment_income.count@E14001374", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76081dfc37056ed183e816b2" + }, + { + "name": "hmrc.self_employment_income.count@E14001375", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7b4928fe16325990501cc08" + }, + { + "name": "hmrc.self_employment_income.count@E14001376", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d7967b6b74881d4254746b2" + }, + { + "name": "hmrc.self_employment_income.count@E14001377", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f9da2452332e61b8241290f" + }, + { + "name": "hmrc.self_employment_income.count@E14001378", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a484ba0a2e26278a9148191d" + }, + { + "name": "hmrc.self_employment_income.count@E14001379", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a9f6f89cef58337abbe59ae" + }, + { + "name": "hmrc.self_employment_income.count@E14001380", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8f30c6f029aef936f28a637" + }, + { + "name": "hmrc.self_employment_income.count@E14001381", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86811b52eae334e90f55fb9f" + }, + { + "name": "hmrc.self_employment_income.count@E14001382", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62394cefa9bcb989723f66f1" + }, + { + "name": "hmrc.self_employment_income.count@E14001383", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d31ff515c7d13d09f34a2617" + }, + { + "name": "hmrc.self_employment_income.count@E14001384", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85364537f547e42b4cb1605" + }, + { + "name": "hmrc.self_employment_income.count@E14001385", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_688a614de7672bc840cbd12b" + }, + { + "name": "hmrc.self_employment_income.count@E14001386", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf7e7b7879ca1481abbd4008" + }, + { + "name": "hmrc.self_employment_income.count@E14001387", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbed8d4bd481db5c68c7fe32" + }, + { + "name": "hmrc.self_employment_income.count@E14001388", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dc1466398473cf04f5950b1" + }, + { + "name": "hmrc.self_employment_income.count@E14001389", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc6abf095e480b2432429a8" + }, + { + "name": "hmrc.self_employment_income.count@E14001390", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a8ee9c90acda9a95350d404" + }, + { + "name": "hmrc.self_employment_income.count@E14001391", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9406ec65c5448d4da532351b" + }, + { + "name": "hmrc.self_employment_income.count@E14001392", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77a7a82f01f8b30257233017" + }, + { + "name": "hmrc.self_employment_income.count@E14001393", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f64307cb16cba49041888d7a" + }, + { + "name": "hmrc.self_employment_income.count@E14001394", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a0aadd51ab2462d936c0a2c" + }, + { + "name": "hmrc.self_employment_income.count@E14001395", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78fc6610b4b13b4cf64894de" + }, + { + "name": "hmrc.self_employment_income.count@E14001396", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b61ae96c6501d9a0d1db65e3" + }, + { + "name": "hmrc.self_employment_income.count@E14001397", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_847842f70526d769b2596b22" + }, + { + "name": "hmrc.self_employment_income.count@E14001398", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f437298c60db46f82d2974c7" + }, + { + "name": "hmrc.self_employment_income.count@E14001399", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eb6a4fe94fed8f24ca47bdd" + }, + { + "name": "hmrc.self_employment_income.count@E14001400", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d14ff221b285dc61bcb2b998" + }, + { + "name": "hmrc.self_employment_income.count@E14001401", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dac8404e0a4ed09b2b471d63" + }, + { + "name": "hmrc.self_employment_income.count@E14001402", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bc9a1773f7fc556b14949bf" + }, + { + "name": "hmrc.self_employment_income.count@E14001403", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ab1f01736b1c5d35137eb01" + }, + { + "name": "hmrc.self_employment_income.count@E14001404", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac494abd432539a9d389d088" + }, + { + "name": "hmrc.self_employment_income.count@E14001405", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f3ddb6d0f5120a951312b85" + }, + { + "name": "hmrc.self_employment_income.count@E14001406", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51b9bbb7c6980891136d7e1c" + }, + { + "name": "hmrc.self_employment_income.count@E14001407", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc3e944564f11b03ddeade69" + }, + { + "name": "hmrc.self_employment_income.count@E14001408", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b306e4720b23ab0a1daebd2" + }, + { + "name": "hmrc.self_employment_income.count@E14001409", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db914e511efcc3e5b6357f3" + }, + { + "name": "hmrc.self_employment_income.count@E14001410", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e94988c841831e55a38735b7" + }, + { + "name": "hmrc.self_employment_income.count@E14001411", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cd4ce56d75e91aa1f8ddc72" + }, + { + "name": "hmrc.self_employment_income.count@E14001412", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3b5d57cc1371365f49ff67f" + }, + { + "name": "hmrc.self_employment_income.count@E14001413", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_551485479a0e4c0dfbe8ef21" + }, + { + "name": "hmrc.self_employment_income.count@E14001414", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_150d26757f71beadf37f770e" + }, + { + "name": "hmrc.self_employment_income.count@E14001415", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_60913cb5b551adaf560a71de" + }, + { + "name": "hmrc.self_employment_income.count@E14001416", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_887b13eb344ef2e63c6d4156" + }, + { + "name": "hmrc.self_employment_income.count@E14001417", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b033078cffae16018d5ed1" + }, + { + "name": "hmrc.self_employment_income.count@E14001418", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52704f7e4ee85879037d6014" + }, + { + "name": "hmrc.self_employment_income.count@E14001419", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e52e8f47c38c56e3b46beb8" + }, + { + "name": "hmrc.self_employment_income.count@E14001420", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bbb2665427213620a0d6cb9" + }, + { + "name": "hmrc.self_employment_income.count@E14001421", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53d1b2638728438c073490cc" + }, + { + "name": "hmrc.self_employment_income.count@E14001422", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_28604967ce977053d1dc8cda" + }, + { + "name": "hmrc.self_employment_income.count@E14001423", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5a53c855fb1d78cbcc61a66" + }, + { + "name": "hmrc.self_employment_income.count@E14001424", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9754263c73db34a90021945" + }, + { + "name": "hmrc.self_employment_income.count@E14001425", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa4a4871ef92a7d7ff62f34d" + }, + { + "name": "hmrc.self_employment_income.count@E14001426", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9eb0552db3bce8b3122379f" + }, + { + "name": "hmrc.self_employment_income.count@E14001427", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67e694e3cd765da2d7fdcd24" + }, + { + "name": "hmrc.self_employment_income.count@E14001428", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9711a6879c8aaa7e3098fbfd" + }, + { + "name": "hmrc.self_employment_income.count@E14001429", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c581a778e95f0b8170d7d2ba" + }, + { + "name": "hmrc.self_employment_income.count@E14001430", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_113f927e82243d68ee76127e" + }, + { + "name": "hmrc.self_employment_income.count@E14001431", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e57e9341cd6a9f6410d31fa" + }, + { + "name": "hmrc.self_employment_income.count@E14001432", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2297f130d7cc5566d76e45fd" + }, + { + "name": "hmrc.self_employment_income.count@E14001433", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aecbc1545236e5f9e6beac2c" + }, + { + "name": "hmrc.self_employment_income.count@E14001434", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c44cc055aece8c525e71398" + }, + { + "name": "hmrc.self_employment_income.count@E14001435", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3951e60b1d35ce13e59f5be5" + }, + { + "name": "hmrc.self_employment_income.count@E14001436", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30b0177621dce2b68d174263" + }, + { + "name": "hmrc.self_employment_income.count@E14001437", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8c0658f1b4ab0ebaa6472a8" + }, + { + "name": "hmrc.self_employment_income.count@E14001438", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db64939c016fbde0070fb7e2" + }, + { + "name": "hmrc.self_employment_income.count@E14001439", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba80199047dc3b70df7a3b2a" + }, + { + "name": "hmrc.self_employment_income.count@E14001440", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab01c50d929be0d9fb86b9be" + }, + { + "name": "hmrc.self_employment_income.count@E14001441", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14fcb1f4ba9bfe39e462524d" + }, + { + "name": "hmrc.self_employment_income.count@E14001442", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7797d7c2ffda8dd935109b1c" + }, + { + "name": "hmrc.self_employment_income.count@E14001443", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c075f01ba2d67c9853a97bbf" + }, + { + "name": "hmrc.self_employment_income.count@E14001444", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_524640c9361db65566cc598a" + }, + { + "name": "hmrc.self_employment_income.count@E14001445", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5209a93604cc0a919319aa3f" + }, + { + "name": "hmrc.self_employment_income.count@E14001446", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e52ebb4748146919ef4bbee" + }, + { + "name": "hmrc.self_employment_income.count@E14001447", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4494b70aca12aa7becdee397" + }, + { + "name": "hmrc.self_employment_income.count@E14001448", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c36f7f4cf448c6a3b8af0cf" + }, + { + "name": "hmrc.self_employment_income.count@E14001449", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f3bdc7c8f993bd7c9ca4392" + }, + { + "name": "hmrc.self_employment_income.count@E14001450", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b8dc9112147887e6b51ab66" + }, + { + "name": "hmrc.self_employment_income.count@E14001451", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c206d637b90079de32f3bb69" + }, + { + "name": "hmrc.self_employment_income.count@E14001452", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4fb109114e5377ea74ae727" + }, + { + "name": "hmrc.self_employment_income.count@E14001453", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_435b3ee28704c0c37d484bd7" + }, + { + "name": "hmrc.self_employment_income.count@E14001454", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb946093356c3dbc1009860e" + }, + { + "name": "hmrc.self_employment_income.count@E14001455", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd27bfa472ad3d142401bbf5" + }, + { + "name": "hmrc.self_employment_income.count@E14001456", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04dcb9350d13b7f96b77e076" + }, + { + "name": "hmrc.self_employment_income.count@E14001457", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c53f3bf6f5b019b9c71dd47" + }, + { + "name": "hmrc.self_employment_income.count@E14001458", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c740815604790e405590fd1" + }, + { + "name": "hmrc.self_employment_income.count@E14001459", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4529c996528bec08d18ee64f" + }, + { + "name": "hmrc.self_employment_income.count@E14001460", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d861e17067ba94b5ca2a7c9" + }, + { + "name": "hmrc.self_employment_income.count@E14001461", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c2d2e3ee5ea8a73b0a8855f" + }, + { + "name": "hmrc.self_employment_income.count@E14001462", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93384a51608c563e0a777c96" + }, + { + "name": "hmrc.self_employment_income.count@E14001463", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8cf2dafbf703d412c5b8d6b" + }, + { + "name": "hmrc.self_employment_income.count@E14001464", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1032ff7c8d5318dafa1904e" + }, + { + "name": "hmrc.self_employment_income.count@E14001465", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78798041f9585f0f453e727f" + }, + { + "name": "hmrc.self_employment_income.count@E14001466", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e6651af4b8b6288f80b9ef7" + }, + { + "name": "hmrc.self_employment_income.count@E14001467", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b03f4f8fdc645c796db526c" + }, + { + "name": "hmrc.self_employment_income.count@E14001468", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91ceb20ded56324bd7fba88f" + }, + { + "name": "hmrc.self_employment_income.count@E14001469", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69db7918492d9eefc0ec0c7c" + }, + { + "name": "hmrc.self_employment_income.count@E14001470", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d948a19a73f9d3eac7dbd6cf" + }, + { + "name": "hmrc.self_employment_income.count@E14001471", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e786b03ce130fe54794a5ca" + }, + { + "name": "hmrc.self_employment_income.count@E14001472", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b45a0f7b636554cd18a196b" + }, + { + "name": "hmrc.self_employment_income.count@E14001473", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6542957463053082daa7414" + }, + { + "name": "hmrc.self_employment_income.count@E14001474", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61573776f80a6101aa159aa7" + }, + { + "name": "hmrc.self_employment_income.count@E14001475", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ff61449a6ee8f2d81d996a2" + }, + { + "name": "hmrc.self_employment_income.count@E14001476", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6f0a4ab2f09e7007f0e96e" + }, + { + "name": "hmrc.self_employment_income.count@E14001477", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdc7d6ecb013cc4f968134a2" + }, + { + "name": "hmrc.self_employment_income.count@E14001478", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_723f8d7dde2acf87f2615dc6" + }, + { + "name": "hmrc.self_employment_income.count@E14001479", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddabec31062026d8df15aca0" + }, + { + "name": "hmrc.self_employment_income.count@E14001480", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf594f06d192d3ccac6834c1" + }, + { + "name": "hmrc.self_employment_income.count@E14001481", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29603f3c3feadefdad399777" + }, + { + "name": "hmrc.self_employment_income.count@E14001482", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8c53ad49c3f7e0eeecfecdf" + }, + { + "name": "hmrc.self_employment_income.count@E14001483", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6d906e4e4a3349a8306fff1" + }, + { + "name": "hmrc.self_employment_income.count@E14001484", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdc074e44a333f9a7b80bf8" + }, + { + "name": "hmrc.self_employment_income.count@E14001485", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29d54b6acc4147f5440d519c" + }, + { + "name": "hmrc.self_employment_income.count@E14001486", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de8c4a09fcb3bf4696fe6743" + }, + { + "name": "hmrc.self_employment_income.count@E14001487", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed1ed1f399b06faa35f9ed50" + }, + { + "name": "hmrc.self_employment_income.count@E14001488", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86b5608900b00edcff69a881" + }, + { + "name": "hmrc.self_employment_income.count@E14001489", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe7356c68b6b4d80a8543ddb" + }, + { + "name": "hmrc.self_employment_income.count@E14001490", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_957f17ecb51b61799c7f5775" + }, + { + "name": "hmrc.self_employment_income.count@E14001491", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f738a7062b4c7419d382808" + }, + { + "name": "hmrc.self_employment_income.count@E14001492", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69be9c243269d08355a3d49a" + }, + { + "name": "hmrc.self_employment_income.count@E14001493", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3074978b1af30c1eb391d12" + }, + { + "name": "hmrc.self_employment_income.count@E14001494", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89f6be9d8b53d63dc8a96f87" + }, + { + "name": "hmrc.self_employment_income.count@E14001495", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04d7f5b4837818dca9c22b0d" + }, + { + "name": "hmrc.self_employment_income.count@E14001496", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c20403192968d72bca6a2e9c" + }, + { + "name": "hmrc.self_employment_income.count@E14001497", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c6f79d0c6318abd33a6ba24" + }, + { + "name": "hmrc.self_employment_income.count@E14001498", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6739add64159e3691b27bf8" + }, + { + "name": "hmrc.self_employment_income.count@E14001499", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08c7c958541c4d90a95f251f" + }, + { + "name": "hmrc.self_employment_income.count@E14001500", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c74859e4c1f76d58dcfc112a" + }, + { + "name": "hmrc.self_employment_income.count@E14001501", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fd759181d2392f3a7d6fa06" + }, + { + "name": "hmrc.self_employment_income.count@E14001502", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ee73c12dc35682a54dd6229" + }, + { + "name": "hmrc.self_employment_income.count@E14001503", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_511dbd00bd35a0550b8eeec8" + }, + { + "name": "hmrc.self_employment_income.count@E14001504", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaf20642e7b4fe23e12c64fb" + }, + { + "name": "hmrc.self_employment_income.count@E14001505", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c969921223baf33f8c7efe86" + }, + { + "name": "hmrc.self_employment_income.count@E14001506", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59d81a09801876a662628e68" + }, + { + "name": "hmrc.self_employment_income.count@E14001507", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_caf6250957400820db985cee" + }, + { + "name": "hmrc.self_employment_income.count@E14001508", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_60f9ea09b5940ccb91c1c83b" + }, + { + "name": "hmrc.self_employment_income.count@E14001509", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4aef9322e7ff38044ed6ed2f" + }, + { + "name": "hmrc.self_employment_income.count@E14001510", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0beffe22e6e04c75c648aed6" + }, + { + "name": "hmrc.self_employment_income.count@E14001511", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0641072662e7677357a43b41" + }, + { + "name": "hmrc.self_employment_income.count@E14001512", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9b6e6b45e5e727bcc4a53bb" + }, + { + "name": "hmrc.self_employment_income.count@E14001513", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7570c68bf3eb3eb8ea2f5b2c" + }, + { + "name": "hmrc.self_employment_income.count@E14001514", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ed4c85f7508e7638205bee4" + }, + { + "name": "hmrc.self_employment_income.count@E14001515", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a50272338509beb3eb0506c" + }, + { + "name": "hmrc.self_employment_income.count@E14001516", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fd0354b012d1676d7da9584" + }, + { + "name": "hmrc.self_employment_income.count@E14001517", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_87176257ed9bd769d75bc347" + }, + { + "name": "hmrc.self_employment_income.count@E14001518", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3294187f00553cf8f4411fed" + }, + { + "name": "hmrc.self_employment_income.count@E14001519", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fd440444dbe3d6dfec3a886" + }, + { + "name": "hmrc.self_employment_income.count@E14001520", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8e918e53282c51325d6f3bc" + }, + { + "name": "hmrc.self_employment_income.count@E14001521", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ee86744ad0c573ed59516f5" + }, + { + "name": "hmrc.self_employment_income.count@E14001522", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51bc52dff991814d5d9caf88" + }, + { + "name": "hmrc.self_employment_income.count@E14001523", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a817bb37819abfa6f4866364" + }, + { + "name": "hmrc.self_employment_income.count@E14001524", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8521b65c66936cdfb17bc6e" + }, + { + "name": "hmrc.self_employment_income.count@E14001525", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_173ceec0039759bf5bbc117c" + }, + { + "name": "hmrc.self_employment_income.count@E14001526", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_394dba35b0614a7ea336c844" + }, + { + "name": "hmrc.self_employment_income.count@E14001527", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c181e697d0a1a049517b8a7e" + }, + { + "name": "hmrc.self_employment_income.count@E14001528", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a10ade318766acd5f13cad2" + }, + { + "name": "hmrc.self_employment_income.count@E14001529", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cf0742ca8fe0288e9b4903e" + }, + { + "name": "hmrc.self_employment_income.count@E14001530", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43fca37aca42c0343c245241" + }, + { + "name": "hmrc.self_employment_income.count@E14001531", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f79e44a77126d1f69a4a55d1" + }, + { + "name": "hmrc.self_employment_income.count@E14001532", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3b24f181ab87c66425126f5" + }, + { + "name": "hmrc.self_employment_income.count@E14001533", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58707768c4a0c2d7ebc68d30" + }, + { + "name": "hmrc.self_employment_income.count@E14001534", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69ab77f47a38d4b0aeb444a7" + }, + { + "name": "hmrc.self_employment_income.count@E14001535", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4d3b0880097247e37e1813d" + }, + { + "name": "hmrc.self_employment_income.count@E14001536", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71b9df8abdd9faed014a7b04" + }, + { + "name": "hmrc.self_employment_income.count@E14001537", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af566729296ed171510dba91" + }, + { + "name": "hmrc.self_employment_income.count@E14001538", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f7998b8eaeeb27d7f0c2f15" + }, + { + "name": "hmrc.self_employment_income.count@E14001539", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01fb41f4d2d733e51ec289e5" + }, + { + "name": "hmrc.self_employment_income.count@E14001540", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86a98e3bc29549cb7d3df211" + }, + { + "name": "hmrc.self_employment_income.count@E14001541", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5382072a37f023e35595076a" + }, + { + "name": "hmrc.self_employment_income.count@E14001542", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_286f0c8af1aa6b855acc567f" + }, + { + "name": "hmrc.self_employment_income.count@E14001543", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24fff2a9a5a2b672fef9c58f" + }, + { + "name": "hmrc.self_employment_income.count@E14001544", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_799a6a665a5eef9a66d667d3" + }, + { + "name": "hmrc.self_employment_income.count@E14001545", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e553f902296feab21064ff5" + }, + { + "name": "hmrc.self_employment_income.count@E14001546", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fe5651caa2491af90e50c37" + }, + { + "name": "hmrc.self_employment_income.count@E14001547", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96e5cfc92782fcf79b0d7904" + }, + { + "name": "hmrc.self_employment_income.count@E14001548", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39dcb5b489b3dd9ff735397f" + }, + { + "name": "hmrc.self_employment_income.count@E14001549", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5ac0741fbc4d7dcd55034c8" + }, + { + "name": "hmrc.self_employment_income.count@E14001550", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_533d1607c347bd541e152f4a" + }, + { + "name": "hmrc.self_employment_income.count@E14001551", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dece24d877a1eb057dc6e1c5" + }, + { + "name": "hmrc.self_employment_income.count@E14001552", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4e798268abdb5cd97531103" + }, + { + "name": "hmrc.self_employment_income.count@E14001553", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08ca57617c5e61ed536620d8" + }, + { + "name": "hmrc.self_employment_income.count@E14001554", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_feff2ca66975df014fecc25a" + }, + { + "name": "hmrc.self_employment_income.count@E14001555", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f152202949ef18caabe0a9d0" + }, + { + "name": "hmrc.self_employment_income.count@E14001556", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae60b792c5e6856779d7fc26" + }, + { + "name": "hmrc.self_employment_income.count@E14001557", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf311e74f34182ffa3214c29" + }, + { + "name": "hmrc.self_employment_income.count@E14001558", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d8959ee1c57569dbb9e2a79" + }, + { + "name": "hmrc.self_employment_income.count@E14001559", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d5f25a45d1f716ccac1a5b0" + }, + { + "name": "hmrc.self_employment_income.count@E14001560", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ecc798288b6e8abbc61906a" + }, + { + "name": "hmrc.self_employment_income.count@E14001561", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83e070f71a9cf8098071a1a9" + }, + { + "name": "hmrc.self_employment_income.count@E14001562", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e282a00b9d14dbcdc555fb1" + }, + { + "name": "hmrc.self_employment_income.count@E14001563", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_991e5d1edc17732d3b53f90b" + }, + { + "name": "hmrc.self_employment_income.count@E14001564", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52b6a2a76dcda81cedc59841" + }, + { + "name": "hmrc.self_employment_income.count@E14001565", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_321c22cd545ae66646eab3eb" + }, + { + "name": "hmrc.self_employment_income.count@E14001566", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_775981b125aa1f2ad655652a" + }, + { + "name": "hmrc.self_employment_income.count@E14001567", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b6155698493e1f61eaca7d6" + }, + { + "name": "hmrc.self_employment_income.count@E14001568", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5ae66eb1783b6008609e0d3" + }, + { + "name": "hmrc.self_employment_income.count@E14001569", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b2ae2039e5769618cdd94be" + }, + { + "name": "hmrc.self_employment_income.count@E14001570", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dab57f90614bd35e693b87b4" + }, + { + "name": "hmrc.self_employment_income.count@E14001571", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d064c48ddd0eda4e726b52d6" + }, + { + "name": "hmrc.self_employment_income.count@E14001572", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8f84fdc818ebfdb76d0b556" + }, + { + "name": "hmrc.self_employment_income.count@E14001573", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57fd8d2729f1ffeda2e9b210" + }, + { + "name": "hmrc.self_employment_income.count@E14001574", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_caf61b3a32634b1feef5e284" + }, + { + "name": "hmrc.self_employment_income.count@E14001575", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9c2ab9b35984f275f3568b" + }, + { + "name": "hmrc.self_employment_income.count@E14001576", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bda6573dfa8c6be0ccafb880" + }, + { + "name": "hmrc.self_employment_income.count@E14001577", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_973d50f8a98ad180d68ca8fd" + }, + { + "name": "hmrc.self_employment_income.count@E14001578", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb3eed195769b3225ce9fa20" + }, + { + "name": "hmrc.self_employment_income.count@E14001579", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd7001599ffe42074d542604" + }, + { + "name": "hmrc.self_employment_income.count@E14001580", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c967376ea7e098418c204d08" + }, + { + "name": "hmrc.self_employment_income.count@E14001581", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5db5370c711ccf64585bb7b5" + }, + { + "name": "hmrc.self_employment_income.count@E14001582", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94bbabdd2361c6d6d16a0d6f" + }, + { + "name": "hmrc.self_employment_income.count@E14001583", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4745c3aeffd80bbde2a378b" + }, + { + "name": "hmrc.self_employment_income.count@E14001584", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cf2c4af5bee1472cbd95fa1" + }, + { + "name": "hmrc.self_employment_income.count@E14001585", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0524d39e93c182370b552302" + }, + { + "name": "hmrc.self_employment_income.count@E14001586", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e014f9b6bed65bd6d94d6974" + }, + { + "name": "hmrc.self_employment_income.count@E14001587", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a1d0168b654d4a700d01581" + }, + { + "name": "hmrc.self_employment_income.count@E14001588", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a446e20f22580971b270be8c" + }, + { + "name": "hmrc.self_employment_income.count@E14001589", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0fce60a552eaf95e982e108" + }, + { + "name": "hmrc.self_employment_income.count@E14001590", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_510dd6fd6033ebd1c027f882" + }, + { + "name": "hmrc.self_employment_income.count@E14001591", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_752e00a7a31152ad1bcc5dbb" + }, + { + "name": "hmrc.self_employment_income.count@E14001592", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b9fc4773d4b4c47e9a2c5ff" + }, + { + "name": "hmrc.self_employment_income.count@E14001593", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d24240b20df02e647fe8002d" + }, + { + "name": "hmrc.self_employment_income.count@E14001594", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d591950d4c183293a4f3e02" + }, + { + "name": "hmrc.self_employment_income.count@E14001595", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e07b2fedb56265c1216f462" + }, + { + "name": "hmrc.self_employment_income.count@E14001596", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f50b787c20a72bc74386d45e" + }, + { + "name": "hmrc.self_employment_income.count@E14001597", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c8a35ffb7004c4d976320e8" + }, + { + "name": "hmrc.self_employment_income.count@E14001598", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec85acf1cbb75cea293d625b" + }, + { + "name": "hmrc.self_employment_income.count@E14001599", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96116da3e140fe012593d223" + }, + { + "name": "hmrc.self_employment_income.count@E14001600", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc4d0f5e80523b1c5cf7a38e" + }, + { + "name": "hmrc.self_employment_income.count@E14001601", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2a6fed8f80d40672d41174c" + }, + { + "name": "hmrc.self_employment_income.count@E14001602", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12c3e4bb5a378c6106acdc9" + }, + { + "name": "hmrc.self_employment_income.count@E14001603", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21e69b772aff60b5335f8302" + }, + { + "name": "hmrc.self_employment_income.count@E14001604", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_100a83ca2c8066bd79aecb43" + }, + { + "name": "hmrc.self_employment_income.count@E14001605", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a967f1741af293f6131f5c8" + }, + { + "name": "hmrc.self_employment_income.count@N05000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f52e24c367882d9a099a589" + }, + { + "name": "hmrc.self_employment_income.count@N05000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1cf9f5a542868cbcddfd237" + }, + { + "name": "hmrc.self_employment_income.count@N05000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b67dafaf316c481246916de" + }, + { + "name": "hmrc.self_employment_income.count@N05000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1df93d1f890c54bf60dabf81" + }, + { + "name": "hmrc.self_employment_income.count@N05000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65654d840912818288662fc0" + }, + { + "name": "hmrc.self_employment_income.count@N05000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76badce427edc69c5a070dbc" + }, + { + "name": "hmrc.self_employment_income.count@N05000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_362c755d0a098607dc946caf" + }, + { + "name": "hmrc.self_employment_income.count@N05000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14c2373dc9f14a63c5661eb9" + }, + { + "name": "hmrc.self_employment_income.count@N05000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eadce248f4c19ccc2892b2ce" + }, + { + "name": "hmrc.self_employment_income.count@N05000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1f017bb4d9622ff9195a8f4" + }, + { + "name": "hmrc.self_employment_income.count@N05000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_563838c6be84921bdd058423" + }, + { + "name": "hmrc.self_employment_income.count@N05000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74005c0e5d54dbcac67290ac" + }, + { + "name": "hmrc.self_employment_income.count@N05000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f7e9b04691893c6476a8e22" + }, + { + "name": "hmrc.self_employment_income.count@N05000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_856ce925ebb6d8906be3b6bf" + }, + { + "name": "hmrc.self_employment_income.count@N05000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a0f0d1d2dc33dd0a19315d1" + }, + { + "name": "hmrc.self_employment_income.count@N05000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26890f7683a41494c5eb222c" + }, + { + "name": "hmrc.self_employment_income.count@N05000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f568e09812122da5492108c" + }, + { + "name": "hmrc.self_employment_income.count@N05000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07a9db279a59582f185d5b91" + }, + { + "name": "hmrc.self_employment_income.count@S14000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_240debea47a77ea36a049e19" + }, + { + "name": "hmrc.self_employment_income.count@S14000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b2ff5df706ae07f29dea1a7" + }, + { + "name": "hmrc.self_employment_income.count@S14000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18ea9d1e1a2145dc51091a99" + }, + { + "name": "hmrc.self_employment_income.count@S14000048", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c901c4b6a1306bf23ac67f04" + }, + { + "name": "hmrc.self_employment_income.count@S14000051", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cafbac5e5eb9d9732f7faeb" + }, + { + "name": "hmrc.self_employment_income.count@S14000060", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d07344ca7c2a35e43a213642" + }, + { + "name": "hmrc.self_employment_income.count@S14000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e57102f834dd52ba2b167d8" + }, + { + "name": "hmrc.self_employment_income.count@S14000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b47e7b10be2d8c344fd9c55f" + }, + { + "name": "hmrc.self_employment_income.count@S14000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c81eac3f2e2679a1182a0c8" + }, + { + "name": "hmrc.self_employment_income.count@S14000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e8274e4cabba1c9f38aeea5" + }, + { + "name": "hmrc.self_employment_income.count@S14000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dde588299a24d2d6c18f6c92" + }, + { + "name": "hmrc.self_employment_income.count@S14000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e1928b9e234f544067e3ef5" + }, + { + "name": "hmrc.self_employment_income.count@S14000067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e52619658b96796287a2d49" + }, + { + "name": "hmrc.self_employment_income.count@S14000068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27717c26f1af7c8bbe597d24" + }, + { + "name": "hmrc.self_employment_income.count@S14000069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5850835b2d6875c6a402bc94" + }, + { + "name": "hmrc.self_employment_income.count@S14000070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d152cda56df17208c8ce43ed" + }, + { + "name": "hmrc.self_employment_income.count@S14000071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54d660b2702a4590ae9bdbd2" + }, + { + "name": "hmrc.self_employment_income.count@S14000072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b97d44c5cd52de5f91019295" + }, + { + "name": "hmrc.self_employment_income.count@S14000073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f239dfd0ebd1bd25612ed66d" + }, + { + "name": "hmrc.self_employment_income.count@S14000074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_422dc5c8c8600bd88c33bf2a" + }, + { + "name": "hmrc.self_employment_income.count@S14000075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_982b2e5fc2fd37417d15aab8" + }, + { + "name": "hmrc.self_employment_income.count@S14000076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_314f088ffbdb2663917519d6" + }, + { + "name": "hmrc.self_employment_income.count@S14000077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f2ab4ee30b84716bf30b214" + }, + { + "name": "hmrc.self_employment_income.count@S14000078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cfbc6d3567f6d11ff3859f5" + }, + { + "name": "hmrc.self_employment_income.count@S14000079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3463a442f4897a9a7b77979" + }, + { + "name": "hmrc.self_employment_income.count@S14000080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5048fabd9660d0963e912281" + }, + { + "name": "hmrc.self_employment_income.count@S14000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc7d053a1c007607c326be61" + }, + { + "name": "hmrc.self_employment_income.count@S14000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a1aa3d6126033749219850f" + }, + { + "name": "hmrc.self_employment_income.count@S14000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee7ee4c4293ded00c6268d62" + }, + { + "name": "hmrc.self_employment_income.count@S14000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38c24b7f1c1e41a437b11ef2" + }, + { + "name": "hmrc.self_employment_income.count@S14000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6511bc819caf16912c9d144" + }, + { + "name": "hmrc.self_employment_income.count@S14000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1117c1f5c1b46f06e59c7064" + }, + { + "name": "hmrc.self_employment_income.count@S14000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cff829b695c6b9caf2615128" + }, + { + "name": "hmrc.self_employment_income.count@S14000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd4ecd4e9163c17a20eae534" + }, + { + "name": "hmrc.self_employment_income.count@S14000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b1ead1b1e8d8ced713bc9bd" + }, + { + "name": "hmrc.self_employment_income.count@S14000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f19d18223a580bf649bde23" + }, + { + "name": "hmrc.self_employment_income.count@S14000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c15a3deb3636abca13b2e0da" + }, + { + "name": "hmrc.self_employment_income.count@S14000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90cd3264fce63700fbae9d30" + }, + { + "name": "hmrc.self_employment_income.count@S14000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa7e94be7cdea606a4a8872" + }, + { + "name": "hmrc.self_employment_income.count@S14000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f275a38cef1e8fe38a5caf54" + }, + { + "name": "hmrc.self_employment_income.count@S14000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0e216099b6c214174c96d0e" + }, + { + "name": "hmrc.self_employment_income.count@S14000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b6a83cf8fe2fd3b3149027f" + }, + { + "name": "hmrc.self_employment_income.count@S14000097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db0a0421b795cfe828e273e7" + }, + { + "name": "hmrc.self_employment_income.count@S14000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62e05826b5617aa0f3e56fde" + }, + { + "name": "hmrc.self_employment_income.count@S14000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9406408a366d71c4eb2a9d8" + }, + { + "name": "hmrc.self_employment_income.count@S14000100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc7f478c6d6bee3ccd50b0e" + }, + { + "name": "hmrc.self_employment_income.count@S14000101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31c3fb14acba0e44f89a20d7" + }, + { + "name": "hmrc.self_employment_income.count@S14000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be61fd79a56cf7e34f664bcd" + }, + { + "name": "hmrc.self_employment_income.count@S14000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_00323b0a5a73510ea3604262" + }, + { + "name": "hmrc.self_employment_income.count@S14000104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39019d9ab607c11af222f0e" + }, + { + "name": "hmrc.self_employment_income.count@S14000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aac2aa88c103ab8f3194520e" + }, + { + "name": "hmrc.self_employment_income.count@S14000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf445cc81d67207a673fccf6" + }, + { + "name": "hmrc.self_employment_income.count@S14000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_138d40f8648601f84cf78031" + }, + { + "name": "hmrc.self_employment_income.count@S14000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37a7b311da0ceb8ab1baec8c" + }, + { + "name": "hmrc.self_employment_income.count@S14000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e39c097ff21c24605a8150c" + }, + { + "name": "hmrc.self_employment_income.count@S14000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_813426b1059dddfee7e82053" + }, + { + "name": "hmrc.self_employment_income.count@S14000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eda357ac154df706ca07fa6" + }, + { + "name": "hmrc.self_employment_income.count@W07000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71106e51eb98c0c05122c5e7" + }, + { + "name": "hmrc.self_employment_income.count@W07000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fcc424bd495d87254c472c" + }, + { + "name": "hmrc.self_employment_income.count@W07000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b03515f5d5ed267a4de24aae" + }, + { + "name": "hmrc.self_employment_income.count@W07000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04bca8e26f4540eda9b345db" + }, + { + "name": "hmrc.self_employment_income.count@W07000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe2ed166a9164d3e31f1cc6d" + }, + { + "name": "hmrc.self_employment_income.count@W07000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59dac916225d97f8a67d3cb6" + }, + { + "name": "hmrc.self_employment_income.count@W07000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91450420bae7de2939e4da9a" + }, + { + "name": "hmrc.self_employment_income.count@W07000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fbf380738f49f239486c170" + }, + { + "name": "hmrc.self_employment_income.count@W07000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee95358c482e215d713d139d" + }, + { + "name": "hmrc.self_employment_income.count@W07000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09af0192f0765cb4aa8f0d58" + }, + { + "name": "hmrc.self_employment_income.count@W07000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d34e256aacfce3e4a0d0fee" + }, + { + "name": "hmrc.self_employment_income.count@W07000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde9a5000b517fa23f921408" + }, + { + "name": "hmrc.self_employment_income.count@W07000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92f73975de7c5fc65f256951" + }, + { + "name": "hmrc.self_employment_income.count@W07000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b655f90591eb429c941bbd" + }, + { + "name": "hmrc.self_employment_income.count@W07000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0baaa87eda60cede8393e6d" + }, + { + "name": "hmrc.self_employment_income.count@W07000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc448984f9216014b9f1e9c7" + }, + { + "name": "hmrc.self_employment_income.count@W07000097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_085abed0babbce37bd5a1893" + }, + { + "name": "hmrc.self_employment_income.count@W07000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34489219916ed40bc19827ab" + }, + { + "name": "hmrc.self_employment_income.count@W07000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d36569dfed9f5cf2a7d418e6" + }, + { + "name": "hmrc.self_employment_income.count@W07000100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81a539a39e7d2ce4bc8b95a6" + }, + { + "name": "hmrc.self_employment_income.count@W07000101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae52c35d84e3d884a56f9bf4" + }, + { + "name": "hmrc.self_employment_income.count@W07000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bac038854509f5848b55c906" + }, + { + "name": "hmrc.self_employment_income.count@W07000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c13516d48cf4a892b13eba1c" + }, + { + "name": "hmrc.self_employment_income.count@W07000104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76d0f78bfc7080da3e6f24b9" + }, + { + "name": "hmrc.self_employment_income.count@W07000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_971affb3517b82487d0c2c26" + }, + { + "name": "hmrc.self_employment_income.count@W07000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33d54f9040db47a2534f91d6" + }, + { + "name": "hmrc.self_employment_income.count@W07000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74af54fa4e9bf55d2513b536" + }, + { + "name": "hmrc.self_employment_income.count@W07000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c7f2e437ac6e91e60a8e64f" + }, + { + "name": "hmrc.self_employment_income.count@W07000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b89e54e51cf2c9b5c75edd17" + }, + { + "name": "hmrc.self_employment_income.count@W07000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb534d49fad57e622c5ee577" + }, + { + "name": "hmrc.self_employment_income.count@W07000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_baac09cc92cf82f9b5ffdabf" + }, + { + "name": "hmrc.self_employment_income.count@W07000112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_880d944f85a58d14502df3a8" + } + ] + }, + "local_authority": { + "status": "partially_active", + "candidate_count": 361, + "candidates": [ + { + "name": "hmrc.self_employment_income.count@E06000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc5b696f66926864a0fc9cfb" + }, + { + "name": "hmrc.self_employment_income.count@E06000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c908b94f73d23db8d3aad4d" + }, + { + "name": "hmrc.self_employment_income.count@E06000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_309031858e10e11cefa53cea" + }, + { + "name": "hmrc.self_employment_income.count@E06000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4094e6f0223a1f224ebc9d59" + }, + { + "name": "hmrc.self_employment_income.count@E06000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d4d9dcb4d16f553c3b22732" + }, + { + "name": "hmrc.self_employment_income.count@E06000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff248b00d1fd586556c3e6ad" + }, + { + "name": "hmrc.self_employment_income.count@E06000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2847bfed990226834a36969e" + }, + { + "name": "hmrc.self_employment_income.count@E06000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_544c5c7251cda5d1683efc79" + }, + { + "name": "hmrc.self_employment_income.count@E06000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_adf133baa65ca82246a1dcbf" + }, + { + "name": "hmrc.self_employment_income.count@E06000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_122b751ce94f783affa740be" + }, + { + "name": "hmrc.self_employment_income.count@E06000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0eea2bf00a609de1af0321d" + }, + { + "name": "hmrc.self_employment_income.count@E06000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bbfbe47a600d5a830833b23" + }, + { + "name": "hmrc.self_employment_income.count@E06000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c25285ddd47d08ceb06f3f3e" + }, + { + "name": "hmrc.self_employment_income.count@E06000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85f6604c1ae4a565b33b99f" + }, + { + "name": "hmrc.self_employment_income.count@E06000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_168fe2e614bdc60503cb44fe" + }, + { + "name": "hmrc.self_employment_income.count@E06000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_839b13a3f06278b91cb3524d" + }, + { + "name": "hmrc.self_employment_income.count@E06000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_952f5bc4f218e37aa9abca56" + }, + { + "name": "hmrc.self_employment_income.count@E06000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48a2d1b9d45ec5bfb2a71000" + }, + { + "name": "hmrc.self_employment_income.count@E06000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4be81159bbf41ffee43a27a" + }, + { + "name": "hmrc.self_employment_income.count@E06000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e662dbcb100ee946b6c9a9f4" + }, + { + "name": "hmrc.self_employment_income.count@E06000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae004e3e4b4fedbdabd49f59" + }, + { + "name": "hmrc.self_employment_income.count@E06000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33ae4a5d01d8ef91ab1f6020" + }, + { + "name": "hmrc.self_employment_income.count@E06000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84a7549763f61d1d2d391b4d" + }, + { + "name": "hmrc.self_employment_income.count@E06000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38763c1ddfc48df63af65524" + }, + { + "name": "hmrc.self_employment_income.count@E06000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd808c9dc93da8f7863f47d" + }, + { + "name": "hmrc.self_employment_income.count@E06000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19fb5380667e7488c86925e0" + }, + { + "name": "hmrc.self_employment_income.count@E06000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.self_employment_income.count@E06000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_823c7f974ee48a4598e60c2a" + }, + { + "name": "hmrc.self_employment_income.count@E06000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b8317564a08f737e97b44a7" + }, + { + "name": "hmrc.self_employment_income.count@E06000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84311d9c1859ece68e2fc2d7" + }, + { + "name": "hmrc.self_employment_income.count@E06000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3da3379340ce7cabb3ee89ff" + }, + { + "name": "hmrc.self_employment_income.count@E06000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31ffc13922266e82b103cabe" + }, + { + "name": "hmrc.self_employment_income.count@E06000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f88fffc47bd42267fe427de" + }, + { + "name": "hmrc.self_employment_income.count@E06000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f64f1a156ff13614b8cd93e3" + }, + { + "name": "hmrc.self_employment_income.count@E06000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_114942260f37ff15321d9c7e" + }, + { + "name": "hmrc.self_employment_income.count@E06000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebe0c9d1480eec3dbfe1baba" + }, + { + "name": "hmrc.self_employment_income.count@E06000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_551fdd651dfc366b55602e6b" + }, + { + "name": "hmrc.self_employment_income.count@E06000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab88ce3fd774379ae77c2a13" + }, + { + "name": "hmrc.self_employment_income.count@E06000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2d026544039baecd52c6dd4" + }, + { + "name": "hmrc.self_employment_income.count@E06000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c099fd5ee48e00743dbfba" + }, + { + "name": "hmrc.self_employment_income.count@E06000043", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b05aece08b6cd425cab70df" + }, + { + "name": "hmrc.self_employment_income.count@E06000044", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb2f8b0b86b83713da39bb21" + }, + { + "name": "hmrc.self_employment_income.count@E06000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9cb078bb39775c7621bed2c" + }, + { + "name": "hmrc.self_employment_income.count@E06000046", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_258c60bbffdb039e632ca950" + }, + { + "name": "hmrc.self_employment_income.count@E06000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2521aa6c4e4aa1ebd88b6dd3" + }, + { + "name": "hmrc.self_employment_income.count@E06000049", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6faff3e6d4e03f4fe405f1f0" + }, + { + "name": "hmrc.self_employment_income.count@E06000050", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27ccf43fc6e214fbab2f3390" + }, + { + "name": "hmrc.self_employment_income.count@E06000051", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f87d0c68fe391df2669c8b5d" + }, + { + "name": "hmrc.self_employment_income.count@E06000052", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f6f26af75a5b9e9cbc02b55" + }, + { + "name": "hmrc.self_employment_income.count@E06000053", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.self_employment_income.count@E06000054", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1b12f4b1b9ae568a2aa55e1" + }, + { + "name": "hmrc.self_employment_income.count@E06000055", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89232ee89d501c25b9b65be7" + }, + { + "name": "hmrc.self_employment_income.count@E06000056", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c5eafe876785235bc621763" + }, + { + "name": "hmrc.self_employment_income.count@E06000057", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f2c58f5ec9633a3db0f4d8a" + }, + { + "name": "hmrc.self_employment_income.count@E06000058", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b293179f38d4eddc56e7bb50" + }, + { + "name": "hmrc.self_employment_income.count@E06000059", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c37a3a088f51fd2e5b40765f" + }, + { + "name": "hmrc.self_employment_income.count@E06000060", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d13d73e506c69e2eaa566095" + }, + { + "name": "hmrc.self_employment_income.count@E06000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1c2a0f951af716513158749" + }, + { + "name": "hmrc.self_employment_income.count@E06000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_adbce6ce823f24201de62f27" + }, + { + "name": "hmrc.self_employment_income.count@E06000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5763535fc8452c7172b97ca5" + }, + { + "name": "hmrc.self_employment_income.count@E06000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd0b011de65afb30b6201675" + }, + { + "name": "hmrc.self_employment_income.count@E06000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef5920b7f9e056a4eaee369" + }, + { + "name": "hmrc.self_employment_income.count@E06000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4a37fb7df01c3a22282b989" + }, + { + "name": "hmrc.self_employment_income.count@E07000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_362d37808f180f76db883104" + }, + { + "name": "hmrc.self_employment_income.count@E07000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d7f2e94b9e2ef8372926a0d" + }, + { + "name": "hmrc.self_employment_income.count@E07000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22bcdf94750a8c78a477d1f" + }, + { + "name": "hmrc.self_employment_income.count@E07000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_883acdf9516cfdc22c178676" + }, + { + "name": "hmrc.self_employment_income.count@E07000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_031f1ec971b3357c7714647d" + }, + { + "name": "hmrc.self_employment_income.count@E07000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a690c8e6625eba3f021cb68" + }, + { + "name": "hmrc.self_employment_income.count@E07000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d89792eb0365226b39549163" + }, + { + "name": "hmrc.self_employment_income.count@E07000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e032292188cafca02acaee7b" + }, + { + "name": "hmrc.self_employment_income.count@E07000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80e3987066b19127eb1ae85f" + }, + { + "name": "hmrc.self_employment_income.count@E07000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7cf44bb341258f54cabde3d" + }, + { + "name": "hmrc.self_employment_income.count@E07000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df6bf1abe149d0aeb9cd0a7d" + }, + { + "name": "hmrc.self_employment_income.count@E07000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_491de84db7db25e32002bd48" + }, + { + "name": "hmrc.self_employment_income.count@E07000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5798e98550ce719aae6c76f7" + }, + { + "name": "hmrc.self_employment_income.count@E07000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2df064b819f7821a123dbfab" + }, + { + "name": "hmrc.self_employment_income.count@E07000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_053936b1d7b120c5c41ab589" + }, + { + "name": "hmrc.self_employment_income.count@E07000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bbe30f25ad4f40d11080d37" + }, + { + "name": "hmrc.self_employment_income.count@E07000043", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_547c16895d906ad25719bbe1" + }, + { + "name": "hmrc.self_employment_income.count@E07000044", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0db14ef6d923e83c7c1d4f64" + }, + { + "name": "hmrc.self_employment_income.count@E07000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15cea0555960f4056b14538f" + }, + { + "name": "hmrc.self_employment_income.count@E07000046", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf60e61f6a416e9466f0175" + }, + { + "name": "hmrc.self_employment_income.count@E07000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6028ae735a04f43785b610d1" + }, + { + "name": "hmrc.self_employment_income.count@E07000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18f567dcdf7440ad504aecef" + }, + { + "name": "hmrc.self_employment_income.count@E07000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3754fa54f06eda1e2e79424" + }, + { + "name": "hmrc.self_employment_income.count@E07000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6aa0ee60350f8d7323051b4" + }, + { + "name": "hmrc.self_employment_income.count@E07000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f5a9b4244cd322604f8bcc" + }, + { + "name": "hmrc.self_employment_income.count@E07000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d596c536ca5bc27e4bddb45f" + }, + { + "name": "hmrc.self_employment_income.count@E07000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44fde9cd5ca8b5747576a793" + }, + { + "name": "hmrc.self_employment_income.count@E07000067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f8064c1a6c29f5666ffbe9" + }, + { + "name": "hmrc.self_employment_income.count@E07000068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0382b5d7d9a71b496d650d" + }, + { + "name": "hmrc.self_employment_income.count@E07000069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_266e734ba3a0593a5d9b6388" + }, + { + "name": "hmrc.self_employment_income.count@E07000070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9bfc0520c5ff0ae54f4f258" + }, + { + "name": "hmrc.self_employment_income.count@E07000071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45423cbe813cb08a8d76902b" + }, + { + "name": "hmrc.self_employment_income.count@E07000072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25857830857e4701411e55ac" + }, + { + "name": "hmrc.self_employment_income.count@E07000073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9220c915413d361f5aba276" + }, + { + "name": "hmrc.self_employment_income.count@E07000074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be5d11cbcbad50643b9c5399" + }, + { + "name": "hmrc.self_employment_income.count@E07000075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e3030e8ef0dddbeea6ca352" + }, + { + "name": "hmrc.self_employment_income.count@E07000076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_618ab5e7b720863403714b96" + }, + { + "name": "hmrc.self_employment_income.count@E07000077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_563d0f50c0b997ad288fc7b8" + }, + { + "name": "hmrc.self_employment_income.count@E07000078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68416f9b9fe22e628f67db66" + }, + { + "name": "hmrc.self_employment_income.count@E07000079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82c85d6720bab2d9d242dedf" + }, + { + "name": "hmrc.self_employment_income.count@E07000080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aceafa1a0c2d9da6572760a7" + }, + { + "name": "hmrc.self_employment_income.count@E07000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31b9aa8d7e04325ef5a40951" + }, + { + "name": "hmrc.self_employment_income.count@E07000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2762f00fb3bbb941a21592bd" + }, + { + "name": "hmrc.self_employment_income.count@E07000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e9c8aa4b8cf87ab3d687e21" + }, + { + "name": "hmrc.self_employment_income.count@E07000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_822935e9d4029774d0c40a00" + }, + { + "name": "hmrc.self_employment_income.count@E07000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a5fee0b5a4cab9af73932ba" + }, + { + "name": "hmrc.self_employment_income.count@E07000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ab170efd29daedef06e7cd1" + }, + { + "name": "hmrc.self_employment_income.count@E07000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0797a34d7a68a5119af2f1e" + }, + { + "name": "hmrc.self_employment_income.count@E07000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62022b75da5e756d93b0a469" + }, + { + "name": "hmrc.self_employment_income.count@E07000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f82847f9aa2fb08e2a4d564e" + }, + { + "name": "hmrc.self_employment_income.count@E07000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb3f0d14d82c9e79be41baef" + }, + { + "name": "hmrc.self_employment_income.count@E07000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23b4b214e81ff012525e6a4e" + }, + { + "name": "hmrc.self_employment_income.count@E07000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f1d0846b16bec645439622a" + }, + { + "name": "hmrc.self_employment_income.count@E07000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cc05be971cd52f5303c28e5" + }, + { + "name": "hmrc.self_employment_income.count@E07000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d79d576f0788aa34fd600a3d" + }, + { + "name": "hmrc.self_employment_income.count@E07000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4c1fc4b2e9d94c172885d7e" + }, + { + "name": "hmrc.self_employment_income.count@E07000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fce92ebfd8d31e76bcf8032" + }, + { + "name": "hmrc.self_employment_income.count@E07000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_253d132e24e928f82e64814d" + }, + { + "name": "hmrc.self_employment_income.count@E07000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_455aa9b511abf365e5b71fbe" + }, + { + "name": "hmrc.self_employment_income.count@E07000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_057442bed2484b625151620d" + }, + { + "name": "hmrc.self_employment_income.count@E07000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41238a39fa1ece51add7c351" + }, + { + "name": "hmrc.self_employment_income.count@E07000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ea528e5de0e1bbe2b43c702" + }, + { + "name": "hmrc.self_employment_income.count@E07000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30085f19c734aa6029f1207a" + }, + { + "name": "hmrc.self_employment_income.count@E07000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfd274a2090db8f258b8c23a" + }, + { + "name": "hmrc.self_employment_income.count@E07000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a66f9f3b7aeec7ee065730e2" + }, + { + "name": "hmrc.self_employment_income.count@E07000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6419f93b532d060e3cad0d" + }, + { + "name": "hmrc.self_employment_income.count@E07000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d12a1fb2166187f0f6658b6" + }, + { + "name": "hmrc.self_employment_income.count@E07000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d52f44ed0940358fc8e74b4" + }, + { + "name": "hmrc.self_employment_income.count@E07000112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c58ee05b102d84d1016faecb" + }, + { + "name": "hmrc.self_employment_income.count@E07000113", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df912dd8f9685d77e50be072" + }, + { + "name": "hmrc.self_employment_income.count@E07000114", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e0ae29793b67f210cebea68" + }, + { + "name": "hmrc.self_employment_income.count@E07000115", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe52756506fc9bac9f306d05" + }, + { + "name": "hmrc.self_employment_income.count@E07000116", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83b639a1a8c8922080e30873" + }, + { + "name": "hmrc.self_employment_income.count@E07000117", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e424bccbb8f817237961d26c" + }, + { + "name": "hmrc.self_employment_income.count@E07000118", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e75261e84e29f403cfe08a9" + }, + { + "name": "hmrc.self_employment_income.count@E07000119", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ca4562549a4efe30f99d4b3" + }, + { + "name": "hmrc.self_employment_income.count@E07000120", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_794b9fa91e3050e07bf72fd3" + }, + { + "name": "hmrc.self_employment_income.count@E07000121", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a64fbeb71bcb564fc94c294f" + }, + { + "name": "hmrc.self_employment_income.count@E07000122", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c7a4a4af9895e014166eae5" + }, + { + "name": "hmrc.self_employment_income.count@E07000123", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19207fbd4eb6655f5c0248c6" + }, + { + "name": "hmrc.self_employment_income.count@E07000124", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31d8d5d41007de38dfc755a8" + }, + { + "name": "hmrc.self_employment_income.count@E07000125", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8dedb29ef3ccec66fb70f1c" + }, + { + "name": "hmrc.self_employment_income.count@E07000126", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dce49a20f1c5a2f73ae31c7" + }, + { + "name": "hmrc.self_employment_income.count@E07000127", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4eb29b1f933bf979339b1f2" + }, + { + "name": "hmrc.self_employment_income.count@E07000128", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6412c4a0ad3ab2bccb1a6781" + }, + { + "name": "hmrc.self_employment_income.count@E07000129", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_563033049e8d1cb2048d2659" + }, + { + "name": "hmrc.self_employment_income.count@E07000130", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3566c5fdde842867e5899f4" + }, + { + "name": "hmrc.self_employment_income.count@E07000131", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d73c649de769811c54ae7c3" + }, + { + "name": "hmrc.self_employment_income.count@E07000132", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f567f8a394f9cf4a641a35dd" + }, + { + "name": "hmrc.self_employment_income.count@E07000133", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a7aa48684bd52ebce8c11e5" + }, + { + "name": "hmrc.self_employment_income.count@E07000134", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06d8a9e8218fcd0bd0f4228e" + }, + { + "name": "hmrc.self_employment_income.count@E07000135", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47e2639d2784abc0514e12c6" + }, + { + "name": "hmrc.self_employment_income.count@E07000136", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_057dff1c6d1d9d86aeeef528" + }, + { + "name": "hmrc.self_employment_income.count@E07000137", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dd88e3eab80ba30b123f118" + }, + { + "name": "hmrc.self_employment_income.count@E07000138", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c41a8786662097c8b64c3eb4" + }, + { + "name": "hmrc.self_employment_income.count@E07000139", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_595cf44eee4c2022c1ac3ef2" + }, + { + "name": "hmrc.self_employment_income.count@E07000140", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09e9029946e6ce607dd7c2c7" + }, + { + "name": "hmrc.self_employment_income.count@E07000141", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9de6ef346630b7a506e85b4" + }, + { + "name": "hmrc.self_employment_income.count@E07000142", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83f8274fff0af4045ebb6691" + }, + { + "name": "hmrc.self_employment_income.count@E07000143", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_202a1c83d1accb01072d17d9" + }, + { + "name": "hmrc.self_employment_income.count@E07000144", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91bd33186646d97092e31509" + }, + { + "name": "hmrc.self_employment_income.count@E07000145", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ad19651ed38052244422f4c" + }, + { + "name": "hmrc.self_employment_income.count@E07000146", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31d088a30e2494b25a55937f" + }, + { + "name": "hmrc.self_employment_income.count@E07000147", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a04f1412f99c82937befadd" + }, + { + "name": "hmrc.self_employment_income.count@E07000148", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f41b416fee4550f54c61c3f" + }, + { + "name": "hmrc.self_employment_income.count@E07000149", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34f380055d5742b0753a48ea" + }, + { + "name": "hmrc.self_employment_income.count@E07000170", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af99c9ea2f9d470fadc6c3d7" + }, + { + "name": "hmrc.self_employment_income.count@E07000171", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7809ee20f06c9624ace3909" + }, + { + "name": "hmrc.self_employment_income.count@E07000172", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_edc0e51dd267817c8412b20d" + }, + { + "name": "hmrc.self_employment_income.count@E07000173", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eef7af13fa61e5a2c269c49d" + }, + { + "name": "hmrc.self_employment_income.count@E07000174", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a79bb281bb62101e7eebb3" + }, + { + "name": "hmrc.self_employment_income.count@E07000175", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde5cf3b31f672122b5533ef" + }, + { + "name": "hmrc.self_employment_income.count@E07000176", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7575419bd11f823ea2fcbc22" + }, + { + "name": "hmrc.self_employment_income.count@E07000177", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d1dfa5586e4bcf823f5e429" + }, + { + "name": "hmrc.self_employment_income.count@E07000178", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e620d23ab1ccdb5bcf84d5f5" + }, + { + "name": "hmrc.self_employment_income.count@E07000179", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5afe9e9410cec0f6c8b6573" + }, + { + "name": "hmrc.self_employment_income.count@E07000180", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c14b4c7e6ad803e9f1833367" + }, + { + "name": "hmrc.self_employment_income.count@E07000181", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf6b737b551c7ffb00b47f8d" + }, + { + "name": "hmrc.self_employment_income.count@E07000192", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b544408faf4692b7aab1857c" + }, + { + "name": "hmrc.self_employment_income.count@E07000193", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_490fbd2f58c599af590fbb41" + }, + { + "name": "hmrc.self_employment_income.count@E07000194", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b092ae26ed236ff952b8f3" + }, + { + "name": "hmrc.self_employment_income.count@E07000195", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f852894673bcdd190c341db" + }, + { + "name": "hmrc.self_employment_income.count@E07000196", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff99d20b4094a39d95143157" + }, + { + "name": "hmrc.self_employment_income.count@E07000197", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c4c6fd5d365c3d63c54e7cf" + }, + { + "name": "hmrc.self_employment_income.count@E07000198", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e6bdf1942e9e1159f952a55" + }, + { + "name": "hmrc.self_employment_income.count@E07000199", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7778f90b3bce681bdbeb7e51" + }, + { + "name": "hmrc.self_employment_income.count@E07000200", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_778c1d61e319b046f5383f72" + }, + { + "name": "hmrc.self_employment_income.count@E07000202", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f31f25c01c5b1a68da43591b" + }, + { + "name": "hmrc.self_employment_income.count@E07000203", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47f1c1911304649f4142aea2" + }, + { + "name": "hmrc.self_employment_income.count@E07000207", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbc215be43eb7cb8a57c3606" + }, + { + "name": "hmrc.self_employment_income.count@E07000208", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf46834be0b81b3d24f38381" + }, + { + "name": "hmrc.self_employment_income.count@E07000209", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b907fe615fca809ed44ebd0" + }, + { + "name": "hmrc.self_employment_income.count@E07000210", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c89c7b7a642daa32c96f75b2" + }, + { + "name": "hmrc.self_employment_income.count@E07000211", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0d8f264c8ccbe3c8635f976" + }, + { + "name": "hmrc.self_employment_income.count@E07000212", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c0137d951c955c87aef88ac" + }, + { + "name": "hmrc.self_employment_income.count@E07000213", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2b6817f3d6fbeafe2b15e39" + }, + { + "name": "hmrc.self_employment_income.count@E07000214", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6db5b73d7d473ef446da4251" + }, + { + "name": "hmrc.self_employment_income.count@E07000215", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c1bbd89840e2734462ec244" + }, + { + "name": "hmrc.self_employment_income.count@E07000216", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9a6fbd25f4f82d5f12bc6fc" + }, + { + "name": "hmrc.self_employment_income.count@E07000217", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96566a3db0e2097f2f50be63" + }, + { + "name": "hmrc.self_employment_income.count@E07000218", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0f9aaebc13c9826dd8bc21a" + }, + { + "name": "hmrc.self_employment_income.count@E07000219", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5f6d7c307e37e8da8e17261" + }, + { + "name": "hmrc.self_employment_income.count@E07000220", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfa45ddef72628fc1e5efd65" + }, + { + "name": "hmrc.self_employment_income.count@E07000221", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3535de542f2b3c229e0d9dad" + }, + { + "name": "hmrc.self_employment_income.count@E07000222", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55f74f9621808082d6288dd9" + }, + { + "name": "hmrc.self_employment_income.count@E07000223", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_605289fad0118f104d9fdddd" + }, + { + "name": "hmrc.self_employment_income.count@E07000224", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb4737cdb4a6555adaa6b90" + }, + { + "name": "hmrc.self_employment_income.count@E07000225", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_540cd657dd9a3d5798a8f2b9" + }, + { + "name": "hmrc.self_employment_income.count@E07000226", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7fb9fbb2c6e10322a68e91b" + }, + { + "name": "hmrc.self_employment_income.count@E07000227", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9e5cc4383a95d05807e07e" + }, + { + "name": "hmrc.self_employment_income.count@E07000228", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b4b36590518c47d9cfb39fe" + }, + { + "name": "hmrc.self_employment_income.count@E07000229", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec24437ed617cd019bdcf8db" + }, + { + "name": "hmrc.self_employment_income.count@E07000234", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3531c5d068bd104152d4199a" + }, + { + "name": "hmrc.self_employment_income.count@E07000235", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50e532f0bf4da1b6f31dce92" + }, + { + "name": "hmrc.self_employment_income.count@E07000236", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f59c2f914a4de9cd035b2dfb" + }, + { + "name": "hmrc.self_employment_income.count@E07000237", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2508fa25eae3944b9de2e8a6" + }, + { + "name": "hmrc.self_employment_income.count@E07000238", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f16e9c6f346fd9d6cfa12ae8" + }, + { + "name": "hmrc.self_employment_income.count@E07000239", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae229d9ac6ef4614db91864f" + }, + { + "name": "hmrc.self_employment_income.count@E07000240", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_689710e289f2e1330c7d6f54" + }, + { + "name": "hmrc.self_employment_income.count@E07000241", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2198610bf9b120e76573e348" + }, + { + "name": "hmrc.self_employment_income.count@E07000242", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ff2740f77231f65bc5eed3a" + }, + { + "name": "hmrc.self_employment_income.count@E07000243", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2080109ceb62b0fa9f4bbf7c" + }, + { + "name": "hmrc.self_employment_income.count@E07000244", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab91af7ef153f5a070a6f4d5" + }, + { + "name": "hmrc.self_employment_income.count@E07000245", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15586f73fd220e84eaf73bc6" + }, + { + "name": "hmrc.self_employment_income.count@E08000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1356d9f04eeb38a378ff596d" + }, + { + "name": "hmrc.self_employment_income.count@E08000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_302fadc8f361ac72196de7a3" + }, + { + "name": "hmrc.self_employment_income.count@E08000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f188e15e36b53735a598e7a2" + }, + { + "name": "hmrc.self_employment_income.count@E08000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f335fa2fe4ab89a50554af0" + }, + { + "name": "hmrc.self_employment_income.count@E08000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09a49432944dfa3901c57b37" + }, + { + "name": "hmrc.self_employment_income.count@E08000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a2166174ec51ffdf3f0ae78" + }, + { + "name": "hmrc.self_employment_income.count@E08000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d220f400da7e839e8ca67404" + }, + { + "name": "hmrc.self_employment_income.count@E08000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e064bfd4f698c1b1025dadc0" + }, + { + "name": "hmrc.self_employment_income.count@E08000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2bf4dd6b496a10d890e02e8" + }, + { + "name": "hmrc.self_employment_income.count@E08000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e414791d956ff4ac1032392b" + }, + { + "name": "hmrc.self_employment_income.count@E08000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae9f6283bc86fb1e01d4d15f" + }, + { + "name": "hmrc.self_employment_income.count@E08000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_796c0cd334ffcd1cc893f9f6" + }, + { + "name": "hmrc.self_employment_income.count@E08000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_331733561f0fa808f3a9819e" + }, + { + "name": "hmrc.self_employment_income.count@E08000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92897db513a6312d2ca4073a" + }, + { + "name": "hmrc.self_employment_income.count@E08000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9819fa9ffa2c359acd16b49" + }, + { + "name": "hmrc.self_employment_income.count@E08000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f048721d772b1cbc363b49c9" + }, + { + "name": "hmrc.self_employment_income.count@E08000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_570f6d46dbc8e0f77ca24583" + }, + { + "name": "hmrc.self_employment_income.count@E08000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f8a722abf28975c6aa4fa75" + }, + { + "name": "hmrc.self_employment_income.count@E08000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe63deec30be76049570ad74" + }, + { + "name": "hmrc.self_employment_income.count@E08000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bdbc9d9c2db2319974ce2e8" + }, + { + "name": "hmrc.self_employment_income.count@E08000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94c11f94bc1ca89f9ab2206e" + }, + { + "name": "hmrc.self_employment_income.count@E08000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ee9ac880ba74821fb25f0b4" + }, + { + "name": "hmrc.self_employment_income.count@E08000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c96475f5c8dd8f9e2db36117" + }, + { + "name": "hmrc.self_employment_income.count@E08000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_12876e6d7876b76f98eb1296" + }, + { + "name": "hmrc.self_employment_income.count@E08000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73c2d5d55a30ddc2cf18502c" + }, + { + "name": "hmrc.self_employment_income.count@E08000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ef28d1ac21eb7c4972b304b" + }, + { + "name": "hmrc.self_employment_income.count@E08000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a40cbfdbb7603904d9698bb8" + }, + { + "name": "hmrc.self_employment_income.count@E08000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_835b11d04b6899807e0436ff" + }, + { + "name": "hmrc.self_employment_income.count@E08000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5816bfa96c2bbb90216ac861" + }, + { + "name": "hmrc.self_employment_income.count@E08000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7322ea0c906741a294472ca9" + }, + { + "name": "hmrc.self_employment_income.count@E08000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98eda0bfd213f0e9ab20e1ca" + }, + { + "name": "hmrc.self_employment_income.count@E08000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a884916d2a701552778986c" + }, + { + "name": "hmrc.self_employment_income.count@E08000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c1ce2bb81700ee065483fa" + }, + { + "name": "hmrc.self_employment_income.count@E08000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5fe3bd849ee743198484416" + }, + { + "name": "hmrc.self_employment_income.count@E08000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa2dde6dac31bd89c42c4b33" + }, + { + "name": "hmrc.self_employment_income.count@E08000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ed96b7e2656e36478f6ee96" + }, + { + "name": "hmrc.self_employment_income.count@E09000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3e3ad4d344ee8d41c83c0f7" + }, + { + "name": "hmrc.self_employment_income.count@E09000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_645cd3387de0ab11abbecf3b" + }, + { + "name": "hmrc.self_employment_income.count@E09000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc7f311d349b4084b8cf4f0" + }, + { + "name": "hmrc.self_employment_income.count@E09000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f1e86fbed12a0a08187f6de" + }, + { + "name": "hmrc.self_employment_income.count@E09000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66c3e655244edb41ac2e790a" + }, + { + "name": "hmrc.self_employment_income.count@E09000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84ffdb54cbe3077983ce46d3" + }, + { + "name": "hmrc.self_employment_income.count@E09000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6c82290cde0352f0b34b371" + }, + { + "name": "hmrc.self_employment_income.count@E09000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03e4217107fbc8a2b8d2e1f" + }, + { + "name": "hmrc.self_employment_income.count@E09000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3cbe8c217b5cc8c57acde8b" + }, + { + "name": "hmrc.self_employment_income.count@E09000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34c290fd71921f0404934a16" + }, + { + "name": "hmrc.self_employment_income.count@E09000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dbeb0d4fb9e48eda916f24b" + }, + { + "name": "hmrc.self_employment_income.count@E09000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73fcae3bf55b318e1de6b142" + }, + { + "name": "hmrc.self_employment_income.count@E09000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2dee6f8d1a31ab723e7d671" + }, + { + "name": "hmrc.self_employment_income.count@E09000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4390e09c29b6f9283c6c36fd" + }, + { + "name": "hmrc.self_employment_income.count@E09000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76667618f772a8cf1786d74a" + }, + { + "name": "hmrc.self_employment_income.count@E09000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f53aafb62d5c72280f8cb4b5" + }, + { + "name": "hmrc.self_employment_income.count@E09000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f96883bba47c9af45a0cb84" + }, + { + "name": "hmrc.self_employment_income.count@E09000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c84af1151709e0713bf77d4" + }, + { + "name": "hmrc.self_employment_income.count@E09000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6642b94908520d22ce40a642" + }, + { + "name": "hmrc.self_employment_income.count@E09000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43ccc47446e30aaf3d95dd3d" + }, + { + "name": "hmrc.self_employment_income.count@E09000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76be45caed036e4079eb35e3" + }, + { + "name": "hmrc.self_employment_income.count@E09000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f711af5042bb5d101e05945" + }, + { + "name": "hmrc.self_employment_income.count@E09000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb023f422ef702716c19cf0" + }, + { + "name": "hmrc.self_employment_income.count@E09000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92bcb6ce97cbbb71f426e7e9" + }, + { + "name": "hmrc.self_employment_income.count@E09000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98f528aa9ced03d34c65babf" + }, + { + "name": "hmrc.self_employment_income.count@E09000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a364dc9822f9cb93fe34a5" + }, + { + "name": "hmrc.self_employment_income.count@E09000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ff88b4dab8f81b257f4a496" + }, + { + "name": "hmrc.self_employment_income.count@E09000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33c684db2c1233b5acd80a47" + }, + { + "name": "hmrc.self_employment_income.count@E09000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee57cfa270cf25f6ad9b4048" + }, + { + "name": "hmrc.self_employment_income.count@E09000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31c65f3c8ca35c63d17206fe" + }, + { + "name": "hmrc.self_employment_income.count@E09000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a5e657c4d36e4473508661" + }, + { + "name": "hmrc.self_employment_income.count@E09000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_823a2da5d15cb5caed033750" + }, + { + "name": "hmrc.self_employment_income.count@E09000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33857573b03b729f4b08fde2" + }, + { + "name": "hmrc.self_employment_income.count@N09000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c5d440da2545713c46789e4" + }, + { + "name": "hmrc.self_employment_income.count@N09000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41eeed450a4a6cc48578cc85" + }, + { + "name": "hmrc.self_employment_income.count@N09000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb64334c329db12bf7d8d722" + }, + { + "name": "hmrc.self_employment_income.count@N09000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9afaf8edd0fa3a3f865c214" + }, + { + "name": "hmrc.self_employment_income.count@N09000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff3ed884aa4ee52c8731fb88" + }, + { + "name": "hmrc.self_employment_income.count@N09000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_988e21c679099a9dd1b6035d" + }, + { + "name": "hmrc.self_employment_income.count@N09000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7096d1cd7641d844030e93f" + }, + { + "name": "hmrc.self_employment_income.count@N09000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f07d212ee6bff19917cc5bbb" + }, + { + "name": "hmrc.self_employment_income.count@N09000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84d38141c8749a5199e282ca" + }, + { + "name": "hmrc.self_employment_income.count@N09000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d881e117ed0b40004c07efc0" + }, + { + "name": "hmrc.self_employment_income.count@N09000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_014be37c646d9f173147c37e" + }, + { + "name": "hmrc.self_employment_income.count@S12000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41b0fa4d629456e7b0554273" + }, + { + "name": "hmrc.self_employment_income.count@S12000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cca64426af18edf8e433a9c7" + }, + { + "name": "hmrc.self_employment_income.count@S12000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f9025dfdc466317c0d819d1" + }, + { + "name": "hmrc.self_employment_income.count@S12000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79d10e4a79c82d8a6d4ebdc2" + }, + { + "name": "hmrc.self_employment_income.count@S12000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9c2f6d9899c6c06ad5450bd" + }, + { + "name": "hmrc.self_employment_income.count@S12000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_564d39467473805f0b2fa1fc" + }, + { + "name": "hmrc.self_employment_income.count@S12000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c462156ed87aa55e2ec503b1" + }, + { + "name": "hmrc.self_employment_income.count@S12000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f953c9f4ec74b8b6821a5550" + }, + { + "name": "hmrc.self_employment_income.count@S12000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a57b6b7ce25e4e3a5fec0c1" + }, + { + "name": "hmrc.self_employment_income.count@S12000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21c4a41468c35dad3e1a1424" + }, + { + "name": "hmrc.self_employment_income.count@S12000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91b038c8a0072b6b9149db06" + }, + { + "name": "hmrc.self_employment_income.count@S12000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f344c28fd0e4e20a3af6057" + }, + { + "name": "hmrc.self_employment_income.count@S12000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31713f72fa7387722fdb3d38" + }, + { + "name": "hmrc.self_employment_income.count@S12000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbabea9c2195dacee438c929" + }, + { + "name": "hmrc.self_employment_income.count@S12000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07c525e5451eebc806f1950d" + }, + { + "name": "hmrc.self_employment_income.count@S12000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72f5a669218ac8ca55abfd72" + }, + { + "name": "hmrc.self_employment_income.count@S12000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_844fa8663031c9fd8cceca29" + }, + { + "name": "hmrc.self_employment_income.count@S12000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_add51e062ef18dadb9ce0620" + }, + { + "name": "hmrc.self_employment_income.count@S12000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51ddebcaa1504cd5a9b15f4c" + }, + { + "name": "hmrc.self_employment_income.count@S12000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15d549e22be44991d46b46e4" + }, + { + "name": "hmrc.self_employment_income.count@S12000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c3971562d9d99b448e5337f" + }, + { + "name": "hmrc.self_employment_income.count@S12000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd48030013acfa23bfe34729" + }, + { + "name": "hmrc.self_employment_income.count@S12000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f827035bb84e684c455a57c" + }, + { + "name": "hmrc.self_employment_income.count@S12000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_052c861796ebbb121e468244" + }, + { + "name": "hmrc.self_employment_income.count@S12000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29a8b883f5c782147e0fceab" + }, + { + "name": "hmrc.self_employment_income.count@S12000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05105aec07ee8fcdfe5ea5e9" + }, + { + "name": "hmrc.self_employment_income.count@S12000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_805cb59d8632163c4e66719c" + }, + { + "name": "hmrc.self_employment_income.count@S12000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a7627c4d8e342eb5186c69f" + }, + { + "name": "hmrc.self_employment_income.count@S12000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26eeff3349d08997fd2697e" + }, + { + "name": "hmrc.self_employment_income.count@S12000048", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e279745daa29f4a475ec560" + }, + { + "name": "hmrc.self_employment_income.count@S12000049", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b76129a4ce8cfbfbdf71397a" + }, + { + "name": "hmrc.self_employment_income.count@S12000050", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0e4be54cebeab858fe50012" + }, + { + "name": "hmrc.self_employment_income.count@W06000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f9b0a516d35f03501135584" + }, + { + "name": "hmrc.self_employment_income.count@W06000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c268ad88593fd41fc3b40e43" + }, + { + "name": "hmrc.self_employment_income.count@W06000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a4dfdbcc717a943d2ed1ca" + }, + { + "name": "hmrc.self_employment_income.count@W06000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_957452d59a0d2803275399df" + }, + { + "name": "hmrc.self_employment_income.count@W06000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3498f7c2f3d1090da13cd069" + }, + { + "name": "hmrc.self_employment_income.count@W06000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cb2664d080d3798a2aacabd" + }, + { + "name": "hmrc.self_employment_income.count@W06000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45e957d32316356cbb7dcc0c" + }, + { + "name": "hmrc.self_employment_income.count@W06000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a944b311fb5cd7f754929659" + }, + { + "name": "hmrc.self_employment_income.count@W06000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3922d019002fadf886ba91b0" + }, + { + "name": "hmrc.self_employment_income.count@W06000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8af3706c9703d6a6cffa0305" + }, + { + "name": "hmrc.self_employment_income.count@W06000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecba833630e452de22ce0786" + }, + { + "name": "hmrc.self_employment_income.count@W06000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59ecca750e38217ab3f968fd" + }, + { + "name": "hmrc.self_employment_income.count@W06000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3486a837ee0d42bc9610226" + }, + { + "name": "hmrc.self_employment_income.count@W06000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_46f1ce8c1aad9342fde534b5" + }, + { + "name": "hmrc.self_employment_income.count@W06000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0b9cea99df2303821f07587" + }, + { + "name": "hmrc.self_employment_income.count@W06000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb90b7831a715682b59b4063" + }, + { + "name": "hmrc.self_employment_income.count@W06000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1319600221b4ec78f692b1b6" + }, + { + "name": "hmrc.self_employment_income.count@W06000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d834d57cbd3c26481471117" + }, + { + "name": "hmrc.self_employment_income.count@W06000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_804a602db7ee1d5eda98bca7" + }, + { + "name": "hmrc.self_employment_income.count@W06000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f98784455efc319abd84778" + }, + { + "name": "hmrc.self_employment_income.count@W06000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebad944737e5d705501f8e6d" + }, + { + "name": "hmrc.self_employment_income.count@W06000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8d4dc435f713d22bed0d11c" + } + ] + } + } + }, + "hmrc.employment_income.amount": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "hmrc.employment_income.amount@E14001063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2177400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_28ba7a8d1b005087ce0687fb" + }, + { + "name": "hmrc.employment_income.amount@E14001064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1341600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc0c30b75843742e84d8846e" + }, + { + "name": "hmrc.employment_income.amount@E14001065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2255400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06cb5775050da6af95a817a4" + }, + { + "name": "hmrc.employment_income.amount@E14001066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1328000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1104a3523cd8a4dfa6706ec3" + }, + { + "name": "hmrc.employment_income.amount@E14001067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1810800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52bdbf706ac984e339985d48" + }, + { + "name": "hmrc.employment_income.amount@E14001068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1308000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf51c62356ca609ef3c4287e" + }, + { + "name": "hmrc.employment_income.amount@E14001069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1832600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_228042bcdb98111a6550d259" + }, + { + "name": "hmrc.employment_income.amount@E14001070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1280000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c7f2379be939401567c0b35" + }, + { + "name": "hmrc.employment_income.amount@E14001071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1995000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78e2477050554e845e327d9" + }, + { + "name": "hmrc.employment_income.amount@E14001072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1818000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0c30ee16e065d03308d3515" + }, + { + "name": "hmrc.employment_income.amount@E14001073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1790100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68feeab01ef5a144a099a078" + }, + { + "name": "hmrc.employment_income.amount@E14001074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1264200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb7f7ebc8f8251c3c812c4a6" + }, + { + "name": "hmrc.employment_income.amount@E14001075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1243200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3457e3181ad9ac2a16f42b4" + }, + { + "name": "hmrc.employment_income.amount@E14001076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1540000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b230406c3c3b5159f40bcf4" + }, + { + "name": "hmrc.employment_income.amount@E14001077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1879100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8f3d32daa28f6ee48ee46ec" + }, + { + "name": "hmrc.employment_income.amount@E14001078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2290400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d562649cb77b1b27196401d" + }, + { + "name": "hmrc.employment_income.amount@E14001079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1384600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5c00b8d808c97ba74e01695" + }, + { + "name": "hmrc.employment_income.amount@E14001080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1578500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd91a5f48b00ff5c37a7b0ad" + }, + { + "name": "hmrc.employment_income.amount@E14001081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4908000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89c72c06de025eb934e82014" + }, + { + "name": "hmrc.employment_income.amount@E14001082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2503200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfac607f543ac46cbbc0b7e4" + }, + { + "name": "hmrc.employment_income.amount@E14001083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2739100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_376fa6e16aac82bbc77199e8" + }, + { + "name": "hmrc.employment_income.amount@E14001084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1621500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3256b73adf32ce031c140dfe" + }, + { + "name": "hmrc.employment_income.amount@E14001085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3874400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1520ad29c20e838d3f06a9a" + }, + { + "name": "hmrc.employment_income.amount@E14001086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2764800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3299407f0ba307a034acd5b3" + }, + { + "name": "hmrc.employment_income.amount@E14001087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1169600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c57f87b8c6559727a206fa9" + }, + { + "name": "hmrc.employment_income.amount@E14001088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1013600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0d8d26f6a2935ad14fdb88" + }, + { + "name": "hmrc.employment_income.amount@E14001089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1918200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b0ea2e8493215ce432392fa" + }, + { + "name": "hmrc.employment_income.amount@E14001090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2105000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c300a3e10372dfd1fa3fef0" + }, + { + "name": "hmrc.employment_income.amount@E14001091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1318200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19295cbe8397d2cc5ae7b133" + }, + { + "name": "hmrc.employment_income.amount@E14001092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1596000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f5d2c08bc7edb9e6c50863a" + }, + { + "name": "hmrc.employment_income.amount@E14001093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1238200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ec5080712fe848a31d1c729" + }, + { + "name": "hmrc.employment_income.amount@E14001094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1250600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc2dfdab2728ab92c6a8c0a" + }, + { + "name": "hmrc.employment_income.amount@E14001095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1087800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d52a82f3b6365fc7e8c8c506" + }, + { + "name": "hmrc.employment_income.amount@E14001096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1536400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a178bedd79b9ff2f9e54e74" + }, + { + "name": "hmrc.employment_income.amount@E14001097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1314800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82fbd7a3ce185377d1176d39" + }, + { + "name": "hmrc.employment_income.amount@E14001098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1039700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca484e4414d0593409b068aa" + }, + { + "name": "hmrc.employment_income.amount@E14001099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1324800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24c7ace6467109947a17504a" + }, + { + "name": "hmrc.employment_income.amount@E14001100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1098900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5929d64e194e0dcaf1def095" + }, + { + "name": "hmrc.employment_income.amount@E14001101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1004800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8377b70275afa43de7adba04" + }, + { + "name": "hmrc.employment_income.amount@E14001102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1173900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_242fdb4987cb9cc48b09ecbe" + }, + { + "name": "hmrc.employment_income.amount@E14001103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1232000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bc51fe9e31f3d94f769dfe2" + }, + { + "name": "hmrc.employment_income.amount@E14001104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1067500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_314b765311988b11204d4347" + }, + { + "name": "hmrc.employment_income.amount@E14001105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1045000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6143e3602cc4eff224231f4f" + }, + { + "name": "hmrc.employment_income.amount@E14001106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1141000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_854b145ff7ee71fd65e7cc30" + }, + { + "name": "hmrc.employment_income.amount@E14001107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1132200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_692cb1b6fba6368e7e9649ab" + }, + { + "name": "hmrc.employment_income.amount@E14001108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1312000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c94fa6025a0a6eca04a20dae" + }, + { + "name": "hmrc.employment_income.amount@E14001109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e715856b53ae3b1e7e0edea4" + }, + { + "name": "hmrc.employment_income.amount@E14001110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1185600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ac32ea6240315c6c2d4a233" + }, + { + "name": "hmrc.employment_income.amount@E14001111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1341000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb60171c8a967e920bbfc45c" + }, + { + "name": "hmrc.employment_income.amount@E14001112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1440600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_645cfdcf62316df26699ebd6" + }, + { + "name": "hmrc.employment_income.amount@E14001113", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1228000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be276692c702ae2f598614c4" + }, + { + "name": "hmrc.employment_income.amount@E14001114", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1216900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a117448f9aee3a12ca56506c" + }, + { + "name": "hmrc.employment_income.amount@E14001115", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1482600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_409f783f700de776f626f25d" + }, + { + "name": "hmrc.employment_income.amount@E14001116", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1358800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b198356fff450f88be31eca" + }, + { + "name": "hmrc.employment_income.amount@E14001117", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2016300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_510ffa511cdf4a8ce6c21ab6" + }, + { + "name": "hmrc.employment_income.amount@E14001118", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1105800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39395ea0bad8a25eb711e628" + }, + { + "name": "hmrc.employment_income.amount@E14001119", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1098200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8267ef8c5a4539ca4b8ec3f2" + }, + { + "name": "hmrc.employment_income.amount@E14001120", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 948500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d87a623e6ae2c592912d1838" + }, + { + "name": "hmrc.employment_income.amount@E14001121", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1711400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1eb604777d31375c3891ffbc" + }, + { + "name": "hmrc.employment_income.amount@E14001122", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2085000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e73e5b9bcac1437e990c2f39" + }, + { + "name": "hmrc.employment_income.amount@E14001123", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2425500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a38e81e759ca5f4c22ebd737" + }, + { + "name": "hmrc.employment_income.amount@E14001124", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2511400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5753b992505deace25c5339d" + }, + { + "name": "hmrc.employment_income.amount@E14001125", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2283700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79cc0b0cefc5f8e1f558f122" + }, + { + "name": "hmrc.employment_income.amount@E14001126", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1113000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b56f4606edf32b7aa95dace" + }, + { + "name": "hmrc.employment_income.amount@E14001127", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 886600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85555baae8892972d866c53a" + }, + { + "name": "hmrc.employment_income.amount@E14001128", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1314300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3118a65c3d3330514ae006cd" + }, + { + "name": "hmrc.employment_income.amount@E14001129", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1263500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c42e00d2310f326813e4017" + }, + { + "name": "hmrc.employment_income.amount@E14001130", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1685100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7212392fffc24488f7e460ff" + }, + { + "name": "hmrc.employment_income.amount@E14001131", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1887700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b669d8a42ae51b4db6d9e12" + }, + { + "name": "hmrc.employment_income.amount@E14001132", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1656200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_809d6fb6186023ab14ed73e2" + }, + { + "name": "hmrc.employment_income.amount@E14001133", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1508700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cb40bbe21a1f3e602b80242" + }, + { + "name": "hmrc.employment_income.amount@E14001134", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1795200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_115a64cbe8ea4f66a80417e7" + }, + { + "name": "hmrc.employment_income.amount@E14001135", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1675200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_057a4c7fe11ee5fb76971e92" + }, + { + "name": "hmrc.employment_income.amount@E14001136", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a3f6fb1a673fb6dba349ac4" + }, + { + "name": "hmrc.employment_income.amount@E14001137", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2450800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5926ef2b10aba835ad3b1128" + }, + { + "name": "hmrc.employment_income.amount@E14001138", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1777600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57c5839504d6b61959fd39c4" + }, + { + "name": "hmrc.employment_income.amount@E14001139", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1863000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25c818bd1af23d507e5f0008" + }, + { + "name": "hmrc.employment_income.amount@E14001140", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1313500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_622949bdf1af225d24dfa5cd" + }, + { + "name": "hmrc.employment_income.amount@E14001141", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1944800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d53b146c35f99241fbaf9e03" + }, + { + "name": "hmrc.employment_income.amount@E14001142", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1058400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d614ff543a78af62dcdff91" + }, + { + "name": "hmrc.employment_income.amount@E14001143", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1600800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb4c939312f240f7611a086c" + }, + { + "name": "hmrc.employment_income.amount@E14001144", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1423300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76338a555e75aaccf98dd164" + }, + { + "name": "hmrc.employment_income.amount@E14001145", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1402200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac1c4eaa28628fb6f1d7528" + }, + { + "name": "hmrc.employment_income.amount@E14001146", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1579200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24b3c7810225947e6035ca97" + }, + { + "name": "hmrc.employment_income.amount@E14001147", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1484000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0e930a6aa73c2286b4d09e" + }, + { + "name": "hmrc.employment_income.amount@E14001148", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1131000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4368d79afcf86e01c2c0ddb" + }, + { + "name": "hmrc.employment_income.amount@E14001149", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2865200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41de8074b1bbd369966480be" + }, + { + "name": "hmrc.employment_income.amount@E14001150", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1371700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_730f72df2eabd393ef103688" + }, + { + "name": "hmrc.employment_income.amount@E14001151", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1386000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dab67bfa689bd3c6e9dd246" + }, + { + "name": "hmrc.employment_income.amount@E14001152", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1315800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6a447ec429f81045da4c82e" + }, + { + "name": "hmrc.employment_income.amount@E14001153", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1779400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20b1abe4c86fb190082fd453" + }, + { + "name": "hmrc.employment_income.amount@E14001154", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1414000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d95c4ce75b19e3d7a341069" + }, + { + "name": "hmrc.employment_income.amount@E14001155", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1149200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89126bb90fc16aec3181eb58" + }, + { + "name": "hmrc.employment_income.amount@E14001156", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1386000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f9489d561b0d381b4302ffa" + }, + { + "name": "hmrc.employment_income.amount@E14001157", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1526500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5909fc874188f009fe1c6bac" + }, + { + "name": "hmrc.employment_income.amount@E14001158", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1810200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdafbd227aacb4b205788661" + }, + { + "name": "hmrc.employment_income.amount@E14001159", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2185400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bc96263ac7db4a352ac7a3a" + }, + { + "name": "hmrc.employment_income.amount@E14001160", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6555000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f69b8316b3f97b01bea3cb79" + }, + { + "name": "hmrc.employment_income.amount@E14001161", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1881000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b139e56d0fc0a452ff0b82fd" + }, + { + "name": "hmrc.employment_income.amount@E14001162", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2779800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_13f8eb7dc5b90453b2c2af48" + }, + { + "name": "hmrc.employment_income.amount@E14001163", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1462500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7afc20d696516e0fa9da95b" + }, + { + "name": "hmrc.employment_income.amount@E14001164", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1731600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bd7bbc0aed37ea25ed86ba3" + }, + { + "name": "hmrc.employment_income.amount@E14001165", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1200800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a8869ea9baec3c18df3f691" + }, + { + "name": "hmrc.employment_income.amount@E14001166", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1427400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e01eab3320dcdb3c28d01d4" + }, + { + "name": "hmrc.employment_income.amount@E14001167", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2246400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdd4e30722e0a5797ab29866" + }, + { + "name": "hmrc.employment_income.amount@E14001168", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1553900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e89fb7c2d5aa621c62595ed" + }, + { + "name": "hmrc.employment_income.amount@E14001169", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2612800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2710b08a570381934abfb40b" + }, + { + "name": "hmrc.employment_income.amount@E14001170", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1533000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0841bca5f6535ed860e7af6" + }, + { + "name": "hmrc.employment_income.amount@E14001171", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1119100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37cb86556c31cddc4673c079" + }, + { + "name": "hmrc.employment_income.amount@E14001172", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7998000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d3a5891e44665dfe685747" + }, + { + "name": "hmrc.employment_income.amount@E14001173", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1072600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_599b483614b0357892187d96" + }, + { + "name": "hmrc.employment_income.amount@E14001174", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 966400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be67b5bf9de4952a48c5a863" + }, + { + "name": "hmrc.employment_income.amount@E14001175", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3665600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cad3ae6b78ce066af03c621" + }, + { + "name": "hmrc.employment_income.amount@E14001176", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1895000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6e3b3d259bbd774c7d3a439" + }, + { + "name": "hmrc.employment_income.amount@E14001177", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1431900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54139c584337ed98ca78217d" + }, + { + "name": "hmrc.employment_income.amount@E14001178", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1668700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77863a237316e8fda8ece85f" + }, + { + "name": "hmrc.employment_income.amount@E14001179", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1754200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc8728f028fd7083f773660f" + }, + { + "name": "hmrc.employment_income.amount@E14001180", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1368000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec8153f90aa48e2f02994ce" + }, + { + "name": "hmrc.employment_income.amount@E14001181", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1530000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2331ad4b0f9705df550e90c8" + }, + { + "name": "hmrc.employment_income.amount@E14001182", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1695400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda1f05144f33c9d5713d47c" + }, + { + "name": "hmrc.employment_income.amount@E14001183", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1440600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eaea76926f3a695d05c9a84" + }, + { + "name": "hmrc.employment_income.amount@E14001184", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1938600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68e0345e92124b35380f9604" + }, + { + "name": "hmrc.employment_income.amount@E14001185", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1508800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30cd2fee8cd942487f022fb6" + }, + { + "name": "hmrc.employment_income.amount@E14001186", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1904400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ec19294aafd82c4a09d1e4f" + }, + { + "name": "hmrc.employment_income.amount@E14001187", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2462800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_250281868f6c57b24f7aacef" + }, + { + "name": "hmrc.employment_income.amount@E14001188", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2034900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47dc11f929e9e0524d8b0ca4" + }, + { + "name": "hmrc.employment_income.amount@E14001189", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1749300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_559013c0788782f156ff6e0c" + }, + { + "name": "hmrc.employment_income.amount@E14001190", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1263600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9191491194c4b66b73df5a6" + }, + { + "name": "hmrc.employment_income.amount@E14001191", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1945800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26ac566c8a24aa610084f252" + }, + { + "name": "hmrc.employment_income.amount@E14001192", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1885500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04d1ede0dea1422579defdb1" + }, + { + "name": "hmrc.employment_income.amount@E14001193", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1364000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e68efb14cabcd36943310198" + }, + { + "name": "hmrc.employment_income.amount@E14001194", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1381500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bf0c6701313f9266562577d" + }, + { + "name": "hmrc.employment_income.amount@E14001195", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1323000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_926d624eb08b60ebbb896399" + }, + { + "name": "hmrc.employment_income.amount@E14001196", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1011500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf36722e4b74f6bc4c3dd688" + }, + { + "name": "hmrc.employment_income.amount@E14001197", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2448600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e36c522c0d432d8f0a4c4a11" + }, + { + "name": "hmrc.employment_income.amount@E14001198", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1453500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_147061ff8fb16e792d991418" + }, + { + "name": "hmrc.employment_income.amount@E14001199", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1280600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1194d11a86840cf9257c8757" + }, + { + "name": "hmrc.employment_income.amount@E14001200", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1081500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4f25fd8bb13292f9d86b281" + }, + { + "name": "hmrc.employment_income.amount@E14001201", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2167200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0ab8537a4802cb6b6962de9" + }, + { + "name": "hmrc.employment_income.amount@E14001202", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfe5feaf1e5bbfbb6ea65311" + }, + { + "name": "hmrc.employment_income.amount@E14001203", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1611000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21c2b1d265b62ba8e43a96ec" + }, + { + "name": "hmrc.employment_income.amount@E14001204", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1050000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c14ebd210a80f9b3b4430df7" + }, + { + "name": "hmrc.employment_income.amount@E14001205", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2998800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2933ec5f7e638263001fb23" + }, + { + "name": "hmrc.employment_income.amount@E14001206", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1876800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc680ce8970e72d586a8529f" + }, + { + "name": "hmrc.employment_income.amount@E14001207", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3865600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5080282c2fc76a5a91806be9" + }, + { + "name": "hmrc.employment_income.amount@E14001208", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1922800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e27637cdcd1cf726b4daebb" + }, + { + "name": "hmrc.employment_income.amount@E14001209", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2210100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43dcd6cffb9e95b1bdc136a" + }, + { + "name": "hmrc.employment_income.amount@E14001210", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2385000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_019fa87031aa8bedbc12d00d" + }, + { + "name": "hmrc.employment_income.amount@E14001211", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 963200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1cfa339cf3245d17c231efe" + }, + { + "name": "hmrc.employment_income.amount@E14001212", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1910600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bd73a61a372ed90ab95bdf0" + }, + { + "name": "hmrc.employment_income.amount@E14001213", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1523900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a6995f905cd0c9662ade8ef" + }, + { + "name": "hmrc.employment_income.amount@E14001214", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1710000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5effbf86f54b4bdb2405339" + }, + { + "name": "hmrc.employment_income.amount@E14001215", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2476800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_714def30f711f8aadfb5a3b4" + }, + { + "name": "hmrc.employment_income.amount@E14001216", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1118700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97fd7cfad72f9754e3ddd0b4" + }, + { + "name": "hmrc.employment_income.amount@E14001217", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1733600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed0e496ce046e0b5dbb1a97a" + }, + { + "name": "hmrc.employment_income.amount@E14001218", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1440000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd5d299ad27cb11902efe5f" + }, + { + "name": "hmrc.employment_income.amount@E14001219", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1134000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdbdd5e1aed41831e49d6b6e" + }, + { + "name": "hmrc.employment_income.amount@E14001220", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1668400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe13d6362b8c7eee205dda8e" + }, + { + "name": "hmrc.employment_income.amount@E14001221", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1812400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32ab16cfe195ed2bd542ae26" + }, + { + "name": "hmrc.employment_income.amount@E14001222", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1258000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6deba8d8853e88aaed2968cf" + }, + { + "name": "hmrc.employment_income.amount@E14001223", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2582400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f7b0e81df461c15ba52472f" + }, + { + "name": "hmrc.employment_income.amount@E14001224", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2107000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e4b6f7865a837c75a48a384" + }, + { + "name": "hmrc.employment_income.amount@E14001225", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1692000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40851e6650d9719f707bba32" + }, + { + "name": "hmrc.employment_income.amount@E14001226", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2274700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ece465aa318d66cd6b12aff" + }, + { + "name": "hmrc.employment_income.amount@E14001227", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2725000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b42e9c12e81ad60a812935" + }, + { + "name": "hmrc.employment_income.amount@E14001228", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1208400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0c2455ca05d3281c00b690f" + }, + { + "name": "hmrc.employment_income.amount@E14001229", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2184000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9989e0a65aa3101dbeb6ffc" + }, + { + "name": "hmrc.employment_income.amount@E14001230", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3708300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70d0a8c3c6b1bcc1098aa58" + }, + { + "name": "hmrc.employment_income.amount@E14001231", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1246400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bccabc7b668103224c076aa" + }, + { + "name": "hmrc.employment_income.amount@E14001232", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1453400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea43f9a903e91fa706aec4f6" + }, + { + "name": "hmrc.employment_income.amount@E14001233", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1548000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e6cdee9e1b0b34953cf312f" + }, + { + "name": "hmrc.employment_income.amount@E14001234", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2260000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4853138d0af935d021e9e9ef" + }, + { + "name": "hmrc.employment_income.amount@E14001235", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1633800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_740451bf3ab06683a1ed163e" + }, + { + "name": "hmrc.employment_income.amount@E14001236", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2000100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_719c5a24b0a07b7d103fb3bc" + }, + { + "name": "hmrc.employment_income.amount@E14001237", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2161600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb8ff78e157ff1fdc084de9d" + }, + { + "name": "hmrc.employment_income.amount@E14001238", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3504600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0969fac880cfdbb74415325e" + }, + { + "name": "hmrc.employment_income.amount@E14001239", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1046900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af2760afac47996dc5bad051" + }, + { + "name": "hmrc.employment_income.amount@E14001240", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1092300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5286166d9784f13da5a8935" + }, + { + "name": "hmrc.employment_income.amount@E14001241", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1242500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a507311b4dd708e3a6466093" + }, + { + "name": "hmrc.employment_income.amount@E14001242", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1425000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92583db03399e0205bb887be" + }, + { + "name": "hmrc.employment_income.amount@E14001243", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06565ee97fab4306f5a02a30" + }, + { + "name": "hmrc.employment_income.amount@E14001244", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1287000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19d070d364305469abac26f6" + }, + { + "name": "hmrc.employment_income.amount@E14001245", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1419000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f2d384f7e6b7eaff3fa12df" + }, + { + "name": "hmrc.employment_income.amount@E14001246", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1541400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b285647d4a8845ba7f2c59e" + }, + { + "name": "hmrc.employment_income.amount@E14001247", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1084800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d405d049dbafc1ecfa925c98" + }, + { + "name": "hmrc.employment_income.amount@E14001248", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1570000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04dd728741327539b68a9217" + }, + { + "name": "hmrc.employment_income.amount@E14001249", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2596500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef55e5360686468209cc03ef" + }, + { + "name": "hmrc.employment_income.amount@E14001250", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1748400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0be49e1321248b9cd7cda83" + }, + { + "name": "hmrc.employment_income.amount@E14001251", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1333000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b73c5492686e28abef6064d2" + }, + { + "name": "hmrc.employment_income.amount@E14001252", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1216800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fdd3b4d7ce43808b10e7e80" + }, + { + "name": "hmrc.employment_income.amount@E14001253", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1422700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_051924c716d110b438b79159" + }, + { + "name": "hmrc.employment_income.amount@E14001254", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1658800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b863c219a9046bb70cd447b" + }, + { + "name": "hmrc.employment_income.amount@E14001255", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1088000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea40c71dadf50618fec69832" + }, + { + "name": "hmrc.employment_income.amount@E14001256", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1106300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d35835d62405c774acd7959" + }, + { + "name": "hmrc.employment_income.amount@E14001257", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3768000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b54e5ef95de0c8c014498a59" + }, + { + "name": "hmrc.employment_income.amount@E14001258", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2684000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c82b1d6afa6a38d1e7d65825" + }, + { + "name": "hmrc.employment_income.amount@E14001259", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2024400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47f83106435be754a4ab1c2c" + }, + { + "name": "hmrc.employment_income.amount@E14001260", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3100500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f784f45bc6982a87466520d" + }, + { + "name": "hmrc.employment_income.amount@E14001261", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1127000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e14a96a6c795c8d874eb9a69" + }, + { + "name": "hmrc.employment_income.amount@E14001262", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1228000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c0a080277775adb380edb68" + }, + { + "name": "hmrc.employment_income.amount@E14001263", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1955200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a1cfc3bfdd1b32b9e3d4dc6" + }, + { + "name": "hmrc.employment_income.amount@E14001264", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4152600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3208f05c9ec7076775f7a045" + }, + { + "name": "hmrc.employment_income.amount@E14001265", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5995000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d82ef9c318d6e35480334a0e" + }, + { + "name": "hmrc.employment_income.amount@E14001266", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1584000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31a846c37b08e9875f932ea5" + }, + { + "name": "hmrc.employment_income.amount@E14001267", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1833600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7ae77f74f9dca02c42a1de8" + }, + { + "name": "hmrc.employment_income.amount@E14001268", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3156200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18dc2fc56045531d5a7aa3df" + }, + { + "name": "hmrc.employment_income.amount@E14001269", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1845000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6720efa7fc7e6440ec5da98a" + }, + { + "name": "hmrc.employment_income.amount@E14001270", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1858400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_772d235bbd59974acbef550d" + }, + { + "name": "hmrc.employment_income.amount@E14001271", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2305800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29adfae3bbd2e2ab728e5b7e" + }, + { + "name": "hmrc.employment_income.amount@E14001272", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1060800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a5ba44e958a523ce6ba3149" + }, + { + "name": "hmrc.employment_income.amount@E14001273", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1368500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6156e7542c7410dee788dd2d" + }, + { + "name": "hmrc.employment_income.amount@E14001274", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1189400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bcebbe202af545e0c14e27e" + }, + { + "name": "hmrc.employment_income.amount@E14001275", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1193400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7940f4c7ae05945cc26de4ee" + }, + { + "name": "hmrc.employment_income.amount@E14001276", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2117000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2adb9cc7900eff1ac46f86c8" + }, + { + "name": "hmrc.employment_income.amount@E14001277", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1476000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1540e3a2baa99fb1445db18f" + }, + { + "name": "hmrc.employment_income.amount@E14001278", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1918200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96fb7f7b74175dd5f3a5ba8" + }, + { + "name": "hmrc.employment_income.amount@E14001279", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2576400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4acefe564c3b0052bc579f" + }, + { + "name": "hmrc.employment_income.amount@E14001280", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2406700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_819d105319cf6f9e67872bed" + }, + { + "name": "hmrc.employment_income.amount@E14001281", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1268000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73acde446cad27c9653e0fc7" + }, + { + "name": "hmrc.employment_income.amount@E14001282", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1254300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59898b127b2e2aba55e028d6" + }, + { + "name": "hmrc.employment_income.amount@E14001283", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2606100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4771f0e95f9bd44e085700d6" + }, + { + "name": "hmrc.employment_income.amount@E14001284", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2336400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac3672bc11c2dedb447bb43" + }, + { + "name": "hmrc.employment_income.amount@E14001285", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1575600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a19a3b83772c472047a1bd61" + }, + { + "name": "hmrc.employment_income.amount@E14001286", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1172900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f45bbd7572314c60bf8d339" + }, + { + "name": "hmrc.employment_income.amount@E14001287", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1352800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b821c29843c19b89c963d6e" + }, + { + "name": "hmrc.employment_income.amount@E14001288", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1541600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_500d205c9bb665f4cbf1a602" + }, + { + "name": "hmrc.employment_income.amount@E14001289", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2312800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca2b89328c7832bee5ee73e7" + }, + { + "name": "hmrc.employment_income.amount@E14001290", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3238400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eb85444c023063737f4a3aa" + }, + { + "name": "hmrc.employment_income.amount@E14001291", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1105000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b28807e4311119b25913584f" + }, + { + "name": "hmrc.employment_income.amount@E14001292", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2129800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1234ce1ed1dc92bfcd7fcd89" + }, + { + "name": "hmrc.employment_income.amount@E14001293", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2847400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e83971f1ca7f1cf349af014" + }, + { + "name": "hmrc.employment_income.amount@E14001294", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2136000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ecfa8fde3f3308c9c28d4f3" + }, + { + "name": "hmrc.employment_income.amount@E14001295", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1178000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_beba9a089866f7f0279520c9" + }, + { + "name": "hmrc.employment_income.amount@E14001296", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2054400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1239a803c9f4f0c83230e5c" + }, + { + "name": "hmrc.employment_income.amount@E14001297", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1280000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_307d9b092d2c14196dad9f85" + }, + { + "name": "hmrc.employment_income.amount@E14001298", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1959900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a44a1a5b51b0be2f801d6e6b" + }, + { + "name": "hmrc.employment_income.amount@E14001299", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1020000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8b9b073430bc03be476ff01" + }, + { + "name": "hmrc.employment_income.amount@E14001300", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1828300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51a8d6330dd9ad64b6c32816" + }, + { + "name": "hmrc.employment_income.amount@E14001301", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1601600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23c8e850768305bd7e5e16ff" + }, + { + "name": "hmrc.employment_income.amount@E14001302", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1525500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a565649e83638b4124b5fd1b" + }, + { + "name": "hmrc.employment_income.amount@E14001303", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 578000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed9428dd85dc0cfe3ffcccb2" + }, + { + "name": "hmrc.employment_income.amount@E14001304", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 777400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80b9ea3b2c044fd3249600b" + }, + { + "name": "hmrc.employment_income.amount@E14001305", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3100800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63a18514bb370515cd0e5bfb" + }, + { + "name": "hmrc.employment_income.amount@E14001306", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4501700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8322cff57defe69263289e4" + }, + { + "name": "hmrc.employment_income.amount@E14001307", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1124800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1d932aa5db8f35e0c40bc95" + }, + { + "name": "hmrc.employment_income.amount@E14001308", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1392300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f017b1f6266ec765aa8bfa5" + }, + { + "name": "hmrc.employment_income.amount@E14001309", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2068300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65d6d2195566e0a5afa808de" + }, + { + "name": "hmrc.employment_income.amount@E14001310", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7866000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32c7e963403c37d9c433b1d1" + }, + { + "name": "hmrc.employment_income.amount@E14001311", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1845000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_99b03b26d891052b46045c65" + }, + { + "name": "hmrc.employment_income.amount@E14001312", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2627300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15fcb2c6118766c2103fee93" + }, + { + "name": "hmrc.employment_income.amount@E14001313", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1050800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bfb084b1411cee77adca2d3" + }, + { + "name": "hmrc.employment_income.amount@E14001314", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1405300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b17afe14f413b601dcec21ab" + }, + { + "name": "hmrc.employment_income.amount@E14001315", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1328700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3a8e150975930b23fb66607" + }, + { + "name": "hmrc.employment_income.amount@E14001316", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1256400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec2481c602427de415179001" + }, + { + "name": "hmrc.employment_income.amount@E14001317", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1119600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_440567d2f4625cc58c7af7d6" + }, + { + "name": "hmrc.employment_income.amount@E14001318", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1159400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d3be0028181f53a96d7017" + }, + { + "name": "hmrc.employment_income.amount@E14001319", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1166600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d51d8114a33572c0464e377" + }, + { + "name": "hmrc.employment_income.amount@E14001320", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1421200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84490db451f3a8aba0d7b95d" + }, + { + "name": "hmrc.employment_income.amount@E14001321", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1618500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d267f5fc89738868e5b71ac" + }, + { + "name": "hmrc.employment_income.amount@E14001322", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1709700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e62dd2b72be20159f92007f" + }, + { + "name": "hmrc.employment_income.amount@E14001323", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1514100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41300f934f9d910147784cf0" + }, + { + "name": "hmrc.employment_income.amount@E14001324", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1394000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b1f9b383062b540791100b" + }, + { + "name": "hmrc.employment_income.amount@E14001325", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1421200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_004278ef2ed6cb71ee0240b7" + }, + { + "name": "hmrc.employment_income.amount@E14001326", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1166000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f27d97fe66c7d2a8beca7ccc" + }, + { + "name": "hmrc.employment_income.amount@E14001327", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1221800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17856c831201359ea658f811" + }, + { + "name": "hmrc.employment_income.amount@E14001328", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1433100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd10c0f207c0753163c0104" + }, + { + "name": "hmrc.employment_income.amount@E14001329", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1397500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be6949ac93497b8dba9b475f" + }, + { + "name": "hmrc.employment_income.amount@E14001330", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1285200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71bf79f60a7fd360981b5ac0" + }, + { + "name": "hmrc.employment_income.amount@E14001331", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2092300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_13a6bdedab2865dd1fa7a57f" + }, + { + "name": "hmrc.employment_income.amount@E14001332", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2748600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3473eb40292ca81ff436ccc" + }, + { + "name": "hmrc.employment_income.amount@E14001333", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2557800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70026c4b12cc732d89f8f5e" + }, + { + "name": "hmrc.employment_income.amount@E14001334", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2496000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfe5dcf5b6b1d0f13a7f998a" + }, + { + "name": "hmrc.employment_income.amount@E14001335", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1596000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3f41e17f7c5b07b0b676e74" + }, + { + "name": "hmrc.employment_income.amount@E14001336", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1499400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97ab3315db1622e0712d6f09" + }, + { + "name": "hmrc.employment_income.amount@E14001337", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1365300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66e3ab485e15fd42dd5c91ef" + }, + { + "name": "hmrc.employment_income.amount@E14001338", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1240200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9ab17f49d70e4f6ac8e0647" + }, + { + "name": "hmrc.employment_income.amount@E14001339", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1180000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f4aa0783f2e621412c8b913" + }, + { + "name": "hmrc.employment_income.amount@E14001340", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1303400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56f887192a9f12d7031f565e" + }, + { + "name": "hmrc.employment_income.amount@E14001341", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1193200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e36dbd3bdf1bd0c909ad091" + }, + { + "name": "hmrc.employment_income.amount@E14001342", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1364000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f298b64acc3aad8d13c73ace" + }, + { + "name": "hmrc.employment_income.amount@E14001343", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 988900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b44559bfd5fd0337df907e12" + }, + { + "name": "hmrc.employment_income.amount@E14001344", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 980100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dda141d7aab22f2e810e9e1f" + }, + { + "name": "hmrc.employment_income.amount@E14001345", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1373500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_514a4ef140592ccf327c00d8" + }, + { + "name": "hmrc.employment_income.amount@E14001346", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1590000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e00a46dfcc5b86766a703fb7" + }, + { + "name": "hmrc.employment_income.amount@E14001347", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1866200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_209f0d8cf9783652f6f279cc" + }, + { + "name": "hmrc.employment_income.amount@E14001348", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2842800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed3f0fee19c432fdc550dd66" + }, + { + "name": "hmrc.employment_income.amount@E14001349", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1931700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ba82984ca2911effd4572fa" + }, + { + "name": "hmrc.employment_income.amount@E14001350", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1401800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_063d8785c47de689b17279e6" + }, + { + "name": "hmrc.employment_income.amount@E14001351", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1624300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88bdf86ba088ff979187db4e" + }, + { + "name": "hmrc.employment_income.amount@E14001352", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1815000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f14c9adfa2424ea27db9132" + }, + { + "name": "hmrc.employment_income.amount@E14001353", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1085000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8cc5bbe6c6666c7ad29b61a" + }, + { + "name": "hmrc.employment_income.amount@E14001354", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1692000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d982db70f3682676f3c04352" + }, + { + "name": "hmrc.employment_income.amount@E14001355", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1232000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_87ba3b8229ee0872b6354bed" + }, + { + "name": "hmrc.employment_income.amount@E14001356", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1393200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75ead5327c5cff23f9dfac1" + }, + { + "name": "hmrc.employment_income.amount@E14001357", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1353300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e0a7a608e94f6b55068fe80" + }, + { + "name": "hmrc.employment_income.amount@E14001358", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1598400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a7bc6e38ee5c8a643c2bd16" + }, + { + "name": "hmrc.employment_income.amount@E14001359", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2146200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_02e4193e3170885b6b11724e" + }, + { + "name": "hmrc.employment_income.amount@E14001360", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2585000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ce5474a8a3db0dfe659f10c" + }, + { + "name": "hmrc.employment_income.amount@E14001361", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1533000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79e2727021b79465fbdb2b92" + }, + { + "name": "hmrc.employment_income.amount@E14001362", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1393000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a48ca6b8faae4f90546bbbd" + }, + { + "name": "hmrc.employment_income.amount@E14001363", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1225000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_903aa080b40be0458dd7c3e1" + }, + { + "name": "hmrc.employment_income.amount@E14001364", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1647000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01796b3fb52223b055ba255b" + }, + { + "name": "hmrc.employment_income.amount@E14001365", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95775ec58107e14806a6f62" + }, + { + "name": "hmrc.employment_income.amount@E14001366", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2098400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a618476bfb12d10fd062501e" + }, + { + "name": "hmrc.employment_income.amount@E14001367", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1080400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9702f5ad288490fac169613" + }, + { + "name": "hmrc.employment_income.amount@E14001368", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1131900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_445411a78deb0f0c861b1c76" + }, + { + "name": "hmrc.employment_income.amount@E14001369", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2458300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1a1d29023312e4b0cab6cfd" + }, + { + "name": "hmrc.employment_income.amount@E14001370", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1821600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01349773b19dd50f02723982" + }, + { + "name": "hmrc.employment_income.amount@E14001371", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2165400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_131029f1dc38a68987478018" + }, + { + "name": "hmrc.employment_income.amount@E14001372", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1254000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_899e4900994fd079a6611d5f" + }, + { + "name": "hmrc.employment_income.amount@E14001373", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1322600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2172c7dd24bb92dbb8286bae" + }, + { + "name": "hmrc.employment_income.amount@E14001374", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1137000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e54f6b847c982137d371452" + }, + { + "name": "hmrc.employment_income.amount@E14001375", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1600200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b81d418ebb08e498ba85d860" + }, + { + "name": "hmrc.employment_income.amount@E14001376", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1966500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_835fa4eeba90a9c5cffdca20" + }, + { + "name": "hmrc.employment_income.amount@E14001377", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1188000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_946bd07ddb9c8cf90f974fc1" + }, + { + "name": "hmrc.employment_income.amount@E14001378", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1250500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f728d105ef4066f3e497c9c7" + }, + { + "name": "hmrc.employment_income.amount@E14001379", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1941100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a28a4e492f22b5abf854e1c" + }, + { + "name": "hmrc.employment_income.amount@E14001380", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1310400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf50e5099b6084d33122f15a" + }, + { + "name": "hmrc.employment_income.amount@E14001381", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1132400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e2b671a37ca452050a27829" + }, + { + "name": "hmrc.employment_income.amount@E14001382", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1204600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd8bcc574869b218b35db702" + }, + { + "name": "hmrc.employment_income.amount@E14001383", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1307200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2922e3e19898cf33df6af7ca" + }, + { + "name": "hmrc.employment_income.amount@E14001384", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1814600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d387a9d2fc385093d804b86" + }, + { + "name": "hmrc.employment_income.amount@E14001385", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1016600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6038d1bfd9967245da3de82b" + }, + { + "name": "hmrc.employment_income.amount@E14001386", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1687200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9413673ec5ab26fa1f591658" + }, + { + "name": "hmrc.employment_income.amount@E14001387", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1178000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe120dfafd5e91e79aad2a6e" + }, + { + "name": "hmrc.employment_income.amount@E14001388", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1314800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee0dda71b05d8f0b73a2b892" + }, + { + "name": "hmrc.employment_income.amount@E14001389", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1231200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb38145cdd227f02e79eae38" + }, + { + "name": "hmrc.employment_income.amount@E14001390", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1303800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1bff752fea29b4e8be49ff1" + }, + { + "name": "hmrc.employment_income.amount@E14001391", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1209600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b448c22ec219a431d19a596d" + }, + { + "name": "hmrc.employment_income.amount@E14001392", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2587500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fd6138920e3fac8df41acaf" + }, + { + "name": "hmrc.employment_income.amount@E14001393", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2025300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34906552d2612a2e19df1c19" + }, + { + "name": "hmrc.employment_income.amount@E14001394", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1450800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b517c5813b2a4059635f5564" + }, + { + "name": "hmrc.employment_income.amount@E14001395", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1152600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fb2f245e337b7ad737ee2d5" + }, + { + "name": "hmrc.employment_income.amount@E14001396", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 907700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16e7c1397a7c4910f5a247c6" + }, + { + "name": "hmrc.employment_income.amount@E14001397", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1094800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f5b5474c843e68b2f198eb1" + }, + { + "name": "hmrc.employment_income.amount@E14001398", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1360800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e384b0a7b6b78713c0b6c3a" + }, + { + "name": "hmrc.employment_income.amount@E14001399", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1704000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdd609b51796f34da0c73f22" + }, + { + "name": "hmrc.employment_income.amount@E14001400", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1372800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0de1653c1417cdb26cf1e49a" + }, + { + "name": "hmrc.employment_income.amount@E14001401", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1910000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57f0abe454cac77e7ddb5bcf" + }, + { + "name": "hmrc.employment_income.amount@E14001402", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2332200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1988e42aff3ab63b15bc92e1" + }, + { + "name": "hmrc.employment_income.amount@E14001403", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2172600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea20bfb4a9c695e88f38ba2c" + }, + { + "name": "hmrc.employment_income.amount@E14001404", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1683000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72ffa6213c683f5f6be24cd2" + }, + { + "name": "hmrc.employment_income.amount@E14001405", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1141000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0415edd268bbd90e2dc6dfc6" + }, + { + "name": "hmrc.employment_income.amount@E14001406", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1747200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c0af23d6a74fbfc7e2762c4" + }, + { + "name": "hmrc.employment_income.amount@E14001407", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1877200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2691c50d20f26cc913d738d7" + }, + { + "name": "hmrc.employment_income.amount@E14001408", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1345900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbe8c81417b73c1979d02ed0" + }, + { + "name": "hmrc.employment_income.amount@E14001409", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1249200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61287b8c712f91ff324bd15c" + }, + { + "name": "hmrc.employment_income.amount@E14001410", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1296000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e10b6a2b6ebe1ac6485ffae3" + }, + { + "name": "hmrc.employment_income.amount@E14001411", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1229800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5b2f77d8b76c49b28be25fb" + }, + { + "name": "hmrc.employment_income.amount@E14001412", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1046400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f1da5c94687fb7076fde5a0" + }, + { + "name": "hmrc.employment_income.amount@E14001413", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1555700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_480969ac23da64b18940dde2" + }, + { + "name": "hmrc.employment_income.amount@E14001414", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2051100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0c89554e97d3a6597b4082" + }, + { + "name": "hmrc.employment_income.amount@E14001415", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1234800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec0502a86a9b7d4584fcbdfd" + }, + { + "name": "hmrc.employment_income.amount@E14001416", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1080000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b9b152c2886aa65dc02221b" + }, + { + "name": "hmrc.employment_income.amount@E14001417", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2318400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ca4e548bfa6ea2c17cb6e4a" + }, + { + "name": "hmrc.employment_income.amount@E14001418", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1388400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ddabf9bb790ceb9715f32b4" + }, + { + "name": "hmrc.employment_income.amount@E14001419", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1980000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac3f2d32efbdca40ed9fdb24" + }, + { + "name": "hmrc.employment_income.amount@E14001420", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2101500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bc102b30327b2ca29bfba1f" + }, + { + "name": "hmrc.employment_income.amount@E14001421", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2255000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f954995ae1549b3dda8a0ec" + }, + { + "name": "hmrc.employment_income.amount@E14001422", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1272000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_975c0295b1bb8e3a03d60721" + }, + { + "name": "hmrc.employment_income.amount@E14001423", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1328300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_614dd7c4ab3cc7bfeca9ebc0" + }, + { + "name": "hmrc.employment_income.amount@E14001424", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_954a99f77f4bdc22f6174e22" + }, + { + "name": "hmrc.employment_income.amount@E14001425", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1520000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac9cb983ea4df292bd0305c8" + }, + { + "name": "hmrc.employment_income.amount@E14001426", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1236300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4169db9b5c12ef9f52fbe38" + }, + { + "name": "hmrc.employment_income.amount@E14001427", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1444400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b58a79b8670aee4ce8d958b9" + }, + { + "name": "hmrc.employment_income.amount@E14001428", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1219800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b52495e200a086dbce2b805" + }, + { + "name": "hmrc.employment_income.amount@E14001429", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1576000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_089c6e791e4aa2d0e031caa7" + }, + { + "name": "hmrc.employment_income.amount@E14001430", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4817400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_196ccf07e064fd995a750c44" + }, + { + "name": "hmrc.employment_income.amount@E14001431", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1453200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_408ec75ffbc2d0dd17509850" + }, + { + "name": "hmrc.employment_income.amount@E14001432", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1333800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ff68fe369eea74e41a796b5" + }, + { + "name": "hmrc.employment_income.amount@E14001433", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1363500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_311a9399a82ef058dda81769" + }, + { + "name": "hmrc.employment_income.amount@E14001434", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3965500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e036de52fdca7b5a78b7ceff" + }, + { + "name": "hmrc.employment_income.amount@E14001435", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3320100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a510af694d35239bd341989" + }, + { + "name": "hmrc.employment_income.amount@E14001436", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1127000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a82c6dad71044e7364aa0d22" + }, + { + "name": "hmrc.employment_income.amount@E14001437", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1812000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a0655a6c51f57af5df9c96a" + }, + { + "name": "hmrc.employment_income.amount@E14001438", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2503200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_abe9e7b39416d0a0cbde880e" + }, + { + "name": "hmrc.employment_income.amount@E14001439", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2089800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f9ba980840baa2f798d849f" + }, + { + "name": "hmrc.employment_income.amount@E14001440", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1010600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_613dc634eb60268ef8ed0655" + }, + { + "name": "hmrc.employment_income.amount@E14001441", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1504800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ceabdbaabc3f189c3f396fc" + }, + { + "name": "hmrc.employment_income.amount@E14001442", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2731200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_308f01b13803e32197558647" + }, + { + "name": "hmrc.employment_income.amount@E14001443", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1710000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2203e884052064ec9024ea65" + }, + { + "name": "hmrc.employment_income.amount@E14001444", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1430900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c73979cfdf4c46766f7d53bf" + }, + { + "name": "hmrc.employment_income.amount@E14001445", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4595400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a0c54ef0b5b2ed26f461f90" + }, + { + "name": "hmrc.employment_income.amount@E14001446", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1076400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_618678e506bc21579eb3262b" + }, + { + "name": "hmrc.employment_income.amount@E14001447", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1667600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04af32067fd1fde219f57656" + }, + { + "name": "hmrc.employment_income.amount@E14001448", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1839600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab9f1c534b8cc7b82698aca5" + }, + { + "name": "hmrc.employment_income.amount@E14001449", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1796000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0020eb25a540fdb9d2bfbdc2" + }, + { + "name": "hmrc.employment_income.amount@E14001450", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1428000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a343ee9b52229cf9f8076689" + }, + { + "name": "hmrc.employment_income.amount@E14001451", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1239500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ec8e90ff895e22a06d48145" + }, + { + "name": "hmrc.employment_income.amount@E14001452", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1232400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11e57277f8dca784c460ec4" + }, + { + "name": "hmrc.employment_income.amount@E14001453", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2043600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4e4d8bd6cd05cdfa97b7a97" + }, + { + "name": "hmrc.employment_income.amount@E14001454", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2601000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef01955abc3b435f2d6c2dfe" + }, + { + "name": "hmrc.employment_income.amount@E14001455", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1424000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b4ffd80ce8dee5885a39580" + }, + { + "name": "hmrc.employment_income.amount@E14001456", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3420000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38b14618b7ae14dd99bd52e1" + }, + { + "name": "hmrc.employment_income.amount@E14001457", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2125200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f2aad35947dd2dc744aaf22" + }, + { + "name": "hmrc.employment_income.amount@E14001458", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1594700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62984ac3a9f39e05467b1c7c" + }, + { + "name": "hmrc.employment_income.amount@E14001459", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1989300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93bf6af9adf2b781dfc4d88d" + }, + { + "name": "hmrc.employment_income.amount@E14001460", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1474200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b828328b897b9de838ce81c0" + }, + { + "name": "hmrc.employment_income.amount@E14001461", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1044000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_951e13d298ed82efad3deafb" + }, + { + "name": "hmrc.employment_income.amount@E14001462", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1345900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0f2f043d411d40f31b768d7" + }, + { + "name": "hmrc.employment_income.amount@E14001463", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1372800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec7dfea1738f7477c8af5395" + }, + { + "name": "hmrc.employment_income.amount@E14001464", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1715500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94a7a034f34bc52d5b62b466" + }, + { + "name": "hmrc.employment_income.amount@E14001465", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2816500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61dd2d3f6eb66b791d69076e" + }, + { + "name": "hmrc.employment_income.amount@E14001466", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1033200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d2b51085ab56453e9d9275f" + }, + { + "name": "hmrc.employment_income.amount@E14001467", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1116000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_188266ac01adbba58bb6841f" + }, + { + "name": "hmrc.employment_income.amount@E14001468", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1624300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee6f78ae353c8866b13a4f35" + }, + { + "name": "hmrc.employment_income.amount@E14001469", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1143800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89583d542890a0d59eb98def" + }, + { + "name": "hmrc.employment_income.amount@E14001470", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1124800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_712485238ec0af76f034657a" + }, + { + "name": "hmrc.employment_income.amount@E14001471", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1377600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da2d6960d72e3b1e4e23e31" + }, + { + "name": "hmrc.employment_income.amount@E14001472", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1410400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4afe174ba1ce47f0b0e7f7b7" + }, + { + "name": "hmrc.employment_income.amount@E14001473", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1487200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cb397cc4e2fc91621268459" + }, + { + "name": "hmrc.employment_income.amount@E14001474", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1385800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a5e26f30a1d7f034e8ab93" + }, + { + "name": "hmrc.employment_income.amount@E14001475", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1317200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8104247ed2762b83692309f0" + }, + { + "name": "hmrc.employment_income.amount@E14001476", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1449000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e520757993d694c36bc75cd3" + }, + { + "name": "hmrc.employment_income.amount@E14001477", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2194800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f9f639dabe3bebcaa69bd8d" + }, + { + "name": "hmrc.employment_income.amount@E14001478", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1268400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_869b9a985ed9fc1f82e689ea" + }, + { + "name": "hmrc.employment_income.amount@E14001479", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1812200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78c271b750559da9d27632f6" + }, + { + "name": "hmrc.employment_income.amount@E14001480", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1548300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52727f40831227ab70c1d901" + }, + { + "name": "hmrc.employment_income.amount@E14001481", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2668800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_761edede40d7191eddbb3bff" + }, + { + "name": "hmrc.employment_income.amount@E14001482", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1751800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23faa280b556be4e837d5b0b" + }, + { + "name": "hmrc.employment_income.amount@E14001483", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1784800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9377b632100ddf4a97614596" + }, + { + "name": "hmrc.employment_income.amount@E14001484", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 887600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfd4c7b0e80ba357cb81fd69" + }, + { + "name": "hmrc.employment_income.amount@E14001485", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1037000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cb7f1bb02d85189df015dfb" + }, + { + "name": "hmrc.employment_income.amount@E14001486", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 933000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_075dfcfba9e00725a9889255" + }, + { + "name": "hmrc.employment_income.amount@E14001487", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1416800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22a485de2c6a738c06a7d57b" + }, + { + "name": "hmrc.employment_income.amount@E14001488", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1728600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bfd569638ffc12e83dc6231" + }, + { + "name": "hmrc.employment_income.amount@E14001489", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1524900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03d049c97adaa50a1ab98192" + }, + { + "name": "hmrc.employment_income.amount@E14001490", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2083500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15ad2245e885f60967ea62f5" + }, + { + "name": "hmrc.employment_income.amount@E14001491", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1412000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27bd32791256a3c2151af492" + }, + { + "name": "hmrc.employment_income.amount@E14001492", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1001300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38dbbd18ae59c7c39ad0abb6" + }, + { + "name": "hmrc.employment_income.amount@E14001493", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1125300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9fe9b99f486424cc870c210" + }, + { + "name": "hmrc.employment_income.amount@E14001494", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1396800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eab18445c423dd2a0d61cf1" + }, + { + "name": "hmrc.employment_income.amount@E14001495", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1392000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d624577bc4a0df634402a9a4" + }, + { + "name": "hmrc.employment_income.amount@E14001496", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2534600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c55cc7cace2b319784d80a64" + }, + { + "name": "hmrc.employment_income.amount@E14001497", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1219800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc1a26ab34d3e9fe3a0de6e1" + }, + { + "name": "hmrc.employment_income.amount@E14001498", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1415400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a5ee3c95047c4d0eca3866d" + }, + { + "name": "hmrc.employment_income.amount@E14001499", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1427600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7da343df9fc3be99bd17c59" + }, + { + "name": "hmrc.employment_income.amount@E14001500", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1525500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c291d69d5205ecbcb607d350" + }, + { + "name": "hmrc.employment_income.amount@E14001501", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1336200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2da73df8843c131aa21c1904" + }, + { + "name": "hmrc.employment_income.amount@E14001502", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1856400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9790ccf872cbbd8a11791304" + }, + { + "name": "hmrc.employment_income.amount@E14001503", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2374400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a31dd8272cf75e61ab112670" + }, + { + "name": "hmrc.employment_income.amount@E14001504", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1254300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_547d361d63cdd2bcde3eca9c" + }, + { + "name": "hmrc.employment_income.amount@E14001505", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2016300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f40640d17fdbd607a5d90bd7" + }, + { + "name": "hmrc.employment_income.amount@E14001506", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1428000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bda8d870a75292d85a9f6cc" + }, + { + "name": "hmrc.employment_income.amount@E14001507", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2944000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77856dcef3ca5bb9ed03a3f0" + }, + { + "name": "hmrc.employment_income.amount@E14001508", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1193100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_99603b46dbd4e12aa0d1cf5f" + }, + { + "name": "hmrc.employment_income.amount@E14001509", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1377600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50a7d5c88a4d375c81013e7f" + }, + { + "name": "hmrc.employment_income.amount@E14001510", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1332500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b96349c4e18cbc509a1aaba" + }, + { + "name": "hmrc.employment_income.amount@E14001511", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 767200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2da3d1f89d02311b19745ca3" + }, + { + "name": "hmrc.employment_income.amount@E14001512", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2532600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ae4c3cf795cb9ad0d09eca7" + }, + { + "name": "hmrc.employment_income.amount@E14001513", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1446900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f2857f8a7e0af74501fe65a" + }, + { + "name": "hmrc.employment_income.amount@E14001514", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1101600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a588e68d5c9d31f4e826f68" + }, + { + "name": "hmrc.employment_income.amount@E14001515", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1345500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c73cae8b7d1118939e4a96" + }, + { + "name": "hmrc.employment_income.amount@E14001516", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1663200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bd620931655da6507a9ca8b" + }, + { + "name": "hmrc.employment_income.amount@E14001517", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1669800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff330cdfd8325f5215e0e325" + }, + { + "name": "hmrc.employment_income.amount@E14001518", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1105200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_433c6aebe53416f8433d6517" + }, + { + "name": "hmrc.employment_income.amount@E14001519", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1568000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_966dec9567a1f0416d0031bf" + }, + { + "name": "hmrc.employment_income.amount@E14001520", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1201200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54eb488bcaa968d06e538c0c" + }, + { + "name": "hmrc.employment_income.amount@E14001521", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1189500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_838735feee17acfdde1ef713" + }, + { + "name": "hmrc.employment_income.amount@E14001522", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1180300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb723d98f441c85aebdbacb1" + }, + { + "name": "hmrc.employment_income.amount@E14001523", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1335600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bc8a5129d2549a602c1d5f3" + }, + { + "name": "hmrc.employment_income.amount@E14001524", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1125400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a968026fb24076b0e59bcd2" + }, + { + "name": "hmrc.employment_income.amount@E14001525", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2868000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16b30882d44b858eb063fdd3" + }, + { + "name": "hmrc.employment_income.amount@E14001526", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1852200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67fbece71608975acb8ed24c" + }, + { + "name": "hmrc.employment_income.amount@E14001527", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2548800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4af2b11f514a16675d8199c5" + }, + { + "name": "hmrc.employment_income.amount@E14001528", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1610000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85bf6b3070033c1affcbde4" + }, + { + "name": "hmrc.employment_income.amount@E14001529", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1332000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1c63b0305fae6d31572808b" + }, + { + "name": "hmrc.employment_income.amount@E14001530", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1168000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59a7c25c2e977784d4f77297" + }, + { + "name": "hmrc.employment_income.amount@E14001531", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1240200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8ac23fd5d209b79219c7e2c" + }, + { + "name": "hmrc.employment_income.amount@E14001532", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2411100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8aa55acbc3ecca80d2833f0" + }, + { + "name": "hmrc.employment_income.amount@E14001533", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1551600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cbd19d576d9dfaa1f936a20" + }, + { + "name": "hmrc.employment_income.amount@E14001534", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2270100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_403d77375ed0d324876e3388" + }, + { + "name": "hmrc.employment_income.amount@E14001535", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1756000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_290071d76347ce4004f9afd9" + }, + { + "name": "hmrc.employment_income.amount@E14001536", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1645600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac04d2f6578c982ae6ce2b6" + }, + { + "name": "hmrc.employment_income.amount@E14001537", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1929200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e1c05030b7966269c901895" + }, + { + "name": "hmrc.employment_income.amount@E14001538", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1535100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdcfeef74c51438ada5975ec" + }, + { + "name": "hmrc.employment_income.amount@E14001539", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2299000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90defa228234023b1eef6808" + }, + { + "name": "hmrc.employment_income.amount@E14001540", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1508700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_675fdb700d4bd3c6792afe06" + }, + { + "name": "hmrc.employment_income.amount@E14001541", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1497600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f686d0a9704eeed839fb0e9d" + }, + { + "name": "hmrc.employment_income.amount@E14001542", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1548000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_870d7346590bedd24b9b8d50" + }, + { + "name": "hmrc.employment_income.amount@E14001543", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1444800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80ca27c3cf97083c29cf2bc6" + }, + { + "name": "hmrc.employment_income.amount@E14001544", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1227600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b397247c87ddec98ecc2ec0" + }, + { + "name": "hmrc.employment_income.amount@E14001545", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1578500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a97ba6ed0dd4aacc4277abd" + }, + { + "name": "hmrc.employment_income.amount@E14001546", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1918800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb1bb7e78d125d88fc457757" + }, + { + "name": "hmrc.employment_income.amount@E14001547", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1213600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b28c9ea6870f2abd07a6096" + }, + { + "name": "hmrc.employment_income.amount@E14001548", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1010600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b29a8f08b518ca4f5875e9fe" + }, + { + "name": "hmrc.employment_income.amount@E14001549", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2158800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3669d785cf1d18d244201057" + }, + { + "name": "hmrc.employment_income.amount@E14001550", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4031000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_699cd2ddc004c80ca65090a8" + }, + { + "name": "hmrc.employment_income.amount@E14001551", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1177800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05ee048811773182ca95e4d3" + }, + { + "name": "hmrc.employment_income.amount@E14001552", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 891000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_619aed87b5485771109344eb" + }, + { + "name": "hmrc.employment_income.amount@E14001553", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2255000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bafa6296f2310f17b75ade3" + }, + { + "name": "hmrc.employment_income.amount@E14001554", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1094800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cbf1aea50fe14efd10c4b1d" + }, + { + "name": "hmrc.employment_income.amount@E14001555", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2354000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb9ca5f8f0cfd33670747e6" + }, + { + "name": "hmrc.employment_income.amount@E14001556", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3513600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd4c4cb9c07e35d23d1a79b4" + }, + { + "name": "hmrc.employment_income.amount@E14001557", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1472000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9179cabd166ebf4269bf49b" + }, + { + "name": "hmrc.employment_income.amount@E14001558", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2303600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f311cd41fff7a25214ed4424" + }, + { + "name": "hmrc.employment_income.amount@E14001559", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2789700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c30807c2047e18add563cc52" + }, + { + "name": "hmrc.employment_income.amount@E14001560", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1582400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9339a4c203c9eec8d05deb86" + }, + { + "name": "hmrc.employment_income.amount@E14001561", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1197000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5fc2e12196f3b768cc73d35" + }, + { + "name": "hmrc.employment_income.amount@E14001562", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1087800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dce3399ec12aa0725db865f" + }, + { + "name": "hmrc.employment_income.amount@E14001563", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2392200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9466cb0f891d52656bf62c1d" + }, + { + "name": "hmrc.employment_income.amount@E14001564", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1470000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2b47802d3e2bfc3f1e193b6" + }, + { + "name": "hmrc.employment_income.amount@E14001565", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1752600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_128ff1254ca0157a71eee304" + }, + { + "name": "hmrc.employment_income.amount@E14001566", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2083800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19b73f266ec4828909ba1e18" + }, + { + "name": "hmrc.employment_income.amount@E14001567", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1082400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15c6afbbc20d3b74a3546db5" + }, + { + "name": "hmrc.employment_income.amount@E14001568", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2316100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c42382cb67e6dc98d80fc9" + }, + { + "name": "hmrc.employment_income.amount@E14001569", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1234200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10b330de64338e027d6557ec" + }, + { + "name": "hmrc.employment_income.amount@E14001570", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1653900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f94e483d479cfa6a0cf9bc02" + }, + { + "name": "hmrc.employment_income.amount@E14001571", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1481200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19fd594ee46f0e82d4f04b55" + }, + { + "name": "hmrc.employment_income.amount@E14001572", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1312500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85ac787f0d792308003eb31b" + }, + { + "name": "hmrc.employment_income.amount@E14001573", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2156000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbd9cc4ffa9664e843af206b" + }, + { + "name": "hmrc.employment_income.amount@E14001574", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1421400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d51dc638fa67b51af8f442fe" + }, + { + "name": "hmrc.employment_income.amount@E14001575", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1190000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67c2a7c13b81c1f9ec3e9d1c" + }, + { + "name": "hmrc.employment_income.amount@E14001576", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2542000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b81f37b75d025fd22ff5112e" + }, + { + "name": "hmrc.employment_income.amount@E14001577", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1356600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9121cbfcc9c15388ccfc7611" + }, + { + "name": "hmrc.employment_income.amount@E14001578", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1713600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c9920d621af2fd025648d8c" + }, + { + "name": "hmrc.employment_income.amount@E14001579", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1485800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe365f19a017d23f27b09163" + }, + { + "name": "hmrc.employment_income.amount@E14001580", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1076400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5355091fb9462816b5cfa81d" + }, + { + "name": "hmrc.employment_income.amount@E14001581", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1288000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b62037a54dc939646fadb473" + }, + { + "name": "hmrc.employment_income.amount@E14001582", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1683500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a2ce11b934e1c9d604a4fb2" + }, + { + "name": "hmrc.employment_income.amount@E14001583", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1552200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a1e6d9fc3ef5383e04a8c74" + }, + { + "name": "hmrc.employment_income.amount@E14001584", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1404000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f84d6f9170ceedfc168acc83" + }, + { + "name": "hmrc.employment_income.amount@E14001585", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1421200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83efa20a8183d73516e79d41" + }, + { + "name": "hmrc.employment_income.amount@E14001586", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4401600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5347a3d6e5a1f563c705a3e" + }, + { + "name": "hmrc.employment_income.amount@E14001587", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2331000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78ff0db1b56d347806028a1" + }, + { + "name": "hmrc.employment_income.amount@E14001588", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2767600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a8a1e5c62ea121c2bdc7d30" + }, + { + "name": "hmrc.employment_income.amount@E14001589", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1373600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f67fc614fc06b7d9378c8ca2" + }, + { + "name": "hmrc.employment_income.amount@E14001590", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1840400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e793f906b66b653609fc6c6" + }, + { + "name": "hmrc.employment_income.amount@E14001591", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1935000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d32ce17b96159072a02080ed" + }, + { + "name": "hmrc.employment_income.amount@E14001592", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2663400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb40c74e74a4c240368fd30b" + }, + { + "name": "hmrc.employment_income.amount@E14001593", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2735400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11d1caede83c0e6cced16da" + }, + { + "name": "hmrc.employment_income.amount@E14001594", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1256000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dd938d4ee6f2fa6adfc3c72" + }, + { + "name": "hmrc.employment_income.amount@E14001595", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1328800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81913f8d3acb7001dd8278c4" + }, + { + "name": "hmrc.employment_income.amount@E14001596", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1402800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c7d10aa099d8b02b967500c" + }, + { + "name": "hmrc.employment_income.amount@E14001597", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1479200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e344ad4ef1f9ab23257cc2dc" + }, + { + "name": "hmrc.employment_income.amount@E14001598", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1846000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_854d164bb96cb695166776f0" + }, + { + "name": "hmrc.employment_income.amount@E14001599", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1337700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01480c5f5f3b642dc4f80c56" + }, + { + "name": "hmrc.employment_income.amount@E14001600", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2136000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c217a4ea0b1720734b435af" + }, + { + "name": "hmrc.employment_income.amount@E14001601", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1184400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19c13e3a80b0644bfe4fbd05" + }, + { + "name": "hmrc.employment_income.amount@E14001602", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1467800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5da16ed539df93509450cef" + }, + { + "name": "hmrc.employment_income.amount@E14001603", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1434400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43eac4b79f8f999b7dd7235" + }, + { + "name": "hmrc.employment_income.amount@E14001604", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1435000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32072a960e1f8bdd5e295aa2" + }, + { + "name": "hmrc.employment_income.amount@E14001605", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1389600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_683af163fb33ab6a2e8db426" + }, + { + "name": "hmrc.employment_income.amount@N05000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1684800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95fdc7b6f40dadb6471eb5a3" + }, + { + "name": "hmrc.employment_income.amount@N05000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1247000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e1756ddf69c1a89d233c4c0" + }, + { + "name": "hmrc.employment_income.amount@N05000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1674400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96df8beffd6ddf588b6ad49c" + }, + { + "name": "hmrc.employment_income.amount@N05000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1056400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dfd772b84ddd8c02813e669" + }, + { + "name": "hmrc.employment_income.amount@N05000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1248000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51efaa63c622c11dbd532ad2" + }, + { + "name": "hmrc.employment_income.amount@N05000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 966400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70d6dd3714a4522a6055c6e0" + }, + { + "name": "hmrc.employment_income.amount@N05000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1234800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b6f8a24f5f2776536af3358" + }, + { + "name": "hmrc.employment_income.amount@N05000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 998400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9d146a8a00e003b2e8121a6" + }, + { + "name": "hmrc.employment_income.amount@N05000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1614800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6bdb52d3917e0fd752d9027" + }, + { + "name": "hmrc.employment_income.amount@N05000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1139600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_408ae4b0d185df8eeefbaed2" + }, + { + "name": "hmrc.employment_income.amount@N05000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1032900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e17f0eee9c979f0d425f6ff" + }, + { + "name": "hmrc.employment_income.amount@N05000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1158300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20335a6f0f33bf8961d538a9" + }, + { + "name": "hmrc.employment_income.amount@N05000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1118600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cf52b09b00e831e6123940a" + }, + { + "name": "hmrc.employment_income.amount@N05000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1377600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b028483c560d7d382f94289" + }, + { + "name": "hmrc.employment_income.amount@N05000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1053500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f218bea75c01447176107782" + }, + { + "name": "hmrc.employment_income.amount@N05000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1040400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_681b3b8fc9fc70c443f1ff3b" + }, + { + "name": "hmrc.employment_income.amount@N05000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1447600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_327e18468b01dc843964d4df" + }, + { + "name": "hmrc.employment_income.amount@N05000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1003000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_336784590a68e4846c8007b8" + }, + { + "name": "hmrc.employment_income.amount@S14000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1716000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4744e4287c8b157f02f87e7" + }, + { + "name": "hmrc.employment_income.amount@S14000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 330000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d3a30f0d5c332aefc42430f" + }, + { + "name": "hmrc.employment_income.amount@S14000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1467800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8fac5841a9b8c4fca6e38f8" + }, + { + "name": "hmrc.employment_income.amount@S14000048", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9632bfa5a777f184a37f6c73" + }, + { + "name": "hmrc.employment_income.amount@S14000051", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 651700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_12b21cbae0ec8cdee97edd4a" + }, + { + "name": "hmrc.employment_income.amount@S14000060", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1824000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac2eb0508198d05cb5b5b111" + }, + { + "name": "hmrc.employment_income.amount@S14000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2195000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab67c525f35608e9cf196af9" + }, + { + "name": "hmrc.employment_income.amount@S14000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1404000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25dae71b3f72d3734cd373f4" + }, + { + "name": "hmrc.employment_income.amount@S14000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1218000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9045daad48dd3ca9f795adc3" + }, + { + "name": "hmrc.employment_income.amount@S14000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1364200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4363271e72bf299ce5e5958f" + }, + { + "name": "hmrc.employment_income.amount@S14000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1299600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_816b06ae661937b8fb006700" + }, + { + "name": "hmrc.employment_income.amount@S14000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1352000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_60015a0945065d05d8a322f1" + }, + { + "name": "hmrc.employment_income.amount@S14000067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1232000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aca4af0b83964a2945790534" + }, + { + "name": "hmrc.employment_income.amount@S14000068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1467800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08b988217cbd5cdb016bb570" + }, + { + "name": "hmrc.employment_income.amount@S14000069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1231200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bff5c0ec4b8c03cce0e9835" + }, + { + "name": "hmrc.employment_income.amount@S14000070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1246900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d59fa2fe2f3e431998483fa9" + }, + { + "name": "hmrc.employment_income.amount@S14000071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1288200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6301353f2dec4d1fef6f6590" + }, + { + "name": "hmrc.employment_income.amount@S14000072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1341400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b51f11b1a54a74e71d27f74" + }, + { + "name": "hmrc.employment_income.amount@S14000073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1090800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48d11b53a1f3ac2674abe025" + }, + { + "name": "hmrc.employment_income.amount@S14000074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1131900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7fb93f61e77a7d0270a60fb" + }, + { + "name": "hmrc.employment_income.amount@S14000075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1264000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a803b74dbb6c5e393aee42b5" + }, + { + "name": "hmrc.employment_income.amount@S14000076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1339400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fb8803aceac81c0293988cb" + }, + { + "name": "hmrc.employment_income.amount@S14000077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1579200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96f0a5412a0465cc7cc636d9" + }, + { + "name": "hmrc.employment_income.amount@S14000078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1755000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b00f225304c2a9051e0153e" + }, + { + "name": "hmrc.employment_income.amount@S14000079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2363200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e34bccebdb8b1d42c6a918f" + }, + { + "name": "hmrc.employment_income.amount@S14000080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1751800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32bf91f3500baada969abba3" + }, + { + "name": "hmrc.employment_income.amount@S14000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1786000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0acbd0f23696b45a0119a0" + }, + { + "name": "hmrc.employment_income.amount@S14000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2100900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a280a56f02e270239d61078e" + }, + { + "name": "hmrc.employment_income.amount@S14000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1516200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c5139ab0cc69486a63206a4" + }, + { + "name": "hmrc.employment_income.amount@S14000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1308000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2612e0d7c0b0e458fb4d192b" + }, + { + "name": "hmrc.employment_income.amount@S14000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1376400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c966955edd450e0499df719" + }, + { + "name": "hmrc.employment_income.amount@S14000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1208000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d6a128e553c131b7b784539" + }, + { + "name": "hmrc.employment_income.amount@S14000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1387500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d9aacc718364acb452cdc2c" + }, + { + "name": "hmrc.employment_income.amount@S14000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1152000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7e77073da048d429446702f" + }, + { + "name": "hmrc.employment_income.amount@S14000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1409800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57fba2e7000c7b52fcd11018" + }, + { + "name": "hmrc.employment_income.amount@S14000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1054000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2dd67516ca1bab56054b43a" + }, + { + "name": "hmrc.employment_income.amount@S14000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1571700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86fbc5d602c84f2d61273771" + }, + { + "name": "hmrc.employment_income.amount@S14000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1455500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d158556b3f86d69bd9c26a02" + }, + { + "name": "hmrc.employment_income.amount@S14000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1196800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88178de8c34a308880216da9" + }, + { + "name": "hmrc.employment_income.amount@S14000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1531800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92023f20d8f5f4dc767d41bd" + }, + { + "name": "hmrc.employment_income.amount@S14000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1729700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4152a96f8332bd411bdd752d" + }, + { + "name": "hmrc.employment_income.amount@S14000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1656400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_024f708836a082128de5f795" + }, + { + "name": "hmrc.employment_income.amount@S14000097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1696000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_928a18ca972cf17c6c35849a" + }, + { + "name": "hmrc.employment_income.amount@S14000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1336600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43b17ea339f8276b3dc4f41" + }, + { + "name": "hmrc.employment_income.amount@S14000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1398100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9c5cb4fb6b8466e00d4439f" + }, + { + "name": "hmrc.employment_income.amount@S14000100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1052800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4998daf790153249b1f181fb" + }, + { + "name": "hmrc.employment_income.amount@S14000101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1512000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_085e00c333eb93d74d0e68a5" + }, + { + "name": "hmrc.employment_income.amount@S14000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1206000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_759f663f787b0882d7dc6566" + }, + { + "name": "hmrc.employment_income.amount@S14000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1564000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23679a815f753f924d122faf" + }, + { + "name": "hmrc.employment_income.amount@S14000104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1476000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72638f9f34ed0875e2172aa2" + }, + { + "name": "hmrc.employment_income.amount@S14000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1730400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a7e4108f90ee6c348bd632b" + }, + { + "name": "hmrc.employment_income.amount@S14000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1340000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03349980ae96afd8a85a868c" + }, + { + "name": "hmrc.employment_income.amount@S14000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1072500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec8d1846e054a04a49d4b0b3" + }, + { + "name": "hmrc.employment_income.amount@S14000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1128500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe1a95998ee51fdacf64d83" + }, + { + "name": "hmrc.employment_income.amount@S14000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1194600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2130bfa47c333010dff48b33" + }, + { + "name": "hmrc.employment_income.amount@S14000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1298700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd30a150b84e21d99e6d38f5" + }, + { + "name": "hmrc.employment_income.amount@S14000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2151600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eca0a848b8fa9c426b68c27e" + }, + { + "name": "hmrc.employment_income.amount@W07000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1057400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2a4c9c96b1dba6709c127cf" + }, + { + "name": "hmrc.employment_income.amount@W07000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1443200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a854a5108fac4522aa2f6a84" + }, + { + "name": "hmrc.employment_income.amount@W07000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 950400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5486ef71fb9d262eb40f2d57" + }, + { + "name": "hmrc.employment_income.amount@W07000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 963600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14af3421501b379c0745180c" + }, + { + "name": "hmrc.employment_income.amount@W07000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 893200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69b7190187b93bc1f8e014f6" + }, + { + "name": "hmrc.employment_income.amount@W07000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1380000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f3c0815f78a72a1574fa88a" + }, + { + "name": "hmrc.employment_income.amount@W07000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 986700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b10a594fd34370537ab37a7" + }, + { + "name": "hmrc.employment_income.amount@W07000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1243200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_91f3e78fbf7a9d0557a3fd12" + }, + { + "name": "hmrc.employment_income.amount@W07000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1392300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b3efced8d68b819920405b2" + }, + { + "name": "hmrc.employment_income.amount@W07000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1633800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6d7b73212da822323cb148d" + }, + { + "name": "hmrc.employment_income.amount@W07000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1430900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72f649c61ac3237bfdae95ff" + }, + { + "name": "hmrc.employment_income.amount@W07000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1488300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77d5b886e639cd1c98dbfd42" + }, + { + "name": "hmrc.employment_income.amount@W07000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 837200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_709d06cc0443af0414809fd0" + }, + { + "name": "hmrc.employment_income.amount@W07000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1186600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_caa7d3765ef85b094fe3ef1b" + }, + { + "name": "hmrc.employment_income.amount@W07000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1106000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3f8340519e3ff40f5bc2178" + }, + { + "name": "hmrc.employment_income.amount@W07000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1065600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5021c5da2963223d3eba8e56" + }, + { + "name": "hmrc.employment_income.amount@W07000097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1238400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47d65287cbf2a8843f13cfdf" + }, + { + "name": "hmrc.employment_income.amount@W07000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1071000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bec2e709c8fa1bfda10eb1ea" + }, + { + "name": "hmrc.employment_income.amount@W07000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1132200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40724c365489af48d38a6ca8" + }, + { + "name": "hmrc.employment_income.amount@W07000100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1046100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4e06ef41b4a623024634152" + }, + { + "name": "hmrc.employment_income.amount@W07000101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1497200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7ef8c16d3dde08ccd72a8ae" + }, + { + "name": "hmrc.employment_income.amount@W07000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1032500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d288c9b091afd4e03621a27f" + }, + { + "name": "hmrc.employment_income.amount@W07000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1165500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc8487e7f8afeb35dd76396d" + }, + { + "name": "hmrc.employment_income.amount@W07000104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1444400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15a11d7d4c25b1717242b5a4" + }, + { + "name": "hmrc.employment_income.amount@W07000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1449100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e674d9d66ca3dc0e9a05526" + }, + { + "name": "hmrc.employment_income.amount@W07000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1256000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc762a465d6876efd427750b" + }, + { + "name": "hmrc.employment_income.amount@W07000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1036200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f05e131ad34c0dfc8809c0b" + }, + { + "name": "hmrc.employment_income.amount@W07000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1036000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22230bec5083ecb145c273bf" + }, + { + "name": "hmrc.employment_income.amount@W07000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1169200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2552a2ef9927a36a59e4a19b" + }, + { + "name": "hmrc.employment_income.amount@W07000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1384500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43f0f5827a3de8b369965999" + }, + { + "name": "hmrc.employment_income.amount@W07000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1419000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6100acbcce9741872cccddf" + }, + { + "name": "hmrc.employment_income.amount@W07000112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 765000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_31484289b33669140f07bf46" + } + ] + }, + "local_authority": { + "status": "partially_active", + "candidate_count": 361, + "candidates": [ + { + "name": "hmrc.employment_income.amount@E06000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1060800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b70829297e99466eaa2cd92" + }, + { + "name": "hmrc.employment_income.amount@E06000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1585000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74652a08b1a59cc148414d33" + }, + { + "name": "hmrc.employment_income.amount@E06000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1462500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65c2a27133959247701e31c0" + }, + { + "name": "hmrc.employment_income.amount@E06000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2656500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e873e29b000e7bc55b54dd12" + }, + { + "name": "hmrc.employment_income.amount@E06000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1419000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc14ae1385b6df268e0ed34b" + }, + { + "name": "hmrc.employment_income.amount@E06000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1903000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d067d55834abb7b97015bb44" + }, + { + "name": "hmrc.employment_income.amount@E06000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3487500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bde954187abda200b186a28" + }, + { + "name": "hmrc.employment_income.amount@E06000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1724800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c3c67be7a96b7fa363fd2fa" + }, + { + "name": "hmrc.employment_income.amount@E06000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1428000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_438244e2aa3edcaca8103e05" + }, + { + "name": "hmrc.employment_income.amount@E06000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2876400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a76a1307596a9a1fa45f3d80" + }, + { + "name": "hmrc.employment_income.amount@E06000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4747200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_733fb5923f00c418819478d6" + }, + { + "name": "hmrc.employment_income.amount@E06000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1841400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f1ce4dbd0f2cadcb77ad0d3" + }, + { + "name": "hmrc.employment_income.amount@E06000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2254000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0bcffdf846351670b85fc3d" + }, + { + "name": "hmrc.employment_income.amount@E06000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2825900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed6d2286a60276de0b0a0ae1" + }, + { + "name": "hmrc.employment_income.amount@E06000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3343100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0b18c35191b669601e0d830" + }, + { + "name": "hmrc.employment_income.amount@E06000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3793500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c06f850f8f896f517e0d1bbd" + }, + { + "name": "hmrc.employment_income.amount@E06000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 667200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27984f6be21d0d50543dacf4" + }, + { + "name": "hmrc.employment_income.amount@E06000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3337200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d40257aa2999ccc482aa21e2" + }, + { + "name": "hmrc.employment_income.amount@E06000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2419800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3581d38eb85fdabfd4fb6fb" + }, + { + "name": "hmrc.employment_income.amount@E06000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2576000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80caa60db9f3eb8f973fe210" + }, + { + "name": "hmrc.employment_income.amount@E06000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2861500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_616d0748e4550481f657ce7d" + }, + { + "name": "hmrc.employment_income.amount@E06000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3026600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c47206e061f699fe965e1654" + }, + { + "name": "hmrc.employment_income.amount@E06000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7833000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b5085c26f9e65eccee9ac83" + }, + { + "name": "hmrc.employment_income.amount@E06000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3411000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0ec10090bfe8cdf0e0b1217" + }, + { + "name": "hmrc.employment_income.amount@E06000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5035500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80131da347f82b73c00cb1b0" + }, + { + "name": "hmrc.employment_income.amount@E06000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3498900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b53cd18981550de9df98f413" + }, + { + "name": "hmrc.employment_income.amount@E06000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.employment_income.amount@E06000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3845400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ba44abda6d800f3ced5e9eb" + }, + { + "name": "hmrc.employment_income.amount@E06000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3009600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66c7e32a74d2d745c8bdf6e9" + }, + { + "name": "hmrc.employment_income.amount@E06000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2743400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfe08b4aec1c68782faa706c" + }, + { + "name": "hmrc.employment_income.amount@E06000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2904900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_533a868d52a32d600a33b556" + }, + { + "name": "hmrc.employment_income.amount@E06000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2827500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_895523ba9e5a24141863a182" + }, + { + "name": "hmrc.employment_income.amount@E06000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4186000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72d9bf20249b47ed11daa6fb" + }, + { + "name": "hmrc.employment_income.amount@E06000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2691200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_71125c7b598fb6d332a3ad7e" + }, + { + "name": "hmrc.employment_income.amount@E06000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3478000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8207267e5664f6da75986ae" + }, + { + "name": "hmrc.employment_income.amount@E06000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3456000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e3ecb024b71db8caa95d74" + }, + { + "name": "hmrc.employment_income.amount@E06000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2522800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f025cbd64699a61890b393" + }, + { + "name": "hmrc.employment_income.amount@E06000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4134000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14088ab20e1250b52a06c500" + }, + { + "name": "hmrc.employment_income.amount@E06000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4695600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55efadd19112ffd89848b2c9" + }, + { + "name": "hmrc.employment_income.amount@E06000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5332800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b88d2474f549c10380774c27" + }, + { + "name": "hmrc.employment_income.amount@E06000043", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4703500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_005efc8e19b370c010e04158" + }, + { + "name": "hmrc.employment_income.amount@E06000044", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2786400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_adc830c453dd097c8160f368" + }, + { + "name": "hmrc.employment_income.amount@E06000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3302600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97de1b2943d291c20dc4d550" + }, + { + "name": "hmrc.employment_income.amount@E06000046", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1357000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69813645c58b1f4c6e4912a3" + }, + { + "name": "hmrc.employment_income.amount@E06000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6048000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fbf5861f84020b25710831d" + }, + { + "name": "hmrc.employment_income.amount@E06000049", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7609500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58a2c481b11b3b645aa2f295" + }, + { + "name": "hmrc.employment_income.amount@E06000050", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5544000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a324d55fb193e1da0e76968" + }, + { + "name": "hmrc.employment_income.amount@E06000051", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4368000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd269fd02292df3642a232c3" + }, + { + "name": "hmrc.employment_income.amount@E06000052", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6109000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26f70f70f7b893c0f03a66ef" + }, + { + "name": "hmrc.employment_income.amount@E06000053", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.employment_income.amount@E06000054", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8196200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1365816b7f1d403cc22a7c3" + }, + { + "name": "hmrc.employment_income.amount@E06000055", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3017800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0258e5a59af5bef32f613b20" + }, + { + "name": "hmrc.employment_income.amount@E06000056", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5602800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a302332efcd94928eb28dcc7" + }, + { + "name": "hmrc.employment_income.amount@E06000057", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4253200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_031f4942676a0770253da90f" + }, + { + "name": "hmrc.employment_income.amount@E06000058", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5456000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68f42ec5d8d958505168a0a3" + }, + { + "name": "hmrc.employment_income.amount@E06000059", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4799600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c29d9c0f72db8de0176a4e67" + }, + { + "name": "hmrc.employment_income.amount@E06000060", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12948000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0663c17748e456b3c818217" + }, + { + "name": "hmrc.employment_income.amount@E06000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5487000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fe2809265b45853119f4ff0" + }, + { + "name": "hmrc.employment_income.amount@E06000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7181600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8912f06d4e5eaa47b6118a1f" + }, + { + "name": "hmrc.employment_income.amount@E06000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3897600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c9d15c85ee58fc5f4aee642" + }, + { + "name": "hmrc.employment_income.amount@E06000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3125500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6046cd3f42fad6a762a58418" + }, + { + "name": "hmrc.employment_income.amount@E06000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9169400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88b4847c75834b887e333fb5" + }, + { + "name": "hmrc.employment_income.amount@E06000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7226100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_413657f9090fa9d9dd644b54" + }, + { + "name": "hmrc.employment_income.amount@E07000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3410000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44c179c5bd54be49e8d4a1a7" + }, + { + "name": "hmrc.employment_income.amount@E07000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1668000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_234b02c11016ed78638e2ce9" + }, + { + "name": "hmrc.employment_income.amount@E07000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1303800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07918bc9bbfeb0e54ca1d770" + }, + { + "name": "hmrc.employment_income.amount@E07000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3263600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d22f2732bc35fabca4437bc" + }, + { + "name": "hmrc.employment_income.amount@E07000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4165700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78d44ffe19951effd868014" + }, + { + "name": "hmrc.employment_income.amount@E07000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1944000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_156ba0befe653b24a451cf3f" + }, + { + "name": "hmrc.employment_income.amount@E07000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 992000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39f1b72abc0bfcdf0f58ee07" + }, + { + "name": "hmrc.employment_income.amount@E07000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1310400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8227989a462e79dadcbfd232" + }, + { + "name": "hmrc.employment_income.amount@E07000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1072400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ca1f0796abade1c01909148" + }, + { + "name": "hmrc.employment_income.amount@E07000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1471500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d797c7b18704622d171ce554" + }, + { + "name": "hmrc.employment_income.amount@E07000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1352800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eae25c13663ae38f553ee484" + }, + { + "name": "hmrc.employment_income.amount@E07000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1345500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e151553ecec14d20c3fdc181" + }, + { + "name": "hmrc.employment_income.amount@E07000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1948200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15ccfcdf85752334c0239e59" + }, + { + "name": "hmrc.employment_income.amount@E07000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1858200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e429e961bc50fe57087bfab6" + }, + { + "name": "hmrc.employment_income.amount@E07000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1736800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab0b7b509676a7a8e1aae801" + }, + { + "name": "hmrc.employment_income.amount@E07000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1056000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee5dddf8f5cbc7f029a011cd" + }, + { + "name": "hmrc.employment_income.amount@E07000043", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1178000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_804a79f00389cd1d1e002a3c" + }, + { + "name": "hmrc.employment_income.amount@E07000044", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1020800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b88eac2e7e46d4c1586f91d3" + }, + { + "name": "hmrc.employment_income.amount@E07000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1637700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94cd7dc419c41bbb9bd34aac" + }, + { + "name": "hmrc.employment_income.amount@E07000046", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 635800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7767b742916a8ce0f227ab8" + }, + { + "name": "hmrc.employment_income.amount@E07000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 586800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_214410ab7ccb802f1e2e441c" + }, + { + "name": "hmrc.employment_income.amount@E07000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1134000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b6f329c693ab43e4f7fb98b" + }, + { + "name": "hmrc.employment_income.amount@E07000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1036200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_352c3b7a105515802237a602" + }, + { + "name": "hmrc.employment_income.amount@E07000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1440200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_264ecf2abde4e36f4ad492d5" + }, + { + "name": "hmrc.employment_income.amount@E07000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1020800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe4adf1cacf248b08c812252" + }, + { + "name": "hmrc.employment_income.amount@E07000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2601900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_734df8c1775ffa014eece2a8" + }, + { + "name": "hmrc.employment_income.amount@E07000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3130200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f849347c1de55a4c64af5e5b" + }, + { + "name": "hmrc.employment_income.amount@E07000067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2652000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ee663199d36e9cdd2d3f90" + }, + { + "name": "hmrc.employment_income.amount@E07000068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1846400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0556d274a124eab9644159cb" + }, + { + "name": "hmrc.employment_income.amount@E07000069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1380400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a8220c60eff0b7edb53097b" + }, + { + "name": "hmrc.employment_income.amount@E07000070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3588200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eed4155bf506bba5f650fed1" + }, + { + "name": "hmrc.employment_income.amount@E07000071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3112000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45eae96a336bce0a1416975f" + }, + { + "name": "hmrc.employment_income.amount@E07000072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2958000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f8338156f9aaf198360ccb5" + }, + { + "name": "hmrc.employment_income.amount@E07000073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1476000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_883b091e07a0de7b34515e47" + }, + { + "name": "hmrc.employment_income.amount@E07000074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1002500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19698a05029b79758975fd24" + }, + { + "name": "hmrc.employment_income.amount@E07000075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1524600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2758254d25cad77dcd8c9966" + }, + { + "name": "hmrc.employment_income.amount@E07000076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1626900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a84c372ea23e7be086faec9" + }, + { + "name": "hmrc.employment_income.amount@E07000077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2088000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53af427e466d7656d11c14c6" + }, + { + "name": "hmrc.employment_income.amount@E07000078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2199500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78463371f71b4cf724aded21" + }, + { + "name": "hmrc.employment_income.amount@E07000079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1679800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85bca39fb5dc52e96c023a8" + }, + { + "name": "hmrc.employment_income.amount@E07000080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1010600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fbc49a5e5e0f4e4f0913819" + }, + { + "name": "hmrc.employment_income.amount@E07000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1764000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b2121642bf78044120aa5e7" + }, + { + "name": "hmrc.employment_income.amount@E07000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1795400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32009282423372ec63045c5a" + }, + { + "name": "hmrc.employment_income.amount@E07000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1599000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b4ecb048ecb218d0145a452" + }, + { + "name": "hmrc.employment_income.amount@E07000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4022800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0381cf55beece2ee697f7298" + }, + { + "name": "hmrc.employment_income.amount@E07000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2295000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c1b4c667f572cdc0040959c" + }, + { + "name": "hmrc.employment_income.amount@E07000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2374600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a09c51f6de047f769f7cb066" + }, + { + "name": "hmrc.employment_income.amount@E07000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1940400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_28508816b35a395eb383e05b" + }, + { + "name": "hmrc.employment_income.amount@E07000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 995100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1e79cc76fbf376ec1c98eac" + }, + { + "name": "hmrc.employment_income.amount@E07000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2430000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9dbb5f33b5e0c9f9136de7a" + }, + { + "name": "hmrc.employment_income.amount@E07000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1570500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a710982e538748d75655eeba" + }, + { + "name": "hmrc.employment_income.amount@E07000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2457600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55445ad56d0ecd0d2085b135" + }, + { + "name": "hmrc.employment_income.amount@E07000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1833600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90435aa67ecb98969dcf937b" + }, + { + "name": "hmrc.employment_income.amount@E07000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2556000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02ab353a69bf205c19754ab" + }, + { + "name": "hmrc.employment_income.amount@E07000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2882000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61009cf01048b3428b835df3" + }, + { + "name": "hmrc.employment_income.amount@E07000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1611300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8067fbe0762ea99bcef22688" + }, + { + "name": "hmrc.employment_income.amount@E07000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3381000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68166970b08ee82dd26c4581" + }, + { + "name": "hmrc.employment_income.amount@E07000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2308500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff51de67a31fc569491ac031" + }, + { + "name": "hmrc.employment_income.amount@E07000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2849700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_36d9f3ad0ff7e71b9d0115ca" + }, + { + "name": "hmrc.employment_income.amount@E07000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2428800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb1e18132ed49fdc7cad0977" + }, + { + "name": "hmrc.employment_income.amount@E07000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2107000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_feed64e0fcc17f06fa76827f" + }, + { + "name": "hmrc.employment_income.amount@E07000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2217300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5443b2e265d3e40fafe1c15" + }, + { + "name": "hmrc.employment_income.amount@E07000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2064400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b145a513697251c38c07a47f" + }, + { + "name": "hmrc.employment_income.amount@E07000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2106300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b82a2bee6c856cb5e205e0a0" + }, + { + "name": "hmrc.employment_income.amount@E07000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1427600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1701011cf0bdc146c41f4d5e" + }, + { + "name": "hmrc.employment_income.amount@E07000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1658800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_399f6767e99e7fc2edee88cd" + }, + { + "name": "hmrc.employment_income.amount@E07000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2955000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8ba79372cccb4c6eb588e35" + }, + { + "name": "hmrc.employment_income.amount@E07000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3307200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ee7379e92d6558d3d356038" + }, + { + "name": "hmrc.employment_income.amount@E07000112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1369000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e082dfea5264c8f2c5150e56" + }, + { + "name": "hmrc.employment_income.amount@E07000113", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2082700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98820d9c4368e1f22f97d0e7" + }, + { + "name": "hmrc.employment_income.amount@E07000114", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1513400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3fed7d1788666f9969e9a6c" + }, + { + "name": "hmrc.employment_income.amount@E07000115", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2793000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b041c62fad58adef35974ca" + }, + { + "name": "hmrc.employment_income.amount@E07000116", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2523900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_127cdeea0f20633b530b559b" + }, + { + "name": "hmrc.employment_income.amount@E07000117", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 940800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4c50442efe70fe34ca8b5bd" + }, + { + "name": "hmrc.employment_income.amount@E07000118", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1808100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bb3460aa691ba1bdd064d2a" + }, + { + "name": "hmrc.employment_income.amount@E07000119", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1196800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6da53772ebb22adf9bd739d" + }, + { + "name": "hmrc.employment_income.amount@E07000120", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 900000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b587f1cd2c97becf17ef378c" + }, + { + "name": "hmrc.employment_income.amount@E07000121", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1809500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae3e455c413c71467f9332dc" + }, + { + "name": "hmrc.employment_income.amount@E07000122", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 879000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55a82ef68f688420ce071abe" + }, + { + "name": "hmrc.employment_income.amount@E07000123", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2058400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a9369155a19369e834eea0d" + }, + { + "name": "hmrc.employment_income.amount@E07000124", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1099100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95aec675ad62e392e461bd31" + }, + { + "name": "hmrc.employment_income.amount@E07000125", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1003400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e77446c480f7f599d3c67dee" + }, + { + "name": "hmrc.employment_income.amount@E07000126", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1573200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41824ae2a12f9f7607b3fb3" + }, + { + "name": "hmrc.employment_income.amount@E07000127", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1611000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1df09f4d081b177806a38b93" + }, + { + "name": "hmrc.employment_income.amount@E07000128", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1324000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cdd65f16b341c279d40fb7c" + }, + { + "name": "hmrc.employment_income.amount@E07000129", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1651500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca8366258ea35d9fec7411bf" + }, + { + "name": "hmrc.employment_income.amount@E07000130", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2640000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d8d2e017e01f09f457f61ee" + }, + { + "name": "hmrc.employment_income.amount@E07000131", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1822800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f6dd0d7532ce5435663afa4" + }, + { + "name": "hmrc.employment_income.amount@E07000132", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1701400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f222f2b2c1280330667e80c" + }, + { + "name": "hmrc.employment_income.amount@E07000133", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 811800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83301d3d0d4e1ce109999aac" + }, + { + "name": "hmrc.employment_income.amount@E07000134", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1790700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bca075ee556278e3d90ec7f5" + }, + { + "name": "hmrc.employment_income.amount@E07000135", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 739200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_356ad624ee0f8dd8c6b93549" + }, + { + "name": "hmrc.employment_income.amount@E07000136", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 812000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a39503d188df31d24a1fa07f" + }, + { + "name": "hmrc.employment_income.amount@E07000137", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1393800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_12f56ded3cefcef2574654a2" + }, + { + "name": "hmrc.employment_income.amount@E07000138", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1315800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce271fb558e7c2b0c9ecc215" + }, + { + "name": "hmrc.employment_income.amount@E07000139", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1744200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_528fde64272131300a874774" + }, + { + "name": "hmrc.employment_income.amount@E07000140", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1200800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3d6ac83210d8d8561b153b0" + }, + { + "name": "hmrc.employment_income.amount@E07000141", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2194800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6523aedc80be5173a4a6f63d" + }, + { + "name": "hmrc.employment_income.amount@E07000142", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1284400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c316c27f8a0678ae6200a1b5" + }, + { + "name": "hmrc.employment_income.amount@E07000143", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1711800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8a975afa4ca1e169e8c118e" + }, + { + "name": "hmrc.employment_income.amount@E07000144", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1796700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17f5135e8694d29d1248f349" + }, + { + "name": "hmrc.employment_income.amount@E07000145", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1106300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_482acdd32847c3018389d64e" + }, + { + "name": "hmrc.employment_income.amount@E07000146", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1776600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_02f6d1cc78adbacdbbdcf235" + }, + { + "name": "hmrc.employment_income.amount@E07000147", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1043800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e0166956e2073b97fe4f5a9" + }, + { + "name": "hmrc.employment_income.amount@E07000148", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1760400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_36f0361b8ca6a58230a2076a" + }, + { + "name": "hmrc.employment_income.amount@E07000149", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2160300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea1920f18e20e176edd6686b" + }, + { + "name": "hmrc.employment_income.amount@E07000170", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1738400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24da0ad4263d791f4d379fc8" + }, + { + "name": "hmrc.employment_income.amount@E07000171", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1574400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84bb9e97716171b3d76f054b" + }, + { + "name": "hmrc.employment_income.amount@E07000172", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1579500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d550c9de77d7dc3278c3dec" + }, + { + "name": "hmrc.employment_income.amount@E07000173", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1646400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbdd9c6c770da22fc7f5f36d" + }, + { + "name": "hmrc.employment_income.amount@E07000174", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1297800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b07ee92b3e589e7c26e899" + }, + { + "name": "hmrc.employment_income.amount@E07000175", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1705200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd9fc7550f5613498be89a38" + }, + { + "name": "hmrc.employment_income.amount@E07000176", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2478600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2c8ca28b069ccba9e8f1789" + }, + { + "name": "hmrc.employment_income.amount@E07000177", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3127800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f30e489b55c91ba835e6a17" + }, + { + "name": "hmrc.employment_income.amount@E07000178", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2808000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb9f9913b8db5bb5b7695dbc" + }, + { + "name": "hmrc.employment_income.amount@E07000179", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3597900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ac20d69e55e5dcae10499fa" + }, + { + "name": "hmrc.employment_income.amount@E07000180", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3055200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d6b964a4bc1b9ace0b20e24" + }, + { + "name": "hmrc.employment_income.amount@E07000181", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2162400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff142b57b35adaf514d19b54" + }, + { + "name": "hmrc.employment_income.amount@E07000192", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1371700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_603ad04b321ee7bc3e079a39" + }, + { + "name": "hmrc.employment_income.amount@E07000193", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1820700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d220b5ce99f918775a7f7b1" + }, + { + "name": "hmrc.employment_income.amount@E07000194", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1789200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9a1ca5190f9375e3aefaabb" + }, + { + "name": "hmrc.employment_income.amount@E07000195", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1870900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27dea2f06d4aadab668fafde" + }, + { + "name": "hmrc.employment_income.amount@E07000196", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1674400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d92a9f4029e71c85e0d44577" + }, + { + "name": "hmrc.employment_income.amount@E07000197", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1952500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bac60fb6ac0a0fbe310cfff" + }, + { + "name": "hmrc.employment_income.amount@E07000198", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1202500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5712575bc99f6358e9b44729" + }, + { + "name": "hmrc.employment_income.amount@E07000199", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1125400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a4b8dc50dd4829d1ba510b2" + }, + { + "name": "hmrc.employment_income.amount@E07000200", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1396800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_13235a2cd2343b311dabe18f" + }, + { + "name": "hmrc.employment_income.amount@E07000202", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1754300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e28ebcd1b153512846c7aaa0" + }, + { + "name": "hmrc.employment_income.amount@E07000203", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1702800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65633bde8def0e8eb42ca430" + }, + { + "name": "hmrc.employment_income.amount@E07000207", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5710200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9d899c29c14ad82312b770" + }, + { + "name": "hmrc.employment_income.amount@E07000208", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2002600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b1be16b1416ea3eed95c6b1" + }, + { + "name": "hmrc.employment_income.amount@E07000209", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3828000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_739b159068a0278a9f508fed" + }, + { + "name": "hmrc.employment_income.amount@E07000210", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2184000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2b45657fa2aaabf208a83db" + }, + { + "name": "hmrc.employment_income.amount@E07000211", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3638000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bafb12e068233052a041c49" + }, + { + "name": "hmrc.employment_income.amount@E07000212", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1976400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac990ad69275ee7fea71d3f1" + }, + { + "name": "hmrc.employment_income.amount@E07000213", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2016300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0be0e192fe4c61828cee6987" + }, + { + "name": "hmrc.employment_income.amount@E07000214", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2192400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82dd4afd8aa124383b4389cf" + }, + { + "name": "hmrc.employment_income.amount@E07000215", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2219200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4b606acb59303be4e613d16" + }, + { + "name": "hmrc.employment_income.amount@E07000216", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3393500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea3082d70747fa4998bf68b5" + }, + { + "name": "hmrc.employment_income.amount@E07000217", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2663400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bb640f10dceed9d36b851a5" + }, + { + "name": "hmrc.employment_income.amount@E07000218", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1050000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a1b7e4671632575cac1083b" + }, + { + "name": "hmrc.employment_income.amount@E07000219", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1988600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_310f5f5d2e7dc44f9d4f59b5" + }, + { + "name": "hmrc.employment_income.amount@E07000220", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2211000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93a48ed69458dc8a730036dc" + }, + { + "name": "hmrc.employment_income.amount@E07000221", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2625500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29404d48a80ff08a53d14f5c" + }, + { + "name": "hmrc.employment_income.amount@E07000222", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3128900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7396062e22ed1cbfddc3b00b" + }, + { + "name": "hmrc.employment_income.amount@E07000223", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 864000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f04864db28818bc790a6fd8d" + }, + { + "name": "hmrc.employment_income.amount@E07000224", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2182400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e87b7ca5b7f48110a55c687" + }, + { + "name": "hmrc.employment_income.amount@E07000225", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1998000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e9f60f24fe5711736a18f29" + }, + { + "name": "hmrc.employment_income.amount@E07000226", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1938600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ae391c20907a0809ef70ef2" + }, + { + "name": "hmrc.employment_income.amount@E07000227", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2841600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57c028cfb5fc42d6bf9a080" + }, + { + "name": "hmrc.employment_income.amount@E07000228", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3264000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a44cd34294f9274619da226" + }, + { + "name": "hmrc.employment_income.amount@E07000229", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1616800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d6cd4f925117fba9e674217" + }, + { + "name": "hmrc.employment_income.amount@E07000234", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1777600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc909df1bcb6186518941701" + }, + { + "name": "hmrc.employment_income.amount@E07000235", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1215200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43dcdf472e68719a58bece4" + }, + { + "name": "hmrc.employment_income.amount@E07000236", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1279200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63d517b1df1accb13b75f837" + }, + { + "name": "hmrc.employment_income.amount@E07000237", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1479200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83d7bd83ab530eba7ac1abe5" + }, + { + "name": "hmrc.employment_income.amount@E07000238", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2109000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24248d0429cf45f850af9f27" + }, + { + "name": "hmrc.employment_income.amount@E07000239", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1184400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde99a253fb577c988ff5217" + }, + { + "name": "hmrc.employment_income.amount@E07000240", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4739600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf9645a11ef904769768893f" + }, + { + "name": "hmrc.employment_income.amount@E07000241", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2351100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a42e843f2db64877679ba84" + }, + { + "name": "hmrc.employment_income.amount@E07000242", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3594900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24af4dbad07c0a712119d46d" + }, + { + "name": "hmrc.employment_income.amount@E07000243", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1392300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_372db52065ebddb0779cabca" + }, + { + "name": "hmrc.employment_income.amount@E07000244", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3018600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5b64e1d539a5ec5a9f1cfb5" + }, + { + "name": "hmrc.employment_income.amount@E07000245", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2620700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b475e066a8b34d0985b20a6a" + }, + { + "name": "hmrc.employment_income.amount@E08000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3411700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6f16f2c2844044bab2037dc" + }, + { + "name": "hmrc.employment_income.amount@E08000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2686000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70ecfaf57cd08f5579a381ac" + }, + { + "name": "hmrc.employment_income.amount@E08000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6868000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21ca9f36d22ee56e33781a15" + }, + { + "name": "hmrc.employment_income.amount@E08000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2600100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5734dc1acbbc68df00ece7c" + }, + { + "name": "hmrc.employment_income.amount@E08000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2558400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50fde504c32acc9241238294" + }, + { + "name": "hmrc.employment_income.amount@E08000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4243500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d48518b5ed610e8d3d4a45c3" + }, + { + "name": "hmrc.employment_income.amount@E08000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4953600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_468ccaff992fc8cfa5032715" + }, + { + "name": "hmrc.employment_income.amount@E08000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3163500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e91862ec2e336e4763bcab2" + }, + { + "name": "hmrc.employment_income.amount@E08000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4484400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e69095f630a9ea3a366d18" + }, + { + "name": "hmrc.employment_income.amount@E08000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4512600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89db74d7701353f9a1a7b2c3" + }, + { + "name": "hmrc.employment_income.amount@E08000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1927600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eabbcf9ef033fd33903baec" + }, + { + "name": "hmrc.employment_income.amount@E08000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5936800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_357888da086be12a0cc4ee7f" + }, + { + "name": "hmrc.employment_income.amount@E08000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2564100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55217670d50b43b5be891f09" + }, + { + "name": "hmrc.employment_income.amount@E08000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3678200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb69871e7327b6268f3ed63" + }, + { + "name": "hmrc.employment_income.amount@E08000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4306600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03174387773126939b5f8783" + }, + { + "name": "hmrc.employment_income.amount@E08000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3038000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06292095760d912c5e57b1d3" + }, + { + "name": "hmrc.employment_income.amount@E08000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3808000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51f209f0cc1a5bbe1fe857a7" + }, + { + "name": "hmrc.employment_income.amount@E08000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3292600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_568e75e2004cd956ade7fc62" + }, + { + "name": "hmrc.employment_income.amount@E08000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6847800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39c9fd3ad57a88af8e6127c7" + }, + { + "name": "hmrc.employment_income.amount@E08000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3680800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe4cc6dc1b5f10bf486c39b5" + }, + { + "name": "hmrc.employment_income.amount@E08000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3159500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_78402ebd33fc2a567df4d9c6" + }, + { + "name": "hmrc.employment_income.amount@E08000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1754500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd33c9d38c170a9cb2497702" + }, + { + "name": "hmrc.employment_income.amount@E08000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3275400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dabd01a11758e3e2bb6cf144" + }, + { + "name": "hmrc.employment_income.amount@E08000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12882000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f9d0ec3feaa3953c0826240" + }, + { + "name": "hmrc.employment_income.amount@E08000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4587000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e976ad1c2d5f8b5d8d9f7986" + }, + { + "name": "hmrc.employment_income.amount@E08000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3708900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b246868c97b8346f50d9778d" + }, + { + "name": "hmrc.employment_income.amount@E08000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3952000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_75562bd8c719a3cc315e2e73" + }, + { + "name": "hmrc.employment_income.amount@E08000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3782500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7cb1ddf11d53d954778bd57" + }, + { + "name": "hmrc.employment_income.amount@E08000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3171400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdcf27bd8259af9610a841be" + }, + { + "name": "hmrc.employment_income.amount@E08000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3242100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8099eadf38a76b7f3d2e99b0" + }, + { + "name": "hmrc.employment_income.amount@E08000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5959200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aef00225728af14776f5102c" + }, + { + "name": "hmrc.employment_income.amount@E08000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2712000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb9a3fd8ead169a938700a4" + }, + { + "name": "hmrc.employment_income.amount@E08000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5627900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80c55cf4657850241169e8e1" + }, + { + "name": "hmrc.employment_income.amount@E08000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11682000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35f15e74e98d2e2a6dd79589" + }, + { + "name": "hmrc.employment_income.amount@E08000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4694400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dbb6202cb05a88281129390" + }, + { + "name": "hmrc.employment_income.amount@E08000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2479400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e8e31cafb612fb6eff264a0" + }, + { + "name": "hmrc.employment_income.amount@E09000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1197000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0372c0ec411946bfc2e42c09" + }, + { + "name": "hmrc.employment_income.amount@E09000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2958400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_255415ecdd320ebe767fe4c6" + }, + { + "name": "hmrc.employment_income.amount@E09000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8954400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f20019304d185e64228939a" + }, + { + "name": "hmrc.employment_income.amount@E09000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4708800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cafb615175527da861ada544" + }, + { + "name": "hmrc.employment_income.amount@E09000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6234200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37c84d9241b3c6956da4fc9f" + }, + { + "name": "hmrc.employment_income.amount@E09000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8249000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cacae4df271c3c7d9bb98b4e" + }, + { + "name": "hmrc.employment_income.amount@E09000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8553600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb1b0e5991cfe34b2a668cba" + }, + { + "name": "hmrc.employment_income.amount@E09000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7462400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_657e734cc3e5df18b09d782f" + }, + { + "name": "hmrc.employment_income.amount@E09000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7610500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3508eef1306f5d0e3ebdcd4a" + }, + { + "name": "hmrc.employment_income.amount@E09000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5026400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8250d12930869189ad6fd8be" + }, + { + "name": "hmrc.employment_income.amount@E09000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7004000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c2884b482c13d9933c36d40" + }, + { + "name": "hmrc.employment_income.amount@E09000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5983200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf4453ac4fe7cca614690ddd" + }, + { + "name": "hmrc.employment_income.amount@E09000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7253500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77c19d5ad0f66539829b3bdd" + }, + { + "name": "hmrc.employment_income.amount@E09000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5801600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d056eabbe6489dd676ae30fe" + }, + { + "name": "hmrc.employment_income.amount@E09000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4972800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1d55b8554bd5cb649f65c70" + }, + { + "name": "hmrc.employment_income.amount@E09000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4718700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44a583866c4737debfe48961" + }, + { + "name": "hmrc.employment_income.amount@E09000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5989200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40974d96cfdd61f813563aa6" + }, + { + "name": "hmrc.employment_income.amount@E09000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5766300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ced45024b628f82104e6531" + }, + { + "name": "hmrc.employment_income.amount@E09000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7292400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6793c4738459fb1c8f4cdb5" + }, + { + "name": "hmrc.employment_income.amount@E09000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8909000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0642d674c210365bbb107be7" + }, + { + "name": "hmrc.employment_income.amount@E09000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4132200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b71197051bd6364e9875b46c" + }, + { + "name": "hmrc.employment_income.amount@E09000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9379800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_754f58a6ace13e1c8d9cc750" + }, + { + "name": "hmrc.employment_income.amount@E09000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6370000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5630febabe274a6524f5275d" + }, + { + "name": "hmrc.employment_income.amount@E09000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6130700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38dfb3ca8f40fbb5bf74806f" + }, + { + "name": "hmrc.employment_income.amount@E09000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5816400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f074ae1704c3d746c9b23746" + }, + { + "name": "hmrc.employment_income.amount@E09000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5244000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_00e45ab3af563a7f155caf39" + }, + { + "name": "hmrc.employment_income.amount@E09000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7341600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23acbc3a2cfaae3e30748018" + }, + { + "name": "hmrc.employment_income.amount@E09000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8775000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5cdf0fecd0f64974ab4022d" + }, + { + "name": "hmrc.employment_income.amount@E09000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4048000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d0e51828a80d928ee549ae3" + }, + { + "name": "hmrc.employment_income.amount@E09000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8682500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95368f009f17ad8ce79f9a4c" + }, + { + "name": "hmrc.employment_income.amount@E09000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5203000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_42d9cb588fdff0ef64aa923b" + }, + { + "name": "hmrc.employment_income.amount@E09000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12980400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55f5e5794f9fc255b8da6e8a" + }, + { + "name": "hmrc.employment_income.amount@E09000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9990000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52c919e1786bbf21109ba49f" + }, + { + "name": "hmrc.employment_income.amount@N09000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1905700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a3fdef97aa5a271fbe72c7" + }, + { + "name": "hmrc.employment_income.amount@N09000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2639400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0b5e5936b596d0de243741a" + }, + { + "name": "hmrc.employment_income.amount@N09000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4352000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57ddda0a2d808fd9214893f3" + }, + { + "name": "hmrc.employment_income.amount@N09000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1380000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e216f43715f610d9277ba537" + }, + { + "name": "hmrc.employment_income.amount@N09000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1523900000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f1283ecf59428a8cb689717" + }, + { + "name": "hmrc.employment_income.amount@N09000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1189000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aec925d31ef954e6933a3a99" + }, + { + "name": "hmrc.employment_income.amount@N09000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2128600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f64a8794af2dea5fa8a4aba4" + }, + { + "name": "hmrc.employment_income.amount@N09000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1677500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5935d63c3a5fbf49769525e" + }, + { + "name": "hmrc.employment_income.amount@N09000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1738500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43ab8292c32d6d240781733a" + }, + { + "name": "hmrc.employment_income.amount@N09000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1787700000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e0a803b18222e436b39b48e" + }, + { + "name": "hmrc.employment_income.amount@N09000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1769600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98de762452474d4624586cb9" + }, + { + "name": "hmrc.employment_income.amount@S12000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 718000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdba79c095c9bd07bb0733f" + }, + { + "name": "hmrc.employment_income.amount@S12000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1699500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d37e372b40d52da35bc4bd8" + }, + { + "name": "hmrc.employment_income.amount@S12000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1543500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_078c93cb774f744240a05cfc" + }, + { + "name": "hmrc.employment_income.amount@S12000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1886400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac33f9427976363fdc755bdb" + }, + { + "name": "hmrc.employment_income.amount@S12000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1716000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_051ec2c28ca01e0fe9233d3b" + }, + { + "name": "hmrc.employment_income.amount@S12000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 330000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bcbfbe7ddd671621af4ac93" + }, + { + "name": "hmrc.employment_income.amount@S12000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2468400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbf0932c5a0a61a9de7db290" + }, + { + "name": "hmrc.employment_income.amount@S12000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3283000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_852894262b9aa35935b5c468" + }, + { + "name": "hmrc.employment_income.amount@S12000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1032300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ac8460f66d9e88db70d4ab" + }, + { + "name": "hmrc.employment_income.amount@S12000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1467800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2df9adca83752a39ad800e26" + }, + { + "name": "hmrc.employment_income.amount@S12000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1280600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_916a01b03c87d687af0144d7" + }, + { + "name": "hmrc.employment_income.amount@S12000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1734000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eb8dd056e51221bf8818382" + }, + { + "name": "hmrc.employment_income.amount@S12000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 297000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec918da14a3a3caab20f927" + }, + { + "name": "hmrc.employment_income.amount@S12000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1417500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a4453e5fe37f9ed4662403" + }, + { + "name": "hmrc.employment_income.amount@S12000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 389400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f58b0efd7ea505cdac07f200" + }, + { + "name": "hmrc.employment_income.amount@S12000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1492100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b88e25afbba26f0eadb352fa" + }, + { + "name": "hmrc.employment_income.amount@S12000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5110000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_991790db29835d49cb07f3ed" + }, + { + "name": "hmrc.employment_income.amount@S12000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1527600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7cd682f97a0d4b65037e32f" + }, + { + "name": "hmrc.employment_income.amount@S12000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4018000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d4c6b94750f680c02ae0b36" + }, + { + "name": "hmrc.employment_income.amount@S12000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4760000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c22f616cec6f355ff511723f" + }, + { + "name": "hmrc.employment_income.amount@S12000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1168200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83cc8e1e4d6d1fd7f9057db4" + }, + { + "name": "hmrc.employment_income.amount@S12000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9517200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c37263c78f49204965d02ad" + }, + { + "name": "hmrc.employment_income.amount@S12000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2670000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83564c52a02d6a6ddaa9257c" + }, + { + "name": "hmrc.employment_income.amount@S12000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1276800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf90695b278f82e247506d10" + }, + { + "name": "hmrc.employment_income.amount@S12000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2963100000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25212386e1aef6a581709270" + }, + { + "name": "hmrc.employment_income.amount@S12000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1577800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a70eb110c166c291a0c2e6a" + }, + { + "name": "hmrc.employment_income.amount@S12000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1808800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_806df8e18faf23678d331530" + }, + { + "name": "hmrc.employment_income.amount@S12000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1854000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ae1c0da80cad2fbab0a24a2" + }, + { + "name": "hmrc.employment_income.amount@S12000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4695300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c25601a4b613d5be920150c9" + }, + { + "name": "hmrc.employment_income.amount@S12000048", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2227200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f33e79b43af524fa83d77b2e" + }, + { + "name": "hmrc.employment_income.amount@S12000049", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8118400000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f145395ae6571af6926528" + }, + { + "name": "hmrc.employment_income.amount@S12000050", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4644000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7eeba30be0e5ebc846b742d" + }, + { + "name": "hmrc.employment_income.amount@W06000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 765000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6d61bacd6ebc825dd3bca1f" + }, + { + "name": "hmrc.employment_income.amount@W06000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1320200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_397eb511ee338b0957159365" + }, + { + "name": "hmrc.employment_income.amount@W06000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1209000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8fd1d6d4239fdefb067a719" + }, + { + "name": "hmrc.employment_income.amount@W06000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1033600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_042f2bc336e0851b0c75a59d" + }, + { + "name": "hmrc.employment_income.amount@W06000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2190500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b115b4407a203afc9b64df7" + }, + { + "name": "hmrc.employment_income.amount@W06000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1824000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_363b98d47172f026aa31eed8" + }, + { + "name": "hmrc.employment_income.amount@W06000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 657800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9deb4549c15484245e34934" + }, + { + "name": "hmrc.employment_income.amount@W06000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1228500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aee69189ec46f2979d582c19" + }, + { + "name": "hmrc.employment_income.amount@W06000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2053600000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eb750f6d07992fc060f6246" + }, + { + "name": "hmrc.employment_income.amount@W06000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2752000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_02d069802449d70dfe945aa4" + }, + { + "name": "hmrc.employment_income.amount@W06000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1591200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_227fa3a11406adedf0a85bde" + }, + { + "name": "hmrc.employment_income.amount@W06000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1915200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82d0ec7842ee70ecb3a1bd26" + }, + { + "name": "hmrc.employment_income.amount@W06000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2002000000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b5612face22644eaf990891" + }, + { + "name": "hmrc.employment_income.amount@W06000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5162300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9253733066720883a56407" + }, + { + "name": "hmrc.employment_income.amount@W06000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2775300000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_348bc8ac2f13e5138109b828" + }, + { + "name": "hmrc.employment_income.amount@W06000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2098800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c5c13b9b1d8acab3074ca63" + }, + { + "name": "hmrc.employment_income.amount@W06000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 691200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a8b94e5d5335ecacf5bceb2" + }, + { + "name": "hmrc.employment_income.amount@W06000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1169200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e2602687a8ee788943b6aa" + }, + { + "name": "hmrc.employment_income.amount@W06000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1497200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74489864082c3fcffc01f7de" + }, + { + "name": "hmrc.employment_income.amount@W06000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2311500000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15c731586f9081a7ee5a0a75" + }, + { + "name": "hmrc.employment_income.amount@W06000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1285200000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ede53fdab41337cddae4a5" + }, + { + "name": "hmrc.employment_income.amount@W06000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 668800000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44706ca4eb42cb95f6dc7f07" + } + ] + } + } + }, + "hmrc.employment_income.count": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "hmrc.employment_income.count@E14001063", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4da2a141dc9206b8cba8526e" + }, + { + "name": "hmrc.employment_income.count@E14001064", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c15fcf0852f88e14bfcc365a" + }, + { + "name": "hmrc.employment_income.count@E14001065", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9362acd1e632332802559753" + }, + { + "name": "hmrc.employment_income.count@E14001066", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f40480bdefb3acbcf03e2db7" + }, + { + "name": "hmrc.employment_income.count@E14001067", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e4610a86d650bb7e4744c9c" + }, + { + "name": "hmrc.employment_income.count@E14001068", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89537a9a107fda8e2fede258" + }, + { + "name": "hmrc.employment_income.count@E14001069", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_012866383974161e22bcf53d" + }, + { + "name": "hmrc.employment_income.count@E14001070", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2329132e876606a356988b7" + }, + { + "name": "hmrc.employment_income.count@E14001071", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_08a566c1dd7f016c69175992" + }, + { + "name": "hmrc.employment_income.count@E14001072", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a81e0c35f3fabe2e18c9e30" + }, + { + "name": "hmrc.employment_income.count@E14001073", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6b9a4be51ea7cc7d89a3b38" + }, + { + "name": "hmrc.employment_income.count@E14001074", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1daba7ed2d034b20f21c3757" + }, + { + "name": "hmrc.employment_income.count@E14001075", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_77f4dec35048e7a81cebfa1f" + }, + { + "name": "hmrc.employment_income.count@E14001076", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_566f23c2cec4600d8f1890cd" + }, + { + "name": "hmrc.employment_income.count@E14001077", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_833fa121e520bbf7217dc59e" + }, + { + "name": "hmrc.employment_income.count@E14001078", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1239ca0755f6e0b892b51b60" + }, + { + "name": "hmrc.employment_income.count@E14001079", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_738f4e47e287a6ba9dac5b17" + }, + { + "name": "hmrc.employment_income.count@E14001080", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e768d8abbd5096231ebec253" + }, + { + "name": "hmrc.employment_income.count@E14001081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 60000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9acfa174571b76346c8ef8f9" + }, + { + "name": "hmrc.employment_income.count@E14001082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c4763e8133d246e0a080737" + }, + { + "name": "hmrc.employment_income.count@E14001083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcbf000bfdbdfbe10c1f3f56" + }, + { + "name": "hmrc.employment_income.count@E14001084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f6a786f80dadcd578f33954" + }, + { + "name": "hmrc.employment_income.count@E14001085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22dcb417524822a93c4a7b99" + }, + { + "name": "hmrc.employment_income.count@E14001086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_930c3018385569cfb3796186" + }, + { + "name": "hmrc.employment_income.count@E14001087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e0daccbad6cef2b9930a16d" + }, + { + "name": "hmrc.employment_income.count@E14001088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80f2684c77c3beb66ad4be02" + }, + { + "name": "hmrc.employment_income.count@E14001089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8082b6763736cc006b0fed8" + }, + { + "name": "hmrc.employment_income.count@E14001090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8349d1f623f88c027e59b0b3" + }, + { + "name": "hmrc.employment_income.count@E14001091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca95c4bb724f423934d69e2c" + }, + { + "name": "hmrc.employment_income.count@E14001092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c6c7db561b62f7241b43c9" + }, + { + "name": "hmrc.employment_income.count@E14001093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_814d400d7877041ca47e81c0" + }, + { + "name": "hmrc.employment_income.count@E14001094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_664aa4b990b22c74a4001fc6" + }, + { + "name": "hmrc.employment_income.count@E14001095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c655774752247a285bd430ff" + }, + { + "name": "hmrc.employment_income.count@E14001096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f911e3600b5c32b8cae9f594" + }, + { + "name": "hmrc.employment_income.count@E14001097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f0b4742b5cc68d3b9f86401" + }, + { + "name": "hmrc.employment_income.count@E14001098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_349a049debe1e27cf272582a" + }, + { + "name": "hmrc.employment_income.count@E14001099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a82a393e5772a1f28ce37154" + }, + { + "name": "hmrc.employment_income.count@E14001100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c31902c51b3891ed173fd9a2" + }, + { + "name": "hmrc.employment_income.count@E14001101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a77093aae472620d880a393a" + }, + { + "name": "hmrc.employment_income.count@E14001102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dfd7a8d8664de99d4fb5315" + }, + { + "name": "hmrc.employment_income.count@E14001103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef1954ff322fa404b9248a78" + }, + { + "name": "hmrc.employment_income.count@E14001104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72cfe5df796cb7805dac3751" + }, + { + "name": "hmrc.employment_income.count@E14001105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11282550bd9fc1d10c7d018" + }, + { + "name": "hmrc.employment_income.count@E14001106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc32f41dea35ce62f943f3c2" + }, + { + "name": "hmrc.employment_income.count@E14001107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68373b6e218203773489d6f4" + }, + { + "name": "hmrc.employment_income.count@E14001108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5365dec67318e603fc6f6fa3" + }, + { + "name": "hmrc.employment_income.count@E14001109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1bcb4ecab5b494199c9b551" + }, + { + "name": "hmrc.employment_income.count@E14001110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_423d3cf933f7384881abd0aa" + }, + { + "name": "hmrc.employment_income.count@E14001111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e29fb3115d998d8a9ce0017e" + }, + { + "name": "hmrc.employment_income.count@E14001112", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06855442811948685293bc1e" + }, + { + "name": "hmrc.employment_income.count@E14001113", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1155e37920f5e65229bfc43" + }, + { + "name": "hmrc.employment_income.count@E14001114", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d264b74a130e61a6f5e96ea" + }, + { + "name": "hmrc.employment_income.count@E14001115", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6614f1c746654893efead7de" + }, + { + "name": "hmrc.employment_income.count@E14001116", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbbdc216cd3e479a9c0b0e84" + }, + { + "name": "hmrc.employment_income.count@E14001117", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cfe2cb9bca8113ae24e3c15" + }, + { + "name": "hmrc.employment_income.count@E14001118", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94fbf2db736d1b96860f5eff" + }, + { + "name": "hmrc.employment_income.count@E14001119", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca08534ff3cac27bfc94cf29" + }, + { + "name": "hmrc.employment_income.count@E14001120", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15f48194c6727d4cb1474bd0" + }, + { + "name": "hmrc.employment_income.count@E14001121", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96f8ddc89dea4d248611776f" + }, + { + "name": "hmrc.employment_income.count@E14001122", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3440ef9c44db643b130b5a1" + }, + { + "name": "hmrc.employment_income.count@E14001123", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 63000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4787c3fd9c52b7f6ddcd99d7" + }, + { + "name": "hmrc.employment_income.count@E14001124", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c8ac30f5e8293e04c16f173" + }, + { + "name": "hmrc.employment_income.count@E14001125", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5903d4c8739a0a3ccf4ffe5f" + }, + { + "name": "hmrc.employment_income.count@E14001126", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f11bbd0342947df4c58c3020" + }, + { + "name": "hmrc.employment_income.count@E14001127", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad5c3d5679e3f57b52f82ccb" + }, + { + "name": "hmrc.employment_income.count@E14001128", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18e3803cc39b9d31a45798fb" + }, + { + "name": "hmrc.employment_income.count@E14001129", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab23a5b77179c4b90daa0dd" + }, + { + "name": "hmrc.employment_income.count@E14001130", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7003db99c68f63a27ec6a509" + }, + { + "name": "hmrc.employment_income.count@E14001131", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9a23396b26bafe171f2c6c9" + }, + { + "name": "hmrc.employment_income.count@E14001132", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_679f1821113ddedeffbf039c" + }, + { + "name": "hmrc.employment_income.count@E14001133", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58dce6e37f21153a1f13476e" + }, + { + "name": "hmrc.employment_income.count@E14001134", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c05b1e804af7f433c62a02f6" + }, + { + "name": "hmrc.employment_income.count@E14001135", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9fc58b07bca4cb902a300ae" + }, + { + "name": "hmrc.employment_income.count@E14001136", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17dc4598fce5f043d80f12f4" + }, + { + "name": "hmrc.employment_income.count@E14001137", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed774c32a6c1b779bc48caff" + }, + { + "name": "hmrc.employment_income.count@E14001138", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_610fd2c1c38720c42a7bebce" + }, + { + "name": "hmrc.employment_income.count@E14001139", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_159b072f28f441d87e2f0a9b" + }, + { + "name": "hmrc.employment_income.count@E14001140", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e49ccb27059d43bc804a9c09" + }, + { + "name": "hmrc.employment_income.count@E14001141", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_02fdd421a5343cf1a0edf8f6" + }, + { + "name": "hmrc.employment_income.count@E14001142", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_975adff7e9a78b85a497b854" + }, + { + "name": "hmrc.employment_income.count@E14001143", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db42dd258c7e3073718b481a" + }, + { + "name": "hmrc.employment_income.count@E14001144", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_024727cea29a421fe554c46f" + }, + { + "name": "hmrc.employment_income.count@E14001145", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4850055f2538250aa359ca99" + }, + { + "name": "hmrc.employment_income.count@E14001146", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e283efb122cf78ae36fee21f" + }, + { + "name": "hmrc.employment_income.count@E14001147", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ad94785182de6a224650147" + }, + { + "name": "hmrc.employment_income.count@E14001148", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b658b00f70edd83a55ea6c17" + }, + { + "name": "hmrc.employment_income.count@E14001149", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09114a711083ac94690bb73" + }, + { + "name": "hmrc.employment_income.count@E14001150", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_047d451c5ea6e2510232164a" + }, + { + "name": "hmrc.employment_income.count@E14001151", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2478ca39056932fff4851f4b" + }, + { + "name": "hmrc.employment_income.count@E14001152", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79b7b35717bf15be40a345a0" + }, + { + "name": "hmrc.employment_income.count@E14001153", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_47291f6be2d462ea50720295" + }, + { + "name": "hmrc.employment_income.count@E14001154", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c11a2c54abd72f3b0483f43f" + }, + { + "name": "hmrc.employment_income.count@E14001155", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c7ecb34dd98247c8ece771b" + }, + { + "name": "hmrc.employment_income.count@E14001156", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7922f77097a391ed3fa8fffd" + }, + { + "name": "hmrc.employment_income.count@E14001157", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_46eb287e90d7c939b808e87a" + }, + { + "name": "hmrc.employment_income.count@E14001158", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_025c5dc11f53c32f136a64d0" + }, + { + "name": "hmrc.employment_income.count@E14001159", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d91f2ed8da9a0d97d97971d" + }, + { + "name": "hmrc.employment_income.count@E14001160", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_841729147d04b38958b7f2e8" + }, + { + "name": "hmrc.employment_income.count@E14001161", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd424eda5c59c2a3599d161e" + }, + { + "name": "hmrc.employment_income.count@E14001162", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a07f61b88202719e77582e04" + }, + { + "name": "hmrc.employment_income.count@E14001163", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a92f09fc46155c2d2ebbb3b" + }, + { + "name": "hmrc.employment_income.count@E14001164", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0a296f1e065b46b496fbb4d" + }, + { + "name": "hmrc.employment_income.count@E14001165", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_659096416535532b7c21d3ae" + }, + { + "name": "hmrc.employment_income.count@E14001166", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d781d4262b06cff00cfdbb8" + }, + { + "name": "hmrc.employment_income.count@E14001167", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5e841551476bd47de279ebb" + }, + { + "name": "hmrc.employment_income.count@E14001168", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae93361600076a6d741ffb55" + }, + { + "name": "hmrc.employment_income.count@E14001169", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe532d44b747b0e00561eb0" + }, + { + "name": "hmrc.employment_income.count@E14001170", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58dd5abb22b9d65537cbc308" + }, + { + "name": "hmrc.employment_income.count@E14001171", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d925a8ceeaa03e879406e98a" + }, + { + "name": "hmrc.employment_income.count@E14001172", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a800e4ba827692a0beb1bd95" + }, + { + "name": "hmrc.employment_income.count@E14001173", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de5fdd248d981137910e45b" + }, + { + "name": "hmrc.employment_income.count@E14001174", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96484d691f5f5cf6072c08b0" + }, + { + "name": "hmrc.employment_income.count@E14001175", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe80bce083f88d72ed552f41" + }, + { + "name": "hmrc.employment_income.count@E14001176", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44af88a559806eb9896ff7f3" + }, + { + "name": "hmrc.employment_income.count@E14001177", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cda1e35dcb084c7bfee3a7d1" + }, + { + "name": "hmrc.employment_income.count@E14001178", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e0628758a13903b0bc15878" + }, + { + "name": "hmrc.employment_income.count@E14001179", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a856d30f83893b17fb4775f" + }, + { + "name": "hmrc.employment_income.count@E14001180", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c1b030e48bace335d932085" + }, + { + "name": "hmrc.employment_income.count@E14001181", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96976a9634d6ba559cff0198" + }, + { + "name": "hmrc.employment_income.count@E14001182", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b562e3e8426d638bad91e9e" + }, + { + "name": "hmrc.employment_income.count@E14001183", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c751f7e3c8b3c85b24b3fca0" + }, + { + "name": "hmrc.employment_income.count@E14001184", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62c7ec25c75dc60e9f7190e3" + }, + { + "name": "hmrc.employment_income.count@E14001185", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea776bd9b09b3fa355502800" + }, + { + "name": "hmrc.employment_income.count@E14001186", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_da1e1d6591bb3a85f457bb4b" + }, + { + "name": "hmrc.employment_income.count@E14001187", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9c5cb39e9b1092faf969777" + }, + { + "name": "hmrc.employment_income.count@E14001188", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d710b44ce8f480230b0f197b" + }, + { + "name": "hmrc.employment_income.count@E14001189", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48a178913c2f125219f4ba71" + }, + { + "name": "hmrc.employment_income.count@E14001190", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e651064ba4a8971ecd1661cf" + }, + { + "name": "hmrc.employment_income.count@E14001191", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d884a63b05e1a4e988b9050" + }, + { + "name": "hmrc.employment_income.count@E14001192", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f186f4ac16830dbc0760fab3" + }, + { + "name": "hmrc.employment_income.count@E14001193", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a6f99e34dd0e03008bd1078" + }, + { + "name": "hmrc.employment_income.count@E14001194", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d66c4465dbfc119252a4c5ee" + }, + { + "name": "hmrc.employment_income.count@E14001195", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a871a685e3fc7cccd9f27a13" + }, + { + "name": "hmrc.employment_income.count@E14001196", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b902bf959f648907505e911c" + }, + { + "name": "hmrc.employment_income.count@E14001197", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52018c24afbef5994ba36e35" + }, + { + "name": "hmrc.employment_income.count@E14001198", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9c82652b34f007fa0d232bd" + }, + { + "name": "hmrc.employment_income.count@E14001199", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_85f0724d3e7cd66c26954103" + }, + { + "name": "hmrc.employment_income.count@E14001200", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf16874d72147ccdcff44c4f" + }, + { + "name": "hmrc.employment_income.count@E14001201", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1cc24026c7c47c312f79b75" + }, + { + "name": "hmrc.employment_income.count@E14001202", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d1d7deb3df384548bfc1943" + }, + { + "name": "hmrc.employment_income.count@E14001203", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69faedf304c9052f3761ae7a" + }, + { + "name": "hmrc.employment_income.count@E14001204", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d74783cb9493d629162dba1" + }, + { + "name": "hmrc.employment_income.count@E14001205", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8967a1b70e27fb4edbb88472" + }, + { + "name": "hmrc.employment_income.count@E14001206", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d99b184c02d0c35d0ca7285" + }, + { + "name": "hmrc.employment_income.count@E14001207", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_484a2118457ac31f62479fb8" + }, + { + "name": "hmrc.employment_income.count@E14001208", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17de7e14d46e39b9a2869960" + }, + { + "name": "hmrc.employment_income.count@E14001209", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54eec6aede2043ade815316a" + }, + { + "name": "hmrc.employment_income.count@E14001210", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_69d78997181520e2f96b326c" + }, + { + "name": "hmrc.employment_income.count@E14001211", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_574d0c16b9c7ce2799877663" + }, + { + "name": "hmrc.employment_income.count@E14001212", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8ab82ca5f0a8a1a4c7a3d23" + }, + { + "name": "hmrc.employment_income.count@E14001213", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d9f1bffd611d49d0f7d2da3" + }, + { + "name": "hmrc.employment_income.count@E14001214", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f624e157db3f360f6c7378c8" + }, + { + "name": "hmrc.employment_income.count@E14001215", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f367a795455a8f617a2639da" + }, + { + "name": "hmrc.employment_income.count@E14001216", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c51f57ac396d784e4e9194b2" + }, + { + "name": "hmrc.employment_income.count@E14001217", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8291bbf79a0eb40556565fd" + }, + { + "name": "hmrc.employment_income.count@E14001218", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b292e74616eddceb4b2e759d" + }, + { + "name": "hmrc.employment_income.count@E14001219", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7f00573438c09520c4d7e60" + }, + { + "name": "hmrc.employment_income.count@E14001220", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_264dc8e8de66c274da6e640b" + }, + { + "name": "hmrc.employment_income.count@E14001221", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56a0ee342c9d710637b9bf3b" + }, + { + "name": "hmrc.employment_income.count@E14001222", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f107b2f9517d96e1d29eeeff" + }, + { + "name": "hmrc.employment_income.count@E14001223", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_959e473dfcfb121dcd482d52" + }, + { + "name": "hmrc.employment_income.count@E14001224", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7534e69b79105055a2778b" + }, + { + "name": "hmrc.employment_income.count@E14001225", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db9942a539f0775b3f09b28f" + }, + { + "name": "hmrc.employment_income.count@E14001226", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22036c0e11854fb6dd0466b9" + }, + { + "name": "hmrc.employment_income.count@E14001227", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db087a352d71decc96a540af" + }, + { + "name": "hmrc.employment_income.count@E14001228", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b629377186df037a9fb9b54" + }, + { + "name": "hmrc.employment_income.count@E14001229", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 60000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79c73c8c2752085e19386b7e" + }, + { + "name": "hmrc.employment_income.count@E14001230", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b4b468637212bf4969482c1" + }, + { + "name": "hmrc.employment_income.count@E14001231", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4796a35bae8910db9b07c93c" + }, + { + "name": "hmrc.employment_income.count@E14001232", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9dd5cfd04b344e11e00248" + }, + { + "name": "hmrc.employment_income.count@E14001233", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc8051d1e4de52d9241113d1" + }, + { + "name": "hmrc.employment_income.count@E14001234", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4b90a669b5294df933e1270" + }, + { + "name": "hmrc.employment_income.count@E14001235", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd94ec2ad6a8b0907550ef15" + }, + { + "name": "hmrc.employment_income.count@E14001236", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_959436fd46d996bdd189617c" + }, + { + "name": "hmrc.employment_income.count@E14001237", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d7e462058cff4363c798f26" + }, + { + "name": "hmrc.employment_income.count@E14001238", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ca6cf8ca19075420a876784" + }, + { + "name": "hmrc.employment_income.count@E14001239", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc8ea1b53894fbcef0508e31" + }, + { + "name": "hmrc.employment_income.count@E14001240", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27d44eb11c205978b539b0c" + }, + { + "name": "hmrc.employment_income.count@E14001241", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c348c8d899b25712b1ba4515" + }, + { + "name": "hmrc.employment_income.count@E14001242", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_119415e5657624c44c9f0572" + }, + { + "name": "hmrc.employment_income.count@E14001243", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2b93d30f20a2cf9a296d800" + }, + { + "name": "hmrc.employment_income.count@E14001244", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_726e535dc12307a4fb273898" + }, + { + "name": "hmrc.employment_income.count@E14001245", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cd90c3419784d16b2c0b8f5" + }, + { + "name": "hmrc.employment_income.count@E14001246", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88b1edd5396552c74331e3d0" + }, + { + "name": "hmrc.employment_income.count@E14001247", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2394a34fc573dabd5875e228" + }, + { + "name": "hmrc.employment_income.count@E14001248", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_37091385f4abe8d76f7a1341" + }, + { + "name": "hmrc.employment_income.count@E14001249", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1e711cb35df37743acfcb5f" + }, + { + "name": "hmrc.employment_income.count@E14001250", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eb40ff78be18dcd4e79e940" + }, + { + "name": "hmrc.employment_income.count@E14001251", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_769d642f91d6bcef837101be" + }, + { + "name": "hmrc.employment_income.count@E14001252", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6e95b86c91baa56d68550ff" + }, + { + "name": "hmrc.employment_income.count@E14001253", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_30796e2baf18f54ac54f0e0a" + }, + { + "name": "hmrc.employment_income.count@E14001254", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_edb3738aa308b1ef12733698" + }, + { + "name": "hmrc.employment_income.count@E14001255", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_feedb727f3ad423819bda9d5" + }, + { + "name": "hmrc.employment_income.count@E14001256", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fb5caaba7d77dd6cf0188e9" + }, + { + "name": "hmrc.employment_income.count@E14001257", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 60000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40bfdf25ff73da2621f0fa53" + }, + { + "name": "hmrc.employment_income.count@E14001258", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34d5170c37a6ef8bd50689be" + }, + { + "name": "hmrc.employment_income.count@E14001259", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c493c5d23cca2958ca8a870" + }, + { + "name": "hmrc.employment_income.count@E14001260", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0c23e303c96e9cd0b55a140" + }, + { + "name": "hmrc.employment_income.count@E14001261", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_333f870d0c5a4448087aba41" + }, + { + "name": "hmrc.employment_income.count@E14001262", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dd9cc4fd95b86cd42f24a4a" + }, + { + "name": "hmrc.employment_income.count@E14001263", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff1af7dde2f699a152ddb303" + }, + { + "name": "hmrc.employment_income.count@E14001264", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f5e04b195d389e1ef7c1246" + }, + { + "name": "hmrc.employment_income.count@E14001265", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a58e4ef6c548516e8b54a903" + }, + { + "name": "hmrc.employment_income.count@E14001266", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea55333a0738481ce2056e9d" + }, + { + "name": "hmrc.employment_income.count@E14001267", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9708f36b67513ba7627649e" + }, + { + "name": "hmrc.employment_income.count@E14001268", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd666aebd630d20a890e7dfb" + }, + { + "name": "hmrc.employment_income.count@E14001269", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4783fb4fc8353c1690e6230d" + }, + { + "name": "hmrc.employment_income.count@E14001270", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54440392e33f432e7af959f1" + }, + { + "name": "hmrc.employment_income.count@E14001271", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a01e47c3637e75423a208191" + }, + { + "name": "hmrc.employment_income.count@E14001272", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_526e3f30759b44abbae0a77a" + }, + { + "name": "hmrc.employment_income.count@E14001273", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66a3b603220faad8fb586a0c" + }, + { + "name": "hmrc.employment_income.count@E14001274", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e12fb060118187b40f83b3c" + }, + { + "name": "hmrc.employment_income.count@E14001275", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2679d24fa176d820dd5763d8" + }, + { + "name": "hmrc.employment_income.count@E14001276", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e3b24b32adab57a94e89f0c" + }, + { + "name": "hmrc.employment_income.count@E14001277", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15bfc8e1fce84c55e8a74641" + }, + { + "name": "hmrc.employment_income.count@E14001278", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_561d49323517d53ba8ca3d46" + }, + { + "name": "hmrc.employment_income.count@E14001279", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_725f0bdc37507e169779b380" + }, + { + "name": "hmrc.employment_income.count@E14001280", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_286956a66970e1b67767e8a4" + }, + { + "name": "hmrc.employment_income.count@E14001281", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40cd0a9959e6592593df1e34" + }, + { + "name": "hmrc.employment_income.count@E14001282", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eddd63ec5a4af90c632f1777" + }, + { + "name": "hmrc.employment_income.count@E14001283", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_29e1f7e7b65e975c0c3b6519" + }, + { + "name": "hmrc.employment_income.count@E14001284", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83842c6df0d24da7bdc5e901" + }, + { + "name": "hmrc.employment_income.count@E14001285", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10632858052258824e440c4b" + }, + { + "name": "hmrc.employment_income.count@E14001286", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a64d38a0777c5de70c0b2582" + }, + { + "name": "hmrc.employment_income.count@E14001287", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f9d1a99cd3868152d208470" + }, + { + "name": "hmrc.employment_income.count@E14001288", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a5bd6e5b89c60b0ae512ee9" + }, + { + "name": "hmrc.employment_income.count@E14001289", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5894423dbecd2197bee45f6" + }, + { + "name": "hmrc.employment_income.count@E14001290", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5893c855e93476225c68ee6" + }, + { + "name": "hmrc.employment_income.count@E14001291", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_92c641c6116b00315d66fdf7" + }, + { + "name": "hmrc.employment_income.count@E14001292", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2074238c60aefef29860107f" + }, + { + "name": "hmrc.employment_income.count@E14001293", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e583b2860a2aa82dec38d141" + }, + { + "name": "hmrc.employment_income.count@E14001294", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3ff97cadd7c913e64f774d0" + }, + { + "name": "hmrc.employment_income.count@E14001295", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_464068a05c0289af6f113045" + }, + { + "name": "hmrc.employment_income.count@E14001296", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14704c2951c7c50597a37deb" + }, + { + "name": "hmrc.employment_income.count@E14001297", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9d6e5aa401b34fac380ba8" + }, + { + "name": "hmrc.employment_income.count@E14001298", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a847b3e8af9848cca18d05a2" + }, + { + "name": "hmrc.employment_income.count@E14001299", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e315183c8525f6627d8267d" + }, + { + "name": "hmrc.employment_income.count@E14001300", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb74f31edb0fb46c7da98424" + }, + { + "name": "hmrc.employment_income.count@E14001301", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ea040247f7b844896b8ad64" + }, + { + "name": "hmrc.employment_income.count@E14001302", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8abaaabb9e301d13ac8959ef" + }, + { + "name": "hmrc.employment_income.count@E14001303", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4bd7a75ea9d67c37ecf3ddd" + }, + { + "name": "hmrc.employment_income.count@E14001304", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_997123fa6753e54f962dbd57" + }, + { + "name": "hmrc.employment_income.count@E14001305", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2068408de72fcc5d0b895c83" + }, + { + "name": "hmrc.employment_income.count@E14001306", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_07519896ca7db5df6898543f" + }, + { + "name": "hmrc.employment_income.count@E14001307", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa4a4195944b2a6b75c5fdc" + }, + { + "name": "hmrc.employment_income.count@E14001308", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97db3b7c3e0936d4408f44e" + }, + { + "name": "hmrc.employment_income.count@E14001309", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf8bcf4bc9db879b757594f6" + }, + { + "name": "hmrc.employment_income.count@E14001310", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5620912c2f873be4f500288c" + }, + { + "name": "hmrc.employment_income.count@E14001311", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_306d494085ae8735def80867" + }, + { + "name": "hmrc.employment_income.count@E14001312", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b5b0a33a1af39eda6c2f8ad" + }, + { + "name": "hmrc.employment_income.count@E14001313", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a48978deffa1bc2f81a5c28b" + }, + { + "name": "hmrc.employment_income.count@E14001314", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2f579a106d305d41e0ae9c2" + }, + { + "name": "hmrc.employment_income.count@E14001315", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_812389fba2bec8a78a989cb3" + }, + { + "name": "hmrc.employment_income.count@E14001316", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bccf74ac6c2f5cbefbe23be5" + }, + { + "name": "hmrc.employment_income.count@E14001317", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d39343efd1915f041c62e03" + }, + { + "name": "hmrc.employment_income.count@E14001318", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a141e5c77140ec784c9e32b" + }, + { + "name": "hmrc.employment_income.count@E14001319", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db615fa8835f06db65d93f6f" + }, + { + "name": "hmrc.employment_income.count@E14001320", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f639c15d2b3b5a88338e6c01" + }, + { + "name": "hmrc.employment_income.count@E14001321", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53c2da8532acba0712a5b605" + }, + { + "name": "hmrc.employment_income.count@E14001322", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd3e61a37697f4e8d110d6d" + }, + { + "name": "hmrc.employment_income.count@E14001323", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63e9ee1cada87faffa8e675a" + }, + { + "name": "hmrc.employment_income.count@E14001324", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7999ba46cab4afbe563a4e7" + }, + { + "name": "hmrc.employment_income.count@E14001325", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a06f56d5b4ba4c22143becb9" + }, + { + "name": "hmrc.employment_income.count@E14001326", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aae68365cee05573a3b26fd9" + }, + { + "name": "hmrc.employment_income.count@E14001327", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce253a0fc91aeaff1b71b98a" + }, + { + "name": "hmrc.employment_income.count@E14001328", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be3dc3275b4b42915efd82c0" + }, + { + "name": "hmrc.employment_income.count@E14001329", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84c2a480bffef261bc0d5ed7" + }, + { + "name": "hmrc.employment_income.count@E14001330", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59f04b1bd5c1e2271e395b11" + }, + { + "name": "hmrc.employment_income.count@E14001331", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb9247a21abaa85e97cd930d" + }, + { + "name": "hmrc.employment_income.count@E14001332", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_700cc55667fa05a37eac0022" + }, + { + "name": "hmrc.employment_income.count@E14001333", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c6a4d0bff99d82cfb2442ed" + }, + { + "name": "hmrc.employment_income.count@E14001334", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e308c51f228d5bd2f6cab154" + }, + { + "name": "hmrc.employment_income.count@E14001335", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_adff36a8479a72a0bf575db7" + }, + { + "name": "hmrc.employment_income.count@E14001336", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_325132ca43f533030370ba16" + }, + { + "name": "hmrc.employment_income.count@E14001337", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e74b6d3bb5450d8e84751522" + }, + { + "name": "hmrc.employment_income.count@E14001338", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_832aaa073da14add031e7e31" + }, + { + "name": "hmrc.employment_income.count@E14001339", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_752e9744d89008ffe691cb44" + }, + { + "name": "hmrc.employment_income.count@E14001340", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bd0153ba3c1804394de998f" + }, + { + "name": "hmrc.employment_income.count@E14001341", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b59c73df78b53266cb3fd96e" + }, + { + "name": "hmrc.employment_income.count@E14001342", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4d86397df37417b1edd353" + }, + { + "name": "hmrc.employment_income.count@E14001343", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f0ae72028feb5cafbdec1d3" + }, + { + "name": "hmrc.employment_income.count@E14001344", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f88a0fb57e775b577e2bba9" + }, + { + "name": "hmrc.employment_income.count@E14001345", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa4d205e1d891ffc91590bd9" + }, + { + "name": "hmrc.employment_income.count@E14001346", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_566eee8bcb48eabdc3668e73" + }, + { + "name": "hmrc.employment_income.count@E14001347", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_621cffe16f0d9caf855b9811" + }, + { + "name": "hmrc.employment_income.count@E14001348", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8effb9ddab99eff6cd48bf13" + }, + { + "name": "hmrc.employment_income.count@E14001349", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_842ebad6467f559face504da" + }, + { + "name": "hmrc.employment_income.count@E14001350", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c1c68077de31f884f4f3666" + }, + { + "name": "hmrc.employment_income.count@E14001351", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e64e73142d8c95293db5b16" + }, + { + "name": "hmrc.employment_income.count@E14001352", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4355aedde7f0342ba287866" + }, + { + "name": "hmrc.employment_income.count@E14001353", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6c77c55f85c8d92c72eacc6" + }, + { + "name": "hmrc.employment_income.count@E14001354", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_652c051af2400c7c576c40ce" + }, + { + "name": "hmrc.employment_income.count@E14001355", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db966c7d647147b3d70507f0" + }, + { + "name": "hmrc.employment_income.count@E14001356", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43d01ab38ad0fd4d00010e20" + }, + { + "name": "hmrc.employment_income.count@E14001357", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b83e60caba83bdf1d429408a" + }, + { + "name": "hmrc.employment_income.count@E14001358", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e334cf718c16b61cd748ac75" + }, + { + "name": "hmrc.employment_income.count@E14001359", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3375715467143a649950c8" + }, + { + "name": "hmrc.employment_income.count@E14001360", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3c25a94838ecf8e510435cc" + }, + { + "name": "hmrc.employment_income.count@E14001361", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_55ff846b8643b23a424d4f14" + }, + { + "name": "hmrc.employment_income.count@E14001362", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ec71731aa48e9fe9ede43db" + }, + { + "name": "hmrc.employment_income.count@E14001363", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0407c63e1cfade5f306fdb7a" + }, + { + "name": "hmrc.employment_income.count@E14001364", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecea231f71f0ce4da785a913" + }, + { + "name": "hmrc.employment_income.count@E14001365", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f7b497453033b8e328d01bd" + }, + { + "name": "hmrc.employment_income.count@E14001366", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aafe9295fd3b47867ca9a5e3" + }, + { + "name": "hmrc.employment_income.count@E14001367", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06c05f676769cadafa51da56" + }, + { + "name": "hmrc.employment_income.count@E14001368", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8862d9fce412ac257b20dd2" + }, + { + "name": "hmrc.employment_income.count@E14001369", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c014814596d64cca9f7d12b" + }, + { + "name": "hmrc.employment_income.count@E14001370", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4127ff16d769ddda550930" + }, + { + "name": "hmrc.employment_income.count@E14001371", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_099ed86944b1aebef0b36647" + }, + { + "name": "hmrc.employment_income.count@E14001372", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2188a6e1296344056455fd8b" + }, + { + "name": "hmrc.employment_income.count@E14001373", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c411c588dfabaeb1a7db5c27" + }, + { + "name": "hmrc.employment_income.count@E14001374", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_390a678c2f31b349f69388b8" + }, + { + "name": "hmrc.employment_income.count@E14001375", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01aaa07257af513f4d8f4f7c" + }, + { + "name": "hmrc.employment_income.count@E14001376", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f68706e97eb7550497f8f5" + }, + { + "name": "hmrc.employment_income.count@E14001377", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3eb9aa4ee06d66e84276746" + }, + { + "name": "hmrc.employment_income.count@E14001378", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16997e91a928086d1312d831" + }, + { + "name": "hmrc.employment_income.count@E14001379", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3adae4830ca8ea8eed226eb5" + }, + { + "name": "hmrc.employment_income.count@E14001380", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ccccd59142a1602d473798c" + }, + { + "name": "hmrc.employment_income.count@E14001381", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_701f8a504d518bf917d2e3ae" + }, + { + "name": "hmrc.employment_income.count@E14001382", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7174aa819848517cbef84587" + }, + { + "name": "hmrc.employment_income.count@E14001383", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_264584bd9af6ceba7b43483d" + }, + { + "name": "hmrc.employment_income.count@E14001384", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e7102a62e236b499fe973e4" + }, + { + "name": "hmrc.employment_income.count@E14001385", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfdb482c25e88bf38f0232c1" + }, + { + "name": "hmrc.employment_income.count@E14001386", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b19286d83cdee82d2a9b67" + }, + { + "name": "hmrc.employment_income.count@E14001387", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ad2828195509ad9fdc4cd98" + }, + { + "name": "hmrc.employment_income.count@E14001388", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_650700b4ce8f7726f6a9d5b5" + }, + { + "name": "hmrc.employment_income.count@E14001389", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff3ac1a74d625363ed16e6db" + }, + { + "name": "hmrc.employment_income.count@E14001390", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_038c015e471539341f52b312" + }, + { + "name": "hmrc.employment_income.count@E14001391", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d22fae97810950211d50278" + }, + { + "name": "hmrc.employment_income.count@E14001392", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b63a371fe8e725766df4995" + }, + { + "name": "hmrc.employment_income.count@E14001393", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ba870bec410c4ef891983dc" + }, + { + "name": "hmrc.employment_income.count@E14001394", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_825b98066be563d67c273663" + }, + { + "name": "hmrc.employment_income.count@E14001395", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_25f95c09aaf03fc0700459af" + }, + { + "name": "hmrc.employment_income.count@E14001396", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_abf1b1e6702c08bc9d47b78e" + }, + { + "name": "hmrc.employment_income.count@E14001397", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bba371006f97d79debba384" + }, + { + "name": "hmrc.employment_income.count@E14001398", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33b8f24c7880b078e99b4b11" + }, + { + "name": "hmrc.employment_income.count@E14001399", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bcd4285bd86ed89880263f8" + }, + { + "name": "hmrc.employment_income.count@E14001400", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_065f395d72149fb7ace5f296" + }, + { + "name": "hmrc.employment_income.count@E14001401", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c963e50dc5e956f625a444ea" + }, + { + "name": "hmrc.employment_income.count@E14001402", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ae098d87b97bf23bc7af70" + }, + { + "name": "hmrc.employment_income.count@E14001403", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49361b45095c59d996d3ac7" + }, + { + "name": "hmrc.employment_income.count@E14001404", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_22f29cbb60483584769ced26" + }, + { + "name": "hmrc.employment_income.count@E14001405", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fc5d6cfa68d17c598335553" + }, + { + "name": "hmrc.employment_income.count@E14001406", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c11dfc66974871b4f3a6ac9" + }, + { + "name": "hmrc.employment_income.count@E14001407", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffa50b4d890fe1d938cecc0c" + }, + { + "name": "hmrc.employment_income.count@E14001408", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfd34388bb7db9a73ecb8d7f" + }, + { + "name": "hmrc.employment_income.count@E14001409", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_de460ef6a38757d04089e3a9" + }, + { + "name": "hmrc.employment_income.count@E14001410", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d60b8a44e7fec1cd35bb2c7e" + }, + { + "name": "hmrc.employment_income.count@E14001411", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24cc0a06b52951ca3b2b9c35" + }, + { + "name": "hmrc.employment_income.count@E14001412", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_83d9a056a0910d01156c0766" + }, + { + "name": "hmrc.employment_income.count@E14001413", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_97b59efba693b139f21e8d74" + }, + { + "name": "hmrc.employment_income.count@E14001414", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f85182a42b1951003007a964" + }, + { + "name": "hmrc.employment_income.count@E14001415", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a744e269508e04c73178c782" + }, + { + "name": "hmrc.employment_income.count@E14001416", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_890ddab46216d89e21e97421" + }, + { + "name": "hmrc.employment_income.count@E14001417", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ac66423cac16b9bf32b7b1d" + }, + { + "name": "hmrc.employment_income.count@E14001418", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5f6112be359137ca4252c91" + }, + { + "name": "hmrc.employment_income.count@E14001419", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e17acf5c5d9387ccb93cc21" + }, + { + "name": "hmrc.employment_income.count@E14001420", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_44734be88eb2747f45875140" + }, + { + "name": "hmrc.employment_income.count@E14001421", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f402ccfa6637ae8e47381e70" + }, + { + "name": "hmrc.employment_income.count@E14001422", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65e595b1359f67c751198bc8" + }, + { + "name": "hmrc.employment_income.count@E14001423", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15904f9f6e58e6fa7d751a19" + }, + { + "name": "hmrc.employment_income.count@E14001424", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aba01f92099d5fa13f84a5e4" + }, + { + "name": "hmrc.employment_income.count@E14001425", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1de723a669fd75d203e8fef0" + }, + { + "name": "hmrc.employment_income.count@E14001426", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a31d8d8d8a4b562f4ddd1b3" + }, + { + "name": "hmrc.employment_income.count@E14001427", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0addbe7c238c8095b8032b4c" + }, + { + "name": "hmrc.employment_income.count@E14001428", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84866c4d7731adbbccae966d" + }, + { + "name": "hmrc.employment_income.count@E14001429", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_00f1f87428a38e82a8a03a22" + }, + { + "name": "hmrc.employment_income.count@E14001430", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8f6a4d7b62ed4f2dfdf3bde" + }, + { + "name": "hmrc.employment_income.count@E14001431", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93f9744d2c041a5c3c95c561" + }, + { + "name": "hmrc.employment_income.count@E14001432", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58831c76af2c499799a02ed8" + }, + { + "name": "hmrc.employment_income.count@E14001433", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f2aba53e82ce72f433a5c2f" + }, + { + "name": "hmrc.employment_income.count@E14001434", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef5bdd90ab1ca6386351c1e" + }, + { + "name": "hmrc.employment_income.count@E14001435", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_107e3aa4fa71f8db8bc302d5" + }, + { + "name": "hmrc.employment_income.count@E14001436", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd3f117e5d112d52f6596803" + }, + { + "name": "hmrc.employment_income.count@E14001437", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68f219d9f7c4658adfe47417" + }, + { + "name": "hmrc.employment_income.count@E14001438", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7399e36dfbb2d8b43de5feed" + }, + { + "name": "hmrc.employment_income.count@E14001439", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_993d2f23c412ffcae0e4a6f0" + }, + { + "name": "hmrc.employment_income.count@E14001440", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf0c0842ccaaff9cd4cd1e13" + }, + { + "name": "hmrc.employment_income.count@E14001441", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcd9ffc6af17f5db3982b8f3" + }, + { + "name": "hmrc.employment_income.count@E14001442", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f74d6e91f7fddf752e9c3761" + }, + { + "name": "hmrc.employment_income.count@E14001443", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6039b98ba1cfdbdeb192b887" + }, + { + "name": "hmrc.employment_income.count@E14001444", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79e1abbc59966a151b6f2ffb" + }, + { + "name": "hmrc.employment_income.count@E14001445", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5a23e2010ef43de77b24676" + }, + { + "name": "hmrc.employment_income.count@E14001446", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38e00d9134bc1f8f6597ccfd" + }, + { + "name": "hmrc.employment_income.count@E14001447", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26364febec1d31b96df8485e" + }, + { + "name": "hmrc.employment_income.count@E14001448", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6274982d11523b71755976e3" + }, + { + "name": "hmrc.employment_income.count@E14001449", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c99b79cec8dad23e9ec81fa" + }, + { + "name": "hmrc.employment_income.count@E14001450", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_758163d94a5b9c040bd8e214" + }, + { + "name": "hmrc.employment_income.count@E14001451", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_141f5e86cc107c2fce58517d" + }, + { + "name": "hmrc.employment_income.count@E14001452", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a60728fd5cf9be1bac6dfe0f" + }, + { + "name": "hmrc.employment_income.count@E14001453", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52c3a568d7e05090759ea4cd" + }, + { + "name": "hmrc.employment_income.count@E14001454", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e94e35d7ca4752e81c9c930" + }, + { + "name": "hmrc.employment_income.count@E14001455", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcaaa38a30e0e34b1e39be01" + }, + { + "name": "hmrc.employment_income.count@E14001456", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5035ab5ccf3f985feca508fd" + }, + { + "name": "hmrc.employment_income.count@E14001457", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_704c6f3405c693d23e6807a4" + }, + { + "name": "hmrc.employment_income.count@E14001458", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_904e05e6e4d4c4af63b8e052" + }, + { + "name": "hmrc.employment_income.count@E14001459", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95985e4f0d5205efd5d9b39" + }, + { + "name": "hmrc.employment_income.count@E14001460", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_544ba0d588ddf7275ec18471" + }, + { + "name": "hmrc.employment_income.count@E14001461", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce048ea1b92a5e06dfd725a6" + }, + { + "name": "hmrc.employment_income.count@E14001462", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee5780eb16158d09fe5e1adb" + }, + { + "name": "hmrc.employment_income.count@E14001463", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78074e9c55d0d8ab42e730a" + }, + { + "name": "hmrc.employment_income.count@E14001464", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_688738615d6a452a8ac53a13" + }, + { + "name": "hmrc.employment_income.count@E14001465", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d444bad4faf5fb1d7c8db1" + }, + { + "name": "hmrc.employment_income.count@E14001466", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0a7123b187bef2a777cf506" + }, + { + "name": "hmrc.employment_income.count@E14001467", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ea82328567b705f49bbd216" + }, + { + "name": "hmrc.employment_income.count@E14001468", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e18dc1b0dacde2fc8190493b" + }, + { + "name": "hmrc.employment_income.count@E14001469", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7096723f5eb52e18bbac1083" + }, + { + "name": "hmrc.employment_income.count@E14001470", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61aebc2700a18f94c6ae76cd" + }, + { + "name": "hmrc.employment_income.count@E14001471", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c18fd58b69c1b9cc4eb05f1" + }, + { + "name": "hmrc.employment_income.count@E14001472", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0aaec3bb44f3416070e6861" + }, + { + "name": "hmrc.employment_income.count@E14001473", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a13491c9d73d0f975f639582" + }, + { + "name": "hmrc.employment_income.count@E14001474", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bd1f5c00dcb6c05e08221eb" + }, + { + "name": "hmrc.employment_income.count@E14001475", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdc335cf40ce5fc53e3bbdb0" + }, + { + "name": "hmrc.employment_income.count@E14001476", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_52a18e28faebec41bd41cc74" + }, + { + "name": "hmrc.employment_income.count@E14001477", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e89aa2927d9a75deeb21658a" + }, + { + "name": "hmrc.employment_income.count@E14001478", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b2f418c12d565c32ebc4b13" + }, + { + "name": "hmrc.employment_income.count@E14001479", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9026c941c7429295b64ae97d" + }, + { + "name": "hmrc.employment_income.count@E14001480", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_882955c3808e68000367022d" + }, + { + "name": "hmrc.employment_income.count@E14001481", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_319b012d317bc3c951bc27d9" + }, + { + "name": "hmrc.employment_income.count@E14001482", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_64188dbc412f1ebf8b4f6cc5" + }, + { + "name": "hmrc.employment_income.count@E14001483", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_be5622bae96bbac1d78bf577" + }, + { + "name": "hmrc.employment_income.count@E14001484", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_645736eda59b03aded340334" + }, + { + "name": "hmrc.employment_income.count@E14001485", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81770cc5e3fc03e485fb3ec9" + }, + { + "name": "hmrc.employment_income.count@E14001486", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_da2defc0e89ead78e31e9b02" + }, + { + "name": "hmrc.employment_income.count@E14001487", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_13bf2c274398b17503c8765c" + }, + { + "name": "hmrc.employment_income.count@E14001488", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57a75ed7e4fc08089144ca4b" + }, + { + "name": "hmrc.employment_income.count@E14001489", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3946c2066fab7082281623c2" + }, + { + "name": "hmrc.employment_income.count@E14001490", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b317627a73d6031a306fcdb" + }, + { + "name": "hmrc.employment_income.count@E14001491", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_407344da337b42e144a4623c" + }, + { + "name": "hmrc.employment_income.count@E14001492", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2508b0345b0624f28a6bba71" + }, + { + "name": "hmrc.employment_income.count@E14001493", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d607c4a73fd7cf4d4ff1ae2" + }, + { + "name": "hmrc.employment_income.count@E14001494", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1de8306f983e6cca8956c82e" + }, + { + "name": "hmrc.employment_income.count@E14001495", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_788ab0067cce2af6dfaf46a9" + }, + { + "name": "hmrc.employment_income.count@E14001496", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20d9d301fec7095fe7f8abe7" + }, + { + "name": "hmrc.employment_income.count@E14001497", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b60de17684336f81f4dcd7f0" + }, + { + "name": "hmrc.employment_income.count@E14001498", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5316fc13e7dedcf06e1c812" + }, + { + "name": "hmrc.employment_income.count@E14001499", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_66fd9aeed6ea2fc94aa6dd91" + }, + { + "name": "hmrc.employment_income.count@E14001500", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03f800447fcee4e006b9b35" + }, + { + "name": "hmrc.employment_income.count@E14001501", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70783ae20ea89976463344e3" + }, + { + "name": "hmrc.employment_income.count@E14001502", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_490e87223d6320e30800322c" + }, + { + "name": "hmrc.employment_income.count@E14001503", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c28f95bae5e91633d90c666" + }, + { + "name": "hmrc.employment_income.count@E14001504", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b33b2d85078398f8baf2f50b" + }, + { + "name": "hmrc.employment_income.count@E14001505", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_74ea82eb9bf9033ea037187c" + }, + { + "name": "hmrc.employment_income.count@E14001506", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_371d9775da4fb8bf6764c54d" + }, + { + "name": "hmrc.employment_income.count@E14001507", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e4d7ab3ad490f41763898f1" + }, + { + "name": "hmrc.employment_income.count@E14001508", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5de20e3fe2dc10157c30b77" + }, + { + "name": "hmrc.employment_income.count@E14001509", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cbe769fbf65add83a2e3517" + }, + { + "name": "hmrc.employment_income.count@E14001510", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e606aaa7e2a31281cbee6d1" + }, + { + "name": "hmrc.employment_income.count@E14001511", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d2c800fd477acffe5e6bfc9" + }, + { + "name": "hmrc.employment_income.count@E14001512", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a700d88b54334ba202200391" + }, + { + "name": "hmrc.employment_income.count@E14001513", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65f979474ade99e160417d26" + }, + { + "name": "hmrc.employment_income.count@E14001514", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3778718a9600bda948c048c5" + }, + { + "name": "hmrc.employment_income.count@E14001515", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2de5352674dc8b2be45da62" + }, + { + "name": "hmrc.employment_income.count@E14001516", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec218d9763c153b04d8740d2" + }, + { + "name": "hmrc.employment_income.count@E14001517", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84eb31344363babdad9b482a" + }, + { + "name": "hmrc.employment_income.count@E14001518", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05cfdff4dfa10626d576c81d" + }, + { + "name": "hmrc.employment_income.count@E14001519", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dffcda31debbc03f3cc860f9" + }, + { + "name": "hmrc.employment_income.count@E14001520", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0424143f43b821958579c339" + }, + { + "name": "hmrc.employment_income.count@E14001521", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b419cb6de2f09139cca040c" + }, + { + "name": "hmrc.employment_income.count@E14001522", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4879d9079fdd07968c547990" + }, + { + "name": "hmrc.employment_income.count@E14001523", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_236a2a03408ec6c6afbf1f28" + }, + { + "name": "hmrc.employment_income.count@E14001524", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f7590776cf819ec7fc526d3" + }, + { + "name": "hmrc.employment_income.count@E14001525", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 60000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_680ffa2ad8a1a53ac9ce37d4" + }, + { + "name": "hmrc.employment_income.count@E14001526", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4be7c2e32cd7e09e0d1494ae" + }, + { + "name": "hmrc.employment_income.count@E14001527", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cd7de13e2447ffff021d51f" + }, + { + "name": "hmrc.employment_income.count@E14001528", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_038e8fcdef50bcee9e5b484e" + }, + { + "name": "hmrc.employment_income.count@E14001529", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05808888a8209c6611403753" + }, + { + "name": "hmrc.employment_income.count@E14001530", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61ce1918b63c35d9a250b2c0" + }, + { + "name": "hmrc.employment_income.count@E14001531", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4560f26449ce6d29e22c93f" + }, + { + "name": "hmrc.employment_income.count@E14001532", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4191736a3130ecf11652f70" + }, + { + "name": "hmrc.employment_income.count@E14001533", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23c7fdec0a26148e3c6de2f4" + }, + { + "name": "hmrc.employment_income.count@E14001534", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_654a69510375295a38042759" + }, + { + "name": "hmrc.employment_income.count@E14001535", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad702264b44157f4af96a73f" + }, + { + "name": "hmrc.employment_income.count@E14001536", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2542b4327ad4200776ad05e" + }, + { + "name": "hmrc.employment_income.count@E14001537", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_716f72c03342b3d09b194701" + }, + { + "name": "hmrc.employment_income.count@E14001538", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_15566f9991a1db8161e84192" + }, + { + "name": "hmrc.employment_income.count@E14001539", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_80e9a889d2f415031ba04fc0" + }, + { + "name": "hmrc.employment_income.count@E14001540", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_264472ab11a592c7d6a9cb9c" + }, + { + "name": "hmrc.employment_income.count@E14001541", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10a51457cc58cecd8bcda100" + }, + { + "name": "hmrc.employment_income.count@E14001542", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0433c2434a283e2fead0d124" + }, + { + "name": "hmrc.employment_income.count@E14001543", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_36ef27c9ddccc362e847dd96" + }, + { + "name": "hmrc.employment_income.count@E14001544", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_639b44f3d6d85ebd2e27dc6c" + }, + { + "name": "hmrc.employment_income.count@E14001545", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b2b6646482f4e9fa6aba61c" + }, + { + "name": "hmrc.employment_income.count@E14001546", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26f34eb944d72dc8fcafce63" + }, + { + "name": "hmrc.employment_income.count@E14001547", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f97ab909f1fbd78577aa0e" + }, + { + "name": "hmrc.employment_income.count@E14001548", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac9b81474c7ae156baabc217" + }, + { + "name": "hmrc.employment_income.count@E14001549", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43b5867c655b14eb7ec098dd" + }, + { + "name": "hmrc.employment_income.count@E14001550", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_23d8eccf3062e7601384f82d" + }, + { + "name": "hmrc.employment_income.count@E14001551", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e6e501a2a76ea1352f03a3f" + }, + { + "name": "hmrc.employment_income.count@E14001552", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bfa7790c9a92d606f5e54c2" + }, + { + "name": "hmrc.employment_income.count@E14001553", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cd531ec5b22f29efe087a61" + }, + { + "name": "hmrc.employment_income.count@E14001554", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b24978344100e116a5ec71f" + }, + { + "name": "hmrc.employment_income.count@E14001555", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_42a95cb8ed90afdbe99f8f97" + }, + { + "name": "hmrc.employment_income.count@E14001556", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef1b3fd651a00744c06ebac8" + }, + { + "name": "hmrc.employment_income.count@E14001557", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e807a737c11f44758f4e688" + }, + { + "name": "hmrc.employment_income.count@E14001558", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ff44a922d8a44d6f47c6045" + }, + { + "name": "hmrc.employment_income.count@E14001559", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3796962f779e9a98ef1102e2" + }, + { + "name": "hmrc.employment_income.count@E14001560", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d15ec4729be2914e3e2b2ebd" + }, + { + "name": "hmrc.employment_income.count@E14001561", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_60a5e8c3e9775f67068c4a5b" + }, + { + "name": "hmrc.employment_income.count@E14001562", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_701e0ed70b0a89c241b3f68c" + }, + { + "name": "hmrc.employment_income.count@E14001563", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfbddc6238ea48fa14214f3f" + }, + { + "name": "hmrc.employment_income.count@E14001564", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_575d3079138bb94bd0f6d850" + }, + { + "name": "hmrc.employment_income.count@E14001565", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_337a3f91da4a110dccfb6e2b" + }, + { + "name": "hmrc.employment_income.count@E14001566", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e1bbc2ea661213a2a14836a" + }, + { + "name": "hmrc.employment_income.count@E14001567", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a4f3bfe4db1e2e2d5989cf8" + }, + { + "name": "hmrc.employment_income.count@E14001568", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f835d747bd7dd5ff1d72b2c7" + }, + { + "name": "hmrc.employment_income.count@E14001569", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ce8aa134bd3fcf807929510" + }, + { + "name": "hmrc.employment_income.count@E14001570", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8aead415aacb20480fb2195" + }, + { + "name": "hmrc.employment_income.count@E14001571", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4819472844868362ee5d1698" + }, + { + "name": "hmrc.employment_income.count@E14001572", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_88d35d364fad180e38395aa7" + }, + { + "name": "hmrc.employment_income.count@E14001573", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57cf3f594142ea84a5d2619f" + }, + { + "name": "hmrc.employment_income.count@E14001574", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e3c4b0314380fc620968717" + }, + { + "name": "hmrc.employment_income.count@E14001575", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1c1db62a8a2ea7b1eb63ae4" + }, + { + "name": "hmrc.employment_income.count@E14001576", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb897f5e5d4d052482d7fa39" + }, + { + "name": "hmrc.employment_income.count@E14001577", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d15e2e37504aa0afda5583d" + }, + { + "name": "hmrc.employment_income.count@E14001578", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_61f0d7aff324628c842496cb" + }, + { + "name": "hmrc.employment_income.count@E14001579", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6daf47b5e62fe7db29f16df2" + }, + { + "name": "hmrc.employment_income.count@E14001580", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bc7622f92a7ca31175daf50" + }, + { + "name": "hmrc.employment_income.count@E14001581", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df8d00e3339c4e008047c681" + }, + { + "name": "hmrc.employment_income.count@E14001582", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_03feb046c20c7b62a2da0a97" + }, + { + "name": "hmrc.employment_income.count@E14001583", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_89ecb8bb578e6c518ac444a1" + }, + { + "name": "hmrc.employment_income.count@E14001584", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53ae0dad6f8d51641b1b15aa" + }, + { + "name": "hmrc.employment_income.count@E14001585", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_04a6cc0de1fe55f37fdaa22f" + }, + { + "name": "hmrc.employment_income.count@E14001586", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5722bf584fb80414ff95ba4" + }, + { + "name": "hmrc.employment_income.count@E14001587", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c833aed42db7e6de30ff5d1" + }, + { + "name": "hmrc.employment_income.count@E14001588", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_76d4868627764200607639f8" + }, + { + "name": "hmrc.employment_income.count@E14001589", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_413e99ec35355a76606d99d0" + }, + { + "name": "hmrc.employment_income.count@E14001590", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c7728e91b6769d737f872f2" + }, + { + "name": "hmrc.employment_income.count@E14001591", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab8db3f75015ef4834941c52" + }, + { + "name": "hmrc.employment_income.count@E14001592", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63ac693138eb959d9ccf25eb" + }, + { + "name": "hmrc.employment_income.count@E14001593", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5330c4f93e9c7fc20f8a795" + }, + { + "name": "hmrc.employment_income.count@E14001594", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67a5d31f769e7bc5c955acdb" + }, + { + "name": "hmrc.employment_income.count@E14001595", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eb5b1121eca600406588b90" + }, + { + "name": "hmrc.employment_income.count@E14001596", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d131afccf7d00ce294d6cc95" + }, + { + "name": "hmrc.employment_income.count@E14001597", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce1dd5cd2129282e53757af" + }, + { + "name": "hmrc.employment_income.count@E14001598", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b2a82b1b9dbbb3efcc59fa8" + }, + { + "name": "hmrc.employment_income.count@E14001599", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_36531ad03d125077b538c322" + }, + { + "name": "hmrc.employment_income.count@E14001600", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8821a6a0dad580a6b5fa255" + }, + { + "name": "hmrc.employment_income.count@E14001601", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96a3e0d2d098f1a16829ad54" + }, + { + "name": "hmrc.employment_income.count@E14001602", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b782beba5182b7f3f3a6a972" + }, + { + "name": "hmrc.employment_income.count@E14001603", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec08d0a92fcdcb48303ca51" + }, + { + "name": "hmrc.employment_income.count@E14001604", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_50883490929013f43970cd8d" + }, + { + "name": "hmrc.employment_income.count@E14001605", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e25fc0ea00615bd03bce5eff" + }, + { + "name": "hmrc.employment_income.count@N05000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b4091e32044a62d98dfea3b" + }, + { + "name": "hmrc.employment_income.count@N05000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1088807d708906c7a28df8f" + }, + { + "name": "hmrc.employment_income.count@N05000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2ca7a3ad1ddbe703c036ab7" + }, + { + "name": "hmrc.employment_income.count@N05000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_14cfa672fd01818a8a3d7235" + }, + { + "name": "hmrc.employment_income.count@N05000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_72073125c332095b3e580937" + }, + { + "name": "hmrc.employment_income.count@N05000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad6c926bc2e757cc03253786" + }, + { + "name": "hmrc.employment_income.count@N05000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_81774fd7b4d7e0a794633087" + }, + { + "name": "hmrc.employment_income.count@N05000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b95f9678d824cbba2286a32" + }, + { + "name": "hmrc.employment_income.count@N05000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a07f2c51a83a0099922c5366" + }, + { + "name": "hmrc.employment_income.count@N05000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d475126de77b02e6ea09a56d" + }, + { + "name": "hmrc.employment_income.count@N05000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f878bae7dbfb309adcb05448" + }, + { + "name": "hmrc.employment_income.count@N05000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda402a28b6e6da939d52722" + }, + { + "name": "hmrc.employment_income.count@N05000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_305436f0e6b12d8308b06681" + }, + { + "name": "hmrc.employment_income.count@N05000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8d93c98887a08737e44c49" + }, + { + "name": "hmrc.employment_income.count@N05000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95662775d12c8cea91c3b60" + }, + { + "name": "hmrc.employment_income.count@N05000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34faf16178640c641f95247d" + }, + { + "name": "hmrc.employment_income.count@N05000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_074c439985f1583ad7511696" + }, + { + "name": "hmrc.employment_income.count@N05000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a6a242e542c6f995ac27bbc" + }, + { + "name": "hmrc.employment_income.count@S14000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24d55bbc5b9b79d971fb1dee" + }, + { + "name": "hmrc.employment_income.count@S14000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a2523d1ee457475a7f89b80" + }, + { + "name": "hmrc.employment_income.count@S14000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34afc4588fc408d9c52ff529" + }, + { + "name": "hmrc.employment_income.count@S14000048", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3702618b71eafb903219c0cb" + }, + { + "name": "hmrc.employment_income.count@S14000051", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc896b3213442eeda4325f03" + }, + { + "name": "hmrc.employment_income.count@S14000060", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d06e3ea40face8a8044a927" + }, + { + "name": "hmrc.employment_income.count@S14000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d06ff14df89734395cd4a268" + }, + { + "name": "hmrc.employment_income.count@S14000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6164a48f97bf47ffffac54" + }, + { + "name": "hmrc.employment_income.count@S14000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_315e5c6e8d4d7ab306593118" + }, + { + "name": "hmrc.employment_income.count@S14000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dbb6164be8fe9184f086891" + }, + { + "name": "hmrc.employment_income.count@S14000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9988d23ef36b276b48f6a709" + }, + { + "name": "hmrc.employment_income.count@S14000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8f5fbcd33b12d6f2c82b2f8" + }, + { + "name": "hmrc.employment_income.count@S14000067", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82e03e434cdb9114596a85bc" + }, + { + "name": "hmrc.employment_income.count@S14000068", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fde3ddd3b0f813ccd597290" + }, + { + "name": "hmrc.employment_income.count@S14000069", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_63c869c2478577bdcc4caaeb" + }, + { + "name": "hmrc.employment_income.count@S14000070", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b591169756b3513b8a0cdcf3" + }, + { + "name": "hmrc.employment_income.count@S14000071", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d68dd0a940c4fc39ff988411" + }, + { + "name": "hmrc.employment_income.count@S14000072", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0aa6f3953e091eed7de8301" + }, + { + "name": "hmrc.employment_income.count@S14000073", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_721dc88da7f01e98f42229d7" + }, + { + "name": "hmrc.employment_income.count@S14000074", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ca39dcfcec90bb69b511434" + }, + { + "name": "hmrc.employment_income.count@S14000075", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2380015bb41d003b73bac6da" + }, + { + "name": "hmrc.employment_income.count@S14000076", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fa0fdc522649cf945b99408" + }, + { + "name": "hmrc.employment_income.count@S14000077", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b510091716b62830c84eb283" + }, + { + "name": "hmrc.employment_income.count@S14000078", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_949020bdd17558643de092f3" + }, + { + "name": "hmrc.employment_income.count@S14000079", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6988aa678cb0659fb70514d" + }, + { + "name": "hmrc.employment_income.count@S14000080", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51be8bd26fe01a1d0c0bfb33" + }, + { + "name": "hmrc.employment_income.count@S14000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e239b1579143b5c4ce110a61" + }, + { + "name": "hmrc.employment_income.count@S14000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_797b51723dc3c2a800e4b678" + }, + { + "name": "hmrc.employment_income.count@S14000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_702ee422a224507d0244eee2" + }, + { + "name": "hmrc.employment_income.count@S14000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6138030dbb172f0ef27e280e" + }, + { + "name": "hmrc.employment_income.count@S14000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9e0e7d903fac972372dd88d" + }, + { + "name": "hmrc.employment_income.count@S14000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6094fbf21f54dcbdd8880c9f" + }, + { + "name": "hmrc.employment_income.count@S14000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d9a37f9974f4aa3827b7536" + }, + { + "name": "hmrc.employment_income.count@S14000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bc88373892d216015e17230" + }, + { + "name": "hmrc.employment_income.count@S14000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c731d8d414068ea5886eb04d" + }, + { + "name": "hmrc.employment_income.count@S14000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_09a31f018d54ae129bfd56de" + }, + { + "name": "hmrc.employment_income.count@S14000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_293488b36fd2f9db47e15b1a" + }, + { + "name": "hmrc.employment_income.count@S14000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6c5287f4ee4f70bc08f32e8" + }, + { + "name": "hmrc.employment_income.count@S14000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5e8afe4f699bc1877075f0d" + }, + { + "name": "hmrc.employment_income.count@S14000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_84d0033ff09dbbea312117b3" + }, + { + "name": "hmrc.employment_income.count@S14000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8ca78befb957071789d92a" + }, + { + "name": "hmrc.employment_income.count@S14000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73682d4ddfd86ed4bb06400f" + }, + { + "name": "hmrc.employment_income.count@S14000097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_896e5759343f215a936b8d68" + }, + { + "name": "hmrc.employment_income.count@S14000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9856c41f5e24ad28d9517920" + }, + { + "name": "hmrc.employment_income.count@S14000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3706a3f557157c5c58c01a88" + }, + { + "name": "hmrc.employment_income.count@S14000100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a3e4fcf9df7d31815fb7b56" + }, + { + "name": "hmrc.employment_income.count@S14000101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_62342accbc3b81baf03d3e24" + }, + { + "name": "hmrc.employment_income.count@S14000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa2450cb9ab0f6e796a1f8e3" + }, + { + "name": "hmrc.employment_income.count@S14000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0ffa761f183f38b79155bd1" + }, + { + "name": "hmrc.employment_income.count@S14000104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d0032cf575c1ba8aec11eba" + }, + { + "name": "hmrc.employment_income.count@S14000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_544d546e571713f05a9e4270" + }, + { + "name": "hmrc.employment_income.count@S14000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0db6ad89513556273a6b445" + }, + { + "name": "hmrc.employment_income.count@S14000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3fbde0c1f0924179a28e6da" + }, + { + "name": "hmrc.employment_income.count@S14000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb11ddf42dbe7f95fd238b1" + }, + { + "name": "hmrc.employment_income.count@S14000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0b79b673a1bf026925be49c" + }, + { + "name": "hmrc.employment_income.count@S14000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_151e778a77f20aaa810ad0cc" + }, + { + "name": "hmrc.employment_income.count@S14000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e97b0124262602ae9329d84d" + }, + { + "name": "hmrc.employment_income.count@W07000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_eca491b2d384ce633b11e3c4" + }, + { + "name": "hmrc.employment_income.count@W07000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca453b9a9363a600545d0779" + }, + { + "name": "hmrc.employment_income.count@W07000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7537aff2fc48044ab9336413" + }, + { + "name": "hmrc.employment_income.count@W07000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3172fe67cc3121658e4d4587" + }, + { + "name": "hmrc.employment_income.count@W07000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1dbe9bcb4e8ba3aa2083a1a" + }, + { + "name": "hmrc.employment_income.count@W07000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c981c377d66faa3616aa7fb6" + }, + { + "name": "hmrc.employment_income.count@W07000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5411d88b331466018d62d160" + }, + { + "name": "hmrc.employment_income.count@W07000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45a453ed22ee6b8e33c9a38c" + }, + { + "name": "hmrc.employment_income.count@W07000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf544e7c30e131572e937fc4" + }, + { + "name": "hmrc.employment_income.count@W07000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5e4757f6a320bd88859b095" + }, + { + "name": "hmrc.employment_income.count@W07000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd90b37cce312494df301c12" + }, + { + "name": "hmrc.employment_income.count@W07000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_963a66486d27be425bf50c72" + }, + { + "name": "hmrc.employment_income.count@W07000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f01338f0894dc85995a33b7e" + }, + { + "name": "hmrc.employment_income.count@W07000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_533d53e6bcbbe72d3dad05d8" + }, + { + "name": "hmrc.employment_income.count@W07000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_20d7debea986053e6bfed3af" + }, + { + "name": "hmrc.employment_income.count@W07000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a71ff30cea9178167c061c1" + }, + { + "name": "hmrc.employment_income.count@W07000097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ab34dcb78778f23dc4624ec" + }, + { + "name": "hmrc.employment_income.count@W07000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_262679636667f8da74cef5b7" + }, + { + "name": "hmrc.employment_income.count@W07000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_328ac78067649889a8dbc7b7" + }, + { + "name": "hmrc.employment_income.count@W07000100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f65febe9ce467835710a2f20" + }, + { + "name": "hmrc.employment_income.count@W07000101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4fee34f2b6d89994ae83d8f" + }, + { + "name": "hmrc.employment_income.count@W07000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19e801a877d54b9d8ca139ab" + }, + { + "name": "hmrc.employment_income.count@W07000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ae9cf8dede7535ce543cc52" + }, + { + "name": "hmrc.employment_income.count@W07000104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5206f1a8c8fda6fb030f2ea7" + }, + { + "name": "hmrc.employment_income.count@W07000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d21529bc7ac5c44fa60d2276" + }, + { + "name": "hmrc.employment_income.count@W07000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fc68f40df17ea43f2ccf0d0" + }, + { + "name": "hmrc.employment_income.count@W07000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_723db6193b46c7f307ca68df" + }, + { + "name": "hmrc.employment_income.count@W07000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c4d07db4cff44b50ba8b839" + }, + { + "name": "hmrc.employment_income.count@W07000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17742c8e33723bcc2d69c7bc" + }, + { + "name": "hmrc.employment_income.count@W07000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d999ec5eb1f0a355171804e0" + }, + { + "name": "hmrc.employment_income.count@W07000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16acf7e582268f237cf3c476" + }, + { + "name": "hmrc.employment_income.count@W07000112", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cbdaca93cbf556d2476ce52" + } + ] + }, + "local_authority": { + "status": "partially_active", + "candidate_count": 361, + "candidates": [ + { + "name": "hmrc.employment_income.count@E06000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_17eefb9a14d49ef34e41486e" + }, + { + "name": "hmrc.employment_income.count@E06000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_298a68c4859d6257ba0941cc" + }, + { + "name": "hmrc.employment_income.count@E06000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_566a06a1cb1af45fde274f68" + }, + { + "name": "hmrc.employment_income.count@E06000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f618570fe5da1929b2d654" + }, + { + "name": "hmrc.employment_income.count@E06000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2b4535d1feaf5436fd92dc6" + }, + { + "name": "hmrc.employment_income.count@E06000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_947e05d8bc6c524ccb48a5a7" + }, + { + "name": "hmrc.employment_income.count@E06000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 93000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0ad9bc73295b20016936c8f" + }, + { + "name": "hmrc.employment_income.count@E06000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cae058d998b5851fa86b94b1" + }, + { + "name": "hmrc.employment_income.count@E06000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f1eab38ef375bdab5912ada" + }, + { + "name": "hmrc.employment_income.count@E06000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 102000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf32578aaf8757419fc6309" + }, + { + "name": "hmrc.employment_income.count@E06000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 138000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_964e89c7fb7791c0e9de6b2c" + }, + { + "name": "hmrc.employment_income.count@E06000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe695bdb2312fce54f23bd69" + }, + { + "name": "hmrc.employment_income.count@E06000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 70000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_937a03fd7ab3dfb41b44934b" + }, + { + "name": "hmrc.employment_income.count@E06000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_085985b09454985bee29c064" + }, + { + "name": "hmrc.employment_income.count@E06000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd9b218e843524855361584f" + }, + { + "name": "hmrc.employment_income.count@E06000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 135000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d287195a2876ed97eb64001" + }, + { + "name": "hmrc.employment_income.count@E06000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_252405f80ae8833313ae6b79" + }, + { + "name": "hmrc.employment_income.count@E06000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 108000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_348c5e169d68092dacbfad6f" + }, + { + "name": "hmrc.employment_income.count@E06000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffa4ba707b23280476b45e96" + }, + { + "name": "hmrc.employment_income.count@E06000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a45c89f2023b1ed92a134f8c" + }, + { + "name": "hmrc.employment_income.count@E06000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 97000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_716ab90c432fda243dab2549" + }, + { + "name": "hmrc.employment_income.count@E06000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d3711be495d7335b8ba8166" + }, + { + "name": "hmrc.employment_income.count@E06000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 210000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9dbbd31d17b3b980ed9c2b0" + }, + { + "name": "hmrc.employment_income.count@E06000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 90000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c484dbbf8c2f839c1efd459e" + }, + { + "name": "hmrc.employment_income.count@E06000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 135000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8108a35b422df60f8e5980f" + }, + { + "name": "hmrc.employment_income.count@E06000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 109000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc16b5ffd38ff780c1c0f188" + }, + { + "name": "hmrc.employment_income.count@E06000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.employment_income.count@E06000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 102000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cf70004c4c9663fdf45b6e4" + }, + { + "name": "hmrc.employment_income.count@E06000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 88000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cb46408fd9b8487586b7dfa" + }, + { + "name": "hmrc.employment_income.count@E06000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 86000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c59b20bbe738292ecbe350fb" + }, + { + "name": "hmrc.employment_income.count@E06000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 69000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a1b1fc46181e42494d2f573" + }, + { + "name": "hmrc.employment_income.count@E06000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 75000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48c214339a8674856376a499" + }, + { + "name": "hmrc.employment_income.count@E06000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 115000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_859707974f4847b6bf4fd59e" + }, + { + "name": "hmrc.employment_income.count@E06000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_58427a506be4cc4cd401de82" + }, + { + "name": "hmrc.employment_income.count@E06000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5589932d1bc08d077f825506" + }, + { + "name": "hmrc.employment_income.count@E06000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c52a7275abc17122e51f4465" + }, + { + "name": "hmrc.employment_income.count@E06000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7445e5fec7d2a167e631099" + }, + { + "name": "hmrc.employment_income.count@E06000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9418f29dec029febca801154" + }, + { + "name": "hmrc.employment_income.count@E06000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 86000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d008c65dcfe66fb8eae8b6f" + }, + { + "name": "hmrc.employment_income.count@E06000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 132000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da861308efd002f6f3ad61d" + }, + { + "name": "hmrc.employment_income.count@E06000043", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 115000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_862534527122e3e9d26dd8ed" + }, + { + "name": "hmrc.employment_income.count@E06000044", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 81000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d177624568586ee7671957d" + }, + { + "name": "hmrc.employment_income.count@E06000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 98000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f83b0f9d3b34e3b549ed6a" + }, + { + "name": "hmrc.employment_income.count@E06000046", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98f88cb64ac69c740e2e9a0d" + }, + { + "name": "hmrc.employment_income.count@E06000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 189000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2c8f85635113e2c02a476dc" + }, + { + "name": "hmrc.employment_income.count@E06000049", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 171000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e7b33a8214a5d2a58ad0b4b" + }, + { + "name": "hmrc.employment_income.count@E06000050", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 144000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98d561d7a59cab06a5557294" + }, + { + "name": "hmrc.employment_income.count@E06000051", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 130000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff8a33367f7607cc77829be2" + }, + { + "name": "hmrc.employment_income.count@E06000052", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 205000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5280ce5c866fa578f9f5a30f" + }, + { + "name": "hmrc.employment_income.count@E06000053", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "spi_la_target_measure_coverage_absent", + "signed_rationale": "HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows." + }, + { + "name": "hmrc.employment_income.count@E06000054", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 214000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c37f5b254d1c5c7835754859" + }, + { + "name": "hmrc.employment_income.count@E06000055", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 79000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c32a2042d22f07d61da44b1" + }, + { + "name": "hmrc.employment_income.count@E06000056", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 138000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7c8d25bb24976b6c62fb1fd" + }, + { + "name": "hmrc.employment_income.count@E06000057", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 124000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9356091ea51587f8dca17568" + }, + { + "name": "hmrc.employment_income.count@E06000058", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 155000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e01ce2e49b157a6b470c31db" + }, + { + "name": "hmrc.employment_income.count@E06000059", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 142000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dbe199c4a932d91376b72f8" + }, + { + "name": "hmrc.employment_income.count@E06000060", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 249000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a0991787c5d9e1eac7830c8" + }, + { + "name": "hmrc.employment_income.count@E06000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 155000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f19c4001f2f9aaaca47fbcd2" + }, + { + "name": "hmrc.employment_income.count@E06000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 188000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ee711bae6e5ac6c951245b" + }, + { + "name": "hmrc.employment_income.count@E06000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 112000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7104544d99e3c96ba1b88f5" + }, + { + "name": "hmrc.employment_income.count@E06000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 95000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa2b0f4fd38829021a090e71" + }, + { + "name": "hmrc.employment_income.count@E06000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 254000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d9f38c232c35e3aec849042" + }, + { + "name": "hmrc.employment_income.count@E06000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 217000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51592f0c317880917be44d61" + }, + { + "name": "hmrc.employment_income.count@E07000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5e18e80f4bd02182d663d28" + }, + { + "name": "hmrc.employment_income.count@E07000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35b55b74cd8025acc184ed2d" + }, + { + "name": "hmrc.employment_income.count@E07000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d24eafa01cf8955772976bbd" + }, + { + "name": "hmrc.employment_income.count@E07000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 82000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f8da14792e6d339ac0554bf" + }, + { + "name": "hmrc.employment_income.count@E07000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_95aaff1b063117df91cf2c3f" + }, + { + "name": "hmrc.employment_income.count@E07000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_117834cef40f0072083dd2a6" + }, + { + "name": "hmrc.employment_income.count@E07000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_79d7bdbec57cd41f775e529d" + }, + { + "name": "hmrc.employment_income.count@E07000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_90c3dfc333de36a1bfba7b2e" + }, + { + "name": "hmrc.employment_income.count@E07000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_634bd0f1cdc4549c9eeb395c" + }, + { + "name": "hmrc.employment_income.count@E07000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_799b3156f230557455c64dc5" + }, + { + "name": "hmrc.employment_income.count@E07000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_96755516dc78553390b01346" + }, + { + "name": "hmrc.employment_income.count@E07000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ff053419560e6e61c440ea8" + }, + { + "name": "hmrc.employment_income.count@E07000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85d6f01a524308f04eb19bb" + }, + { + "name": "hmrc.employment_income.count@E07000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7981824ee19f4080e52e08ec" + }, + { + "name": "hmrc.employment_income.count@E07000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6020f3a7dc5c3ad35982a16a" + }, + { + "name": "hmrc.employment_income.count@E07000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_67d792343165ead2a854317b" + }, + { + "name": "hmrc.employment_income.count@E07000043", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_230ed7799905f1d7feaafa1d" + }, + { + "name": "hmrc.employment_income.count@E07000044", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9033b5528096c872eab391a" + }, + { + "name": "hmrc.employment_income.count@E07000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5cbd0d84d3d2668c6bc7312" + }, + { + "name": "hmrc.employment_income.count@E07000046", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_310b022638991129e03fe82b" + }, + { + "name": "hmrc.employment_income.count@E07000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b652c1bee3f67a1822cca34d" + }, + { + "name": "hmrc.employment_income.count@E07000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_53a5247e95e15c79fe113232" + }, + { + "name": "hmrc.employment_income.count@E07000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1392cc3ec020e894cd9300b5" + }, + { + "name": "hmrc.employment_income.count@E07000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_870522c63c3b52c23665cee8" + }, + { + "name": "hmrc.employment_income.count@E07000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9443e49c07b6284b621fdf12" + }, + { + "name": "hmrc.employment_income.count@E07000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 63000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc52a6362f45c871d30b6f74" + }, + { + "name": "hmrc.employment_income.count@E07000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_21efda36254148b70a5cf387" + }, + { + "name": "hmrc.employment_income.count@E07000067", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38ea4a70d71f7a02ee1825ca" + }, + { + "name": "hmrc.employment_income.count@E07000068", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb25b7673b949752777b29b3" + }, + { + "name": "hmrc.employment_income.count@E07000069", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b36e43299b45e5ff7766355" + }, + { + "name": "hmrc.employment_income.count@E07000070", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_49ce7a9501a142ab51bcee54" + }, + { + "name": "hmrc.employment_income.count@E07000071", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ad10eda148031ef429fa233" + }, + { + "name": "hmrc.employment_income.count@E07000072", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fdc6a76f1a97499cc7deeb9" + }, + { + "name": "hmrc.employment_income.count@E07000073", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ec8eefca79bcb6301ec8a95" + }, + { + "name": "hmrc.employment_income.count@E07000074", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_629b963bae70ff3ea1296fed" + }, + { + "name": "hmrc.employment_income.count@E07000075", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6aafa7ae5d590432d22fe4e" + }, + { + "name": "hmrc.employment_income.count@E07000076", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2025ba8c8d8fa2f5a13e6efe" + }, + { + "name": "hmrc.employment_income.count@E07000077", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5efc98e99cf606d5df4e1633" + }, + { + "name": "hmrc.employment_income.count@E07000078", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_371d09ffeb80dfacc75a8b35" + }, + { + "name": "hmrc.employment_income.count@E07000079", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9768f46a2ca1ee1185ea728" + }, + { + "name": "hmrc.employment_income.count@E07000080", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_56c2387e4d534c755fa96038" + }, + { + "name": "hmrc.employment_income.count@E07000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a60179b118c09ef0b353a473" + }, + { + "name": "hmrc.employment_income.count@E07000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9a0da0d3e9ee356ca6e82c8" + }, + { + "name": "hmrc.employment_income.count@E07000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_614de74a207f2ccf2ab23350" + }, + { + "name": "hmrc.employment_income.count@E07000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 89000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d733f0da7b3581cf31772d54" + }, + { + "name": "hmrc.employment_income.count@E07000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_59dbcc9246eeb13aa220061e" + }, + { + "name": "hmrc.employment_income.count@E07000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c97ee86d55cececce0e7a9c3" + }, + { + "name": "hmrc.employment_income.count@E07000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf0bb85a5d604cf43ae88a1b" + }, + { + "name": "hmrc.employment_income.count@E07000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b18ccffcc73c379541166997" + }, + { + "name": "hmrc.employment_income.count@E07000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_06ffc1a20a6b0eabef9eb952" + }, + { + "name": "hmrc.employment_income.count@E07000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5acf583566a4625e59269405" + }, + { + "name": "hmrc.employment_income.count@E07000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_46eb255783091a3e7149645b" + }, + { + "name": "hmrc.employment_income.count@E07000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2620b9acf0847611b8745879" + }, + { + "name": "hmrc.employment_income.count@E07000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 60000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_343d7fbe38b0c03c4cd11208" + }, + { + "name": "hmrc.employment_income.count@E07000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e77697c41a850c4a300a688a" + }, + { + "name": "hmrc.employment_income.count@E07000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b78b0da8c2de92c4d8f7e2" + }, + { + "name": "hmrc.employment_income.count@E07000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 69000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9e95dfb4d9f36f83f61020a" + }, + { + "name": "hmrc.employment_income.count@E07000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_566d9d1e5ba9985d377bb347" + }, + { + "name": "hmrc.employment_income.count@E07000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dcea3ac180d27312b44c6ef" + }, + { + "name": "hmrc.employment_income.count@E07000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5e6b27dbe76256ca789cb63" + }, + { + "name": "hmrc.employment_income.count@E07000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7379c0111d619a71bca79c" + }, + { + "name": "hmrc.employment_income.count@E07000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a8c16695bad43956486366b" + }, + { + "name": "hmrc.employment_income.count@E07000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9157cf348479d91a8461d339" + }, + { + "name": "hmrc.employment_income.count@E07000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45806f56c7557cfda20b1799" + }, + { + "name": "hmrc.employment_income.count@E07000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_42f4e5a9aece69a4db2e6930" + }, + { + "name": "hmrc.employment_income.count@E07000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9d1f14ea3d66281c3777615" + }, + { + "name": "hmrc.employment_income.count@E07000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 75000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ad289d6bdcb5649d67a61a9" + }, + { + "name": "hmrc.employment_income.count@E07000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6380bdaf132a3c292c1c5fb" + }, + { + "name": "hmrc.employment_income.count@E07000112", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a96c45e548a996c8ce681e5" + }, + { + "name": "hmrc.employment_income.count@E07000113", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0c0184ee8325401b2681993" + }, + { + "name": "hmrc.employment_income.count@E07000114", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bff2c5e52779313e5cd894ed" + }, + { + "name": "hmrc.employment_income.count@E07000115", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f3ce22b1849093a34bfa35a" + }, + { + "name": "hmrc.employment_income.count@E07000116", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_306def8fd277ff8c263eda3b" + }, + { + "name": "hmrc.employment_income.count@E07000117", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bde129a0e6ef8a590c6471a" + }, + { + "name": "hmrc.employment_income.count@E07000118", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe81cd23e8e3c4c1e50b2964" + }, + { + "name": "hmrc.employment_income.count@E07000119", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_11503c19790e664e6e01594f" + }, + { + "name": "hmrc.employment_income.count@E07000120", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e20e4d0b2479e7d77e37e5a0" + }, + { + "name": "hmrc.employment_income.count@E07000121", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3e094a7ce8897fab801ab02" + }, + { + "name": "hmrc.employment_income.count@E07000122", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b9f4b14cb793c56995873ca" + }, + { + "name": "hmrc.employment_income.count@E07000123", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e5ca5113ed2a21e99b88c59" + }, + { + "name": "hmrc.employment_income.count@E07000124", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffab1516120ad387d8d84660" + }, + { + "name": "hmrc.employment_income.count@E07000125", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_af149d475714bbae04124345" + }, + { + "name": "hmrc.employment_income.count@E07000126", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94d356ea5e27465c5fae6f85" + }, + { + "name": "hmrc.employment_income.count@E07000127", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2729fb7cf9f29d48a2edd3ec" + }, + { + "name": "hmrc.employment_income.count@E07000128", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a666e9b386acb5aad6fca5bb" + }, + { + "name": "hmrc.employment_income.count@E07000129", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef79fedf2e6d506b15ba0ebe" + }, + { + "name": "hmrc.employment_income.count@E07000130", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 75000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e035bf5083e55bbfdd76f55" + }, + { + "name": "hmrc.employment_income.count@E07000131", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_212721c57064fba35a1d5a4d" + }, + { + "name": "hmrc.employment_income.count@E07000132", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7443149a8fbc12fac21bf60b" + }, + { + "name": "hmrc.employment_income.count@E07000133", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e666011caccc87ec54b842a" + }, + { + "name": "hmrc.employment_income.count@E07000134", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9563e531cbd5a030fddeb12e" + }, + { + "name": "hmrc.employment_income.count@E07000135", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_86b4e47318c1f7f6986a14e8" + }, + { + "name": "hmrc.employment_income.count@E07000136", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_814c821977cce2b93b3fe410" + }, + { + "name": "hmrc.employment_income.count@E07000137", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2830cc35a262dee1ccebdacb" + }, + { + "name": "hmrc.employment_income.count@E07000138", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa1517a8b170bc9c4c67e7f8" + }, + { + "name": "hmrc.employment_income.count@E07000139", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40a8869e1f99254a2e88a17b" + }, + { + "name": "hmrc.employment_income.count@E07000140", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_592c6811113d093df5f94f91" + }, + { + "name": "hmrc.employment_income.count@E07000141", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d82510933c8475cf823ee787" + }, + { + "name": "hmrc.employment_income.count@E07000142", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c4421a25ae99ddc7be87da4" + }, + { + "name": "hmrc.employment_income.count@E07000143", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9497c6f5895d124efddbb2a" + }, + { + "name": "hmrc.employment_income.count@E07000144", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_223e50adacad77891a3f740d" + }, + { + "name": "hmrc.employment_income.count@E07000145", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_df66a2c3c682fc2f61855d18" + }, + { + "name": "hmrc.employment_income.count@E07000146", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_70516f1085932fa8ba2342fc" + }, + { + "name": "hmrc.employment_income.count@E07000147", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c976e5fc2e8ec0d554e15d94" + }, + { + "name": "hmrc.employment_income.count@E07000148", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fa3e3674ec9b6bbcf52d563" + }, + { + "name": "hmrc.employment_income.count@E07000149", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24391aa1c6202f2f77c36aa6" + }, + { + "name": "hmrc.employment_income.count@E07000170", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_27f13ac234787d78855dd272" + }, + { + "name": "hmrc.employment_income.count@E07000171", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8c49d02f056e2d969a062a6" + }, + { + "name": "hmrc.employment_income.count@E07000172", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f2b4dd8a4b8eb1067dbd037" + }, + { + "name": "hmrc.employment_income.count@E07000173", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_49faca52aeea173a684d6997" + }, + { + "name": "hmrc.employment_income.count@E07000174", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a450ef8a5b93b90f047f0a1" + }, + { + "name": "hmrc.employment_income.count@E07000175", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_940752f28120fa46e6e61199" + }, + { + "name": "hmrc.employment_income.count@E07000176", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_126e1dc7a999014f3e84bea9" + }, + { + "name": "hmrc.employment_income.count@E07000177", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 78000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dfad206f5ca84dbffb32330" + }, + { + "name": "hmrc.employment_income.count@E07000178", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b6c47e72bbfb17c8c73d03b" + }, + { + "name": "hmrc.employment_income.count@E07000179", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 67000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e3831e831708e11b0a4de8f" + }, + { + "name": "hmrc.employment_income.count@E07000180", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 67000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73f47b3e5ef0483fc601a5c4" + }, + { + "name": "hmrc.employment_income.count@E07000181", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_137e3fe658b3a19498c04719" + }, + { + "name": "hmrc.employment_income.count@E07000192", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae0a2e2353a3bd93b8808db5" + }, + { + "name": "hmrc.employment_income.count@E07000193", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_75cfae9294764cc315322699" + }, + { + "name": "hmrc.employment_income.count@E07000194", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_beb2a4dfbc70996ef180f2a3" + }, + { + "name": "hmrc.employment_income.count@E07000195", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_895d21c49958bc209c8839b4" + }, + { + "name": "hmrc.employment_income.count@E07000196", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1ebe0df283897b44e53029e" + }, + { + "name": "hmrc.employment_income.count@E07000197", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e862489eab485c3a3ffadca" + }, + { + "name": "hmrc.employment_income.count@E07000198", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19524016ae1afc15f85af96e" + }, + { + "name": "hmrc.employment_income.count@E07000199", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7ad9d4c9a6885a714c6a16c" + }, + { + "name": "hmrc.employment_income.count@E07000200", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e9f5d198d956c8698552dd5" + }, + { + "name": "hmrc.employment_income.count@E07000202", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ed95b725bd5594b451c5aa" + }, + { + "name": "hmrc.employment_income.count@E07000203", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c42d5e70f851c510523f839" + }, + { + "name": "hmrc.employment_income.count@E07000207", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a84d069413fb11453315bdff" + }, + { + "name": "hmrc.employment_income.count@E07000208", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d9464f687fd482a79ddbcf0" + }, + { + "name": "hmrc.employment_income.count@E07000209", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 66000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a9e3b33aef19eab71999c9d" + }, + { + "name": "hmrc.employment_income.count@E07000210", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0f0172ed190a8bf9ec90ac" + }, + { + "name": "hmrc.employment_income.count@E07000211", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c57a5f120d192419e1c97e50" + }, + { + "name": "hmrc.employment_income.count@E07000212", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c175236def892977bf2c17" + }, + { + "name": "hmrc.employment_income.count@E07000213", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d9fb55236aeee252887ee78" + }, + { + "name": "hmrc.employment_income.count@E07000214", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c5a67e11e97609b75e45538" + }, + { + "name": "hmrc.employment_income.count@E07000215", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_34cf4eba367bd9e9d4ce2531" + }, + { + "name": "hmrc.employment_income.count@E07000216", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5af3774b700b24b62437953" + }, + { + "name": "hmrc.employment_income.count@E07000217", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10cb5186828e6f9274085502" + }, + { + "name": "hmrc.employment_income.count@E07000218", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_26c86d3e3a1075486aa4d569" + }, + { + "name": "hmrc.employment_income.count@E07000219", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_51096703e1c2d3fbd55ca4e1" + }, + { + "name": "hmrc.employment_income.count@E07000220", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e808796d90fdeaf6e309166a" + }, + { + "name": "hmrc.employment_income.count@E07000221", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_98f919631bae5a392679012b" + }, + { + "name": "hmrc.employment_income.count@E07000222", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 67000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_efb4fde93d8d96c58131d751" + }, + { + "name": "hmrc.employment_income.count@E07000223", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33396907f3d3e0cb50c8b82c" + }, + { + "name": "hmrc.employment_income.count@E07000224", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_758f601112c7ada538b266bf" + }, + { + "name": "hmrc.employment_income.count@E07000225", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_41d3432c4c4cea29e4acc2de" + }, + { + "name": "hmrc.employment_income.count@E07000226", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_aff3651f85997a6ce363f12a" + }, + { + "name": "hmrc.employment_income.count@E07000227", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f0dce904e6de7694a128cbe" + }, + { + "name": "hmrc.employment_income.count@E07000228", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8c1e1169d5baa7ae7b9aead" + }, + { + "name": "hmrc.employment_income.count@E07000229", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d931545357e0b5741f1ebbf3" + }, + { + "name": "hmrc.employment_income.count@E07000234", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_415e50be533c7d1f30747e9d" + }, + { + "name": "hmrc.employment_income.count@E07000235", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_806a848017ef75ab39bd6b86" + }, + { + "name": "hmrc.employment_income.count@E07000236", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b644479e4150fd0275b1ee9" + }, + { + "name": "hmrc.employment_income.count@E07000237", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cc3d57bc07cac8c2e8e5aa7" + }, + { + "name": "hmrc.employment_income.count@E07000238", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_891b61127d584cb6ad4ed595" + }, + { + "name": "hmrc.employment_income.count@E07000239", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_40cf06c333a6bd429ddd34ee" + }, + { + "name": "hmrc.employment_income.count@E07000240", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_427926c9ff7a6763c7932994" + }, + { + "name": "hmrc.employment_income.count@E07000241", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6630396b481c94b8cef43f0" + }, + { + "name": "hmrc.employment_income.count@E07000242", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 69000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_453f93e09ce4298222ceb50b" + }, + { + "name": "hmrc.employment_income.count@E07000243", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_10ffb62ae9c6634094b3f408" + }, + { + "name": "hmrc.employment_income.count@E07000244", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 86000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_00d82059fb79a19b6ae1296b" + }, + { + "name": "hmrc.employment_income.count@E07000245", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 73000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a2758874378450f29085c1f" + }, + { + "name": "hmrc.employment_income.count@E08000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 109000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7853d0dc06a2cdc596a27aa6" + }, + { + "name": "hmrc.employment_income.count@E08000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 79000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_020a40962f45e7af6a0b26e5" + }, + { + "name": "hmrc.employment_income.count@E08000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 202000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ba4fcd38135cf1554ed9935" + }, + { + "name": "hmrc.employment_income.count@E08000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 81000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dede9763b556fa2a27465cd6" + }, + { + "name": "hmrc.employment_income.count@E08000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 82000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_701cf1ea5ba290eba96082bc" + }, + { + "name": "hmrc.employment_income.count@E08000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 123000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83d6e847bf287d5a95bcc76" + }, + { + "name": "hmrc.employment_income.count@E08000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 129000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d2a984196df57146431a9d8" + }, + { + "name": "hmrc.employment_income.count@E08000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 95000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c608c102381febda0deef301" + }, + { + "name": "hmrc.employment_income.count@E08000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3cc10f8b06888474d543f7a" + }, + { + "name": "hmrc.employment_income.count@E08000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 138000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dcf761a5a7e08139fcf0e15" + }, + { + "name": "hmrc.employment_income.count@E08000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b18d5a0fd1af16e15429c57e" + }, + { + "name": "hmrc.employment_income.count@E08000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 181000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbb8f9d5e97f337a5014f8b6" + }, + { + "name": "hmrc.employment_income.count@E08000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb22a625a6dc13e22de60598" + }, + { + "name": "hmrc.employment_income.count@E08000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 106000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_19ef9d2d910e43d5488e3aa0" + }, + { + "name": "hmrc.employment_income.count@E08000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 122000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_43074ad41a80ff6d3f949b2f" + }, + { + "name": "hmrc.employment_income.count@E08000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 98000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2773a8649eba08941c1b8450" + }, + { + "name": "hmrc.employment_income.count@E08000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 119000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ca194743076b9e470c47e32" + }, + { + "name": "hmrc.employment_income.count@E08000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2edffc33059c58eb7ad4acf" + }, + { + "name": "hmrc.employment_income.count@E08000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 202000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4039c2d379d1b72f535a094c" + }, + { + "name": "hmrc.employment_income.count@E08000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 107000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff2550d3410b65f0e7b0f6bc" + }, + { + "name": "hmrc.employment_income.count@E08000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 89000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b95c3af1466db7248fda928f" + }, + { + "name": "hmrc.employment_income.count@E08000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1acebc4f68919305c6138560" + }, + { + "name": "hmrc.employment_income.count@E08000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 103000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb7df4a2bd24a2d59bddc71" + }, + { + "name": "hmrc.employment_income.count@E08000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 380000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ab4b4b9865ab9facd3498e9" + }, + { + "name": "hmrc.employment_income.count@E08000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 139000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8af2252d8278b1b6d7cf5552" + }, + { + "name": "hmrc.employment_income.count@E08000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 117000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1176ee83c1e02f3bec57ca07" + }, + { + "name": "hmrc.employment_income.count@E08000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 130000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45965d3e3f718f600c49434a" + }, + { + "name": "hmrc.employment_income.count@E08000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 89000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82231c2214209498164656b0" + }, + { + "name": "hmrc.employment_income.count@E08000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a5e121798c211a9fc2cf872" + }, + { + "name": "hmrc.employment_income.count@E08000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50f952f99aa332b8cea3968" + }, + { + "name": "hmrc.employment_income.count@E08000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 191000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a439d030b5252b082a969a7" + }, + { + "name": "hmrc.employment_income.count@E08000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c46fce439b16b8aa1aa6a2d" + }, + { + "name": "hmrc.employment_income.count@E08000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 167000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_24cc775ae74c22a743e478f9" + }, + { + "name": "hmrc.employment_income.count@E08000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 330000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_94b4f9a7ebf6e91b6f5da8bb" + }, + { + "name": "hmrc.employment_income.count@E08000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 144000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68142596b6bbebbeeb30ab61" + }, + { + "name": "hmrc.employment_income.count@E08000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_18bef712f59c74adaa5a2b9d" + }, + { + "name": "hmrc.employment_income.count@E09000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a26f04392fc4da0887f85013" + }, + { + "name": "hmrc.employment_income.count@E09000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 86000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9aa000b9136fb70089289be" + }, + { + "name": "hmrc.employment_income.count@E09000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 164000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d89f14c07d4e2312b6d528dc" + }, + { + "name": "hmrc.employment_income.count@E09000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 109000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f7fb3198d1a4cb327292e73" + }, + { + "name": "hmrc.employment_income.count@E09000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 146000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_05d2cacc9806a2a41bdd6b23" + }, + { + "name": "hmrc.employment_income.count@E09000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 146000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b70f7b4bc230e21c71d06bc9" + }, + { + "name": "hmrc.employment_income.count@E09000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 96000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_54cef5be9fe0e46f6e614c08" + }, + { + "name": "hmrc.employment_income.count@E09000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 176000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa8747444a511984f9a9820" + }, + { + "name": "hmrc.employment_income.count@E09000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 155000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_925f69f1ce348ed2cea44485" + }, + { + "name": "hmrc.employment_income.count@E09000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 122000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_050e62b229860e3dbed158c3" + }, + { + "name": "hmrc.employment_income.count@E09000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 136000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c89808595fa0c62c40d371d7" + }, + { + "name": "hmrc.employment_income.count@E09000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 108000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ee7aa1ad0d03903f7210cae" + }, + { + "name": "hmrc.employment_income.count@E09000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 89000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_337639f1ec05e4ba25e424f1" + }, + { + "name": "hmrc.employment_income.count@E09000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 112000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce52c83e57c4eb6306bbf285" + }, + { + "name": "hmrc.employment_income.count@E09000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 111000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b338c2b56f88da79289dbd3c" + }, + { + "name": "hmrc.employment_income.count@E09000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 107000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_489d9def0d9c4209000131ae" + }, + { + "name": "hmrc.employment_income.count@E09000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 138000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16ce05b8ffac99a193234ed3" + }, + { + "name": "hmrc.employment_income.count@E09000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 129000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_870b5e5d5307ac5c6a33d97d" + }, + { + "name": "hmrc.employment_income.count@E09000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 103000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b86a5efccbda0edb0a710cbf" + }, + { + "name": "hmrc.employment_income.count@E09000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5543816d8cd3104252f2e9d5" + }, + { + "name": "hmrc.employment_income.count@E09000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 71000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_35bd309d91dd3ebe1a194dd1" + }, + { + "name": "hmrc.employment_income.count@E09000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 162000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b32ca4e902355dd2514622ff" + }, + { + "name": "hmrc.employment_income.count@E09000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 130000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f769fc595d85541f8ee6409" + }, + { + "name": "hmrc.employment_income.count@E09000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 101000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b786e036ee3bcb21f9b2c6b4" + }, + { + "name": "hmrc.employment_income.count@E09000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 148000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b44118451b758bf7da614d2" + }, + { + "name": "hmrc.employment_income.count@E09000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 120000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcdeca9564f9795a74316164" + }, + { + "name": "hmrc.employment_income.count@E09000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 84000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8baa04b51f1e65195d50692e" + }, + { + "name": "hmrc.employment_income.count@E09000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 150000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b1935a0ceb8396bceb2efaf" + }, + { + "name": "hmrc.employment_income.count@E09000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 88000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb915a19543158111e975506" + }, + { + "name": "hmrc.employment_income.count@E09000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 151000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7b05a688e7b66d60a8f91d6" + }, + { + "name": "hmrc.employment_income.count@E09000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 121000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ebd765f266be1d4e9aa248e" + }, + { + "name": "hmrc.employment_income.count@E09000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 174000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_444ee7541a215844bf3c9fd5" + }, + { + "name": "hmrc.employment_income.count@E09000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 90000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_65303f985ce2ca1984b7f4e4" + }, + { + "name": "hmrc.employment_income.count@N09000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4abf1a411689ea14119de70" + }, + { + "name": "hmrc.employment_income.count@N09000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 83000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_506206dfbd718d9c410e8a35" + }, + { + "name": "hmrc.employment_income.count@N09000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 136000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cfe0cdb8456c6c4d6da0f55" + }, + { + "name": "hmrc.employment_income.count@N09000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5110e3d8eb26bceb99d837d5" + }, + { + "name": "hmrc.employment_income.count@N09000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_896bde6939c451dd53f606fd" + }, + { + "name": "hmrc.employment_income.count@N09000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_38d163a1be34916071f5925e" + }, + { + "name": "hmrc.employment_income.count@N09000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bc96cf343b8ddc7487e86f4" + }, + { + "name": "hmrc.employment_income.count@N09000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_594659e38819c1f5f894b004" + }, + { + "name": "hmrc.employment_income.count@N09000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9307863cb183d1257f73e7f" + }, + { + "name": "hmrc.employment_income.count@N09000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5361d25b60cbe9b34114228" + }, + { + "name": "hmrc.employment_income.count@N09000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6ed1fb339c68823df9b3182" + }, + { + "name": "hmrc.employment_income.count@S12000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec344f04a9ba74379a3548f9" + }, + { + "name": "hmrc.employment_income.count@S12000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c0c77e8b59c5dd8f60a4d91" + }, + { + "name": "hmrc.employment_income.count@S12000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_7380dabd3838cd6c94c5cafd" + }, + { + "name": "hmrc.employment_income.count@S12000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_da27b0c45abdb4dd17ec9c45" + }, + { + "name": "hmrc.employment_income.count@S12000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_32d895b8ec02d7b6b3753514" + }, + { + "name": "hmrc.employment_income.count@S12000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0795bb3b0138fd3e9e371b52" + }, + { + "name": "hmrc.employment_income.count@S12000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2a45bff84a37f9f0d343301" + }, + { + "name": "hmrc.employment_income.count@S12000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 98000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac903344cd84f2ce099b59b8" + }, + { + "name": "hmrc.employment_income.count@S12000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_93c7850172ef4b7dd3d4a8c2" + }, + { + "name": "hmrc.employment_income.count@S12000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f8f5f9afba3833efc650a53" + }, + { + "name": "hmrc.employment_income.count@S12000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_039dfe0c748341d8a538eb44" + }, + { + "name": "hmrc.employment_income.count@S12000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc8a7c2e214abdbf12461b6f" + }, + { + "name": "hmrc.employment_income.count@S12000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b98cee0b1e0b674bea62f439" + }, + { + "name": "hmrc.employment_income.count@S12000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e42212b14ab4fc3141dab79f" + }, + { + "name": "hmrc.employment_income.count@S12000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ca40882326ff5d44b7e86d8" + }, + { + "name": "hmrc.employment_income.count@S12000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e426dc2d83809dbff54f91" + }, + { + "name": "hmrc.employment_income.count@S12000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 140000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_82af4523a6d9ccb70d15b063" + }, + { + "name": "hmrc.employment_income.count@S12000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_45414674bd002e0c878bc375" + }, + { + "name": "hmrc.employment_income.count@S12000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 98000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b1a256fd6893d9abdfa9400" + }, + { + "name": "hmrc.employment_income.count@S12000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 112000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_39024f3c4140714b501efdad" + }, + { + "name": "hmrc.employment_income.count@S12000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dd54ad36d6aeeaa50812c9f" + }, + { + "name": "hmrc.employment_income.count@S12000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 231000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6e6e417166104ace3eadcc0" + }, + { + "name": "hmrc.employment_income.count@S12000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 75000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f16d238ef7278a308d1caf2" + }, + { + "name": "hmrc.employment_income.count@S12000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_434c55a25369ddc46c67824b" + }, + { + "name": "hmrc.employment_income.count@S12000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 83000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba740bb869c530a5ad6593d4" + }, + { + "name": "hmrc.employment_income.count@S12000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b08b15f4e9c0f7bc39e6c926" + }, + { + "name": "hmrc.employment_income.count@S12000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a427b5376a0d04a83521059" + }, + { + "name": "hmrc.employment_income.count@S12000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_33c20f3ffbbc751b9a3d6c06" + }, + { + "name": "hmrc.employment_income.count@S12000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 141000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_68d3b7aa9bde14861d20ee3a" + }, + { + "name": "hmrc.employment_income.count@S12000048", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad2120a39f8517f5224a542f" + }, + { + "name": "hmrc.employment_income.count@S12000049", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 236000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_16d381ba7b8311d8e895612c" + }, + { + "name": "hmrc.employment_income.count@S12000050", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 135000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0593446aeaa4e8c1e90ca78b" + }, + { + "name": "hmrc.employment_income.count@W06000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_73911626693aeee4151b3464" + }, + { + "name": "hmrc.employment_income.count@W06000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_01cf764f8b157fef372f23e0" + }, + { + "name": "hmrc.employment_income.count@W06000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_48a6adf7afb20ea13a13ce2b" + }, + { + "name": "hmrc.employment_income.count@W06000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_174148b03b02bdca69ca0612" + }, + { + "name": "hmrc.employment_income.count@W06000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_9983fd7a8271b18ebd225590" + }, + { + "name": "hmrc.employment_income.count@W06000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_d56577a8f5e24287c4c74e8a" + }, + { + "name": "hmrc.employment_income.count@W06000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b761e6cfd50fb2452b68a41" + }, + { + "name": "hmrc.employment_income.count@W06000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4b330da70839fcfe1e53330" + }, + { + "name": "hmrc.employment_income.count@W06000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_121262cd9e3960d307138c24" + }, + { + "name": "hmrc.employment_income.count@W06000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 86000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_158ba8e70e88f3707a61cba5" + }, + { + "name": "hmrc.employment_income.count@W06000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_b250f5bd78abaf0c0a4c59f9" + }, + { + "name": "hmrc.employment_income.count@W06000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_64de18045c0ff05cff5b02c7" + }, + { + "name": "hmrc.employment_income.count@W06000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_699923a9a809e34ab68626ba" + }, + { + "name": "hmrc.employment_income.count@W06000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 143000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2abaaca60ada9ce04ae3422" + }, + { + "name": "hmrc.employment_income.count@W06000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 87000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba636cc8ebbea3a52d027b03" + }, + { + "name": "hmrc.employment_income.count@W06000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 66000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_afd7db958e36a4908993d3ce" + }, + { + "name": "hmrc.employment_income.count@W06000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f23a0a20eec66ceb36e4d04a" + }, + { + "name": "hmrc.employment_income.count@W06000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7699ac6c882a1bf56c6c86e" + }, + { + "name": "hmrc.employment_income.count@W06000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b03b6958bd7b72f55472ff0" + }, + { + "name": "hmrc.employment_income.count@W06000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 69000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e390e0e504d47792bb81e00" + }, + { + "name": "hmrc.employment_income.count@W06000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_57178e74da51673f7bc0eaf0" + }, + { + "name": "hmrc.employment_income.count@W06000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22000.0, + "resolved_fact_period": "2023", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a84036a3de02b9ebc1290cd" + } + ] + } + } + }, + "ons.age.0_10": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.0_10@E14001063", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3d0ae1de5dd6232397d0c57" + }, + { + "name": "ons.age.0_10@E14001064", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10109.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a43bcfec3ace909d7739d05" + }, + { + "name": "ons.age.0_10@E14001065", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b958fc08c54119ff9c4bd2ec" + }, + { + "name": "ons.age.0_10@E14001066", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80e41782593efd06f3afe656" + }, + { + "name": "ons.age.0_10@E14001067", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c15c1122b6c65148ac927f" + }, + { + "name": "ons.age.0_10@E14001068", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83749b8d558602dd76f63024" + }, + { + "name": "ons.age.0_10@E14001069", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1334b0f6979b53d7563931c" + }, + { + "name": "ons.age.0_10@E14001070", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe17b4d80dc127c614d1fd88" + }, + { + "name": "ons.age.0_10@E14001071", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83c8ee71778cad0de7495656" + }, + { + "name": "ons.age.0_10@E14001072", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_886745fe38a3752981980889" + }, + { + "name": "ons.age.0_10@E14001073", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f992e7422ef71b2211eb4fba" + }, + { + "name": "ons.age.0_10@E14001074", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12161.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a58239da2ca39ada789ec6b2" + }, + { + "name": "ons.age.0_10@E14001075", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd82c34fb639b4b40936b32a" + }, + { + "name": "ons.age.0_10@E14001076", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8a3452325eb2c0df0c4df81" + }, + { + "name": "ons.age.0_10@E14001077", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3d8ab4a30041e2fc413c471" + }, + { + "name": "ons.age.0_10@E14001078", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7973f11b772279da5caa6c65" + }, + { + "name": "ons.age.0_10@E14001079", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9afe76c3538890f6567da6f" + }, + { + "name": "ons.age.0_10@E14001080", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef30a840da68f8d93a35fbd3" + }, + { + "name": "ons.age.0_10@E14001081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cd64809708e050d6c966e31" + }, + { + "name": "ons.age.0_10@E14001082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6870ad78a4550ffa92f35349" + }, + { + "name": "ons.age.0_10@E14001083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ff5cadd3421f25fdcbb685" + }, + { + "name": "ons.age.0_10@E14001084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51b13a8b20922ebae520c703" + }, + { + "name": "ons.age.0_10@E14001085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9030.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be56981b7f9c031d8e7795f7" + }, + { + "name": "ons.age.0_10@E14001086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b96d22edec20273b571ffe9d" + }, + { + "name": "ons.age.0_10@E14001087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fe58d000999cb63f91b12f3" + }, + { + "name": "ons.age.0_10@E14001088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d328a24e8d5d77f48b296591" + }, + { + "name": "ons.age.0_10@E14001089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da7100af590749d83d48bd8d" + }, + { + "name": "ons.age.0_10@E14001090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc453022e7577997c5338a2" + }, + { + "name": "ons.age.0_10@E14001091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b03d5530ff6654e23b8d7ca" + }, + { + "name": "ons.age.0_10@E14001092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_886328d9d26b7c4d017a7f8f" + }, + { + "name": "ons.age.0_10@E14001093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17351.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a35e035eb3e4e18e35b02daa" + }, + { + "name": "ons.age.0_10@E14001094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_604488e7b825d43172942571" + }, + { + "name": "ons.age.0_10@E14001095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d04fd82edbe71cad409a509c" + }, + { + "name": "ons.age.0_10@E14001096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41500e598f8df07ba42d4dc" + }, + { + "name": "ons.age.0_10@E14001097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eebf6e5acfd3356374a23040" + }, + { + "name": "ons.age.0_10@E14001098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7991271f8bdb5252382f68a" + }, + { + "name": "ons.age.0_10@E14001099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4ce208a929f00e2793bb21e" + }, + { + "name": "ons.age.0_10@E14001100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a01b71410a8fbb3c6d0067cc" + }, + { + "name": "ons.age.0_10@E14001101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7536c44d9c01a7cb5f999c1" + }, + { + "name": "ons.age.0_10@E14001102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b1c326631eb14a3babec53" + }, + { + "name": "ons.age.0_10@E14001103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99fa4528e74ac0cb1ae9601b" + }, + { + "name": "ons.age.0_10@E14001104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_942981f54068df8303f001ff" + }, + { + "name": "ons.age.0_10@E14001105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d34c27dd37598f9e0230198d" + }, + { + "name": "ons.age.0_10@E14001106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be6046d60cc918bcf2b7bf04" + }, + { + "name": "ons.age.0_10@E14001107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa0f5b711bb4c9c6b4bb84d8" + }, + { + "name": "ons.age.0_10@E14001108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f10059a4bf62ba02b391eacc" + }, + { + "name": "ons.age.0_10@E14001109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c37f4b70d31d4e2bfd15e27" + }, + { + "name": "ons.age.0_10@E14001110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d94e002a7934afa81ddebe44" + }, + { + "name": "ons.age.0_10@E14001111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b34505e6618a5077af2f949e" + }, + { + "name": "ons.age.0_10@E14001112", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f6fd390f2788f898a1dda7c" + }, + { + "name": "ons.age.0_10@E14001113", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa66e95777da78812ff8678f" + }, + { + "name": "ons.age.0_10@E14001114", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_945d9f30682d8e92f9881922" + }, + { + "name": "ons.age.0_10@E14001115", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e976b0d6c5669609c8237e4" + }, + { + "name": "ons.age.0_10@E14001116", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c237cb69b4a17531a3b2b03e" + }, + { + "name": "ons.age.0_10@E14001117", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ed005dabf731f5f24efef7" + }, + { + "name": "ons.age.0_10@E14001118", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_29304562be6c2d1c09cc2a63" + }, + { + "name": "ons.age.0_10@E14001119", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aac7a5aa2677674ab90be3bc" + }, + { + "name": "ons.age.0_10@E14001120", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4054b7f83f1b390296659e6" + }, + { + "name": "ons.age.0_10@E14001121", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5612b7750e96a7ce9dfe42" + }, + { + "name": "ons.age.0_10@E14001122", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85829f5985cd5806b1632a37" + }, + { + "name": "ons.age.0_10@E14001123", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16078.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c558db1b7e3f1341add1f95d" + }, + { + "name": "ons.age.0_10@E14001124", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f44157ff969b131500d4b7eb" + }, + { + "name": "ons.age.0_10@E14001125", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5372c50e57eaabbed8a58ca" + }, + { + "name": "ons.age.0_10@E14001126", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97eed56123474b7656190bad" + }, + { + "name": "ons.age.0_10@E14001127", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acaff0701e39012340ee363c" + }, + { + "name": "ons.age.0_10@E14001128", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_badf56bdfc6297c10005da4f" + }, + { + "name": "ons.age.0_10@E14001129", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_991d538976a742c38b0db054" + }, + { + "name": "ons.age.0_10@E14001130", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3341cb790df170b67d4be91" + }, + { + "name": "ons.age.0_10@E14001131", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ea19d9a19decf0fdafe5caf" + }, + { + "name": "ons.age.0_10@E14001132", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_994451e71afe3d0adaddd9b3" + }, + { + "name": "ons.age.0_10@E14001133", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb4975bb12606c407519d891" + }, + { + "name": "ons.age.0_10@E14001134", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4f42eaa2c0046b02391d61e" + }, + { + "name": "ons.age.0_10@E14001135", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce39b6b287dd523c7b6d674e" + }, + { + "name": "ons.age.0_10@E14001136", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8455fc3f99709790d69bb3e4" + }, + { + "name": "ons.age.0_10@E14001137", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_472290b3d9d2ae5b799b4e6c" + }, + { + "name": "ons.age.0_10@E14001138", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10661.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc4b261303d831b858ca98bb" + }, + { + "name": "ons.age.0_10@E14001139", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b10ee7004fa17ae63a070bc6" + }, + { + "name": "ons.age.0_10@E14001140", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9511.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d9a1aeabf47cce1abc28fde" + }, + { + "name": "ons.age.0_10@E14001141", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_439ab16602bf36f7335ea43e" + }, + { + "name": "ons.age.0_10@E14001142", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90c7bbed97a765708528d80a" + }, + { + "name": "ons.age.0_10@E14001143", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70ebcfef136ba1a4df68724f" + }, + { + "name": "ons.age.0_10@E14001144", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ccef40d7d23b12df33dba44" + }, + { + "name": "ons.age.0_10@E14001145", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b96d807cd673e77eefa65f1" + }, + { + "name": "ons.age.0_10@E14001146", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62377497379b80489c672090" + }, + { + "name": "ons.age.0_10@E14001147", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89035969f8bb4cff567efc6e" + }, + { + "name": "ons.age.0_10@E14001148", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d7020ba9c9d05ffa443f6f7" + }, + { + "name": "ons.age.0_10@E14001149", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db1ab994dc9340929ef4dea7" + }, + { + "name": "ons.age.0_10@E14001150", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4758e7824ac9ca9e35593c62" + }, + { + "name": "ons.age.0_10@E14001151", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38be1e1bc6bc2f917d2a45f5" + }, + { + "name": "ons.age.0_10@E14001152", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_debd29bb58b47d91bb99b9ac" + }, + { + "name": "ons.age.0_10@E14001153", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b353a72e07a99552c5af2e5" + }, + { + "name": "ons.age.0_10@E14001154", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9392.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7888b78da61f9c856392b8e3" + }, + { + "name": "ons.age.0_10@E14001155", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91123633af28136495515994" + }, + { + "name": "ons.age.0_10@E14001156", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f3d9250eb75a9412aeee916" + }, + { + "name": "ons.age.0_10@E14001157", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5c8955d9920f37f8c04f1cd" + }, + { + "name": "ons.age.0_10@E14001158", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d33eef3e1f4f7bb885beb26" + }, + { + "name": "ons.age.0_10@E14001159", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f814c0b4c6c3850acb7ff247" + }, + { + "name": "ons.age.0_10@E14001160", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68161c80c4749b7ecf156c85" + }, + { + "name": "ons.age.0_10@E14001161", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e396351f3cfba9355c11b2" + }, + { + "name": "ons.age.0_10@E14001162", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad6a02e7f7e9281126625cc6" + }, + { + "name": "ons.age.0_10@E14001163", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e91222716e0aed12d9b82fcc" + }, + { + "name": "ons.age.0_10@E14001164", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc6fd570faa778496b940f96" + }, + { + "name": "ons.age.0_10@E14001165", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_868e24a5fdd1b4e3dd6266fa" + }, + { + "name": "ons.age.0_10@E14001166", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f6a7517adc853b60b0f28f1" + }, + { + "name": "ons.age.0_10@E14001167", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f31fa817c490bdbc8bddbe64" + }, + { + "name": "ons.age.0_10@E14001168", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e700e8109e63f2976688c455" + }, + { + "name": "ons.age.0_10@E14001169", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38cc44686c05afc5c920f97f" + }, + { + "name": "ons.age.0_10@E14001170", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab3cab777c932ee745f325a" + }, + { + "name": "ons.age.0_10@E14001171", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b9d6647ee41d8bfd7fe2203" + }, + { + "name": "ons.age.0_10@E14001172", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e777d3b17b698361f5b9b235" + }, + { + "name": "ons.age.0_10@E14001173", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a17cff160274a201d56ded75" + }, + { + "name": "ons.age.0_10@E14001174", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b9db2f39079c32d901733a7" + }, + { + "name": "ons.age.0_10@E14001175", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d700fb5d066c89dd44574cfb" + }, + { + "name": "ons.age.0_10@E14001176", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb55ee2174e92103146980f" + }, + { + "name": "ons.age.0_10@E14001177", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b64c4be94fceb436766d108e" + }, + { + "name": "ons.age.0_10@E14001178", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0d3a2b2a730e3300a12ca7" + }, + { + "name": "ons.age.0_10@E14001179", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6423962d06c75157f3b70ad5" + }, + { + "name": "ons.age.0_10@E14001180", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b42b7b4f8cfcd3311a0d22e" + }, + { + "name": "ons.age.0_10@E14001181", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cb624b6beddc808bc5c7e47" + }, + { + "name": "ons.age.0_10@E14001182", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14116.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb75c7e5449d310a5201527d" + }, + { + "name": "ons.age.0_10@E14001183", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fbc0c6ebd074361ad51675b" + }, + { + "name": "ons.age.0_10@E14001184", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c829c8324b5e745397c51290" + }, + { + "name": "ons.age.0_10@E14001185", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c82d3a35f536158049d913e0" + }, + { + "name": "ons.age.0_10@E14001186", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd837e6f0f7d53b87ad7a26b" + }, + { + "name": "ons.age.0_10@E14001187", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_529e4555168b9422b1792891" + }, + { + "name": "ons.age.0_10@E14001188", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96bea3f1bebf7bfeff9614a2" + }, + { + "name": "ons.age.0_10@E14001189", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b957f01334911111e30ad2ec" + }, + { + "name": "ons.age.0_10@E14001190", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a75df6ad7fa104c757969555" + }, + { + "name": "ons.age.0_10@E14001191", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99122dfdbceb4506966fe061" + }, + { + "name": "ons.age.0_10@E14001192", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b3fb28aa73459c0fbbd8779" + }, + { + "name": "ons.age.0_10@E14001193", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4d00d182c70111efaba93b4" + }, + { + "name": "ons.age.0_10@E14001194", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d82829774006d9117ff63e28" + }, + { + "name": "ons.age.0_10@E14001195", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_827d7e5278906e1298592627" + }, + { + "name": "ons.age.0_10@E14001196", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3786d4c280aed377efafc071" + }, + { + "name": "ons.age.0_10@E14001197", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4338783ce7ba497af1036db" + }, + { + "name": "ons.age.0_10@E14001198", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13754.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_684ddb5e728e813b9ffee096" + }, + { + "name": "ons.age.0_10@E14001199", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79d3e61c1381de22ac8e0f45" + }, + { + "name": "ons.age.0_10@E14001200", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11503.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbdaf6ca63a034f62485227d" + }, + { + "name": "ons.age.0_10@E14001201", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10332.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f02f9ad553e1b2e1b08364c" + }, + { + "name": "ons.age.0_10@E14001202", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_27ca20e002752314810ecee1" + }, + { + "name": "ons.age.0_10@E14001203", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e08fbb6266cc41b2020ea22e" + }, + { + "name": "ons.age.0_10@E14001204", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce87f09bda8461fba1150768" + }, + { + "name": "ons.age.0_10@E14001205", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fca9912f8b4d0b793528d265" + }, + { + "name": "ons.age.0_10@E14001206", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18489bc914c41aec9c04b638" + }, + { + "name": "ons.age.0_10@E14001207", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb9fae05b889b7fdb0024dc" + }, + { + "name": "ons.age.0_10@E14001208", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4ae11445ccdd867d5bfe057" + }, + { + "name": "ons.age.0_10@E14001209", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4bccb9c254d0050ce60147" + }, + { + "name": "ons.age.0_10@E14001210", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef5ad0f4c0f0bf77fcb2704" + }, + { + "name": "ons.age.0_10@E14001211", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d01e27e37a726eb8da3516" + }, + { + "name": "ons.age.0_10@E14001212", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1579722f1b461b0fe9fbc04" + }, + { + "name": "ons.age.0_10@E14001213", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eff3825ea01ea6196846a891" + }, + { + "name": "ons.age.0_10@E14001214", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8d01667d843533bd746a2bd" + }, + { + "name": "ons.age.0_10@E14001215", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39ec88763f3361045ee4c18b" + }, + { + "name": "ons.age.0_10@E14001216", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1295140919fed20aa564396a" + }, + { + "name": "ons.age.0_10@E14001217", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75d64deb4ebcb4153b2e415c" + }, + { + "name": "ons.age.0_10@E14001218", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61d5394216ef47f54c1afb32" + }, + { + "name": "ons.age.0_10@E14001219", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5ec448f2afb1da6692e1606" + }, + { + "name": "ons.age.0_10@E14001220", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f7121ee51428a99ea082341" + }, + { + "name": "ons.age.0_10@E14001221", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d544a108b7f2037e9049ff57" + }, + { + "name": "ons.age.0_10@E14001222", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4364a61bc187aadfe117a0ad" + }, + { + "name": "ons.age.0_10@E14001223", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e106a81397c8353bf13545b" + }, + { + "name": "ons.age.0_10@E14001224", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d98dd6cf04857af26ca73bff" + }, + { + "name": "ons.age.0_10@E14001225", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_960eafc6fa4c39e688a8c472" + }, + { + "name": "ons.age.0_10@E14001226", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12351.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e025812b3ffc24a5c81d8765" + }, + { + "name": "ons.age.0_10@E14001227", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b72fae5a5d0ba55d165f2228" + }, + { + "name": "ons.age.0_10@E14001228", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4c7e8568808b0ac46dfdb3b" + }, + { + "name": "ons.age.0_10@E14001229", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c69dc3214531a20e596d3a8f" + }, + { + "name": "ons.age.0_10@E14001230", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6c21b3ef1c572e2aa9303c8" + }, + { + "name": "ons.age.0_10@E14001231", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9905415e84eaf5a0a38beeed" + }, + { + "name": "ons.age.0_10@E14001232", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11839.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03d826cd47c48c94e0f9dd3" + }, + { + "name": "ons.age.0_10@E14001233", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10070.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e316afcff4420964ab49e888" + }, + { + "name": "ons.age.0_10@E14001234", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6ba1887d1f04b84a765756e" + }, + { + "name": "ons.age.0_10@E14001235", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efc3e5502ed4d1b09e4f7bb4" + }, + { + "name": "ons.age.0_10@E14001236", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad8050b6334b1a8244b0fd36" + }, + { + "name": "ons.age.0_10@E14001237", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8669730e05cc57501b09ef43" + }, + { + "name": "ons.age.0_10@E14001238", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7330e273ba8cab2e147cd934" + }, + { + "name": "ons.age.0_10@E14001239", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f42814286a15aa0b6b6a4a74" + }, + { + "name": "ons.age.0_10@E14001240", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7302b0accf8c065ef48fa15a" + }, + { + "name": "ons.age.0_10@E14001241", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e06121e9dc5c52d27b21990" + }, + { + "name": "ons.age.0_10@E14001242", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7199dea1aaff85e078c350d" + }, + { + "name": "ons.age.0_10@E14001243", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a199eb6f91b33a916106face" + }, + { + "name": "ons.age.0_10@E14001244", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d89d78baa98b1b726058bc2" + }, + { + "name": "ons.age.0_10@E14001245", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d01d3275d06f763819321a67" + }, + { + "name": "ons.age.0_10@E14001246", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bbd277672991c61062aa95f" + }, + { + "name": "ons.age.0_10@E14001247", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfd9777d9112bef3a87d9886" + }, + { + "name": "ons.age.0_10@E14001248", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0f9c4b2d9a6800f0d37c091" + }, + { + "name": "ons.age.0_10@E14001249", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0bd2283d9bfa2ea4dc3c8db" + }, + { + "name": "ons.age.0_10@E14001250", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab6f16fc014312cbd0d2575" + }, + { + "name": "ons.age.0_10@E14001251", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_805744cb1e4fbfb8853808cd" + }, + { + "name": "ons.age.0_10@E14001252", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_872e64959a81d3264a348a3b" + }, + { + "name": "ons.age.0_10@E14001253", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_848ddbca56dfaa8bbf76bc9b" + }, + { + "name": "ons.age.0_10@E14001254", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e85fcd018107ff075b5462f5" + }, + { + "name": "ons.age.0_10@E14001255", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e001b81a42ee72a412b6f5" + }, + { + "name": "ons.age.0_10@E14001256", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10247.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9aad2c49dc1b8d67ea8da1e" + }, + { + "name": "ons.age.0_10@E14001257", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d502a80ca5386d0097785c29" + }, + { + "name": "ons.age.0_10@E14001258", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b2ee17c8c81b0a534a20813" + }, + { + "name": "ons.age.0_10@E14001259", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0a5ec27f7d61cdb831da402" + }, + { + "name": "ons.age.0_10@E14001260", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c131697ae09e2faf2b525e1f" + }, + { + "name": "ons.age.0_10@E14001261", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61f438bb2994cd2bc806b1f0" + }, + { + "name": "ons.age.0_10@E14001262", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dde7c5ad7f5b2060851d72f5" + }, + { + "name": "ons.age.0_10@E14001263", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12079.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ac72d2fcc5beac8f39024ca" + }, + { + "name": "ons.age.0_10@E14001264", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_745ff526e21f0e3437a2bd73" + }, + { + "name": "ons.age.0_10@E14001265", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91f8ef285a8d1d2134d8cee" + }, + { + "name": "ons.age.0_10@E14001266", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80b5c00880b44ac1db06d0f8" + }, + { + "name": "ons.age.0_10@E14001267", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15337.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fc67b543581da9b3de0ae29" + }, + { + "name": "ons.age.0_10@E14001268", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3d8bbe377442b6be9c08f89" + }, + { + "name": "ons.age.0_10@E14001269", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be551d3ef90d5fe9c7c9fda5" + }, + { + "name": "ons.age.0_10@E14001270", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c067906ee502cee0210ac174" + }, + { + "name": "ons.age.0_10@E14001271", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb167a25ba2486f19f7dc2ff" + }, + { + "name": "ons.age.0_10@E14001272", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8d0ce082704aec8f22c2e97" + }, + { + "name": "ons.age.0_10@E14001273", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9984.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e10dbad5a75d52a59616d0" + }, + { + "name": "ons.age.0_10@E14001274", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91335f89ac04e8ccf086aa1c" + }, + { + "name": "ons.age.0_10@E14001275", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca9982dce364ad301445cde2" + }, + { + "name": "ons.age.0_10@E14001276", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f659299fdc4bf6c2a9633944" + }, + { + "name": "ons.age.0_10@E14001277", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec587f1f5d4ed1c6e40208f9" + }, + { + "name": "ons.age.0_10@E14001278", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d6ff16db804bf2017c6169a" + }, + { + "name": "ons.age.0_10@E14001279", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_469eb425b1f4be0f9cf71298" + }, + { + "name": "ons.age.0_10@E14001280", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6457153d9c6d50ad78108bfe" + }, + { + "name": "ons.age.0_10@E14001281", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33a9a218217db6dc51a67df" + }, + { + "name": "ons.age.0_10@E14001282", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a750749e351da732532ca93c" + }, + { + "name": "ons.age.0_10@E14001283", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13030.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef15d623ab837b6bf73db568" + }, + { + "name": "ons.age.0_10@E14001284", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4bb5be704d6b8fc60c77eb9" + }, + { + "name": "ons.age.0_10@E14001285", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1627a24eaabe091b717432d" + }, + { + "name": "ons.age.0_10@E14001286", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a0f4a9d03266760fbec5be1" + }, + { + "name": "ons.age.0_10@E14001287", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c18a102523806462dd9d630e" + }, + { + "name": "ons.age.0_10@E14001288", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4af5300618c4a38fb229306" + }, + { + "name": "ons.age.0_10@E14001289", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3bcb9b0309d98cfaffaa6b6" + }, + { + "name": "ons.age.0_10@E14001290", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5aade163072c3b6fadf1b3d" + }, + { + "name": "ons.age.0_10@E14001291", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f462c817600c8d024973ef" + }, + { + "name": "ons.age.0_10@E14001292", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8045749dc65a175b8f376e46" + }, + { + "name": "ons.age.0_10@E14001293", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e13b6f9679a546c661e432c3" + }, + { + "name": "ons.age.0_10@E14001294", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77c78251a788f11c0bbaf13" + }, + { + "name": "ons.age.0_10@E14001295", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6098582da268f990a2ed61bd" + }, + { + "name": "ons.age.0_10@E14001296", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_895d879e0c5f279f6a739755" + }, + { + "name": "ons.age.0_10@E14001297", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14495.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e33fe43b2eeaec1b389ff66" + }, + { + "name": "ons.age.0_10@E14001298", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51ded4e0a3665f44a79dee4b" + }, + { + "name": "ons.age.0_10@E14001299", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b22e1411574f0d0d2841c62d" + }, + { + "name": "ons.age.0_10@E14001300", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebdf4f1a5da9f735684493fc" + }, + { + "name": "ons.age.0_10@E14001301", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_16e4d40f5767e4302c8cddc1" + }, + { + "name": "ons.age.0_10@E14001302", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12531bda594ba36ccbdb838" + }, + { + "name": "ons.age.0_10@E14001303", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f085af5b0396b80d5e157310" + }, + { + "name": "ons.age.0_10@E14001304", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_49584e46fb4b5574788ca7f7" + }, + { + "name": "ons.age.0_10@E14001305", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa489a1de85b6f95fa5e1c6" + }, + { + "name": "ons.age.0_10@E14001306", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7af09aa5bd0c000f438078a6" + }, + { + "name": "ons.age.0_10@E14001307", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abeefb6fef5213c4f23ab7a1" + }, + { + "name": "ons.age.0_10@E14001308", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44d2140870c06a79b605a324" + }, + { + "name": "ons.age.0_10@E14001309", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9e86c8a16e60c21a455c9f8" + }, + { + "name": "ons.age.0_10@E14001310", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab6decbcd8d41dccb7e08c5f" + }, + { + "name": "ons.age.0_10@E14001311", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb18fc3351ef430f3d04ae60" + }, + { + "name": "ons.age.0_10@E14001312", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13464.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4594c08bc8987b0930e76533" + }, + { + "name": "ons.age.0_10@E14001313", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87eb1bd4ee3153f6ab612fe9" + }, + { + "name": "ons.age.0_10@E14001314", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e31a66ebaa83f1e1b09bc05d" + }, + { + "name": "ons.age.0_10@E14001315", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12224.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdaaa3904f8e2b8668fadf8e" + }, + { + "name": "ons.age.0_10@E14001316", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cea407e88f308a58951eedd1" + }, + { + "name": "ons.age.0_10@E14001317", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be8dd1e649ba324db73dc841" + }, + { + "name": "ons.age.0_10@E14001318", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72a2d2bd8ae12400a509944" + }, + { + "name": "ons.age.0_10@E14001319", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6d597df23d9864e72f1ff6" + }, + { + "name": "ons.age.0_10@E14001320", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_befc616f4b8df641de74feb4" + }, + { + "name": "ons.age.0_10@E14001321", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6fb5443decf8f5612fbf70e" + }, + { + "name": "ons.age.0_10@E14001322", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4b0dd9dccebdc9269a7868d" + }, + { + "name": "ons.age.0_10@E14001323", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4596fc20ad4faae0f1ac82ed" + }, + { + "name": "ons.age.0_10@E14001324", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef39c06c39e9ee33deb704aa" + }, + { + "name": "ons.age.0_10@E14001325", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aca90250e26bce8cfd5ad5fa" + }, + { + "name": "ons.age.0_10@E14001326", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_415e4067a6497fa274b753c0" + }, + { + "name": "ons.age.0_10@E14001327", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f383679bc20c944f997529e8" + }, + { + "name": "ons.age.0_10@E14001328", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64664b217a984afce47c94d7" + }, + { + "name": "ons.age.0_10@E14001329", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abedd7d84bce487555c6ca15" + }, + { + "name": "ons.age.0_10@E14001330", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f319b2ed5eda525780ed10cd" + }, + { + "name": "ons.age.0_10@E14001331", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dca769ad5e6cfa8b32e1e43" + }, + { + "name": "ons.age.0_10@E14001332", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f5a70ad4c738b43a5884c3e" + }, + { + "name": "ons.age.0_10@E14001333", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5448bc13d944723f852ecf87" + }, + { + "name": "ons.age.0_10@E14001334", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14996.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a612d712b8e7b8cd6353b6" + }, + { + "name": "ons.age.0_10@E14001335", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a09aa1030132b048882b327c" + }, + { + "name": "ons.age.0_10@E14001336", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72312a1cdcd03a79f320fde4" + }, + { + "name": "ons.age.0_10@E14001337", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8c453abe72909c7c9ebbb5e" + }, + { + "name": "ons.age.0_10@E14001338", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11356.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4bc0283f8d9895b2c672014" + }, + { + "name": "ons.age.0_10@E14001339", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcf0aa06c0c8561ce2c034f3" + }, + { + "name": "ons.age.0_10@E14001340", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5896aa21a2bf75f0b3806254" + }, + { + "name": "ons.age.0_10@E14001341", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dff7ca148cbc67d28e1f5be1" + }, + { + "name": "ons.age.0_10@E14001342", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22e662d132fd5fb540fcfad" + }, + { + "name": "ons.age.0_10@E14001343", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19554fe651de20300eb580c" + }, + { + "name": "ons.age.0_10@E14001344", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c14d05f7769792f34c1d035" + }, + { + "name": "ons.age.0_10@E14001345", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ad919c05e6e42a4d090e6a1" + }, + { + "name": "ons.age.0_10@E14001346", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_975675a68d7e3e7cc11d22b7" + }, + { + "name": "ons.age.0_10@E14001347", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b780dff35faa0a938366acc" + }, + { + "name": "ons.age.0_10@E14001348", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d6fbe43e27e92b1fb56bdc2" + }, + { + "name": "ons.age.0_10@E14001349", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5cd2ada4e4fc1bae23be374" + }, + { + "name": "ons.age.0_10@E14001350", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b44cc07e740dc56a7203032c" + }, + { + "name": "ons.age.0_10@E14001351", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1536d08c199f905984b5fe1" + }, + { + "name": "ons.age.0_10@E14001352", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df06373041bafb0d48295f30" + }, + { + "name": "ons.age.0_10@E14001353", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9c8bece5b7edd8e8e2ffba4" + }, + { + "name": "ons.age.0_10@E14001354", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae176d03880f55c204ca2d2e" + }, + { + "name": "ons.age.0_10@E14001355", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c914480117ab773bad60950" + }, + { + "name": "ons.age.0_10@E14001356", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7eff42cf272072c00f243f8" + }, + { + "name": "ons.age.0_10@E14001357", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c065a1b7c240b7b543132c9" + }, + { + "name": "ons.age.0_10@E14001358", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cbaedd6a041ce98eaaec34f" + }, + { + "name": "ons.age.0_10@E14001359", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_671450ced3306957f1f83185" + }, + { + "name": "ons.age.0_10@E14001360", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c91611d1cdba24d45494673" + }, + { + "name": "ons.age.0_10@E14001361", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae7f2facb20b9e43713f9077" + }, + { + "name": "ons.age.0_10@E14001362", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c4213fb3aa25fbb1ee5b5b" + }, + { + "name": "ons.age.0_10@E14001363", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9213.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec0cc634801efad8c8bc126" + }, + { + "name": "ons.age.0_10@E14001364", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_811a5fa03b274ebab327cb35" + }, + { + "name": "ons.age.0_10@E14001365", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecfb27ba26d540c742750fa3" + }, + { + "name": "ons.age.0_10@E14001366", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49599177340c1b9178b7c01" + }, + { + "name": "ons.age.0_10@E14001367", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcb75c0f45d6f763b9cff2ba" + }, + { + "name": "ons.age.0_10@E14001368", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_897505e9429984cf338ccdf1" + }, + { + "name": "ons.age.0_10@E14001369", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17902.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9faf2f8ef95ca139a6ed410" + }, + { + "name": "ons.age.0_10@E14001370", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c57ac61d8da1e7276d6446c3" + }, + { + "name": "ons.age.0_10@E14001371", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a33c36e0816a8ccfada2eb3" + }, + { + "name": "ons.age.0_10@E14001372", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f818e1a23121a3377ff1e143" + }, + { + "name": "ons.age.0_10@E14001373", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c866fd247351a310c2a9938" + }, + { + "name": "ons.age.0_10@E14001374", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e31ce9f08cd267a6254d3142" + }, + { + "name": "ons.age.0_10@E14001375", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10790.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd8c29fb1648762f1cc413c4" + }, + { + "name": "ons.age.0_10@E14001376", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0cf325895d92de2555bc45d" + }, + { + "name": "ons.age.0_10@E14001377", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16277.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f35d4ffe4299b9e9a1f04ca1" + }, + { + "name": "ons.age.0_10@E14001378", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ffc12d76110cbe98bfc7a84" + }, + { + "name": "ons.age.0_10@E14001379", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4666525a9121a577781deb1a" + }, + { + "name": "ons.age.0_10@E14001380", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64b9c934a88c309265d7e28e" + }, + { + "name": "ons.age.0_10@E14001381", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7485d49ed21d2a0028a4dfb6" + }, + { + "name": "ons.age.0_10@E14001382", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48cb1a0370cf3538c78d43b3" + }, + { + "name": "ons.age.0_10@E14001383", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef11014f27c2856d04c3b198" + }, + { + "name": "ons.age.0_10@E14001384", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4453e7b4e70cc5571a47073" + }, + { + "name": "ons.age.0_10@E14001385", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d81a50f18840a932f3091aa4" + }, + { + "name": "ons.age.0_10@E14001386", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b18f8ec6ad64172ee72d382" + }, + { + "name": "ons.age.0_10@E14001387", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_965b90580b6e00a52044df20" + }, + { + "name": "ons.age.0_10@E14001388", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_945801f3026dd2cc79d1f231" + }, + { + "name": "ons.age.0_10@E14001389", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec017c8cf34455ed3142211" + }, + { + "name": "ons.age.0_10@E14001390", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8dd5710f8f713d0ec222348" + }, + { + "name": "ons.age.0_10@E14001391", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6591270f1e7ee77e3829e426" + }, + { + "name": "ons.age.0_10@E14001392", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9c161a0c885206d2aac5f33" + }, + { + "name": "ons.age.0_10@E14001393", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11709.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5403387d82a8701524be0f97" + }, + { + "name": "ons.age.0_10@E14001394", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca8546c9b1ce3d7f4d149048" + }, + { + "name": "ons.age.0_10@E14001395", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_741c98b184a146e8244039cc" + }, + { + "name": "ons.age.0_10@E14001396", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66e71063e47c9e3878d67bd0" + }, + { + "name": "ons.age.0_10@E14001397", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa051ddf16d051d64ccb3a1" + }, + { + "name": "ons.age.0_10@E14001398", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f3778996b608eb43667a007" + }, + { + "name": "ons.age.0_10@E14001399", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76070af064e9e97d8a812b85" + }, + { + "name": "ons.age.0_10@E14001400", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bff428f9c8677e34ba09f3be" + }, + { + "name": "ons.age.0_10@E14001401", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98a566516fe59918fa8a13ae" + }, + { + "name": "ons.age.0_10@E14001402", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c118abbb40207d9c7665ad8a" + }, + { + "name": "ons.age.0_10@E14001403", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa5444dead2d6d4385b0274" + }, + { + "name": "ons.age.0_10@E14001404", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37128a5fd0b5f2e21f305ce9" + }, + { + "name": "ons.age.0_10@E14001405", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b7d6c4482b3326782cd5b1" + }, + { + "name": "ons.age.0_10@E14001406", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_459c695ac07b03a7e1406615" + }, + { + "name": "ons.age.0_10@E14001407", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33cc31457d2791f0f7b8897b" + }, + { + "name": "ons.age.0_10@E14001408", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb4f053212afc64338d11bf5" + }, + { + "name": "ons.age.0_10@E14001409", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2ab15f261b98868a6936724" + }, + { + "name": "ons.age.0_10@E14001410", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d250788c798d1a571665b862" + }, + { + "name": "ons.age.0_10@E14001411", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14721.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb5f71460b43b03e340d22d1" + }, + { + "name": "ons.age.0_10@E14001412", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_962160b288ad82266687fe94" + }, + { + "name": "ons.age.0_10@E14001413", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8287ca667641370817ad48dd" + }, + { + "name": "ons.age.0_10@E14001414", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d794d58446e8097b64c402bc" + }, + { + "name": "ons.age.0_10@E14001415", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ec405cc905135a2771ee76a" + }, + { + "name": "ons.age.0_10@E14001416", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96ff448aab3ce20ca44b9dbe" + }, + { + "name": "ons.age.0_10@E14001417", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfe8a158477a2a622bea22cb" + }, + { + "name": "ons.age.0_10@E14001418", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc1717a416c353fb836f8011" + }, + { + "name": "ons.age.0_10@E14001419", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61860a7ad06b9764c9548035" + }, + { + "name": "ons.age.0_10@E14001420", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_630d7df0d7e1fc1cc5af3ad5" + }, + { + "name": "ons.age.0_10@E14001421", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c39805e1086b30d69bb75df1" + }, + { + "name": "ons.age.0_10@E14001422", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e895aa9a15b02e9063cbe30c" + }, + { + "name": "ons.age.0_10@E14001423", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8756aab460b97add9ffe75f" + }, + { + "name": "ons.age.0_10@E14001424", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95b768cb60cac50ed996df3" + }, + { + "name": "ons.age.0_10@E14001425", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18242.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9db40c94e9b1164171e5ca3d" + }, + { + "name": "ons.age.0_10@E14001426", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b2dca001d6d434524904e5a" + }, + { + "name": "ons.age.0_10@E14001427", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9e4460acf85484663fbc5d8" + }, + { + "name": "ons.age.0_10@E14001428", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c98845d0e68e1cf484c39b37" + }, + { + "name": "ons.age.0_10@E14001429", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e09bc70e1cfb2483a1c77090" + }, + { + "name": "ons.age.0_10@E14001430", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c731b3a017bf52b899b8ea13" + }, + { + "name": "ons.age.0_10@E14001431", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12237.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45992afb32ba0bdf0921ae04" + }, + { + "name": "ons.age.0_10@E14001432", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3d0010a1a245ceccdfe68f9" + }, + { + "name": "ons.age.0_10@E14001433", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0212af7a0f7dde7e793b138" + }, + { + "name": "ons.age.0_10@E14001434", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7f74bb055c384be6620a5b0" + }, + { + "name": "ons.age.0_10@E14001435", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc7f132aad564dcf06cf8ee7" + }, + { + "name": "ons.age.0_10@E14001436", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cccadb3f3502749301c6ec4e" + }, + { + "name": "ons.age.0_10@E14001437", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd3c835fa52b4c572bd07152" + }, + { + "name": "ons.age.0_10@E14001438", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1b01b47bb4823b93932594" + }, + { + "name": "ons.age.0_10@E14001439", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84259173a1cb9544333eebe9" + }, + { + "name": "ons.age.0_10@E14001440", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c9edc79cff33698d013bce0" + }, + { + "name": "ons.age.0_10@E14001441", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e47bcd43512ef830e9da9fd" + }, + { + "name": "ons.age.0_10@E14001442", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77d1dd2ccf4556ad513f947" + }, + { + "name": "ons.age.0_10@E14001443", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_856c7e9380005ed4a6a6d351" + }, + { + "name": "ons.age.0_10@E14001444", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed19e1ccd4c27f6ec289cec5" + }, + { + "name": "ons.age.0_10@E14001445", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ffe76ffac08106c536096a2" + }, + { + "name": "ons.age.0_10@E14001446", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f635d5f9d88356ed1148d0be" + }, + { + "name": "ons.age.0_10@E14001447", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd83d7ecee8635bd61549376" + }, + { + "name": "ons.age.0_10@E14001448", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15274.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_971d97f62073452de0f18ab4" + }, + { + "name": "ons.age.0_10@E14001449", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a69dabc82f6b5b4c90cd5cb" + }, + { + "name": "ons.age.0_10@E14001450", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e847d19e59149d59a478fb" + }, + { + "name": "ons.age.0_10@E14001451", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffef9d548a5211ab1f7d0556" + }, + { + "name": "ons.age.0_10@E14001452", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c748530fcd1d8d7dfd0c5f71" + }, + { + "name": "ons.age.0_10@E14001453", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_664793d9535a7ec8cc7c9114" + }, + { + "name": "ons.age.0_10@E14001454", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d62545a6499a11628b0685b6" + }, + { + "name": "ons.age.0_10@E14001455", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91f29ebdae744cb3be301ebf" + }, + { + "name": "ons.age.0_10@E14001456", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92389a307c5519c60e8871dd" + }, + { + "name": "ons.age.0_10@E14001457", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_929b2976d86cf59f3c3b399a" + }, + { + "name": "ons.age.0_10@E14001458", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e550335a7ad4ff1fe0cfe40" + }, + { + "name": "ons.age.0_10@E14001459", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90a451a319ad1dbb0772a6a4" + }, + { + "name": "ons.age.0_10@E14001460", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b734b89a4f33cd4390be1e" + }, + { + "name": "ons.age.0_10@E14001461", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccb0f0dea109407d23ecfd04" + }, + { + "name": "ons.age.0_10@E14001462", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd67dea2d7664c56c44d14bc" + }, + { + "name": "ons.age.0_10@E14001463", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c69f5dd1c54efbdd2d68e91d" + }, + { + "name": "ons.age.0_10@E14001464", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dac457ce2e011f0261ee2af4" + }, + { + "name": "ons.age.0_10@E14001465", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df1f75bbfc0c3f0309d9103b" + }, + { + "name": "ons.age.0_10@E14001466", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a319dc0c931c7b2da18afeb8" + }, + { + "name": "ons.age.0_10@E14001467", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f391299c7460f21d3298a3f2" + }, + { + "name": "ons.age.0_10@E14001468", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9418.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64f19baa29f66a6058fba8e" + }, + { + "name": "ons.age.0_10@E14001469", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6ed5ea5831c195ab23b3140" + }, + { + "name": "ons.age.0_10@E14001470", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b82721a353a7cc97ae186405" + }, + { + "name": "ons.age.0_10@E14001471", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e91a5738786c4bc6b7195bb" + }, + { + "name": "ons.age.0_10@E14001472", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a341f8bf832103d9c15f6854" + }, + { + "name": "ons.age.0_10@E14001473", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55fe45b7cfa67d278354a8a1" + }, + { + "name": "ons.age.0_10@E14001474", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4da32e90ccd6c80a8055c518" + }, + { + "name": "ons.age.0_10@E14001475", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a7d7c2ab08d550ce95f70f" + }, + { + "name": "ons.age.0_10@E14001476", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a35c6868d9513a4ec43033b" + }, + { + "name": "ons.age.0_10@E14001477", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dd64ff271f33933424833ab" + }, + { + "name": "ons.age.0_10@E14001478", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb1542987d31ff983881688" + }, + { + "name": "ons.age.0_10@E14001479", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbae788fd81320afab78d2bd" + }, + { + "name": "ons.age.0_10@E14001480", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be878d2a20204518266de35d" + }, + { + "name": "ons.age.0_10@E14001481", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e70f6e412c4453f22a62fbe0" + }, + { + "name": "ons.age.0_10@E14001482", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45a6e9d680d6a9d096c6313e" + }, + { + "name": "ons.age.0_10@E14001483", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfbd99ab36aaba42767e44d5" + }, + { + "name": "ons.age.0_10@E14001484", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd5943943d5df55407edfd41" + }, + { + "name": "ons.age.0_10@E14001485", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56670a148f46996f1bf736cf" + }, + { + "name": "ons.age.0_10@E14001486", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89dd16313e52e6cc448057df" + }, + { + "name": "ons.age.0_10@E14001487", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e53d332fc2dedd0ce49a10b4" + }, + { + "name": "ons.age.0_10@E14001488", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b169fe058f63201e439f1de9" + }, + { + "name": "ons.age.0_10@E14001489", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9ffe226a6b5433cf34a95b3" + }, + { + "name": "ons.age.0_10@E14001490", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_856af7a21e3cfef0ac3afe5f" + }, + { + "name": "ons.age.0_10@E14001491", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c37525702aa92621b01c18f" + }, + { + "name": "ons.age.0_10@E14001492", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9337.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_958c92e7f73470c5dfe0d7d9" + }, + { + "name": "ons.age.0_10@E14001493", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7d7e5e2ac93dd86bcef3d9f" + }, + { + "name": "ons.age.0_10@E14001494", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2a2b947a320b3daef8a6296" + }, + { + "name": "ons.age.0_10@E14001495", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9538.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9be0572c61a6b008ed598914" + }, + { + "name": "ons.age.0_10@E14001496", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_298644c03e7c93e1b3986097" + }, + { + "name": "ons.age.0_10@E14001497", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75f70eae6336a5a7f704566" + }, + { + "name": "ons.age.0_10@E14001498", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94650a0bbf0e87e5ad51959d" + }, + { + "name": "ons.age.0_10@E14001499", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dca31e0259b3a52e3eda325e" + }, + { + "name": "ons.age.0_10@E14001500", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc7252d6acb11d656882758b" + }, + { + "name": "ons.age.0_10@E14001501", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e058120a38d724d8a3560920" + }, + { + "name": "ons.age.0_10@E14001502", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11951.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91df5e8e30785d4650d48dc" + }, + { + "name": "ons.age.0_10@E14001503", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_778df1ddee9f9df4b75e9a6d" + }, + { + "name": "ons.age.0_10@E14001504", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60209b71c146f56b9dd682ab" + }, + { + "name": "ons.age.0_10@E14001505", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5427b90e635aa78c0277bef" + }, + { + "name": "ons.age.0_10@E14001506", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78a12cbc1b3521694a42d00" + }, + { + "name": "ons.age.0_10@E14001507", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2eab6df95d948c2c0e18bde" + }, + { + "name": "ons.age.0_10@E14001508", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9939.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb60e8b224454a4fb277c428" + }, + { + "name": "ons.age.0_10@E14001509", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ae9848799861e9f5480656a" + }, + { + "name": "ons.age.0_10@E14001510", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a6218538eddf6a0943906b9" + }, + { + "name": "ons.age.0_10@E14001511", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde212e19fd1d185ae158fce" + }, + { + "name": "ons.age.0_10@E14001512", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f202f29699a4a855d2d1ed9e" + }, + { + "name": "ons.age.0_10@E14001513", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea94111f30842fbb15c8128" + }, + { + "name": "ons.age.0_10@E14001514", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_322fc66765f8a31e78a5c801" + }, + { + "name": "ons.age.0_10@E14001515", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eca094b4955bb3b59306e609" + }, + { + "name": "ons.age.0_10@E14001516", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_931ab3e48ad87c8561e8975b" + }, + { + "name": "ons.age.0_10@E14001517", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93d793e9d02157de6ec986a8" + }, + { + "name": "ons.age.0_10@E14001518", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddb0e21bc6ff1305ab4b5462" + }, + { + "name": "ons.age.0_10@E14001519", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1b520f1b8cc656f0f7daf93" + }, + { + "name": "ons.age.0_10@E14001520", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee102ff0a221887051e8a3e7" + }, + { + "name": "ons.age.0_10@E14001521", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_977d461b8de1c86310b794f8" + }, + { + "name": "ons.age.0_10@E14001522", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10773.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f49fe87f1852ecb542c34be7" + }, + { + "name": "ons.age.0_10@E14001523", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bda562ab1e92cc53158e99f7" + }, + { + "name": "ons.age.0_10@E14001524", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b2c0362d6c0b6585f6b1b7a" + }, + { + "name": "ons.age.0_10@E14001525", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4192aae196b9ac1c4cbd2b7" + }, + { + "name": "ons.age.0_10@E14001526", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24662b6ad12595e849bba941" + }, + { + "name": "ons.age.0_10@E14001527", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f865c824a6543c67189720d6" + }, + { + "name": "ons.age.0_10@E14001528", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0714f0d0ea01fdaecd39037" + }, + { + "name": "ons.age.0_10@E14001529", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c677ec2b51af57f0de6a782d" + }, + { + "name": "ons.age.0_10@E14001530", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65a3115fa41a51a4021f5a85" + }, + { + "name": "ons.age.0_10@E14001531", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab5f68ff6f50da3363ec6641" + }, + { + "name": "ons.age.0_10@E14001532", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acc23dbaa2eb03434011f9e5" + }, + { + "name": "ons.age.0_10@E14001533", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce23d5da0092e2fedf245535" + }, + { + "name": "ons.age.0_10@E14001534", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f42d12cadda65aebfde1676c" + }, + { + "name": "ons.age.0_10@E14001535", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb53f89e9ee8c93186346839" + }, + { + "name": "ons.age.0_10@E14001536", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8d9e0febb93f5d5b65cb413" + }, + { + "name": "ons.age.0_10@E14001537", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c332e6dcb219e5e384823e1d" + }, + { + "name": "ons.age.0_10@E14001538", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dee0dea8516f448256c0fe5e" + }, + { + "name": "ons.age.0_10@E14001539", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cdd7a730d5c633d4c7c8bb5" + }, + { + "name": "ons.age.0_10@E14001540", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11936.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b56661bf965d100117a71471" + }, + { + "name": "ons.age.0_10@E14001541", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f39f44a66235e9745e15b0e" + }, + { + "name": "ons.age.0_10@E14001542", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6a214b581ee81c353307fc7" + }, + { + "name": "ons.age.0_10@E14001543", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_886ac1f249c78c9c491798e2" + }, + { + "name": "ons.age.0_10@E14001544", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99abf31e1752b56fd4f315f2" + }, + { + "name": "ons.age.0_10@E14001545", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85a453b0e4e4be1624325af7" + }, + { + "name": "ons.age.0_10@E14001546", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbffa9fb4b5beba56e11c600" + }, + { + "name": "ons.age.0_10@E14001547", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a88d6fa932857a002f437850" + }, + { + "name": "ons.age.0_10@E14001548", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0f4918e1fc8c5e30132c61" + }, + { + "name": "ons.age.0_10@E14001549", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2dc6836fe021d68426e4eaf" + }, + { + "name": "ons.age.0_10@E14001550", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df9cb0b6b2538c6ff1b761da" + }, + { + "name": "ons.age.0_10@E14001551", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2d93d2398d60447b2ffccc" + }, + { + "name": "ons.age.0_10@E14001552", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8786040fbb8fb6af3083eb93" + }, + { + "name": "ons.age.0_10@E14001553", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76e66baa4cacf820629bc59e" + }, + { + "name": "ons.age.0_10@E14001554", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cfa7fcbc384e106a37b0db0" + }, + { + "name": "ons.age.0_10@E14001555", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7c55f72d67b8eebe9057078" + }, + { + "name": "ons.age.0_10@E14001556", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c33d4eec76d6c2740f6688a4" + }, + { + "name": "ons.age.0_10@E14001557", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b2483ee8b84b06c32fa334" + }, + { + "name": "ons.age.0_10@E14001558", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1f9e67a3df07e40be90b7e7" + }, + { + "name": "ons.age.0_10@E14001559", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2b917927fafed705702176b" + }, + { + "name": "ons.age.0_10@E14001560", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2d795898627bc8b3bf2a53" + }, + { + "name": "ons.age.0_10@E14001561", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69f26aa103d9751ca609819f" + }, + { + "name": "ons.age.0_10@E14001562", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_747dff95b6db9ccf6d9d5b2f" + }, + { + "name": "ons.age.0_10@E14001563", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f55219b0c0f6f4426f57dd3d" + }, + { + "name": "ons.age.0_10@E14001564", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0950af306667e9f6e13d323" + }, + { + "name": "ons.age.0_10@E14001565", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7ce53284d8f06685d713a2b" + }, + { + "name": "ons.age.0_10@E14001566", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f79e23a96a2a269ecdd7edc" + }, + { + "name": "ons.age.0_10@E14001567", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_268d3800978b445a6e742efc" + }, + { + "name": "ons.age.0_10@E14001568", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c7969ce29ce9dc146e9d109" + }, + { + "name": "ons.age.0_10@E14001569", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf73ae44bd8afa3b586a98b1" + }, + { + "name": "ons.age.0_10@E14001570", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dd7f047289d66be05652b28" + }, + { + "name": "ons.age.0_10@E14001571", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95a8a18e693efc7a72ebe9bf" + }, + { + "name": "ons.age.0_10@E14001572", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9167003e796874bdd6c52a44" + }, + { + "name": "ons.age.0_10@E14001573", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_caadb30eb1c80858016c5c44" + }, + { + "name": "ons.age.0_10@E14001574", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80f45c0e0399ceb365e512cf" + }, + { + "name": "ons.age.0_10@E14001575", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea7e9cca443283e403d9002a" + }, + { + "name": "ons.age.0_10@E14001576", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8cf624ddc093a70721b0dd7" + }, + { + "name": "ons.age.0_10@E14001577", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_345637c67464bdae2496ca71" + }, + { + "name": "ons.age.0_10@E14001578", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e395bf1a26864c970bff7ee2" + }, + { + "name": "ons.age.0_10@E14001579", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3520a5e7536377062652389" + }, + { + "name": "ons.age.0_10@E14001580", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c157d4bf972ff549181e8223" + }, + { + "name": "ons.age.0_10@E14001581", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70fd5faffdb50d6e96aef4eb" + }, + { + "name": "ons.age.0_10@E14001582", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b04ff862029c81c9aa69b2b" + }, + { + "name": "ons.age.0_10@E14001583", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb2f160af4c1d043f356aa2" + }, + { + "name": "ons.age.0_10@E14001584", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d34b2a13c889929640aca4e" + }, + { + "name": "ons.age.0_10@E14001585", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74517989fb17ecaf8833216e" + }, + { + "name": "ons.age.0_10@E14001586", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1ddde91bbb6d5adddd6846c" + }, + { + "name": "ons.age.0_10@E14001587", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dbfa5d3b494128a5a6569cf" + }, + { + "name": "ons.age.0_10@E14001588", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7d95ec7a006bbef7768637f" + }, + { + "name": "ons.age.0_10@E14001589", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8259.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a696d4b38b4682f2741955b8" + }, + { + "name": "ons.age.0_10@E14001590", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_746edba75e302c005b3dc955" + }, + { + "name": "ons.age.0_10@E14001591", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8fc7a8097e88f4d01762745" + }, + { + "name": "ons.age.0_10@E14001592", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12613.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c5a2bfed0efbb11f6b1db93" + }, + { + "name": "ons.age.0_10@E14001593", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c239a950eb17534c51d328a2" + }, + { + "name": "ons.age.0_10@E14001594", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e2db68b84391ffb1db3d954" + }, + { + "name": "ons.age.0_10@E14001595", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18163.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faf391de14a94bf5f72c867a" + }, + { + "name": "ons.age.0_10@E14001596", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d543e8071d47b1af116a89ea" + }, + { + "name": "ons.age.0_10@E14001597", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5959bbb1c03a614a18e6445d" + }, + { + "name": "ons.age.0_10@E14001598", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ba75bf7fd7b94e1bf09bad6" + }, + { + "name": "ons.age.0_10@E14001599", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41004b0b15728e6857e48f60" + }, + { + "name": "ons.age.0_10@E14001600", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6fbe6472361a76a04b9a49f" + }, + { + "name": "ons.age.0_10@E14001601", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9918.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e0040c17b3f9dceff51ba00" + }, + { + "name": "ons.age.0_10@E14001602", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15916.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84560807b4c74ed565cac702" + }, + { + "name": "ons.age.0_10@E14001603", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89a4fccd15bee11c5c547e5f" + }, + { + "name": "ons.age.0_10@E14001604", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea33b4e37ee968830d606722" + }, + { + "name": "ons.age.0_10@E14001605", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a27661d06183da81b921ab13" + }, + { + "name": "ons.age.0_10@N05000001", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed7dccdea20450fc825f7588" + }, + { + "name": "ons.age.0_10@N05000002", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb33bfd7b9b2b17ad5f770b" + }, + { + "name": "ons.age.0_10@N05000003", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77f39ecf7dc464e9473c061f" + }, + { + "name": "ons.age.0_10@N05000004", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb4761eabc14b8f0d8274bc6" + }, + { + "name": "ons.age.0_10@N05000005", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad507eced7b1b3ebcfde0b93" + }, + { + "name": "ons.age.0_10@N05000006", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94deb571380e9ebf3e0c994c" + }, + { + "name": "ons.age.0_10@N05000007", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea597a420cd0be81603bc905" + }, + { + "name": "ons.age.0_10@N05000008", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b76ce927e89329611c6c3900" + }, + { + "name": "ons.age.0_10@N05000009", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38add56c117859e3bf794c58" + }, + { + "name": "ons.age.0_10@N05000010", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dc8c671ceb8b525352d8c6f" + }, + { + "name": "ons.age.0_10@N05000011", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_429203ddea905087f9b09a73" + }, + { + "name": "ons.age.0_10@N05000012", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abf2528ecd1226529daf5739" + }, + { + "name": "ons.age.0_10@N05000013", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c697510ee674ac9b3b5da0ee" + }, + { + "name": "ons.age.0_10@N05000014", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7e0888a5dfd9399e4cfb8b1" + }, + { + "name": "ons.age.0_10@N05000015", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed3a4b6ea569702c2b1542eb" + }, + { + "name": "ons.age.0_10@N05000016", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_715f9eb5870c159aa1e3fa1d" + }, + { + "name": "ons.age.0_10@N05000017", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27ba1a1d76e71e14b360b43" + }, + { + "name": "ons.age.0_10@N05000018", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3335c691ca17311ef9969fc" + }, + { + "name": "ons.age.0_10@S14000021", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11146.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f9625119ff0be95894e1bd" + }, + { + "name": "ons.age.0_10@S14000027", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 2138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8314993d4a049e2a5eb7dc1" + }, + { + "name": "ons.age.0_10@S14000045", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb9d309133e0a70df0d20872" + }, + { + "name": "ons.age.0_10@S14000048", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f67c953cd739fc13d87ba3" + }, + { + "name": "ons.age.0_10@S14000051", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 4221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa7dcf045061866ccf680057" + }, + { + "name": "ons.age.0_10@S14000060", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da53d66bf4f4ffc87e9edefb" + }, + { + "name": "ons.age.0_10@S14000061", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7cebb08f92f9b378d0e5c6f" + }, + { + "name": "ons.age.0_10@S14000062", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64260d40aba8f9c2d976d28" + }, + { + "name": "ons.age.0_10@S14000063", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ca479eabdef3ef97e5123c" + }, + { + "name": "ons.age.0_10@S14000064", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6496cd2f7de5066f1db64ea" + }, + { + "name": "ons.age.0_10@S14000065", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c54a2de4f86e22ac3a7c92d5" + }, + { + "name": "ons.age.0_10@S14000066", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0de86d61cf2e6fd6b148e0d" + }, + { + "name": "ons.age.0_10@S14000067", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd79a944f076fb57ec2b7ebf" + }, + { + "name": "ons.age.0_10@S14000068", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff17370f7c54399de9e6a26a" + }, + { + "name": "ons.age.0_10@S14000069", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e382ce645a57c83f3d65b6d2" + }, + { + "name": "ons.age.0_10@S14000070", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa9cd942871eb4184f3b18aa" + }, + { + "name": "ons.age.0_10@S14000071", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9116.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfc925875d73d3c1d10773fc" + }, + { + "name": "ons.age.0_10@S14000072", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd555c17a838a04312cccccb" + }, + { + "name": "ons.age.0_10@S14000073", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88cdffbfc9b3b7fe0411030" + }, + { + "name": "ons.age.0_10@S14000074", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e357d6868fb8b0bc9646fdea" + }, + { + "name": "ons.age.0_10@S14000075", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f90ba530c5d5d2d38adade55" + }, + { + "name": "ons.age.0_10@S14000076", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f412bcce96371db269bf3c08" + }, + { + "name": "ons.age.0_10@S14000077", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8335a410b6b60128825785a" + }, + { + "name": "ons.age.0_10@S14000078", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe04962ec302a88d287d94a" + }, + { + "name": "ons.age.0_10@S14000079", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c68d19fc533abbd345b7e066" + }, + { + "name": "ons.age.0_10@S14000080", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc8279413d578d474d8f2978" + }, + { + "name": "ons.age.0_10@S14000081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5bb12def8185d73f525e7cd" + }, + { + "name": "ons.age.0_10@S14000082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebdeec9681b235453072a63e" + }, + { + "name": "ons.age.0_10@S14000083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9405.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d39843d07163884840514338" + }, + { + "name": "ons.age.0_10@S14000084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11078.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4ec6880086ee6f83b83bd2" + }, + { + "name": "ons.age.0_10@S14000085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6497c05ef33734466d2591d" + }, + { + "name": "ons.age.0_10@S14000086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f589b7b6ba64dc65041322dc" + }, + { + "name": "ons.age.0_10@S14000087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8cdf663c2da129e2891d6d7" + }, + { + "name": "ons.age.0_10@S14000088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f458cfe4fcb63d468343c640" + }, + { + "name": "ons.age.0_10@S14000089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c79779e4e1653716fcd1dcae" + }, + { + "name": "ons.age.0_10@S14000090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9334.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db490f2ae90cea98315af95b" + }, + { + "name": "ons.age.0_10@S14000091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9087319447f799a75d20d08" + }, + { + "name": "ons.age.0_10@S14000092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9907.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5b1bbc555f34d86f081796" + }, + { + "name": "ons.age.0_10@S14000093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f319ba0640d73d72ab6a06f0" + }, + { + "name": "ons.age.0_10@S14000094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f29338788462da5e07e22441" + }, + { + "name": "ons.age.0_10@S14000095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea609c53327b4f9eab9748b0" + }, + { + "name": "ons.age.0_10@S14000096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7c29b06170fa866cce94b7" + }, + { + "name": "ons.age.0_10@S14000097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f66c9577f11288f489f04f6c" + }, + { + "name": "ons.age.0_10@S14000098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e17b151cc3d62c8bd96e322b" + }, + { + "name": "ons.age.0_10@S14000099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e67f518652f15d8e866100ab" + }, + { + "name": "ons.age.0_10@S14000100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7196.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5ed7e1e60833822c251409e" + }, + { + "name": "ons.age.0_10@S14000101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0f3358f4635aab26dd8e1f8" + }, + { + "name": "ons.age.0_10@S14000102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff49d27288aede2c4a74abe5" + }, + { + "name": "ons.age.0_10@S14000103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd1bf1899114f808b0707348" + }, + { + "name": "ons.age.0_10@S14000104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9874.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f805f116155704cf88b26675" + }, + { + "name": "ons.age.0_10@S14000105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7977e13c0b40a235b1583ee" + }, + { + "name": "ons.age.0_10@S14000106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2115c6fbf8070d1ffd1a005" + }, + { + "name": "ons.age.0_10@S14000107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f112c775d94f5cd498e46ebb" + }, + { + "name": "ons.age.0_10@S14000108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1e7e5a8b86794ad8dcf08ef" + }, + { + "name": "ons.age.0_10@S14000109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d97af0296b733d18f291467b" + }, + { + "name": "ons.age.0_10@S14000110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa9aa163a23ff452bfb505a7" + }, + { + "name": "ons.age.0_10@S14000111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9c79a5a304955b3d2f10616" + }, + { + "name": "ons.age.0_10@W07000081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a3b17675df927fe4b4aa170" + }, + { + "name": "ons.age.0_10@W07000082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec99fd5fa5266f82fda91f8d" + }, + { + "name": "ons.age.0_10@W07000083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec178760a54ddb5591f10222" + }, + { + "name": "ons.age.0_10@W07000084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10294.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf31e9a3938bddbfa99cdbd8" + }, + { + "name": "ons.age.0_10@W07000085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8a2e76c60f815351b7760e8" + }, + { + "name": "ons.age.0_10@W07000086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2374290e0ffe4a60a8bf9438" + }, + { + "name": "ons.age.0_10@W07000087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afef7a7a5b7a9c62cc4fc87b" + }, + { + "name": "ons.age.0_10@W07000088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5322a73d10a965926b2467df" + }, + { + "name": "ons.age.0_10@W07000089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdae1dbcb91625b682022249" + }, + { + "name": "ons.age.0_10@W07000090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_17bf87e046a30e5effd69774" + }, + { + "name": "ons.age.0_10@W07000091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10083.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa05b1d86f397660a9ac2e3" + }, + { + "name": "ons.age.0_10@W07000092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1eb692afe1199caef2378cf" + }, + { + "name": "ons.age.0_10@W07000093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e44cd3798195a3dd89845178" + }, + { + "name": "ons.age.0_10@W07000094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_913973d0c9dd54370ad1e540" + }, + { + "name": "ons.age.0_10@W07000095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bba44c56ad2dd5cb102db25a" + }, + { + "name": "ons.age.0_10@W07000096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad69fe6531b63aeef42aa487" + }, + { + "name": "ons.age.0_10@W07000097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_add041b21db1769cf93333d3" + }, + { + "name": "ons.age.0_10@W07000098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6411fed6fe5ebe59688d1563" + }, + { + "name": "ons.age.0_10@W07000099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab92582691149e610791b864" + }, + { + "name": "ons.age.0_10@W07000100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8db31a418447d2c10b8c11fb" + }, + { + "name": "ons.age.0_10@W07000101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcec6ff84439ef8445966fb4" + }, + { + "name": "ons.age.0_10@W07000102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ed4187777f68ab8dd02e155" + }, + { + "name": "ons.age.0_10@W07000103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab14ac35fcb2a9eb12f92d26" + }, + { + "name": "ons.age.0_10@W07000104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_789f31508fdbf23a22dcc3c8" + }, + { + "name": "ons.age.0_10@W07000105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce5447f000d1b785fd616f54" + }, + { + "name": "ons.age.0_10@W07000106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2641b3637d5adaddf0aee85" + }, + { + "name": "ons.age.0_10@W07000107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8e8fdc64d56f55148da44a0" + }, + { + "name": "ons.age.0_10@W07000108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c94cbd3cdf7446c1a8ad08a7" + }, + { + "name": "ons.age.0_10@W07000109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a524eb12eec6f6bc1bfbfd13" + }, + { + "name": "ons.age.0_10@W07000110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96c957677370062fd5f3927" + }, + { + "name": "ons.age.0_10@W07000111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1cee548840aab9ff9351cbe" + }, + { + "name": "ons.age.0_10@W07000112", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e244d54c8687de46c62a5d0" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.0_10@E06000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9ba032ea41dd72b71f7ccfd" + }, + { + "name": "ons.age.0_10@E06000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd1230f45de4cd4dd5880efc" + }, + { + "name": "ons.age.0_10@E06000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddccdac7e8fe3de75d7f67bd" + }, + { + "name": "ons.age.0_10@E06000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a6e6b06dcc544f6b12638ea" + }, + { + "name": "ons.age.0_10@E06000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec8b20cca7e25352245f9d6" + }, + { + "name": "ons.age.0_10@E06000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be429a0f09fd3cdc98a8b966" + }, + { + "name": "ons.age.0_10@E06000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c21204e1e76d0df30e8b11dc" + }, + { + "name": "ons.age.0_10@E06000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2073e3ed2761ca17df0ad2b" + }, + { + "name": "ons.age.0_10@E06000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4632430df499f287edcf928" + }, + { + "name": "ons.age.0_10@E06000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1dd31ba492a5ec754d6d33b" + }, + { + "name": "ons.age.0_10@E06000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 32246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae15cd5eb93d1297565ff522" + }, + { + "name": "ons.age.0_10@E06000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e28f65661099c2db5a8e11ca" + }, + { + "name": "ons.age.0_10@E06000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17734.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae8838d078428a200dea45b7" + }, + { + "name": "ons.age.0_10@E06000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7dadbb84fc6d7071755e03f" + }, + { + "name": "ons.age.0_10@E06000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 32468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_820214ffcc4fb96dc310b92d" + }, + { + "name": "ons.age.0_10@E06000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 47218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0760011ce8a6903d65c45b5" + }, + { + "name": "ons.age.0_10@E06000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc85395e1887fc24db91c410" + }, + { + "name": "ons.age.0_10@E06000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 36436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3b97afa7849483d22e38942" + }, + { + "name": "ons.age.0_10@E06000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8c51dfadde9ce2e3235d1c" + }, + { + "name": "ons.age.0_10@E06000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22907.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afa3b07102d242bc4b17efd1" + }, + { + "name": "ons.age.0_10@E06000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ddb350b7354241622d80e9" + }, + { + "name": "ons.age.0_10@E06000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec3ee1cf5fdca916f98f4e55" + }, + { + "name": "ons.age.0_10@E06000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 49545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2cbe87362934cae40b51ea0" + }, + { + "name": "ons.age.0_10@E06000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc0106b1ef97e59a3cb9d8a7" + }, + { + "name": "ons.age.0_10@E06000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a901ce9d39a40eaf1eb99c0" + }, + { + "name": "ons.age.0_10@E06000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 26909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4492337639734020025801b" + }, + { + "name": "ons.age.0_10@E06000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea5e3c7f3b4fc3c1c693826b" + }, + { + "name": "ons.age.0_10@E06000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 28482.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc5beba57b097149c7e520fa" + }, + { + "name": "ons.age.0_10@E06000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 30234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d58289b48f12749acbf265a0" + }, + { + "name": "ons.age.0_10@E06000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3c7098b65307ee34c7f82c5" + }, + { + "name": "ons.age.0_10@E06000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5c10212bd5dd89e29f6219d" + }, + { + "name": "ons.age.0_10@E06000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4211b481f926826b5f1b103" + }, + { + "name": "ons.age.0_10@E06000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 36979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b948a77901a94b878166b3" + }, + { + "name": "ons.age.0_10@E06000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3cfb2385c728ca15d70b39c" + }, + { + "name": "ons.age.0_10@E06000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98f34246e881ea30a2ae60f5" + }, + { + "name": "ons.age.0_10@E06000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aeff01f79ec15749171a3f7" + }, + { + "name": "ons.age.0_10@E06000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 24638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baa78a3069e84d9676af7836" + }, + { + "name": "ons.age.0_10@E06000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8219a451629ab9ea7771764" + }, + { + "name": "ons.age.0_10@E06000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5fe46ef8180255832be042e" + }, + { + "name": "ons.age.0_10@E06000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 38811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c9d09e4e81414e764bc108" + }, + { + "name": "ons.age.0_10@E06000043", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfca5864b85a4c93e163b6fc" + }, + { + "name": "ons.age.0_10@E06000044", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb847d54dfc8e954072bbea6" + }, + { + "name": "ons.age.0_10@E06000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27146.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90fc2e587f93d46c40a8294d" + }, + { + "name": "ons.age.0_10@E06000046", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec6f58fb5e6288af15efc82b" + }, + { + "name": "ons.age.0_10@E06000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 51614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f252c7ad8c5b09f381ce5edb" + }, + { + "name": "ons.age.0_10@E06000049", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 43859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48edb5bef9c5a5789a4f7a4b" + }, + { + "name": "ons.age.0_10@E06000050", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 37191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_405f6563b3c7c3ab1a65979b" + }, + { + "name": "ons.age.0_10@E06000051", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 30300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab87f9067b9680720ddc07e1" + }, + { + "name": "ons.age.0_10@E06000052", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 53559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db9a36e1df88d3c9e8b6c682" + }, + { + "name": "ons.age.0_10@E06000053", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd91d73f5234b50311245bdd" + }, + { + "name": "ons.age.0_10@E06000054", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 53250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa5d3385c7316bcb7a1468d1" + }, + { + "name": "ons.age.0_10@E06000055", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f4dae8a52b52bbb95b6d7e" + }, + { + "name": "ons.age.0_10@E06000056", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 39233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcdf416f1bedff6b2e7ba3c2" + }, + { + "name": "ons.age.0_10@E06000057", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 30193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6c61aeba1cf098add317876" + }, + { + "name": "ons.age.0_10@E06000058", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 38187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6741472393ac6d2c5a3a64d" + }, + { + "name": "ons.age.0_10@E06000059", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 32440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e834d1ea3d975e67b9bece0b" + }, + { + "name": "ons.age.0_10@E06000060", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 67479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ee5a4efb0129abe736e80f" + }, + { + "name": "ons.age.0_10@E06000061", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 42914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d323d4344336c9f6446c2fb4" + }, + { + "name": "ons.age.0_10@E06000062", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 50813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb65a21c42e3b615e23cf261" + }, + { + "name": "ons.age.0_10@E06000063", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6066d90c04d6c035ac0e639" + }, + { + "name": "ons.age.0_10@E06000064", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac317a29ae1d7069025216f3" + }, + { + "name": "ons.age.0_10@E06000065", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 58717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c46cef3066db2cd103d11e96" + }, + { + "name": "ons.age.0_10@E06000066", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 57042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5db68f96471594b6813195b" + }, + { + "name": "ons.age.0_10@E07000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7da0b3da9d6b945967dc806d" + }, + { + "name": "ons.age.0_10@E07000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f48eb6621f0c50ef4b0b020f" + }, + { + "name": "ons.age.0_10@E07000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c67203ac1f129d9a55f3765a" + }, + { + "name": "ons.age.0_10@E07000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e28f7a93a5d81ac155835e" + }, + { + "name": "ons.age.0_10@E07000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fade6a8e61f28ff1a53a0dbd" + }, + { + "name": "ons.age.0_10@E07000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4fa8cbf7819b08c7781f235" + }, + { + "name": "ons.age.0_10@E07000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3d5639dcf5aa4950e121a40" + }, + { + "name": "ons.age.0_10@E07000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dbb504fa1a2af5279b0023" + }, + { + "name": "ons.age.0_10@E07000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae5eee87cc22145336a38a80" + }, + { + "name": "ons.age.0_10@E07000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c2a0656d56a91d71171ee2" + }, + { + "name": "ons.age.0_10@E07000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7858c352e452e0bbb0f7ac79" + }, + { + "name": "ons.age.0_10@E07000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7366709050c7779a37a8e8c" + }, + { + "name": "ons.age.0_10@E07000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fddf3e2e5164fc88130a4034" + }, + { + "name": "ons.age.0_10@E07000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb9f46698ac56dfd6687e5c" + }, + { + "name": "ons.age.0_10@E07000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11936.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca5c7c0220b2083e16f10ec3" + }, + { + "name": "ons.age.0_10@E07000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d49f5e17785125f617e1b9" + }, + { + "name": "ons.age.0_10@E07000043", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_795dee00b7930d60fb1dda43" + }, + { + "name": "ons.age.0_10@E07000044", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec2e3c5dc6dde8ae9e289dfd" + }, + { + "name": "ons.age.0_10@E07000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c20dcf9e6717fe87b3b20c9" + }, + { + "name": "ons.age.0_10@E07000046", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5e3b8aaae786ad5b56c03ea" + }, + { + "name": "ons.age.0_10@E07000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 4831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d77dc3a0efe737e8b6629692" + }, + { + "name": "ons.age.0_10@E07000061", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e090546702d4a612f35f8444" + }, + { + "name": "ons.age.0_10@E07000062", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c53db92cbc7e8b51b198873a" + }, + { + "name": "ons.age.0_10@E07000063", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e04fe986e9e791f8ba8caf2a" + }, + { + "name": "ons.age.0_10@E07000064", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faf3a21ffb5762375ecdc1c0" + }, + { + "name": "ons.age.0_10@E07000065", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_607621c821722e62626afe94" + }, + { + "name": "ons.age.0_10@E07000066", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc56dc9c58818525bb919f31" + }, + { + "name": "ons.age.0_10@E07000067", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1337cd4ac83258670738841" + }, + { + "name": "ons.age.0_10@E07000068", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d09d65bb06cd98cd271f398" + }, + { + "name": "ons.age.0_10@E07000069", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa647c3bcf66820b02f67922" + }, + { + "name": "ons.age.0_10@E07000070", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e516d79f4422968f3c7a7829" + }, + { + "name": "ons.age.0_10@E07000071", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75fa740fd7583a8bdcc08be" + }, + { + "name": "ons.age.0_10@E07000072", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa0d8a5af22cf597205fce1" + }, + { + "name": "ons.age.0_10@E07000073", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baea6bc1316f2a6712568f7b" + }, + { + "name": "ons.age.0_10@E07000074", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd5a5d044828893d8bc0b070" + }, + { + "name": "ons.age.0_10@E07000075", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c4d982070b9d90700aa3086" + }, + { + "name": "ons.age.0_10@E07000076", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8fb4c4b16b9cb0f8b5bb31a" + }, + { + "name": "ons.age.0_10@E07000077", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e01077d3c1f45a5f20e334da" + }, + { + "name": "ons.age.0_10@E07000078", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_630bdf82dfd0f7b2f8e94683" + }, + { + "name": "ons.age.0_10@E07000079", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e52f5f209469ff23f443e846" + }, + { + "name": "ons.age.0_10@E07000080", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8543.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0a2a9196428fdf662b23672" + }, + { + "name": "ons.age.0_10@E07000081", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e2611b3f2750114add4c0bc" + }, + { + "name": "ons.age.0_10@E07000082", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c231cc078fc8afa26db63a6" + }, + { + "name": "ons.age.0_10@E07000083", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11592.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7c1c25a0ef75f16fecf3c3" + }, + { + "name": "ons.age.0_10@E07000084", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4c0e7395b7168162e478d4d" + }, + { + "name": "ons.age.0_10@E07000085", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b91a7a91b754dd61e4ccec" + }, + { + "name": "ons.age.0_10@E07000086", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e98cae4a15dcf791a4c46738" + }, + { + "name": "ons.age.0_10@E07000087", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_876bfaecdd28429d09423c26" + }, + { + "name": "ons.age.0_10@E07000088", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7aad6d52eb9d1f6b89144b2" + }, + { + "name": "ons.age.0_10@E07000089", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec70e42b202eb03cbab43d2c" + }, + { + "name": "ons.age.0_10@E07000090", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_851b3a8d8581dacb1f7dab56" + }, + { + "name": "ons.age.0_10@E07000091", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b221d231c332b203c19cbc" + }, + { + "name": "ons.age.0_10@E07000092", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f20a5210c4a2af81433d7a2e" + }, + { + "name": "ons.age.0_10@E07000093", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dcd3e052f3a0f36b964ef98" + }, + { + "name": "ons.age.0_10@E07000094", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12bdf3f4902b288bd156cb6" + }, + { + "name": "ons.age.0_10@E07000095", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4076fd93f3e3bcd660d9cd1" + }, + { + "name": "ons.age.0_10@E07000096", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35e9dfdf5f258e5dffb27e86" + }, + { + "name": "ons.age.0_10@E07000098", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf203b2ed097bdf53ec503f4" + }, + { + "name": "ons.age.0_10@E07000099", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_feca1ee1b94edc62351cb5aa" + }, + { + "name": "ons.age.0_10@E07000102", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe31ce744d4ded38758821e" + }, + { + "name": "ons.age.0_10@E07000103", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13824.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b976e08857b83fbdc2aa0ccc" + }, + { + "name": "ons.age.0_10@E07000105", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb331f5b99aececab58618c4" + }, + { + "name": "ons.age.0_10@E07000106", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f51aee1176781e5a4d0c4123" + }, + { + "name": "ons.age.0_10@E07000107", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecffdac32f29a960e8a4b089" + }, + { + "name": "ons.age.0_10@E07000108", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee80e341e631981a57d4ecbe" + }, + { + "name": "ons.age.0_10@E07000109", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaf8a456a5a65897a52241de" + }, + { + "name": "ons.age.0_10@E07000110", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbcdce610cca71331449c3f0" + }, + { + "name": "ons.age.0_10@E07000111", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e30c409704e2eb977066f4fd" + }, + { + "name": "ons.age.0_10@E07000112", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5488f2f0564799aa93ec007" + }, + { + "name": "ons.age.0_10@E07000113", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b71c59976bfdd74f1bac34f8" + }, + { + "name": "ons.age.0_10@E07000114", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3f47eece2ddb418301aafd1" + }, + { + "name": "ons.age.0_10@E07000115", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efcaa4f23cadd972e69d73cb" + }, + { + "name": "ons.age.0_10@E07000116", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d36863270d50135d1b9721e" + }, + { + "name": "ons.age.0_10@E07000117", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f823f76feeff491086ba5a11" + }, + { + "name": "ons.age.0_10@E07000118", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_702d81997bbac58b915d9020" + }, + { + "name": "ons.age.0_10@E07000119", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa452d6bdf106563a3ca168c" + }, + { + "name": "ons.age.0_10@E07000120", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d834b98173a4291cda279d8c" + }, + { + "name": "ons.age.0_10@E07000121", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b250123151add4147f4878d8" + }, + { + "name": "ons.age.0_10@E07000122", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f5dd341141a1d53c551761" + }, + { + "name": "ons.age.0_10@E07000123", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19633.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a0f9a25f9b8caf72555501c" + }, + { + "name": "ons.age.0_10@E07000124", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e77e2b7cb7651e64d92a75b8" + }, + { + "name": "ons.age.0_10@E07000125", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a644f32be73991ed5e2621" + }, + { + "name": "ons.age.0_10@E07000126", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2dc11a29cc9359eca2bb272" + }, + { + "name": "ons.age.0_10@E07000127", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2abff65cc09e1a2b132f070" + }, + { + "name": "ons.age.0_10@E07000128", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d06d4ce3781bc19acfcdb370" + }, + { + "name": "ons.age.0_10@E07000129", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_843312cd64744d93b794c482" + }, + { + "name": "ons.age.0_10@E07000130", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd8324694335db090ce88386" + }, + { + "name": "ons.age.0_10@E07000131", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a96e401944d3c83cd0901ccf" + }, + { + "name": "ons.age.0_10@E07000132", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78044be3af3d9ba4aed9381" + }, + { + "name": "ons.age.0_10@E07000133", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef18b69158ce96af9cd18175" + }, + { + "name": "ons.age.0_10@E07000134", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9ed7ef2890d2f5689033c9e" + }, + { + "name": "ons.age.0_10@E07000135", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f29592306180413bfb72c7b6" + }, + { + "name": "ons.age.0_10@E07000136", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47332e28876faaa771854ab4" + }, + { + "name": "ons.age.0_10@E07000137", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11643.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b940b63063f38cfa483ce89a" + }, + { + "name": "ons.age.0_10@E07000138", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d09e1f4e1515cf34f9adb13" + }, + { + "name": "ons.age.0_10@E07000139", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e342d39944797aa4c7653c7" + }, + { + "name": "ons.age.0_10@E07000140", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c03b5feb02a3eb863c635efd" + }, + { + "name": "ons.age.0_10@E07000141", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f8870164226fb2448ea58d" + }, + { + "name": "ons.age.0_10@E07000142", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca2b8c6f89c114e5717707b1" + }, + { + "name": "ons.age.0_10@E07000143", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e413d2cd21007e862385601e" + }, + { + "name": "ons.age.0_10@E07000144", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a5c44c9956820a55985088" + }, + { + "name": "ons.age.0_10@E07000145", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b989e41d1ae0ecfb8000d542" + }, + { + "name": "ons.age.0_10@E07000146", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15130.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b90970118ae5b1a29f0040df" + }, + { + "name": "ons.age.0_10@E07000147", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a40aae340f7dc07ece912934" + }, + { + "name": "ons.age.0_10@E07000148", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a45163bde823ab682b50ae79" + }, + { + "name": "ons.age.0_10@E07000149", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5a5ed1dc602a791de70ae22" + }, + { + "name": "ons.age.0_10@E07000170", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e6d0f88b1152e9d942de6fa" + }, + { + "name": "ons.age.0_10@E07000171", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca5d390975910af9a43a7cc5" + }, + { + "name": "ons.age.0_10@E07000172", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_949658ced8b1b70bb5a5c85a" + }, + { + "name": "ons.age.0_10@E07000173", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b722a74f3d1f1ec250483a40" + }, + { + "name": "ons.age.0_10@E07000174", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b12d85a4fada336e47d229ba" + }, + { + "name": "ons.age.0_10@E07000175", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_912392336f71ddf3f6f8563b" + }, + { + "name": "ons.age.0_10@E07000176", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13127.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17ecfe7712739eb45d7c5da" + }, + { + "name": "ons.age.0_10@E07000177", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b0325b2a70a24167e63abe" + }, + { + "name": "ons.age.0_10@E07000178", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4fa1c58e50fb8d43e9e8ebf" + }, + { + "name": "ons.age.0_10@E07000179", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17083.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99fc5e85ff35e8e4badfcbc0" + }, + { + "name": "ons.age.0_10@E07000180", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dea3a63c4e0e320dca8e1620" + }, + { + "name": "ons.age.0_10@E07000181", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e283da33babdd01f38af9adf" + }, + { + "name": "ons.age.0_10@E07000192", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da8ce1c6ed6deefcb7cec74f" + }, + { + "name": "ons.age.0_10@E07000193", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f898d48912fca1cc3d65ed0" + }, + { + "name": "ons.age.0_10@E07000194", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad500825da7d8fcc4fb086d6" + }, + { + "name": "ons.age.0_10@E07000195", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d24009063dea998feac007a5" + }, + { + "name": "ons.age.0_10@E07000196", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7d4d1c23832a64edafe047e" + }, + { + "name": "ons.age.0_10@E07000197", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4b7b7c060e53fdbdc23475b" + }, + { + "name": "ons.age.0_10@E07000198", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed2a67d393bf9813a6bda111" + }, + { + "name": "ons.age.0_10@E07000199", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87668705d846a9bd7f9a08eb" + }, + { + "name": "ons.age.0_10@E07000200", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_947436c01bfe41fd5a944508" + }, + { + "name": "ons.age.0_10@E07000202", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db5497bce07f674d6deba2b2" + }, + { + "name": "ons.age.0_10@E07000203", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff5525051f69121d6e2bc902" + }, + { + "name": "ons.age.0_10@E07000207", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e96e5bb20248433df74f3cb" + }, + { + "name": "ons.age.0_10@E07000208", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27d09a04d0ab87f7edc72c3" + }, + { + "name": "ons.age.0_10@E07000209", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f9c1ed64dbf7d10f86944bc" + }, + { + "name": "ons.age.0_10@E07000210", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e80f4a87e9d28e2bb09f5312" + }, + { + "name": "ons.age.0_10@E07000211", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76bc68573bb5683dca25c2a1" + }, + { + "name": "ons.age.0_10@E07000212", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b22dd1b28cb3f447f2f38543" + }, + { + "name": "ons.age.0_10@E07000213", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12590.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8b96864913cb2298d8f5de4" + }, + { + "name": "ons.age.0_10@E07000214", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9fd71fa46e7600bc6b2d6a" + }, + { + "name": "ons.age.0_10@E07000215", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e91b54980aa02e3afbdf91e3" + }, + { + "name": "ons.age.0_10@E07000216", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a35e5c8da9ad73f6dde19a8" + }, + { + "name": "ons.age.0_10@E07000217", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec177243f532d08d8bed4cc" + }, + { + "name": "ons.age.0_10@E07000218", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d116ecaae967a9828e08a6be" + }, + { + "name": "ons.age.0_10@E07000219", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69c7dd3787986d84bea8cc08" + }, + { + "name": "ons.age.0_10@E07000220", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb926fcb8eb500f136e6c5cd" + }, + { + "name": "ons.age.0_10@E07000221", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c71797fb1acd3792fcc67578" + }, + { + "name": "ons.age.0_10@E07000222", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdcf4b26b2f8387abb5695bb" + }, + { + "name": "ons.age.0_10@E07000223", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da448202dc4791d9e69e1a30" + }, + { + "name": "ons.age.0_10@E07000224", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3496a06a635a4a84e409364" + }, + { + "name": "ons.age.0_10@E07000225", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df2f82d60655d6f49df0ae75" + }, + { + "name": "ons.age.0_10@E07000226", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68e6f8a8daf97d711e506607" + }, + { + "name": "ons.age.0_10@E07000227", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd9f669e6b409416aa2fc1db" + }, + { + "name": "ons.age.0_10@E07000228", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18512.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c861444791240214374092a3" + }, + { + "name": "ons.age.0_10@E07000229", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10884.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8498f919040d7a02377d325d" + }, + { + "name": "ons.age.0_10@E07000234", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b43924111440ce16af534e79" + }, + { + "name": "ons.age.0_10@E07000235", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afdfe5a8784a6f998adf09be" + }, + { + "name": "ons.age.0_10@E07000236", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89609b9e1ee80161bab920f1" + }, + { + "name": "ons.age.0_10@E07000237", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc7ad30e8867bb6d65055a8" + }, + { + "name": "ons.age.0_10@E07000238", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa562972358967d041b8182" + }, + { + "name": "ons.age.0_10@E07000239", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd006e7cdbe61a2aaa23f970" + }, + { + "name": "ons.age.0_10@E07000240", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55dad18a88ec4a9866a5a840" + }, + { + "name": "ons.age.0_10@E07000241", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e54e88299e0a4890646ff6b5" + }, + { + "name": "ons.age.0_10@E07000242", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7a931c1f1e477c8a4143b21" + }, + { + "name": "ons.age.0_10@E07000243", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d03bdb747b7d8a41cacb0578" + }, + { + "name": "ons.age.0_10@E07000244", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_909713b9a4026e2fe9c285e4" + }, + { + "name": "ons.age.0_10@E07000245", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21030.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b40cdbb07acc3fbb18152a6e" + }, + { + "name": "ons.age.0_10@E08000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 39706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_680d61e8b6f5694b0f1e9669" + }, + { + "name": "ons.age.0_10@E08000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f303324f3030b42305f07ded" + }, + { + "name": "ons.age.0_10@E08000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 69401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc8d7a9a507a51bf842761b" + }, + { + "name": "ons.age.0_10@E08000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5feb7bec264d51290649d6c" + }, + { + "name": "ons.age.0_10@E08000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 30974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d51107f5892c12f598f08c54" + }, + { + "name": "ons.age.0_10@E08000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc56a76e6fb6df1d5a2e9bfc" + }, + { + "name": "ons.age.0_10@E08000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 34496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbe2865bce5063d403e38743" + }, + { + "name": "ons.age.0_10@E08000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd3053df2900128d8817f425" + }, + { + "name": "ons.age.0_10@E08000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 28578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ceba7bda1cfead1a1a497ab" + }, + { + "name": "ons.age.0_10@E08000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 38202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca129d4b5113f71d2e6cbd33" + }, + { + "name": "ons.age.0_10@E08000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9248558f1702a36425cd0446" + }, + { + "name": "ons.age.0_10@E08000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 53849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd3258e979f0ede932c916c6" + }, + { + "name": "ons.age.0_10@E08000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75cae08ab5aa5b58c70f0df" + }, + { + "name": "ons.age.0_10@E08000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 28841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b03d31ba3497cde534e0324c" + }, + { + "name": "ons.age.0_10@E08000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 34219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78532ebd6d60a3a71d25aa5f" + }, + { + "name": "ons.age.0_10@E08000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0849aee99e2ced2ca23c5e8" + }, + { + "name": "ons.age.0_10@E08000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 36380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46b712d0be1dbb15c3e79cc2" + }, + { + "name": "ons.age.0_10@E08000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 31490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df8de7f3cb2e24cc1e349cd5" + }, + { + "name": "ons.age.0_10@E08000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 61921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3c89dbf50f7db870c0d21b1" + }, + { + "name": "ons.age.0_10@E08000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd5a3e461d8e6a6df8590f78" + }, + { + "name": "ons.age.0_10@E08000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9ac59a742e62ccc6500af46" + }, + { + "name": "ons.age.0_10@E08000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16148.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc93ae700e5b0c42f46b36af" + }, + { + "name": "ons.age.0_10@E08000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 29737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fade660d357caf331d622584" + }, + { + "name": "ons.age.0_10@E08000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 154027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77664456f594f73b879cb46" + }, + { + "name": "ons.age.0_10@E08000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 44470.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96ef92df8e221bdcffb0a817" + }, + { + "name": "ons.age.0_10@E08000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 37891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf03955497ab38336dacabc1" + }, + { + "name": "ons.age.0_10@E08000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 46990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f36f889376e7c9f94ccac294" + }, + { + "name": "ons.age.0_10@E08000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acebaf7548ffb2701cd3d4e7" + }, + { + "name": "ons.age.0_10@E08000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 38353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba773fd767c42d691c0bfb9a" + }, + { + "name": "ons.age.0_10@E08000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 36459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb13d753c8cfdaba55236a71" + }, + { + "name": "ons.age.0_10@E08000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 74726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7be0665bd0dfcb721b0d4f2" + }, + { + "name": "ons.age.0_10@E08000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c5dbd496e5587832eb8e738" + }, + { + "name": "ons.age.0_10@E08000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 52057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d32529fcecaf50c277721631" + }, + { + "name": "ons.age.0_10@E08000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 94180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4304111366df87a7ae65444" + }, + { + "name": "ons.age.0_10@E08000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 41569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab44ff5299f37ee0bae5128" + }, + { + "name": "ons.age.0_10@E08000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b44d1b748a98fc03c7ff6fa1" + }, + { + "name": "ons.age.0_10@E09000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4ae94c838c64225064cad72" + }, + { + "name": "ons.age.0_10@E09000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d83305b53d53d627ff0cda3" + }, + { + "name": "ons.age.0_10@E09000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 49424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a1c18be8d0fc9ea0a531bb" + }, + { + "name": "ons.age.0_10@E09000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 31052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_890bd0d1ad902e0a04fbbc68" + }, + { + "name": "ons.age.0_10@E09000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 40228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9af2af6c8a9f24086a58868c" + }, + { + "name": "ons.age.0_10@E09000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 38938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4e6ff421173e7d2623071dd" + }, + { + "name": "ons.age.0_10@E09000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac51f38d25c854a89266ffb0" + }, + { + "name": "ons.age.0_10@E09000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 50673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d58026d57e221469b4ff607a" + }, + { + "name": "ons.age.0_10@E09000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 43069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b04ae7c75e19e66e85f73a4a" + }, + { + "name": "ons.age.0_10@E09000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 41791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7cd8ca654e61306ff0f9ae0" + }, + { + "name": "ons.age.0_10@E09000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda86ebd799216db0b6e9323" + }, + { + "name": "ons.age.0_10@E09000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 30393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2564d928b014f8ab09e49e6" + }, + { + "name": "ons.age.0_10@E09000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 17617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb7183a9170ae1b99db2ec0" + }, + { + "name": "ons.age.0_10@E09000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 28919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d32a0f41821b004366e7227c" + }, + { + "name": "ons.age.0_10@E09000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 32204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ce591b3944e920b076b3b2d" + }, + { + "name": "ons.age.0_10@E09000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35647.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba735f87c779a26ba332154d" + }, + { + "name": "ons.age.0_10@E09000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 41520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1a51fb379fe6469e5c9a2a6" + }, + { + "name": "ons.age.0_10@E09000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83d914af363ccef81910008" + }, + { + "name": "ons.age.0_10@E09000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20021.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d8ef8592d5230dcecbaf06f" + }, + { + "name": "ons.age.0_10@E09000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_948080d6fc1240b7d10bef5e" + }, + { + "name": "ons.age.0_10@E09000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 19111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec041c4d66e98a9f0d4cd9ea" + }, + { + "name": "ons.age.0_10@E09000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc168e535c551b55a139fbe0" + }, + { + "name": "ons.age.0_10@E09000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 34462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b760acde625eb307d1b4b0" + }, + { + "name": "ons.age.0_10@E09000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8cf9275825ed90206d9d016" + }, + { + "name": "ons.age.0_10@E09000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 46845.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7db1ca63fd7113ca6e7cc62" + }, + { + "name": "ons.age.0_10@E09000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 42722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d03ffc56dceb4e28594fb358" + }, + { + "name": "ons.age.0_10@E09000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8f67e2acb4a81870882fc9" + }, + { + "name": "ons.age.0_10@E09000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 29745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe0e6453bf18e8c40af0d9d7" + }, + { + "name": "ons.age.0_10@E09000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dde78f8b87af907655fb30a9" + }, + { + "name": "ons.age.0_10@E09000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc92312f58657a35a23e7277" + }, + { + "name": "ons.age.0_10@E09000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7f2bb8cf76cbca3f8e7914" + }, + { + "name": "ons.age.0_10@E09000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf23ec21b162f7391cdb1c7d" + }, + { + "name": "ons.age.0_10@E09000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff12728630b33ac84e3e0ca5" + }, + { + "name": "ons.age.0_10@N09000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9e90c1562c9e16b3d0eeb70" + }, + { + "name": "ons.age.0_10@N09000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 28413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc828bd81712c64cefae22f6" + }, + { + "name": "ons.age.0_10@N09000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 39475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f32ab68593537d4d41e7e71f" + }, + { + "name": "ons.age.0_10@N09000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45aa9080f363b7074234970e" + }, + { + "name": "ons.age.0_10@N09000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d50e7d3450c32c908e6d5ed5" + }, + { + "name": "ons.age.0_10@N09000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7a495a93e28d6a192c58023" + }, + { + "name": "ons.age.0_10@N09000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c53f22ec069b327dd2416c54" + }, + { + "name": "ons.age.0_10@N09000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e34ec34149d450548caf0018" + }, + { + "name": "ons.age.0_10@N09000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b295256268bc7a2bd554d6be" + }, + { + "name": "ons.age.0_10@N09000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 23674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7be927b0473a88d4ec0adfb1" + }, + { + "name": "ons.age.0_10@N09000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 16885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ce917fe8e66a93e8a76d329" + }, + { + "name": "ons.age.0_10@S12000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 4904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71ecfbb76b432d8f0af4ee4d" + }, + { + "name": "ons.age.0_10@S12000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 12427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7d65f76f125f5bd00359581" + }, + { + "name": "ons.age.0_10@S12000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1722d16de1fef924937546b" + }, + { + "name": "ons.age.0_10@S12000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f95072f75cd10904abf4df5f" + }, + { + "name": "ons.age.0_10@S12000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db95c68a73283917b0e558db" + }, + { + "name": "ons.age.0_10@S12000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5fb7a50283f35965536028" + }, + { + "name": "ons.age.0_10@S12000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eba932dc47c0983c38708db" + }, + { + "name": "ons.age.0_10@S12000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 21167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fca3cbdeebc89dee83710128" + }, + { + "name": "ons.age.0_10@S12000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de743ec3865c1780e976c364" + }, + { + "name": "ons.age.0_10@S12000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11543.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbbe63e4a1cd7b4892738399" + }, + { + "name": "ons.age.0_10@S12000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6ee3afac441e2f9c22deed3" + }, + { + "name": "ons.age.0_10@S12000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92dbea21910dfceed4bc16c5" + }, + { + "name": "ons.age.0_10@S12000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb28e296b69904c99b7ba9f" + }, + { + "name": "ons.age.0_10@S12000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c10a2d320825ec480747e4" + }, + { + "name": "ons.age.0_10@S12000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e01bf8514877e17d0feb725" + }, + { + "name": "ons.age.0_10@S12000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae7eb205b70d1ca6b3fdda34" + }, + { + "name": "ons.age.0_10@S12000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 33717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_929666cf17a648bc05b76234" + }, + { + "name": "ons.age.0_10@S12000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf61d875f9fcdf4754bcd7fc" + }, + { + "name": "ons.age.0_10@S12000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 22651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fcaf4669cb9ad9cd72f245e" + }, + { + "name": "ons.age.0_10@S12000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 27377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cca9eef712d57c489e151619" + }, + { + "name": "ons.age.0_10@S12000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bea9d0f706e4cb68c8da839a" + }, + { + "name": "ons.age.0_10@S12000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 44811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c394900eee8e99e3e0f6ab3" + }, + { + "name": "ons.age.0_10@S12000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ebe40f9024d5d15b98e469" + }, + { + "name": "ons.age.0_10@S12000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8689.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_749fc7e58e009d1a066afc94" + }, + { + "name": "ons.age.0_10@S12000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72291c36c54a97068fa879f9" + }, + { + "name": "ons.age.0_10@S12000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1fca52eaeb7e8e936765036" + }, + { + "name": "ons.age.0_10@S12000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9647064308f1d8797dfbc99" + }, + { + "name": "ons.age.0_10@S12000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11277.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6623931ac0af8d123353b3" + }, + { + "name": "ons.age.0_10@S12000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 34781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98861591d193bac3d92dc86b" + }, + { + "name": "ons.age.0_10@S12000048", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 13818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_381c43f91691a78cbc8370c5" + }, + { + "name": "ons.age.0_10@S12000049", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 60199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5459efcd7c3cd573c1f79d8" + }, + { + "name": "ons.age.0_10@S12000050", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 35277.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8aef9b46cdb764f8c72a000" + }, + { + "name": "ons.age.0_10@W06000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7024c2cf7f7f307b66f18118" + }, + { + "name": "ons.age.0_10@W06000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea4ba37733d50bc92b96d353" + }, + { + "name": "ons.age.0_10@W06000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6011d6613e9f46d9889dbcb" + }, + { + "name": "ons.age.0_10@W06000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 9942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7c235e38d08a4d1352644cf" + }, + { + "name": "ons.age.0_10@W06000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 15587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf7a51cad0a457121b834b99" + }, + { + "name": "ons.age.0_10@W06000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dbaf718e7e08d890cd2ad40" + }, + { + "name": "ons.age.0_10@W06000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da2b8fb7b573295a556151b6" + }, + { + "name": "ons.age.0_10@W06000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e70eaa74beee3d63409e25ad" + }, + { + "name": "ons.age.0_10@W06000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff5d0806cced0df870fa7856" + }, + { + "name": "ons.age.0_10@W06000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 24545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5abbf4b01ae58894e86a310" + }, + { + "name": "ons.age.0_10@W06000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f368063d60bd89c884f1e9fd" + }, + { + "name": "ons.age.0_10@W06000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6fe2bcdb439b5549d846480" + }, + { + "name": "ons.age.0_10@W06000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 14251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0ded796f23661f3b88e7b2b" + }, + { + "name": "ons.age.0_10@W06000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 39373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7563e168f0e570be3569aab4" + }, + { + "name": "ons.age.0_10@W06000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 25096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d68a10268132f48362a8e96" + }, + { + "name": "ons.age.0_10@W06000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 18443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f379d5550fa1ca9965171760" + }, + { + "name": "ons.age.0_10@W06000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 7131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2987077b7ded8c1f3a82b19" + }, + { + "name": "ons.age.0_10@W06000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 10193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f159a6753f61582a7d7f0038" + }, + { + "name": "ons.age.0_10@W06000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 8607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0262de33c2547d8eb4808b2" + }, + { + "name": "ons.age.0_10@W06000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 20751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5a279ba7a01c83df27f4c8d" + }, + { + "name": "ons.age.0_10@W06000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 11844.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef0dc53826969607ecb681cd" + }, + { + "name": "ons.age.0_10@W06000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 6689.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1b66a7b3b51ed6d800c8d41" + } + ] + } + } + }, + "ons.age.10_20": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.10_20@E14001063", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2a65adbe4625672ce9f727c" + }, + { + "name": "ons.age.10_20@E14001064", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dfc5f9cc4bfef19d7030a1f" + }, + { + "name": "ons.age.10_20@E14001065", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_12fca639720cd644bd35d7da" + }, + { + "name": "ons.age.10_20@E14001066", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cff4045f8c8e6d7e2ea328db" + }, + { + "name": "ons.age.10_20@E14001067", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d337323409b1935df56cfa5" + }, + { + "name": "ons.age.10_20@E14001068", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c87a0852d5ff36dd583173e5" + }, + { + "name": "ons.age.10_20@E14001069", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c58b8d488ba634486cd83039" + }, + { + "name": "ons.age.10_20@E14001070", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13741.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53ce2df955fe9262095bb66f" + }, + { + "name": "ons.age.10_20@E14001071", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee53796f67f064121fb6c8db" + }, + { + "name": "ons.age.10_20@E14001072", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12616.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ddce4c6015e2ed0e736629e" + }, + { + "name": "ons.age.10_20@E14001073", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b987f459c87e66d713b21066" + }, + { + "name": "ons.age.10_20@E14001074", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e3343e1f2b04d638fd56fe" + }, + { + "name": "ons.age.10_20@E14001075", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c048984e4604d32ee00d8bcf" + }, + { + "name": "ons.age.10_20@E14001076", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a78bfbb45c32fa8dd4d126c" + }, + { + "name": "ons.age.10_20@E14001077", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_905529616e562bafbb8994db" + }, + { + "name": "ons.age.10_20@E14001078", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d901ff300e6d2b5ec8ec131d" + }, + { + "name": "ons.age.10_20@E14001079", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfa6fe447af22e7f8176e22d" + }, + { + "name": "ons.age.10_20@E14001080", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15286.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b02baa929a29d3caed267623" + }, + { + "name": "ons.age.10_20@E14001081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea1b1d62940a42cd066afe3f" + }, + { + "name": "ons.age.10_20@E14001082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c56a63540c0b26c48136acc1" + }, + { + "name": "ons.age.10_20@E14001083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99b17c0c2b31728d7c8a5f8d" + }, + { + "name": "ons.age.10_20@E14001084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0b8374ea9e5546441908b89" + }, + { + "name": "ons.age.10_20@E14001085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78ca0f6b039c301bd356c8a6" + }, + { + "name": "ons.age.10_20@E14001086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b92aa6f576c02861747573d3" + }, + { + "name": "ons.age.10_20@E14001087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a0ebccaecbc892366b804d" + }, + { + "name": "ons.age.10_20@E14001088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c63b5da8f684ebce932b58e1" + }, + { + "name": "ons.age.10_20@E14001089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87412225a54a868ed24f379f" + }, + { + "name": "ons.age.10_20@E14001090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_862615a99e0ba761c91aa5c0" + }, + { + "name": "ons.age.10_20@E14001091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13671.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e22bc865cd048253f0ca298b" + }, + { + "name": "ons.age.10_20@E14001092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c09538cb6108c272916ed75b" + }, + { + "name": "ons.age.10_20@E14001093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e4ba89ae0926cd137148a4d" + }, + { + "name": "ons.age.10_20@E14001094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2310272292083979c13a6cfe" + }, + { + "name": "ons.age.10_20@E14001095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc108c9428eb018148eb6bfb" + }, + { + "name": "ons.age.10_20@E14001096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55baf4b42c0ad48aeebcd241" + }, + { + "name": "ons.age.10_20@E14001097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2456f5328b6c5adfabcdf450" + }, + { + "name": "ons.age.10_20@E14001098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f12c4f75d84a0325d46aad3f" + }, + { + "name": "ons.age.10_20@E14001099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f026b7299fdaf300c2c3c8e3" + }, + { + "name": "ons.age.10_20@E14001100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f312491cf892010e076a8eb0" + }, + { + "name": "ons.age.10_20@E14001101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8adaa6c1bf2b648ade685fdc" + }, + { + "name": "ons.age.10_20@E14001102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa11de210b8b294a4af5bd77" + }, + { + "name": "ons.age.10_20@E14001103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e137d6064a305d146b2977f0" + }, + { + "name": "ons.age.10_20@E14001104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae30f524ab3f07fee91cbca5" + }, + { + "name": "ons.age.10_20@E14001105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fa13334d4fbf6154f98ac91" + }, + { + "name": "ons.age.10_20@E14001106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a02eb7e47b1dfcde4487eaa7" + }, + { + "name": "ons.age.10_20@E14001107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70f3f9ead3fcad9ceb45c5b0" + }, + { + "name": "ons.age.10_20@E14001108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faa07795babb6f13c05fbc89" + }, + { + "name": "ons.age.10_20@E14001109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a99c1c552f988f3d2dc4a3fd" + }, + { + "name": "ons.age.10_20@E14001110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e13891a12a52244ad33a69a" + }, + { + "name": "ons.age.10_20@E14001111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19874.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b9aeff24a050a6370098334" + }, + { + "name": "ons.age.10_20@E14001112", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a43b740897e4db3bcab0c990" + }, + { + "name": "ons.age.10_20@E14001113", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6fcb926222b219ccd7cee17" + }, + { + "name": "ons.age.10_20@E14001114", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee3c1b8e9b8dec28cf842956" + }, + { + "name": "ons.age.10_20@E14001115", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e144d15d9ff13b9b70351802" + }, + { + "name": "ons.age.10_20@E14001116", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5564b8b5037a4969b886c32" + }, + { + "name": "ons.age.10_20@E14001117", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f27a9f072cde30d4710957d2" + }, + { + "name": "ons.age.10_20@E14001118", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa891504bdfee445f0709fc4" + }, + { + "name": "ons.age.10_20@E14001119", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d98d49ae019a130543b3ff32" + }, + { + "name": "ons.age.10_20@E14001120", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c37e03533f2bbce5b9e0c83" + }, + { + "name": "ons.age.10_20@E14001121", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a344e02db342d0d678805c8d" + }, + { + "name": "ons.age.10_20@E14001122", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_678fc0084ea920edf8f2e6a9" + }, + { + "name": "ons.age.10_20@E14001123", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf3359887f65e9adfe92f41b" + }, + { + "name": "ons.age.10_20@E14001124", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_556f32d5665fc3b7edc0345e" + }, + { + "name": "ons.age.10_20@E14001125", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a7cb257be78b1526c5e5681" + }, + { + "name": "ons.age.10_20@E14001126", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9212d76ed62b00b02b7821a0" + }, + { + "name": "ons.age.10_20@E14001127", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ea0f2e74622c3fb89e2eef0" + }, + { + "name": "ons.age.10_20@E14001128", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64e388a7ce897d3fd5b0bc33" + }, + { + "name": "ons.age.10_20@E14001129", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_54b36e14bbbc32f8eb9ab7d0" + }, + { + "name": "ons.age.10_20@E14001130", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4504796620f21211f32ea6ee" + }, + { + "name": "ons.age.10_20@E14001131", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0425b1e5d6fc4df03941fae" + }, + { + "name": "ons.age.10_20@E14001132", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6c5c8d2bb5b197f8e491a60" + }, + { + "name": "ons.age.10_20@E14001133", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f765455ae22a5d547bc5f9f4" + }, + { + "name": "ons.age.10_20@E14001134", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfad6ea2e085ab3eca5fb1bf" + }, + { + "name": "ons.age.10_20@E14001135", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c495530356f02ff8f68de9f" + }, + { + "name": "ons.age.10_20@E14001136", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edca4b5b7c05d96bbe82f01f" + }, + { + "name": "ons.age.10_20@E14001137", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12311.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9138c51f348d47ec49cffdf5" + }, + { + "name": "ons.age.10_20@E14001138", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12213.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc69775d0677c29913c3d37d" + }, + { + "name": "ons.age.10_20@E14001139", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_828be0f6f8d59545f59c2acf" + }, + { + "name": "ons.age.10_20@E14001140", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff1e4b9a160018ad5dbae0bb" + }, + { + "name": "ons.age.10_20@E14001141", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b9289b6cc3c6b948c576f20" + }, + { + "name": "ons.age.10_20@E14001142", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97b4e090cb14c032466d8173" + }, + { + "name": "ons.age.10_20@E14001143", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f81448f4e8a91b12ed14100f" + }, + { + "name": "ons.age.10_20@E14001144", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13485.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d6748d75a3b489e3a8f632" + }, + { + "name": "ons.age.10_20@E14001145", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05b51641e2cd7e8c46dd580" + }, + { + "name": "ons.age.10_20@E14001146", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce6f3b8d8e6150be23453d49" + }, + { + "name": "ons.age.10_20@E14001147", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b588ae0684bc8e5007d78df8" + }, + { + "name": "ons.age.10_20@E14001148", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f735511ee4874a7628bf66b8" + }, + { + "name": "ons.age.10_20@E14001149", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b455d255681af0893442ca0" + }, + { + "name": "ons.age.10_20@E14001150", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72ded0ada92531e6bc3e9099" + }, + { + "name": "ons.age.10_20@E14001151", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76f1cc30b6a64125b008439f" + }, + { + "name": "ons.age.10_20@E14001152", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af1c1e5d2c83de02e87276e4" + }, + { + "name": "ons.age.10_20@E14001153", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6fb87767e29c4651f9c015d" + }, + { + "name": "ons.age.10_20@E14001154", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c260d16ed53df8c671d220a7" + }, + { + "name": "ons.age.10_20@E14001155", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae132d7fd5ed56923aea9e00" + }, + { + "name": "ons.age.10_20@E14001156", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1dcdeeac974339e9c18164c" + }, + { + "name": "ons.age.10_20@E14001157", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e18d4f142a0a2ec874c7c5d2" + }, + { + "name": "ons.age.10_20@E14001158", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12274.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d27a7e6af08588ab2ae06eff" + }, + { + "name": "ons.age.10_20@E14001159", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f16261b07d1b066b4d72d6d4" + }, + { + "name": "ons.age.10_20@E14001160", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f668b1cbaba5c409a697b8e5" + }, + { + "name": "ons.age.10_20@E14001161", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d97c973b5347d1e1692e0d97" + }, + { + "name": "ons.age.10_20@E14001162", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef86278fc0971eb3ab29f5a0" + }, + { + "name": "ons.age.10_20@E14001163", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6f7046f43714a58b5048cdc" + }, + { + "name": "ons.age.10_20@E14001164", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6630ce3cee824e14fa7bdc1b" + }, + { + "name": "ons.age.10_20@E14001165", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1ad86469515e77d6cd018bf" + }, + { + "name": "ons.age.10_20@E14001166", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e498b4dff706e864dea3293a" + }, + { + "name": "ons.age.10_20@E14001167", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b298e13b3f7ba5f1bf4d2f" + }, + { + "name": "ons.age.10_20@E14001168", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_feb9824b712d59a22ae08ea6" + }, + { + "name": "ons.age.10_20@E14001169", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15070.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed3c36a4c2e095480d3bcb9e" + }, + { + "name": "ons.age.10_20@E14001170", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12177.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc6376354de1d712de12677" + }, + { + "name": "ons.age.10_20@E14001171", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_882166d835c02cba1a1fe84c" + }, + { + "name": "ons.age.10_20@E14001172", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f41cb03b818965758d9113a" + }, + { + "name": "ons.age.10_20@E14001173", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5154570560c6c0b7c111c5ac" + }, + { + "name": "ons.age.10_20@E14001174", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdb3653bbffc04261202eec3" + }, + { + "name": "ons.age.10_20@E14001175", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d38913015782ee4d9a56ef5a" + }, + { + "name": "ons.age.10_20@E14001176", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaef3b64109a2f989af004e1" + }, + { + "name": "ons.age.10_20@E14001177", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e64b7f7cce67ecfcb0ec854" + }, + { + "name": "ons.age.10_20@E14001178", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e787823e6a04255818db7f24" + }, + { + "name": "ons.age.10_20@E14001179", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_607faa07b01c26f130f59c4b" + }, + { + "name": "ons.age.10_20@E14001180", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa7c219f5edff73f0c3eda05" + }, + { + "name": "ons.age.10_20@E14001181", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe0cd30830576d56248ef884" + }, + { + "name": "ons.age.10_20@E14001182", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_490eadfd65c50fa333e342af" + }, + { + "name": "ons.age.10_20@E14001183", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a83ba0aa9986d786b9885689" + }, + { + "name": "ons.age.10_20@E14001184", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_371833abd084b9894efce0db" + }, + { + "name": "ons.age.10_20@E14001185", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13334.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df5898203e74f000af3d4cab" + }, + { + "name": "ons.age.10_20@E14001186", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_611b072450f95ddb06b7b77b" + }, + { + "name": "ons.age.10_20@E14001187", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e870d145f51135dd4261c8ac" + }, + { + "name": "ons.age.10_20@E14001188", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16503.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_978b720eec8df00d907c9517" + }, + { + "name": "ons.age.10_20@E14001189", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a128e46cee850cf45a77aea7" + }, + { + "name": "ons.age.10_20@E14001190", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4ec1aee0a6f6f48fc72e919" + }, + { + "name": "ons.age.10_20@E14001191", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e002dd90e17eb40fff27b0b" + }, + { + "name": "ons.age.10_20@E14001192", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7aa42f083ed38152c451db9d" + }, + { + "name": "ons.age.10_20@E14001193", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2897297926b88f2c728375b4" + }, + { + "name": "ons.age.10_20@E14001194", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7963f7f15d6e99b8afd5d1" + }, + { + "name": "ons.age.10_20@E14001195", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda9b91fdecdf17ff17982e3" + }, + { + "name": "ons.age.10_20@E14001196", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4eaff1851d695d8c6b09acb" + }, + { + "name": "ons.age.10_20@E14001197", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbbe348381b8789af010288b" + }, + { + "name": "ons.age.10_20@E14001198", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea213a105d6a2946ef176b9f" + }, + { + "name": "ons.age.10_20@E14001199", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4c01e6eb1eb8b7d4fa9f877" + }, + { + "name": "ons.age.10_20@E14001200", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64ef3b8a338446be6c542891" + }, + { + "name": "ons.age.10_20@E14001201", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a9d08654d1ca71796aeabcc" + }, + { + "name": "ons.age.10_20@E14001202", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b8f6aead63d8a9ee202e370" + }, + { + "name": "ons.age.10_20@E14001203", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c31fb87215c34a1bbc05a8bc" + }, + { + "name": "ons.age.10_20@E14001204", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28b40b54543238f707de5b42" + }, + { + "name": "ons.age.10_20@E14001205", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffce046dcc323f0d755acb7e" + }, + { + "name": "ons.age.10_20@E14001206", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_442a8679ee75056205012b5d" + }, + { + "name": "ons.age.10_20@E14001207", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_968f667f2f4cf327d1951c2a" + }, + { + "name": "ons.age.10_20@E14001208", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b764e8e664388bd2ba7f1a93" + }, + { + "name": "ons.age.10_20@E14001209", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e04b85ccbe397e4f1e72acb5" + }, + { + "name": "ons.age.10_20@E14001210", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c48b5f83077320a22508c62" + }, + { + "name": "ons.age.10_20@E14001211", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61346356f95689690642ae11" + }, + { + "name": "ons.age.10_20@E14001212", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0ab8d2e2028800baded194c" + }, + { + "name": "ons.age.10_20@E14001213", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cee65e7d86dc1d7685cd273" + }, + { + "name": "ons.age.10_20@E14001214", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de5b212099cb9cb5b96a25c0" + }, + { + "name": "ons.age.10_20@E14001215", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e73559335a6cc5007c19fe" + }, + { + "name": "ons.age.10_20@E14001216", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95dc5e4462344937e4a2e3ca" + }, + { + "name": "ons.age.10_20@E14001217", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f094d48c91c947bb5ef27d" + }, + { + "name": "ons.age.10_20@E14001218", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_686930fc0f147a1d1b580f18" + }, + { + "name": "ons.age.10_20@E14001219", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_430344c19b0bc968eda4be8e" + }, + { + "name": "ons.age.10_20@E14001220", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_899779662fab32ad8a1a0e63" + }, + { + "name": "ons.age.10_20@E14001221", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f034593b8ffc17eb97a5998" + }, + { + "name": "ons.age.10_20@E14001222", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11161.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80b9a2b86f1ad0817e0d5417" + }, + { + "name": "ons.age.10_20@E14001223", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc6378cb265b7ccc85f3eb87" + }, + { + "name": "ons.age.10_20@E14001224", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_860b2a4d6e7954680969fa7a" + }, + { + "name": "ons.age.10_20@E14001225", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6af4cc3cd8f1d9b367aaa9d4" + }, + { + "name": "ons.age.10_20@E14001226", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_effa9f81e521aface90a3982" + }, + { + "name": "ons.age.10_20@E14001227", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9827db70b443875fa932d01" + }, + { + "name": "ons.age.10_20@E14001228", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0cc9c23b4ac27628bffc8df" + }, + { + "name": "ons.age.10_20@E14001229", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfbe310ecc559d12cc90bced" + }, + { + "name": "ons.age.10_20@E14001230", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea224cf656ca7c3f8bb4d57b" + }, + { + "name": "ons.age.10_20@E14001231", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0d96f816474d0e9b47284b9" + }, + { + "name": "ons.age.10_20@E14001232", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b21bc09de56ac231414577ee" + }, + { + "name": "ons.age.10_20@E14001233", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca93bec1b16f6f52e9f9883" + }, + { + "name": "ons.age.10_20@E14001234", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84958f439973781d92a87a7c" + }, + { + "name": "ons.age.10_20@E14001235", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12723.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d00924a6c7941bfe29f6a1" + }, + { + "name": "ons.age.10_20@E14001236", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9cf65100c8dfceeea98a909" + }, + { + "name": "ons.age.10_20@E14001237", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_becc93948bb8ad9ebbb81470" + }, + { + "name": "ons.age.10_20@E14001238", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5acc3fd2022df65ba7c95bb1" + }, + { + "name": "ons.age.10_20@E14001239", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72ce3b2462add633ab40afac" + }, + { + "name": "ons.age.10_20@E14001240", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff60e115a68cef7201a113bb" + }, + { + "name": "ons.age.10_20@E14001241", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdffcdebeba2519d9bd98a9f" + }, + { + "name": "ons.age.10_20@E14001242", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c4deebff2e46e8b7539de9a" + }, + { + "name": "ons.age.10_20@E14001243", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_485477716680c0af8ff990f7" + }, + { + "name": "ons.age.10_20@E14001244", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d27800745a512490ad04a798" + }, + { + "name": "ons.age.10_20@E14001245", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b75e32ea91fc34a0bb493127" + }, + { + "name": "ons.age.10_20@E14001246", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ad1169cd0092f7cf1e3219e" + }, + { + "name": "ons.age.10_20@E14001247", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_553840426427b284c5416b1a" + }, + { + "name": "ons.age.10_20@E14001248", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa898f9341901d0d7d2490c3" + }, + { + "name": "ons.age.10_20@E14001249", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72d84db91fb423c9c0c4b1d5" + }, + { + "name": "ons.age.10_20@E14001250", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cd7ca5ca1aa3077511e0d24" + }, + { + "name": "ons.age.10_20@E14001251", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17226.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4adc607e9c64738293fa54e8" + }, + { + "name": "ons.age.10_20@E14001252", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43a9ecfc2f0c7acc93562333" + }, + { + "name": "ons.age.10_20@E14001253", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfacd1cac7dff5b8dbdeaa5f" + }, + { + "name": "ons.age.10_20@E14001254", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcef2bdced44ac8bce9af970" + }, + { + "name": "ons.age.10_20@E14001255", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c61afcebb3dd893611880120" + }, + { + "name": "ons.age.10_20@E14001256", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b8efa4b1826264ce9b5f397" + }, + { + "name": "ons.age.10_20@E14001257", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95acf3fee6fc0631f8096631" + }, + { + "name": "ons.age.10_20@E14001258", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2a21cb986bae9e912195c38" + }, + { + "name": "ons.age.10_20@E14001259", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_515bc9bbf136122a3e00ff96" + }, + { + "name": "ons.age.10_20@E14001260", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a98bdcb1d0db399cbf136f4" + }, + { + "name": "ons.age.10_20@E14001261", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8605abe980285a2bdeb4189" + }, + { + "name": "ons.age.10_20@E14001262", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14741.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0a8a1b28e220460978a2407" + }, + { + "name": "ons.age.10_20@E14001263", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12721.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee4f3fc19a468b4c77f95245" + }, + { + "name": "ons.age.10_20@E14001264", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5374db7ecd5c416eb127e939" + }, + { + "name": "ons.age.10_20@E14001265", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc6b0bf89c1277290dc77e38" + }, + { + "name": "ons.age.10_20@E14001266", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a07cd3b9bde54902c579416e" + }, + { + "name": "ons.age.10_20@E14001267", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b184ee9c259a20182dcdbe8a" + }, + { + "name": "ons.age.10_20@E14001268", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d60dfd197ba4d3f8b5b4b76" + }, + { + "name": "ons.age.10_20@E14001269", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b577cb0a4db776c8cbaba59" + }, + { + "name": "ons.age.10_20@E14001270", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50152ea56dda9ced98d2debb" + }, + { + "name": "ons.age.10_20@E14001271", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc896c60ea327813de2c6a5f" + }, + { + "name": "ons.age.10_20@E14001272", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3247b23b6aa16654b85d35f3" + }, + { + "name": "ons.age.10_20@E14001273", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea5188f25f027c596d373977" + }, + { + "name": "ons.age.10_20@E14001274", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11788.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d90f20d33454fbdf24a69253" + }, + { + "name": "ons.age.10_20@E14001275", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f89c5b81ae18c504f9f316e5" + }, + { + "name": "ons.age.10_20@E14001276", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b941808f865397c6e23f760" + }, + { + "name": "ons.age.10_20@E14001277", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a962cd2c6756563d493d4555" + }, + { + "name": "ons.age.10_20@E14001278", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b384e47bb60845297d23a221" + }, + { + "name": "ons.age.10_20@E14001279", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f73c11df33bf6cd647933d1" + }, + { + "name": "ons.age.10_20@E14001280", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e49b471060e722933a4ad69" + }, + { + "name": "ons.age.10_20@E14001281", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed078b08f2fd80e3048d11cd" + }, + { + "name": "ons.age.10_20@E14001282", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c33b726ed0d3845569d0aa5e" + }, + { + "name": "ons.age.10_20@E14001283", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13633.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31fb62083f62629a6d6b46fe" + }, + { + "name": "ons.age.10_20@E14001284", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba1f37ad1851da884206bc70" + }, + { + "name": "ons.age.10_20@E14001285", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d372efeb01db01e7d4fad015" + }, + { + "name": "ons.age.10_20@E14001286", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f377e9a718444b39a99f2fa5" + }, + { + "name": "ons.age.10_20@E14001287", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f38dde2f36fcb7f12d7ceb7d" + }, + { + "name": "ons.age.10_20@E14001288", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e2d897b72155d2b25d81c81" + }, + { + "name": "ons.age.10_20@E14001289", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db8a7c907d71273e6c2036d2" + }, + { + "name": "ons.age.10_20@E14001290", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2454f7384b2849e535b072c" + }, + { + "name": "ons.age.10_20@E14001291", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc2d1e91f64373a3a298183" + }, + { + "name": "ons.age.10_20@E14001292", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afca1f5b718bf1d83c8c906b" + }, + { + "name": "ons.age.10_20@E14001293", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa46cbd2c067b08eb66f4347" + }, + { + "name": "ons.age.10_20@E14001294", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ad39b588160ebcadcc7aa88" + }, + { + "name": "ons.age.10_20@E14001295", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8847ce2a2b856888634700b" + }, + { + "name": "ons.age.10_20@E14001296", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df41f76fd1d19385caf3c2b0" + }, + { + "name": "ons.age.10_20@E14001297", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a322237fc9af6bd086e44646" + }, + { + "name": "ons.age.10_20@E14001298", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0f534266c1d724b66df1dcb" + }, + { + "name": "ons.age.10_20@E14001299", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12633.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f51e6d7d852821d7e4affb4" + }, + { + "name": "ons.age.10_20@E14001300", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4b1fe444c6ffce85dd022ff" + }, + { + "name": "ons.age.10_20@E14001301", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0d8c8f5b280407fa85328c3" + }, + { + "name": "ons.age.10_20@E14001302", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d4e710a919db16ddc9c6c7d" + }, + { + "name": "ons.age.10_20@E14001303", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65eac09ef0e8ea67c628cb71" + }, + { + "name": "ons.age.10_20@E14001304", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa609dac4ae8d8c3207bb4cd" + }, + { + "name": "ons.age.10_20@E14001305", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c52203a040ce227861092e" + }, + { + "name": "ons.age.10_20@E14001306", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a96c8177257cdbe6cfb1bdcd" + }, + { + "name": "ons.age.10_20@E14001307", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_247f455d76f170bdffff50e8" + }, + { + "name": "ons.age.10_20@E14001308", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c70d49027fba284efe374b12" + }, + { + "name": "ons.age.10_20@E14001309", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12332.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78fc3b2ed1a3f0eb373a968b" + }, + { + "name": "ons.age.10_20@E14001310", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eedaf39637713a3fbee0aed" + }, + { + "name": "ons.age.10_20@E14001311", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_329bdac4e8e1871faece6ad0" + }, + { + "name": "ons.age.10_20@E14001312", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f879dc65e0d53941d17a9b0" + }, + { + "name": "ons.age.10_20@E14001313", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccf0d271366cf484bbf75ac5" + }, + { + "name": "ons.age.10_20@E14001314", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dacce442c357110b0da8aded" + }, + { + "name": "ons.age.10_20@E14001315", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_166ee6d228affba9c25ab31e" + }, + { + "name": "ons.age.10_20@E14001316", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f11f63443d67ca7e6e8c1a8f" + }, + { + "name": "ons.age.10_20@E14001317", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e7762dfe173af37dc40492" + }, + { + "name": "ons.age.10_20@E14001318", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34cc16f34255d1021f25e23d" + }, + { + "name": "ons.age.10_20@E14001319", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50b439d49be6e0918ffa5018" + }, + { + "name": "ons.age.10_20@E14001320", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57567a888e4d882a0f8a6102" + }, + { + "name": "ons.age.10_20@E14001321", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abaec0717ea1d6b8a1730243" + }, + { + "name": "ons.age.10_20@E14001322", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dbfb0951f03d8896887918f" + }, + { + "name": "ons.age.10_20@E14001323", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3178934098458adee353419" + }, + { + "name": "ons.age.10_20@E14001324", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97c69c9dca1af32774f3630e" + }, + { + "name": "ons.age.10_20@E14001325", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18306061bc4366531f065a5b" + }, + { + "name": "ons.age.10_20@E14001326", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4691258011c5fb454a0ab7c9" + }, + { + "name": "ons.age.10_20@E14001327", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa0a28cc82045de51fd62968" + }, + { + "name": "ons.age.10_20@E14001328", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19884.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2dc6a22252cafddee4e99676" + }, + { + "name": "ons.age.10_20@E14001329", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ffaeb6bcc63d765752cf049" + }, + { + "name": "ons.age.10_20@E14001330", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab54f32cd06c5dc8f47aaf9f" + }, + { + "name": "ons.age.10_20@E14001331", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d402d09eb3cecc8e5e22d79d" + }, + { + "name": "ons.age.10_20@E14001332", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef662c23f1235645a2ef76c1" + }, + { + "name": "ons.age.10_20@E14001333", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4ba8fe858b21ba18fd4ba6" + }, + { + "name": "ons.age.10_20@E14001334", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa73116e54c11a590f0b349c" + }, + { + "name": "ons.age.10_20@E14001335", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e554f50aa37e80806664bf9c" + }, + { + "name": "ons.age.10_20@E14001336", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5017389a5471aaf67201272" + }, + { + "name": "ons.age.10_20@E14001337", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c19b64bab3864a5d42b2b399" + }, + { + "name": "ons.age.10_20@E14001338", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b43081a7f2ec21cd77f425f2" + }, + { + "name": "ons.age.10_20@E14001339", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8fc8eee20d710c99134f1fc" + }, + { + "name": "ons.age.10_20@E14001340", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8445c90f8e71e41b8f9ad11" + }, + { + "name": "ons.age.10_20@E14001341", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11916.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93e5ed47ffb2c19147ae023d" + }, + { + "name": "ons.age.10_20@E14001342", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6c16350a97ab915a27dc9eb" + }, + { + "name": "ons.age.10_20@E14001343", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_108afb5a018b92f820b183b9" + }, + { + "name": "ons.age.10_20@E14001344", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77f3e82c1b27d74d1608a7b2" + }, + { + "name": "ons.age.10_20@E14001345", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_558533d245b97600fa7cd125" + }, + { + "name": "ons.age.10_20@E14001346", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de566e5e7e05e03f596ad975" + }, + { + "name": "ons.age.10_20@E14001347", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde5444e65370a45ce04df5c" + }, + { + "name": "ons.age.10_20@E14001348", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2ef9283bef6338fc24be6b" + }, + { + "name": "ons.age.10_20@E14001349", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d094340d9474d8c7a74c4347" + }, + { + "name": "ons.age.10_20@E14001350", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56d218574c012a5596c363cd" + }, + { + "name": "ons.age.10_20@E14001351", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33723c6a61db04b02e1ef99e" + }, + { + "name": "ons.age.10_20@E14001352", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebc5365f7188211fff724047" + }, + { + "name": "ons.age.10_20@E14001353", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0c8ed9e98751307fdfa3a2" + }, + { + "name": "ons.age.10_20@E14001354", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9041.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96b0e2a4ed9edfdd9f2ee4a1" + }, + { + "name": "ons.age.10_20@E14001355", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb641d5f7fb7f7da0b6962c8" + }, + { + "name": "ons.age.10_20@E14001356", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c19ce2f49e4a90701e3d224" + }, + { + "name": "ons.age.10_20@E14001357", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63af2d18b132080483aeb823" + }, + { + "name": "ons.age.10_20@E14001358", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5bbd29bf7e989ab32428707" + }, + { + "name": "ons.age.10_20@E14001359", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a32d7f9db15132c3807c36d" + }, + { + "name": "ons.age.10_20@E14001360", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f98ed5e59cfb28dac5b1561" + }, + { + "name": "ons.age.10_20@E14001361", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11553.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c08eecacd845eab9c57fea92" + }, + { + "name": "ons.age.10_20@E14001362", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fc01849410b14b7855ceb01" + }, + { + "name": "ons.age.10_20@E14001363", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee476c74343288e2b624211a" + }, + { + "name": "ons.age.10_20@E14001364", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94f1592c38261388ef732002" + }, + { + "name": "ons.age.10_20@E14001365", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_967cda46fa6a12f2097a2d61" + }, + { + "name": "ons.age.10_20@E14001366", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f532b7984218a9af655207ca" + }, + { + "name": "ons.age.10_20@E14001367", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_587a0fc24c90c85f217c5a37" + }, + { + "name": "ons.age.10_20@E14001368", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11237.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3abc1917920891123a706cc" + }, + { + "name": "ons.age.10_20@E14001369", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18596.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_15e0cb5f9f3892298a3c8279" + }, + { + "name": "ons.age.10_20@E14001370", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb720945078d40417abe7a2a" + }, + { + "name": "ons.age.10_20@E14001371", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a26bdcda60cfad774321f41f" + }, + { + "name": "ons.age.10_20@E14001372", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f78582fff4bbe2e762aa53e2" + }, + { + "name": "ons.age.10_20@E14001373", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33df3ceb85c45f0b7d27f04f" + }, + { + "name": "ons.age.10_20@E14001374", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4fd06b8c8ffc95ec68d3276" + }, + { + "name": "ons.age.10_20@E14001375", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c27f590ac375cb4141a3192" + }, + { + "name": "ons.age.10_20@E14001376", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b13cafd89a1c39bcfd489113" + }, + { + "name": "ons.age.10_20@E14001377", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97b177acbe872b0c3dd1968" + }, + { + "name": "ons.age.10_20@E14001378", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9032c03211848a6998d0f18" + }, + { + "name": "ons.age.10_20@E14001379", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11772.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b86a78410cd389f8fc3060cc" + }, + { + "name": "ons.age.10_20@E14001380", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7df3b5491760cff3988424e5" + }, + { + "name": "ons.age.10_20@E14001381", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebc484db82974ce95cf3cc7c" + }, + { + "name": "ons.age.10_20@E14001382", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb07ca9790ecedd19923fb9" + }, + { + "name": "ons.age.10_20@E14001383", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12482.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdae2099fa175b08b00b55f1" + }, + { + "name": "ons.age.10_20@E14001384", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_872e7509335f5f5adf7d53cc" + }, + { + "name": "ons.age.10_20@E14001385", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddf26975590c122f13a3510d" + }, + { + "name": "ons.age.10_20@E14001386", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5dba237e03b7dfb5df4d4bd" + }, + { + "name": "ons.age.10_20@E14001387", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aac8b5353051725926ee0487" + }, + { + "name": "ons.age.10_20@E14001388", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11224.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d08ca27de97aea04d88c7569" + }, + { + "name": "ons.age.10_20@E14001389", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50e96cdb25f585b8c10aa1c" + }, + { + "name": "ons.age.10_20@E14001390", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb45183ef503ba8007f18132" + }, + { + "name": "ons.age.10_20@E14001391", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_626ae36d5b729edf954680ab" + }, + { + "name": "ons.age.10_20@E14001392", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bd72629f0f4837d878ff422" + }, + { + "name": "ons.age.10_20@E14001393", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b61c40888f48b1f972c304b3" + }, + { + "name": "ons.age.10_20@E14001394", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_633fb73c932decb1257c25a2" + }, + { + "name": "ons.age.10_20@E14001395", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e303342cc2d9f38616738b6c" + }, + { + "name": "ons.age.10_20@E14001396", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27f6a34bd6a8e5f4a529d72" + }, + { + "name": "ons.age.10_20@E14001397", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2121d409e1bb6b6d7b7e757" + }, + { + "name": "ons.age.10_20@E14001398", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7c0bd85692f1a0f27ad5cb0" + }, + { + "name": "ons.age.10_20@E14001399", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11114.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afa6180e4d1384cfb0b36e4a" + }, + { + "name": "ons.age.10_20@E14001400", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7800560d69ef0a44e0da8b3" + }, + { + "name": "ons.age.10_20@E14001401", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15951.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60ab66e1c77e9c3638aed176" + }, + { + "name": "ons.age.10_20@E14001402", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e45448cfeaf601bbe2459813" + }, + { + "name": "ons.age.10_20@E14001403", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8daf87772cde7b69294232d" + }, + { + "name": "ons.age.10_20@E14001404", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecf72f2324d8c2d507f4f6c9" + }, + { + "name": "ons.age.10_20@E14001405", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f57025112069c38f74790e" + }, + { + "name": "ons.age.10_20@E14001406", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f16a4198321cfec94762258e" + }, + { + "name": "ons.age.10_20@E14001407", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92ef7a3be96fd7484cee1e37" + }, + { + "name": "ons.age.10_20@E14001408", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c620b63a24c3320ac4f1d3ab" + }, + { + "name": "ons.age.10_20@E14001409", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5f31aabc26ec94c8b1c767d" + }, + { + "name": "ons.age.10_20@E14001410", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43cc6053890826a13d58a7c3" + }, + { + "name": "ons.age.10_20@E14001411", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87fd655050ce0eb9857321f2" + }, + { + "name": "ons.age.10_20@E14001412", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc8303f5d93c10d9b8b4d11c" + }, + { + "name": "ons.age.10_20@E14001413", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_745a14da345aafb242c3ffad" + }, + { + "name": "ons.age.10_20@E14001414", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef872be100a08ac4020c82cb" + }, + { + "name": "ons.age.10_20@E14001415", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f94438c053e8aeba0be0bb4d" + }, + { + "name": "ons.age.10_20@E14001416", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c79473c4f8cbea2b2ec43b8" + }, + { + "name": "ons.age.10_20@E14001417", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a6a92fbd4e0c49082aaa263" + }, + { + "name": "ons.age.10_20@E14001418", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd130198c5d9261923e28a17" + }, + { + "name": "ons.age.10_20@E14001419", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e61a333d20a8151dc134499" + }, + { + "name": "ons.age.10_20@E14001420", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de2ac5ec9b726ea1ba89b6f" + }, + { + "name": "ons.age.10_20@E14001421", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93705070235c8b74a3beb6c1" + }, + { + "name": "ons.age.10_20@E14001422", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35f9d7e10d5685e510223beb" + }, + { + "name": "ons.age.10_20@E14001423", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de0623a7f307feb71b3b240a" + }, + { + "name": "ons.age.10_20@E14001424", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad9dbd8aa9f696611bb1ed6b" + }, + { + "name": "ons.age.10_20@E14001425", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7772546d536fa7d34ac809c9" + }, + { + "name": "ons.age.10_20@E14001426", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba0f9d9d23a3ead1f2444d20" + }, + { + "name": "ons.age.10_20@E14001427", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b31242606fe834cb2b0d2ee9" + }, + { + "name": "ons.age.10_20@E14001428", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48086a249a86e1211559d350" + }, + { + "name": "ons.age.10_20@E14001429", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f471f09294e61a7660bab3ee" + }, + { + "name": "ons.age.10_20@E14001430", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b3eaa94ceeb6e27260dbebb" + }, + { + "name": "ons.age.10_20@E14001431", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76f67722e6baf288831ca1ec" + }, + { + "name": "ons.age.10_20@E14001432", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8a89e6e1d8ba34f1e8071a7" + }, + { + "name": "ons.age.10_20@E14001433", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d144635b15873f85105125bb" + }, + { + "name": "ons.age.10_20@E14001434", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5cd15bb0529c2da8727fe43" + }, + { + "name": "ons.age.10_20@E14001435", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13600.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b989750416e81603e9063ee" + }, + { + "name": "ons.age.10_20@E14001436", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b2bbd7e3e769e2a94492126" + }, + { + "name": "ons.age.10_20@E14001437", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edcfad06f130d3348d034f8b" + }, + { + "name": "ons.age.10_20@E14001438", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4484278d88c6fadecccc4496" + }, + { + "name": "ons.age.10_20@E14001439", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbf7101f2b818e2734313e25" + }, + { + "name": "ons.age.10_20@E14001440", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb1d3f13f9b5dda39559e8eb" + }, + { + "name": "ons.age.10_20@E14001441", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50fa61b42198ca65bbd5ebf0" + }, + { + "name": "ons.age.10_20@E14001442", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59d97a793fd7e8d03642cdd0" + }, + { + "name": "ons.age.10_20@E14001443", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9d4d44025d22337a98fd6b2" + }, + { + "name": "ons.age.10_20@E14001444", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0af19dbd161d4278b8c7ae" + }, + { + "name": "ons.age.10_20@E14001445", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7ded53e3af970bd12cfa79f" + }, + { + "name": "ons.age.10_20@E14001446", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15787.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff3a74d806713483f3be15c3" + }, + { + "name": "ons.age.10_20@E14001447", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a9a07d2d37f5e31e3a4d5dd" + }, + { + "name": "ons.age.10_20@E14001448", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeee35a60d887593c71e001e" + }, + { + "name": "ons.age.10_20@E14001449", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99e2609bfb97a46dab09d6e7" + }, + { + "name": "ons.age.10_20@E14001450", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d91964c18aeca5d88054f1e9" + }, + { + "name": "ons.age.10_20@E14001451", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11005.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7760141f0baec761365c931" + }, + { + "name": "ons.age.10_20@E14001452", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b106c74b87fe7be445a02b4f" + }, + { + "name": "ons.age.10_20@E14001453", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_989edc5dceeabc98df099548" + }, + { + "name": "ons.age.10_20@E14001454", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09fecef6c01293abbcb24a5" + }, + { + "name": "ons.age.10_20@E14001455", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ccc7f65b48cff0b35aca5dd" + }, + { + "name": "ons.age.10_20@E14001456", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e9ed29641b7ea80c3783d3f" + }, + { + "name": "ons.age.10_20@E14001457", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12752.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c25c46002f753bdfb7a8fd42" + }, + { + "name": "ons.age.10_20@E14001458", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d522adda95aaf4f9c7fc5e" + }, + { + "name": "ons.age.10_20@E14001459", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd88867e4a4840420a7cd8d5" + }, + { + "name": "ons.age.10_20@E14001460", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd208ff684a6a4226bc71abe" + }, + { + "name": "ons.age.10_20@E14001461", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cef9440d15a9f2088960309f" + }, + { + "name": "ons.age.10_20@E14001462", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0eb9665f7561c622250f5c1" + }, + { + "name": "ons.age.10_20@E14001463", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b38b3fe1b776287c0f6d57d" + }, + { + "name": "ons.age.10_20@E14001464", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_920af90d063568eda1492d48" + }, + { + "name": "ons.age.10_20@E14001465", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12995.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84d20e77e79398dd01b6a898" + }, + { + "name": "ons.age.10_20@E14001466", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab8cad27fb4a4702a823712e" + }, + { + "name": "ons.age.10_20@E14001467", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d7cff5dcec23d6d441a046" + }, + { + "name": "ons.age.10_20@E14001468", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89745f6e954239d2d05c4452" + }, + { + "name": "ons.age.10_20@E14001469", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7cc826b00ed0497c8314cbd" + }, + { + "name": "ons.age.10_20@E14001470", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3154451a25e3c4f71108057c" + }, + { + "name": "ons.age.10_20@E14001471", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d803a1bf6e8ceeda1ecb81d7" + }, + { + "name": "ons.age.10_20@E14001472", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5db38738bedf347ea51fc6c0" + }, + { + "name": "ons.age.10_20@E14001473", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11763.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5fa89142c918af1dd854cfa" + }, + { + "name": "ons.age.10_20@E14001474", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e36d18144b7dd2296353ba" + }, + { + "name": "ons.age.10_20@E14001475", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0dc551ee3d1457e02409a44" + }, + { + "name": "ons.age.10_20@E14001476", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_136540552a4e4fbc435826da" + }, + { + "name": "ons.age.10_20@E14001477", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8762f11d7f9464eaf8fa3fb9" + }, + { + "name": "ons.age.10_20@E14001478", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88275618a5c0b54a9a7faefe" + }, + { + "name": "ons.age.10_20@E14001479", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a41b0c80af6f45ef40beeea3" + }, + { + "name": "ons.age.10_20@E14001480", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9789d03e3d30ea6bb129bb7" + }, + { + "name": "ons.age.10_20@E14001481", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13247.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79612c54dda0913ee496b873" + }, + { + "name": "ons.age.10_20@E14001482", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abd3933db216dd8cc7cab3e5" + }, + { + "name": "ons.age.10_20@E14001483", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80d314fbd69f059dd1b457f2" + }, + { + "name": "ons.age.10_20@E14001484", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61c5fa2f458742296bff093b" + }, + { + "name": "ons.age.10_20@E14001485", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b672001336357c033f081ad0" + }, + { + "name": "ons.age.10_20@E14001486", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfde5bc755eb10ffcf2cc3e1" + }, + { + "name": "ons.age.10_20@E14001487", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bc2c25847c0172758da4fdf" + }, + { + "name": "ons.age.10_20@E14001488", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbb4e92186048f302517ff63" + }, + { + "name": "ons.age.10_20@E14001489", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32c970b4f85bdb59a444255f" + }, + { + "name": "ons.age.10_20@E14001490", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a6ba42c320dc6641d2aef4d" + }, + { + "name": "ons.age.10_20@E14001491", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b1ea6d16df1b7e93ba1534a" + }, + { + "name": "ons.age.10_20@E14001492", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51c7e7134c1d26ca4ba630ba" + }, + { + "name": "ons.age.10_20@E14001493", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4933fb6d309c9318163cdec9" + }, + { + "name": "ons.age.10_20@E14001494", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9f1d390c934117b0004124" + }, + { + "name": "ons.age.10_20@E14001495", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8f3836920f4adbcca0259c1" + }, + { + "name": "ons.age.10_20@E14001496", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cc4502e756448a806a107d8" + }, + { + "name": "ons.age.10_20@E14001497", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6daa73bf393a08ec002efb" + }, + { + "name": "ons.age.10_20@E14001498", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a669db8c7dfc63e0f8a96cf2" + }, + { + "name": "ons.age.10_20@E14001499", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d898b6986d2883d074a4f93f" + }, + { + "name": "ons.age.10_20@E14001500", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6b9525d6d7b355f910f7dcd" + }, + { + "name": "ons.age.10_20@E14001501", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fecb16e06b839c9232e84ffd" + }, + { + "name": "ons.age.10_20@E14001502", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b10a44d636c2c830a2fb8b30" + }, + { + "name": "ons.age.10_20@E14001503", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c99344cbf1293e6132ef4d24" + }, + { + "name": "ons.age.10_20@E14001504", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bfccf1dfa6a64f80d870e10" + }, + { + "name": "ons.age.10_20@E14001505", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de7cb0ae7404a48a0fe31033" + }, + { + "name": "ons.age.10_20@E14001506", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9562f3612fb4f5820c4332f9" + }, + { + "name": "ons.age.10_20@E14001507", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95d437b8a52f49bdf6646b9" + }, + { + "name": "ons.age.10_20@E14001508", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11315.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db22e3aec8cb4ab9710acc59" + }, + { + "name": "ons.age.10_20@E14001509", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06142e42a198b1a78df8d7c" + }, + { + "name": "ons.age.10_20@E14001510", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1ef6da7fa17f5173bdc4482" + }, + { + "name": "ons.age.10_20@E14001511", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b89e3531df685d1db54e579" + }, + { + "name": "ons.age.10_20@E14001512", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e42f0eab674a8a4069c68d33" + }, + { + "name": "ons.age.10_20@E14001513", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4ed4af9d61688eac8527a51" + }, + { + "name": "ons.age.10_20@E14001514", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9f358a84d22c52c3c47a051" + }, + { + "name": "ons.age.10_20@E14001515", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd0328d3c3fb0654851c6e3" + }, + { + "name": "ons.age.10_20@E14001516", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12588.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75a59fc1e471e97173b35396" + }, + { + "name": "ons.age.10_20@E14001517", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_42163550a52f05bb6205f1e5" + }, + { + "name": "ons.age.10_20@E14001518", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4a45171d9c0accc68cf0e79" + }, + { + "name": "ons.age.10_20@E14001519", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a1c21d414f46964f2806ab" + }, + { + "name": "ons.age.10_20@E14001520", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92e24b35070a3fcebfc049f8" + }, + { + "name": "ons.age.10_20@E14001521", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_891a1fa6ede636aeae153365" + }, + { + "name": "ons.age.10_20@E14001522", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5b6b2e3368b7d0bd96a4af5" + }, + { + "name": "ons.age.10_20@E14001523", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c343b502b24a89dba6230a9a" + }, + { + "name": "ons.age.10_20@E14001524", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0aa56e7f751c673f3dd9f7c" + }, + { + "name": "ons.age.10_20@E14001525", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fe72930645a255a27c9c2e4" + }, + { + "name": "ons.age.10_20@E14001526", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e61c0de4413af35a26b9109" + }, + { + "name": "ons.age.10_20@E14001527", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_902761e50d379236ad667fb2" + }, + { + "name": "ons.age.10_20@E14001528", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1b1b08da916a61fb0050a46" + }, + { + "name": "ons.age.10_20@E14001529", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fc065b991d16b0580d60759" + }, + { + "name": "ons.age.10_20@E14001530", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_530bcfdf483f38452e81dba8" + }, + { + "name": "ons.age.10_20@E14001531", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_910f4d58dde9b2e82db3d571" + }, + { + "name": "ons.age.10_20@E14001532", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3f09e19689d8060361b812b" + }, + { + "name": "ons.age.10_20@E14001533", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d965ec09a9fdd1a632778aa7" + }, + { + "name": "ons.age.10_20@E14001534", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bf1dfe960e2692714c552de" + }, + { + "name": "ons.age.10_20@E14001535", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7fbc79c96248fb5c689f1b0" + }, + { + "name": "ons.age.10_20@E14001536", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e122f5f11d765a40644317cd" + }, + { + "name": "ons.age.10_20@E14001537", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a77539577d09597067d77054" + }, + { + "name": "ons.age.10_20@E14001538", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfa876409e89584f3b6ab15c" + }, + { + "name": "ons.age.10_20@E14001539", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c01d23cc5b8593f06e4a8db1" + }, + { + "name": "ons.age.10_20@E14001540", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0fd2fddf9091cd0f2f8a6f" + }, + { + "name": "ons.age.10_20@E14001541", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6d9fd50db70a3a22461ee9d" + }, + { + "name": "ons.age.10_20@E14001542", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11503.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcfafef04e9c822cc0d5cf6f" + }, + { + "name": "ons.age.10_20@E14001543", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95b8e2739beb1575ada7bf5" + }, + { + "name": "ons.age.10_20@E14001544", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24686c467764abdda79e934d" + }, + { + "name": "ons.age.10_20@E14001545", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26b88062127aa94a19c5797" + }, + { + "name": "ons.age.10_20@E14001546", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0946cbea3e78a1bed2ec2f6" + }, + { + "name": "ons.age.10_20@E14001547", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16693.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccbdfb4f13d9e262bbe8a1fa" + }, + { + "name": "ons.age.10_20@E14001548", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a97ec62a78396f335fc286a7" + }, + { + "name": "ons.age.10_20@E14001549", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12565.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58541369dcfcc592b94ee21b" + }, + { + "name": "ons.age.10_20@E14001550", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_febbf43f0005f465ebe47314" + }, + { + "name": "ons.age.10_20@E14001551", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f080fe2a3daf11fae3946992" + }, + { + "name": "ons.age.10_20@E14001552", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68e165785515e3157e5501b5" + }, + { + "name": "ons.age.10_20@E14001553", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b52af6152d20f919862715f7" + }, + { + "name": "ons.age.10_20@E14001554", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52e87fe35dff549c81001d69" + }, + { + "name": "ons.age.10_20@E14001555", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e450744df429be08d221d797" + }, + { + "name": "ons.age.10_20@E14001556", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14310.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60bb8dc15c0f4706ba9067aa" + }, + { + "name": "ons.age.10_20@E14001557", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0579ef2211aa3aa4ac43a9d" + }, + { + "name": "ons.age.10_20@E14001558", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_830db4d4e9f027489bbe9c5f" + }, + { + "name": "ons.age.10_20@E14001559", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bf835aa1a3fcf5bee617cfb" + }, + { + "name": "ons.age.10_20@E14001560", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fca8e5e687e59360b0ec4a5e" + }, + { + "name": "ons.age.10_20@E14001561", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0b72c144b38ab8ac45b77e3" + }, + { + "name": "ons.age.10_20@E14001562", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34885ab5e110c7b386ef0b21" + }, + { + "name": "ons.age.10_20@E14001563", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dee4e8661d4331de52f6014" + }, + { + "name": "ons.age.10_20@E14001564", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7aecf33a869611140afad65" + }, + { + "name": "ons.age.10_20@E14001565", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b541c6e2e495e7d5496c37e2" + }, + { + "name": "ons.age.10_20@E14001566", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b242f0f4cf6544e4292dc810" + }, + { + "name": "ons.age.10_20@E14001567", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d648e75fdbd74ab72f07e89e" + }, + { + "name": "ons.age.10_20@E14001568", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecf7eb9c420c35ddc1b1be82" + }, + { + "name": "ons.age.10_20@E14001569", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_321909f25fc5dd7399ca17cb" + }, + { + "name": "ons.age.10_20@E14001570", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ce1223860cbb45475afe14d" + }, + { + "name": "ons.age.10_20@E14001571", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8de98a85ee0503723699739c" + }, + { + "name": "ons.age.10_20@E14001572", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26028d5e6aec3e3f11ab7b2" + }, + { + "name": "ons.age.10_20@E14001573", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66f85c1610b0b25c32227b37" + }, + { + "name": "ons.age.10_20@E14001574", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1cf958ed394b984da0950a8" + }, + { + "name": "ons.age.10_20@E14001575", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_905f0bb2a99573e62354a793" + }, + { + "name": "ons.age.10_20@E14001576", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45ef62529fc0ba6ac06c4dcb" + }, + { + "name": "ons.age.10_20@E14001577", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43f1eb971d39d686bb49cb0d" + }, + { + "name": "ons.age.10_20@E14001578", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13734.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b065e7c6ace72d54483b6cd" + }, + { + "name": "ons.age.10_20@E14001579", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbe57f9ae60efc7da16dbf78" + }, + { + "name": "ons.age.10_20@E14001580", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f7e01ec6ef26af7e124cb12" + }, + { + "name": "ons.age.10_20@E14001581", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc9c3ba533d34b9ffeeda56a" + }, + { + "name": "ons.age.10_20@E14001582", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85a832fad08c2118f999442a" + }, + { + "name": "ons.age.10_20@E14001583", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cc1de7527ad298bfa935316" + }, + { + "name": "ons.age.10_20@E14001584", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61b4039d3c47aad03e087b9f" + }, + { + "name": "ons.age.10_20@E14001585", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c9a5b2075c8b7c1097593e" + }, + { + "name": "ons.age.10_20@E14001586", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1198d645318a086404df899" + }, + { + "name": "ons.age.10_20@E14001587", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff82527ad8aabb8a379d01f4" + }, + { + "name": "ons.age.10_20@E14001588", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d80bec3ea8c53c6c2b048003" + }, + { + "name": "ons.age.10_20@E14001589", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cce9a9b0179b7bf2f192acd8" + }, + { + "name": "ons.age.10_20@E14001590", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ae3f5c136322c06d62bd405" + }, + { + "name": "ons.age.10_20@E14001591", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b560ac08d08da510de47e89" + }, + { + "name": "ons.age.10_20@E14001592", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4f0ecc7dbfc55c28c66f125" + }, + { + "name": "ons.age.10_20@E14001593", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ae3818d8b0879b5c6d8284a" + }, + { + "name": "ons.age.10_20@E14001594", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf415cf4d021f99607efb478" + }, + { + "name": "ons.age.10_20@E14001595", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb7d57cc5560e5a2d75f95bf" + }, + { + "name": "ons.age.10_20@E14001596", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b59e74edcb5db44d77007a2" + }, + { + "name": "ons.age.10_20@E14001597", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7dcf92e22b439c6e2c7a730" + }, + { + "name": "ons.age.10_20@E14001598", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_889b601bc62f4ac54c194fa1" + }, + { + "name": "ons.age.10_20@E14001599", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab00dfc0e6fb5f2a7a3699d1" + }, + { + "name": "ons.age.10_20@E14001600", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0358507c1167c6d088a5fb2" + }, + { + "name": "ons.age.10_20@E14001601", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3b46cb88346fc346a52a1ab" + }, + { + "name": "ons.age.10_20@E14001602", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70757fa82ff9925b114fea35" + }, + { + "name": "ons.age.10_20@E14001603", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c6aed2e1d4126327a68c17a" + }, + { + "name": "ons.age.10_20@E14001604", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d36c9aec85ea3caabbd4953" + }, + { + "name": "ons.age.10_20@E14001605", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10839.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8d696971090b696e6c53e7a" + }, + { + "name": "ons.age.10_20@N05000001", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dcf1c10079e088aa711ead4" + }, + { + "name": "ons.age.10_20@N05000002", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99e46d20f4379dfd7863d8f6" + }, + { + "name": "ons.age.10_20@N05000003", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c376a8e3a7af132f1f029682" + }, + { + "name": "ons.age.10_20@N05000004", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3c6ddafec9aa494f5098daf" + }, + { + "name": "ons.age.10_20@N05000005", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f506cb446a88189237e5987c" + }, + { + "name": "ons.age.10_20@N05000006", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65d3df679671f50135e68133" + }, + { + "name": "ons.age.10_20@N05000007", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc39c9e8ec8f38fe6c42dda7" + }, + { + "name": "ons.age.10_20@N05000008", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd5bcda23c58438ff1d1678a" + }, + { + "name": "ons.age.10_20@N05000009", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d326926fdffb8ac9edf442" + }, + { + "name": "ons.age.10_20@N05000010", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_19bd64bf0ba0539edf563ace" + }, + { + "name": "ons.age.10_20@N05000011", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0ed03815672586934291ada" + }, + { + "name": "ons.age.10_20@N05000012", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c411e3004715dab7cdcbbac5" + }, + { + "name": "ons.age.10_20@N05000013", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9e65e3d1f2f8dbacdee198a" + }, + { + "name": "ons.age.10_20@N05000014", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e17ed23099c798bf55709992" + }, + { + "name": "ons.age.10_20@N05000015", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc6e3acb06eb304365cf1e6b" + }, + { + "name": "ons.age.10_20@N05000016", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74868d7ea03ce5002c899bba" + }, + { + "name": "ons.age.10_20@N05000017", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c52964a53a4a6b3d343bcd8c" + }, + { + "name": "ons.age.10_20@N05000018", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2ab6f1b9dd54f160f3b08a1" + }, + { + "name": "ons.age.10_20@S14000021", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e82a79de22901a2f88449983" + }, + { + "name": "ons.age.10_20@S14000027", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 2711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea2be83ffd5987574998c8a1" + }, + { + "name": "ons.age.10_20@S14000045", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f71e598de136ec798694436e" + }, + { + "name": "ons.age.10_20@S14000048", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5c92feaa1e8cc95f65116b6" + }, + { + "name": "ons.age.10_20@S14000051", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 5204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efad8c03d19b09f84d96c393" + }, + { + "name": "ons.age.10_20@S14000060", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff4c90384f435f6266009092" + }, + { + "name": "ons.age.10_20@S14000061", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11671.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7c7f39834ada588ad60d575" + }, + { + "name": "ons.age.10_20@S14000062", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41359053986acbe9a812269" + }, + { + "name": "ons.age.10_20@S14000063", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef386ee78588695f5b2e3ad9" + }, + { + "name": "ons.age.10_20@S14000064", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11024.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6573ce4a81be7f74cd171c1" + }, + { + "name": "ons.age.10_20@S14000065", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f735afaa99c66748d6726d0c" + }, + { + "name": "ons.age.10_20@S14000066", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc00061c44c58d4bbe930ad3" + }, + { + "name": "ons.age.10_20@S14000067", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f241e41757c1b7839b68a886" + }, + { + "name": "ons.age.10_20@S14000068", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11787.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd7c9d60fdb9042e58953194" + }, + { + "name": "ons.age.10_20@S14000069", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d854f743e2dc78128f15d962" + }, + { + "name": "ons.age.10_20@S14000070", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4296c61e2b0be64f7c11fb2" + }, + { + "name": "ons.age.10_20@S14000071", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa88a8b3440ef6759059d519" + }, + { + "name": "ons.age.10_20@S14000072", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c09631d0e804a66abb5de91f" + }, + { + "name": "ons.age.10_20@S14000073", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f65b66b82f7b0cb504beed4d" + }, + { + "name": "ons.age.10_20@S14000074", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea67cee6fab66427b702514c" + }, + { + "name": "ons.age.10_20@S14000075", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc6a1d99ebf0f7d7549b2580" + }, + { + "name": "ons.age.10_20@S14000076", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e45d0cdea8b12a44ec47a3a2" + }, + { + "name": "ons.age.10_20@S14000077", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6db768a295f6525aa1ef377" + }, + { + "name": "ons.age.10_20@S14000078", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f18f71192f2cad39866eaa2e" + }, + { + "name": "ons.age.10_20@S14000079", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f490db087333e908af841783" + }, + { + "name": "ons.age.10_20@S14000080", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddda711490808823490d11b6" + }, + { + "name": "ons.age.10_20@S14000081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0e0f357228e20fd9541178f" + }, + { + "name": "ons.age.10_20@S14000082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b60b52468277293287a0ebaf" + }, + { + "name": "ons.age.10_20@S14000083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d5f36a05085086b3955085" + }, + { + "name": "ons.age.10_20@S14000084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0b40adaf1b8d22c16531aa0" + }, + { + "name": "ons.age.10_20@S14000085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12024.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f51a93e52d0e39491d74583a" + }, + { + "name": "ons.age.10_20@S14000086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe8caddbf5fc4f63ec304f4e" + }, + { + "name": "ons.age.10_20@S14000087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f736b87bf5bc86df4da5df79" + }, + { + "name": "ons.age.10_20@S14000088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffc7901a79245838e4d88441" + }, + { + "name": "ons.age.10_20@S14000089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff0bd3f58d550e5d5a2b4460" + }, + { + "name": "ons.age.10_20@S14000090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfbfac2a13cddb42a493e4cb" + }, + { + "name": "ons.age.10_20@S14000091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa47542604558b1013f507a7" + }, + { + "name": "ons.age.10_20@S14000092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d78af64b83710284de6dd3d5" + }, + { + "name": "ons.age.10_20@S14000093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c24b63e897e271c97902d0" + }, + { + "name": "ons.age.10_20@S14000094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee03f98edfd540572ed225be" + }, + { + "name": "ons.age.10_20@S14000095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d628d6514975119f0b774b4f" + }, + { + "name": "ons.age.10_20@S14000096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9dcc414c00587d4809c2111" + }, + { + "name": "ons.age.10_20@S14000097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffc37062b315f5a5c1b6b462" + }, + { + "name": "ons.age.10_20@S14000098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f36491608ad0af825bc1b053" + }, + { + "name": "ons.age.10_20@S14000099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb637a78c71dc675ec88470a" + }, + { + "name": "ons.age.10_20@S14000100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f857aa88ac9b8470d1a209" + }, + { + "name": "ons.age.10_20@S14000101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0b2fce8b01417fd83da7ff8" + }, + { + "name": "ons.age.10_20@S14000102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdfe2561f75fa62e792c6181" + }, + { + "name": "ons.age.10_20@S14000103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef6da1631fe88bde9d1969f" + }, + { + "name": "ons.age.10_20@S14000104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8d0151ddd0ed8a08c6c965f" + }, + { + "name": "ons.age.10_20@S14000105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f31a5fee464569d51125a9ab" + }, + { + "name": "ons.age.10_20@S14000106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d33724e9eabd5506a5279da1" + }, + { + "name": "ons.age.10_20@S14000107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee240e66edfa620cb8a53e64" + }, + { + "name": "ons.age.10_20@S14000108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54a2fe30e5b5efd260a696d" + }, + { + "name": "ons.age.10_20@S14000109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbb27d68e1e7fb9ed5174422" + }, + { + "name": "ons.age.10_20@S14000110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6a610b2d64394f2bb2d377f" + }, + { + "name": "ons.age.10_20@S14000111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed89bdfcf619de22ab89cf17" + }, + { + "name": "ons.age.10_20@W07000081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e88045df8732c3584879b060" + }, + { + "name": "ons.age.10_20@W07000082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0aac8cc33758632eeeecce6" + }, + { + "name": "ons.age.10_20@W07000083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10874.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f511c59771968ecca1d65d82" + }, + { + "name": "ons.age.10_20@W07000084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91eb252553cc806c0af7cd3b" + }, + { + "name": "ons.age.10_20@W07000085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9541.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e624b13110a9f392ad785e53" + }, + { + "name": "ons.age.10_20@W07000086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb50ea4dad427972639500f8" + }, + { + "name": "ons.age.10_20@W07000087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ab9dc446676d25e524456dc" + }, + { + "name": "ons.age.10_20@W07000088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5156c48ea53faebe53d55e4" + }, + { + "name": "ons.age.10_20@W07000089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e8b66e4423f6d444df3fe12" + }, + { + "name": "ons.age.10_20@W07000090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d9f590e25a27f7f50418481" + }, + { + "name": "ons.age.10_20@W07000091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83c4c8d53867e8a9f1fe1561" + }, + { + "name": "ons.age.10_20@W07000092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8891502996ea6c8fc7bef1f" + }, + { + "name": "ons.age.10_20@W07000093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb67b824fbc71789b1ac7d06" + }, + { + "name": "ons.age.10_20@W07000094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb2b4a5e48f5e680639a78e" + }, + { + "name": "ons.age.10_20@W07000095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_30594b56e7bef4cc9e03e576" + }, + { + "name": "ons.age.10_20@W07000096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7e15e242bae353df438c6da" + }, + { + "name": "ons.age.10_20@W07000097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_30e0749095b3cf29bb958fab" + }, + { + "name": "ons.age.10_20@W07000098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f702a7ef89ff1f3d25376bd1" + }, + { + "name": "ons.age.10_20@W07000099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e44a3d8d459de5c3f237ff39" + }, + { + "name": "ons.age.10_20@W07000100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c21e786a3547f88963ef82fc" + }, + { + "name": "ons.age.10_20@W07000101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10030.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8b6e161e9e035929427d4ef" + }, + { + "name": "ons.age.10_20@W07000102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98da1787f5dbc2209535e21f" + }, + { + "name": "ons.age.10_20@W07000103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1b7b0ec7e3b38a36bbdc1a7" + }, + { + "name": "ons.age.10_20@W07000104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb463a04f1537fa3b08270cc" + }, + { + "name": "ons.age.10_20@W07000105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc9670d3f2a192817d296a4d" + }, + { + "name": "ons.age.10_20@W07000106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d650b6849c9da8084aded08" + }, + { + "name": "ons.age.10_20@W07000107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26e883cdd337df3bb0bf3e5" + }, + { + "name": "ons.age.10_20@W07000108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89ec179a48fadf02aad4e3d5" + }, + { + "name": "ons.age.10_20@W07000109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab101c99f7a4f4e1ce811bf9" + }, + { + "name": "ons.age.10_20@W07000110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eff63025834e4dba2593121" + }, + { + "name": "ons.age.10_20@W07000111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a60d9d24415638e4bb21eaa6" + }, + { + "name": "ons.age.10_20@W07000112", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18295dfc7a634a8d8654ecd" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.10_20@E06000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12274.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_461b2ec7aa753e6c4a0fa330" + }, + { + "name": "ons.age.10_20@E06000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf5a159de9dc76e06d991cc4" + }, + { + "name": "ons.age.10_20@E06000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd4712e59021ef13f8cf2e03" + }, + { + "name": "ons.age.10_20@E06000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6680e1a643a42034e4a4cf5b" + }, + { + "name": "ons.age.10_20@E06000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b223714eeb8d613ada6de3ba" + }, + { + "name": "ons.age.10_20@E06000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8231f45c754fa83acc6e81d5" + }, + { + "name": "ons.age.10_20@E06000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ea80560a07d8400853afb7" + }, + { + "name": "ons.age.10_20@E06000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2cf6c26d8a20925b6ef1a4f" + }, + { + "name": "ons.age.10_20@E06000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d8a49ad8acc3b9204833c8" + }, + { + "name": "ons.age.10_20@E06000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8a06dbed69cb0cae36d7776" + }, + { + "name": "ons.age.10_20@E06000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebedcadf120ce95f7b776d02" + }, + { + "name": "ons.age.10_20@E06000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19196.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfeed6aa4cde4fe9a3f05f65" + }, + { + "name": "ons.age.10_20@E06000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad404858f1cfcb80520cd08" + }, + { + "name": "ons.age.10_20@E06000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6cc2c0144e7e0ff711e0590" + }, + { + "name": "ons.age.10_20@E06000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91d0ecf17deaa3bae96f0420" + }, + { + "name": "ons.age.10_20@E06000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee6a0de1dc784192e8d6843" + }, + { + "name": "ons.age.10_20@E06000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_750ae46e8f28c4ba565bacf7" + }, + { + "name": "ons.age.10_20@E06000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b7fbadf9ccc1865358bbf68" + }, + { + "name": "ons.age.10_20@E06000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf4013e8b418d4b5c6cda34d" + }, + { + "name": "ons.age.10_20@E06000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bc102fd82a6f6129cc56826" + }, + { + "name": "ons.age.10_20@E06000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f948266824e8ff924c7354b4" + }, + { + "name": "ons.age.10_20@E06000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59d990e50daa54c6b6b2d9c4" + }, + { + "name": "ons.age.10_20@E06000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd90a9481ac2f8ac204a2697" + }, + { + "name": "ons.age.10_20@E06000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f64d7f4da82b8a4b81a0586" + }, + { + "name": "ons.age.10_20@E06000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b116792938beb219381e2a88" + }, + { + "name": "ons.age.10_20@E06000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7aed59be17f232570dd17830" + }, + { + "name": "ons.age.10_20@E06000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd43bf3d9186c131ede09904" + }, + { + "name": "ons.age.10_20@E06000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50dbe563d63933d6c9feb61" + }, + { + "name": "ons.age.10_20@E06000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b89b2ec1d87a38cf163097d9" + }, + { + "name": "ons.age.10_20@E06000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d920599128ea13802f38110a" + }, + { + "name": "ons.age.10_20@E06000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21572.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74bb463c71184655c45b6a9f" + }, + { + "name": "ons.age.10_20@E06000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95e6dbfcf66b173e8db30d2" + }, + { + "name": "ons.age.10_20@E06000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1d3324f31e125067bbd9404" + }, + { + "name": "ons.age.10_20@E06000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe90ef1386ad810a1e6ea0a2" + }, + { + "name": "ons.age.10_20@E06000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c9a422e219fafe61e176f2b" + }, + { + "name": "ons.age.10_20@E06000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7aac4b109175fe16c46720fe" + }, + { + "name": "ons.age.10_20@E06000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24600.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec0b5b54a1d22862a5876148" + }, + { + "name": "ons.age.10_20@E06000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3527782046aa707785f9140" + }, + { + "name": "ons.age.10_20@E06000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b811fed8d82587ca9cabd24f" + }, + { + "name": "ons.age.10_20@E06000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad037469932bdfb370ee1585" + }, + { + "name": "ons.age.10_20@E06000043", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_709da0ae17492d5fec002e20" + }, + { + "name": "ons.age.10_20@E06000044", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bffe20d498feeab4bfaa73a7" + }, + { + "name": "ons.age.10_20@E06000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63420361a59df0c95fabae6" + }, + { + "name": "ons.age.10_20@E06000046", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7765d4156678e92792ee2f7d" + }, + { + "name": "ons.age.10_20@E06000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da991b18a4ffe60ce918cb3" + }, + { + "name": "ons.age.10_20@E06000049", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_105360a69b7593760875a493" + }, + { + "name": "ons.age.10_20@E06000050", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1f8fb7684fcbe215e0bbcb4" + }, + { + "name": "ons.age.10_20@E06000051", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9aedfa9c5772ab3e23d3f222" + }, + { + "name": "ons.age.10_20@E06000052", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfff3da6698eccef3a1c024c" + }, + { + "name": "ons.age.10_20@E06000053", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f380140c48183713e0848276" + }, + { + "name": "ons.age.10_20@E06000054", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_472eede174cb519d98b82010" + }, + { + "name": "ons.age.10_20@E06000055", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bb22d6ff01df4cb21d63c98" + }, + { + "name": "ons.age.10_20@E06000056", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63eabae441ea180928c13cef" + }, + { + "name": "ons.age.10_20@E06000057", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cae8911213d650ea32e5f9b6" + }, + { + "name": "ons.age.10_20@E06000058", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cea3e3468ac6e7cd522627ae" + }, + { + "name": "ons.age.10_20@E06000059", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bed5a4ed3f63e7b8450dc3e9" + }, + { + "name": "ons.age.10_20@E06000060", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5499c22e5e48fb53bf6e6b52" + }, + { + "name": "ons.age.10_20@E06000061", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_305c41ff82b3f213db14abf3" + }, + { + "name": "ons.age.10_20@E06000062", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae6d1f69bc9449239db5209c" + }, + { + "name": "ons.age.10_20@E06000063", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7b6d12a8744ec67e26a6f88" + }, + { + "name": "ons.age.10_20@E06000064", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ac82e6828f5ac9389a0a515" + }, + { + "name": "ons.age.10_20@E06000065", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45f4b2a6d6f0a79aa21eb71f" + }, + { + "name": "ons.age.10_20@E06000066", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4ebdeb35ccee052a699a3f" + }, + { + "name": "ons.age.10_20@E07000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dbc83f7185883bdaff596ea" + }, + { + "name": "ons.age.10_20@E07000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7ad47795269adb2e8fa9aa0" + }, + { + "name": "ons.age.10_20@E07000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11212.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f973066a502442001d4023b1" + }, + { + "name": "ons.age.10_20@E07000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d96d589509a216ac1af1b50e" + }, + { + "name": "ons.age.10_20@E07000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd23e667909936ca87a7f049" + }, + { + "name": "ons.age.10_20@E07000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b987e30a24832a486a6672e" + }, + { + "name": "ons.age.10_20@E07000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0ae8e2c9bc266dc90518a4e" + }, + { + "name": "ons.age.10_20@E07000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b683801990d602bcb7f39be4" + }, + { + "name": "ons.age.10_20@E07000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9931f40eea44949f177d6eb1" + }, + { + "name": "ons.age.10_20@E07000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb99ece220ff7f68ea6bead1" + }, + { + "name": "ons.age.10_20@E07000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfe708f832b7680a96da80a2" + }, + { + "name": "ons.age.10_20@E07000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e23bd9903fa9e244bcb10add" + }, + { + "name": "ons.age.10_20@E07000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94a6729047bb5959395bf857" + }, + { + "name": "ons.age.10_20@E07000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77dd70fcd725d7f4850cde2" + }, + { + "name": "ons.age.10_20@E07000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17538.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d63d2e8dc587a3213fa2f54c" + }, + { + "name": "ons.age.10_20@E07000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5c00f898420d00f58a6ecaf" + }, + { + "name": "ons.age.10_20@E07000043", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78e5cbf4e68cfb0a00b3ba4" + }, + { + "name": "ons.age.10_20@E07000044", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4a6bfdab56c36136d388c4f" + }, + { + "name": "ons.age.10_20@E07000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c428255db876748352a5bb3" + }, + { + "name": "ons.age.10_20@E07000046", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_319c33af76ae7a73bbf56bb7" + }, + { + "name": "ons.age.10_20@E07000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c32ddcefee0a49b12791eaa3" + }, + { + "name": "ons.age.10_20@E07000061", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9185ccaf71973ae48b089724" + }, + { + "name": "ons.age.10_20@E07000062", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e67f938d2ba903b54a791478" + }, + { + "name": "ons.age.10_20@E07000063", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbff1943c6bed45907b2c535" + }, + { + "name": "ons.age.10_20@E07000064", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5479f8358d54880eef3399bd" + }, + { + "name": "ons.age.10_20@E07000065", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_29e3c3db5b5e231e8ea7eff7" + }, + { + "name": "ons.age.10_20@E07000066", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43d1d629b9b700c0e00aaba1" + }, + { + "name": "ons.age.10_20@E07000067", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9cbb6ccd042c0ec65d68e06" + }, + { + "name": "ons.age.10_20@E07000068", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50b74c6e2fa37a8fa834df97" + }, + { + "name": "ons.age.10_20@E07000069", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a321d7581aa2ab69445906f" + }, + { + "name": "ons.age.10_20@E07000070", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e67c748d93ea7146f422616e" + }, + { + "name": "ons.age.10_20@E07000071", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e13d14f99a3fc8006613e72a" + }, + { + "name": "ons.age.10_20@E07000072", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f91097c70c0ba418fcfc12" + }, + { + "name": "ons.age.10_20@E07000073", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbef1cbfa2add3fa72100df5" + }, + { + "name": "ons.age.10_20@E07000074", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7084.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4f24302c356050247124596" + }, + { + "name": "ons.age.10_20@E07000075", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ccbc41f12de5f6de3b5ed2b" + }, + { + "name": "ons.age.10_20@E07000076", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5573cdc421397781a10ac954" + }, + { + "name": "ons.age.10_20@E07000077", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0ebf93eb1120dfe62c3fd2" + }, + { + "name": "ons.age.10_20@E07000078", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3ac728dc4a07f958cccd7f5" + }, + { + "name": "ons.age.10_20@E07000079", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cff07616e599430d43fabf0f" + }, + { + "name": "ons.age.10_20@E07000080", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7aed2e53f6b45f543c781c0d" + }, + { + "name": "ons.age.10_20@E07000081", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1d2a7662f649bb4b962d347" + }, + { + "name": "ons.age.10_20@E07000082", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f91ab1351b2a229eda2d0fcb" + }, + { + "name": "ons.age.10_20@E07000083", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ef5f224b2823a0c9010b693" + }, + { + "name": "ons.age.10_20@E07000084", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a89eafaeb32eab173c9b9f95" + }, + { + "name": "ons.age.10_20@E07000085", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0043e704f0f717448b051cd" + }, + { + "name": "ons.age.10_20@E07000086", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7989da006193ee30e0eec8d" + }, + { + "name": "ons.age.10_20@E07000087", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63cd5d64a7a07d57ee0fa117" + }, + { + "name": "ons.age.10_20@E07000088", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38f2860fc0fc718a5891b62c" + }, + { + "name": "ons.age.10_20@E07000089", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1c7527c668d0472a9ead4b" + }, + { + "name": "ons.age.10_20@E07000090", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab36cc74c2e10280cfd2e20a" + }, + { + "name": "ons.age.10_20@E07000091", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce398b3c4a127724ed689a09" + }, + { + "name": "ons.age.10_20@E07000092", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea2c7c90f3def5cc983bd999" + }, + { + "name": "ons.age.10_20@E07000093", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15127.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4059f722a94721315181f263" + }, + { + "name": "ons.age.10_20@E07000094", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9870f91f888f59e4aa87a3e" + }, + { + "name": "ons.age.10_20@E07000095", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c30c2885b5679754f37749bd" + }, + { + "name": "ons.age.10_20@E07000096", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0e80857b6e3ac786671479a" + }, + { + "name": "ons.age.10_20@E07000098", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e18885f2f98555b655f45229" + }, + { + "name": "ons.age.10_20@E07000099", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce81b5b96a24063bfae5f18d" + }, + { + "name": "ons.age.10_20@E07000102", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b00445411041aab02051579" + }, + { + "name": "ons.age.10_20@E07000103", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cebdc78051474f44c2d093c" + }, + { + "name": "ons.age.10_20@E07000105", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2963e6d62fb82091102ecc89" + }, + { + "name": "ons.age.10_20@E07000106", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20e238497b2b3898eb03fab" + }, + { + "name": "ons.age.10_20@E07000107", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16311.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4fedbc4803084c766b7539b" + }, + { + "name": "ons.age.10_20@E07000108", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12b8c11d8267b5e9764fd7c" + }, + { + "name": "ons.age.10_20@E07000109", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f82823ed08da9579ea1a9d7" + }, + { + "name": "ons.age.10_20@E07000110", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82067f1c03e78fd0a5ff6b87" + }, + { + "name": "ons.age.10_20@E07000111", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7840fd65acb5d9669db314c" + }, + { + "name": "ons.age.10_20@E07000112", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12030.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f2c60591de7014cb6395f64" + }, + { + "name": "ons.age.10_20@E07000113", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74411caaced740ab34742028" + }, + { + "name": "ons.age.10_20@E07000114", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9d740ce2b58e9a84bc97f9b" + }, + { + "name": "ons.age.10_20@E07000115", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e52a62b2b0d974fdeaa051f3" + }, + { + "name": "ons.age.10_20@E07000116", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_913b62b4026ad1be61194cc4" + }, + { + "name": "ons.age.10_20@E07000117", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e79cb1bf8b6c630755bc0944" + }, + { + "name": "ons.age.10_20@E07000118", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b694849526a464b2e6b629f" + }, + { + "name": "ons.age.10_20@E07000119", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8354.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b7140b530a6a89dc910963f" + }, + { + "name": "ons.age.10_20@E07000120", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc13b87158f41b0d6685b965" + }, + { + "name": "ons.age.10_20@E07000121", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2b435b3afe844c08b852b1b" + }, + { + "name": "ons.age.10_20@E07000122", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3cdd3369e0ad98ff3faad5d" + }, + { + "name": "ons.age.10_20@E07000123", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_831dc382f9f619334dcf7c1e" + }, + { + "name": "ons.age.10_20@E07000124", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db2fe6321218efcd4874535d" + }, + { + "name": "ons.age.10_20@E07000125", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f37fad07d69ed461929016a4" + }, + { + "name": "ons.age.10_20@E07000126", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c628c9cb0e28466f66d5bea5" + }, + { + "name": "ons.age.10_20@E07000127", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d4a4764d55ea4a04ea8b7e" + }, + { + "name": "ons.age.10_20@E07000128", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de113529506f74e62fc8a2bc" + }, + { + "name": "ons.age.10_20@E07000129", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55bd27f03b853a90caeff596" + }, + { + "name": "ons.age.10_20@E07000130", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f9c6439145e8784394724c3" + }, + { + "name": "ons.age.10_20@E07000131", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eee2735c44dca387221f3253" + }, + { + "name": "ons.age.10_20@E07000132", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99a57438b424daa83abb6703" + }, + { + "name": "ons.age.10_20@E07000133", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9e1cca34cc6ebdcec7125f0" + }, + { + "name": "ons.age.10_20@E07000134", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c691f1df89c26f3cb6bffb89" + }, + { + "name": "ons.age.10_20@E07000135", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2220d5ed8093a6ade12e1553" + }, + { + "name": "ons.age.10_20@E07000136", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e9cfde8e16918ad53962486" + }, + { + "name": "ons.age.10_20@E07000137", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb4d081a7b65c2694fec8a6" + }, + { + "name": "ons.age.10_20@E07000138", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87cb1afeae2eb070781cd0ba" + }, + { + "name": "ons.age.10_20@E07000139", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44d4c55bf491e0433f4ce143" + }, + { + "name": "ons.age.10_20@E07000140", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10543.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fedc3745dd953b67b62979dc" + }, + { + "name": "ons.age.10_20@E07000141", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd0970f03318026ed1e28f7a" + }, + { + "name": "ons.age.10_20@E07000142", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10754.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde9928f0b80bcae6ae76ce0" + }, + { + "name": "ons.age.10_20@E07000143", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ad564e9c938811b6009713e" + }, + { + "name": "ons.age.10_20@E07000144", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8331ba703adb03e574fb2fd5" + }, + { + "name": "ons.age.10_20@E07000145", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5c06ce08184b16282728df1" + }, + { + "name": "ons.age.10_20@E07000146", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f2a1ca5f7d4ed6a6ba9f12c" + }, + { + "name": "ons.age.10_20@E07000147", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_748b5f717ab002ac018e51bc" + }, + { + "name": "ons.age.10_20@E07000148", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6da07144b32cb03fc5cb3a2" + }, + { + "name": "ons.age.10_20@E07000149", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2379cae1536eeb01ed60d33" + }, + { + "name": "ons.age.10_20@E07000170", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_968b4aabacd42197cfbdfb7c" + }, + { + "name": "ons.age.10_20@E07000171", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39bcabab894bc8c19cced789" + }, + { + "name": "ons.age.10_20@E07000172", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cabad26ec2f27a9bae9a47d0" + }, + { + "name": "ons.age.10_20@E07000173", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_794c8218384215f347987fd7" + }, + { + "name": "ons.age.10_20@E07000174", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d86031d4993f5df935340ac" + }, + { + "name": "ons.age.10_20@E07000175", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a765084beff21143edc4fe8" + }, + { + "name": "ons.age.10_20@E07000176", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53657e4be45247e5b743bb2d" + }, + { + "name": "ons.age.10_20@E07000177", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b949ecd7767351b01a307f18" + }, + { + "name": "ons.age.10_20@E07000178", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47a1e12af3821305edac2f1" + }, + { + "name": "ons.age.10_20@E07000179", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37f4fe8b9396b5807da33e20" + }, + { + "name": "ons.age.10_20@E07000180", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3979b629faadeef859a36c45" + }, + { + "name": "ons.age.10_20@E07000181", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13647.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df28f4d8fa9737a30269f981" + }, + { + "name": "ons.age.10_20@E07000192", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5f274bbddc75168362b92b2" + }, + { + "name": "ons.age.10_20@E07000193", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd1f6f326107d774af111e74" + }, + { + "name": "ons.age.10_20@E07000194", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2c16b2cacf959e1a0baa1a2" + }, + { + "name": "ons.age.10_20@E07000195", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14955.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0a634cdfa23bc18c1a9ca5" + }, + { + "name": "ons.age.10_20@E07000196", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de16c6aa7bbbe7eb2e304fa9" + }, + { + "name": "ons.age.10_20@E07000197", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cf553ea419cd54b4d456cc4" + }, + { + "name": "ons.age.10_20@E07000198", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb1e3ace9d9529346b68aeca" + }, + { + "name": "ons.age.10_20@E07000199", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33a7c5cc5825e005f421be6" + }, + { + "name": "ons.age.10_20@E07000200", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47a2232ee567f7c83bf4ea23" + }, + { + "name": "ons.age.10_20@E07000202", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6aa897df1ffb13bc723dc77" + }, + { + "name": "ons.age.10_20@E07000203", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbe34cd9e5facd1cce862bd4" + }, + { + "name": "ons.age.10_20@E07000207", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_614247a0743eb4aa261faba7" + }, + { + "name": "ons.age.10_20@E07000208", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_684910443b8e641616a335d3" + }, + { + "name": "ons.age.10_20@E07000209", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_900c12ae7242823862e032f5" + }, + { + "name": "ons.age.10_20@E07000210", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd5c0b309c27feae59cb7c7d" + }, + { + "name": "ons.age.10_20@E07000211", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_beeaeb696cd2d4c3003608f2" + }, + { + "name": "ons.age.10_20@E07000212", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6306d2a5c719de86cbe92e3" + }, + { + "name": "ons.age.10_20@E07000213", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e46cc0a40c4a5239e88e8940" + }, + { + "name": "ons.age.10_20@E07000214", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4a96d7da0815729410ab326" + }, + { + "name": "ons.age.10_20@E07000215", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da164ba63ca7c06e581b8a88" + }, + { + "name": "ons.age.10_20@E07000216", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bb11d94dc077691af47668b" + }, + { + "name": "ons.age.10_20@E07000217", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa180945dc95d93a3d0718c" + }, + { + "name": "ons.age.10_20@E07000218", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f3b31cdbcbe740132b4b995" + }, + { + "name": "ons.age.10_20@E07000219", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38e864b22ac9266b4bb4744a" + }, + { + "name": "ons.age.10_20@E07000220", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15418.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aea6e9cb3ae1a6ba5d2a812" + }, + { + "name": "ons.age.10_20@E07000221", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d82f2c02e490e8598578c55c" + }, + { + "name": "ons.age.10_20@E07000222", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7af9b7bc96915923bfbb693" + }, + { + "name": "ons.age.10_20@E07000223", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f72f1ce963c1b525480ff69" + }, + { + "name": "ons.age.10_20@E07000224", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df73435a60b3d26b41b2b079" + }, + { + "name": "ons.age.10_20@E07000225", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b32313a81fcbb1cfe4d4679a" + }, + { + "name": "ons.age.10_20@E07000226", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_855ed9d15559e979d823ec1b" + }, + { + "name": "ons.age.10_20@E07000227", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cea5777829a75813f16bcfa4" + }, + { + "name": "ons.age.10_20@E07000228", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b6c8eed3fdc5571612e13cb" + }, + { + "name": "ons.age.10_20@E07000229", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7647db366a61c76e4df9d99" + }, + { + "name": "ons.age.10_20@E07000234", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12125.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb76d031dff11721a3a055f" + }, + { + "name": "ons.age.10_20@E07000235", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f0bd8755496e857ff8ebb8" + }, + { + "name": "ons.age.10_20@E07000236", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a77a216188a1d67ead19e304" + }, + { + "name": "ons.age.10_20@E07000237", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce74345fc9d08fdf3e5aa87e" + }, + { + "name": "ons.age.10_20@E07000238", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a45c2281a9fc3625186927e" + }, + { + "name": "ons.age.10_20@E07000239", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f270eb79078da480141e4e84" + }, + { + "name": "ons.age.10_20@E07000240", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e35c81750908c6972cc24de8" + }, + { + "name": "ons.age.10_20@E07000241", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a3227e8a84af757d7a11121" + }, + { + "name": "ons.age.10_20@E07000242", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79861fbce8a7f50cbb59c8cb" + }, + { + "name": "ons.age.10_20@E07000243", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f48ef13f3ce6bcee081e4cf7" + }, + { + "name": "ons.age.10_20@E07000244", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb7620757d394e0a7aac18ba" + }, + { + "name": "ons.age.10_20@E07000245", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99c679968a5f343a117f3e30" + }, + { + "name": "ons.age.10_20@E08000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96fe0d3b96bf3af9182c517f" + }, + { + "name": "ons.age.10_20@E08000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff13114eb849918c0848f23b" + }, + { + "name": "ons.age.10_20@E08000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84308602f7d44920fc1cb078" + }, + { + "name": "ons.age.10_20@E08000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9103893abd82481be1741ce" + }, + { + "name": "ons.age.10_20@E08000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c796a6619eaa5abcb7b8bb9" + }, + { + "name": "ons.age.10_20@E08000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cc18713b15480ee4d124303" + }, + { + "name": "ons.age.10_20@E08000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dee590ae70090c8aa5ef2f1b" + }, + { + "name": "ons.age.10_20@E08000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29790.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c238034e8689b9928af3867" + }, + { + "name": "ons.age.10_20@E08000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9297e1fcfe862de5fd1b097" + }, + { + "name": "ons.age.10_20@E08000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b8bcf8388902b6c5e755c25" + }, + { + "name": "ons.age.10_20@E08000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b13f9998381607675e0baca" + }, + { + "name": "ons.age.10_20@E08000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba684ffb1bd3c867646b4691" + }, + { + "name": "ons.age.10_20@E08000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab81b6c377da0e7635190d32" + }, + { + "name": "ons.age.10_20@E08000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f16f988c08c4c9189455f29" + }, + { + "name": "ons.age.10_20@E08000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bece635a2f2179f80f21a807" + }, + { + "name": "ons.age.10_20@E08000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b94d838564347fa669c1922" + }, + { + "name": "ons.age.10_20@E08000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daf7c10daa3e908d8a00db49" + }, + { + "name": "ons.age.10_20@E08000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc16e138c48be9adc2a96e2a" + }, + { + "name": "ons.age.10_20@E08000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc91173cb4e9d4c95dfda165" + }, + { + "name": "ons.age.10_20@E08000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_847d8f5ef8480624f9642117" + }, + { + "name": "ons.age.10_20@E08000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebd731646569605b3d08644e" + }, + { + "name": "ons.age.10_20@E08000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c16f7dda292810bc64c7e0a4" + }, + { + "name": "ons.age.10_20@E08000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b04cee72800cd041b016b411" + }, + { + "name": "ons.age.10_20@E08000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94e15e66c7ae8f4881a978cc" + }, + { + "name": "ons.age.10_20@E08000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d5d2d9a4840ae8be90e52d" + }, + { + "name": "ons.age.10_20@E08000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc81692629388614b2238042" + }, + { + "name": "ons.age.10_20@E08000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_603f48ffccd929c1748d74d1" + }, + { + "name": "ons.age.10_20@E08000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa1da7240edffe3b666c101f" + }, + { + "name": "ons.age.10_20@E08000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39265.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0870082e15637974c1025ad" + }, + { + "name": "ons.age.10_20@E08000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd585e7f1c628fc800afabe3" + }, + { + "name": "ons.age.10_20@E08000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9935ca25c28407485cfc534" + }, + { + "name": "ons.age.10_20@E08000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_968a7e56c0a8abf956b417dc" + }, + { + "name": "ons.age.10_20@E08000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3af175f5665b438dea91156" + }, + { + "name": "ons.age.10_20@E08000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c14501109f4bc3eb37725e38" + }, + { + "name": "ons.age.10_20@E08000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c833f96b6faedaef0e1e1d7" + }, + { + "name": "ons.age.10_20@E08000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_639e8495ddb58208ccf8fd18" + }, + { + "name": "ons.age.10_20@E09000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d794b1b5b6e7f44dfa78ff3" + }, + { + "name": "ons.age.10_20@E09000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35084.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbf3f4c2021f154f2afb7ca0" + }, + { + "name": "ons.age.10_20@E09000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d55a0b03bd2dbc222663c0ef" + }, + { + "name": "ons.age.10_20@E09000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab44b5aa00feef9fea4cd4e3" + }, + { + "name": "ons.age.10_20@E09000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_affe822f7eeca4630916252c" + }, + { + "name": "ons.age.10_20@E09000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_417ffa871e0c931223149f84" + }, + { + "name": "ons.age.10_20@E09000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23788.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0bfb3bd1d23e6f3a7f13f9" + }, + { + "name": "ons.age.10_20@E09000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7da4feaeedfbf8dcba958f8e" + }, + { + "name": "ons.age.10_20@E09000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98349464a8da70790490cac0" + }, + { + "name": "ons.age.10_20@E09000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b116117a2690aaefcfe3f603" + }, + { + "name": "ons.age.10_20@E09000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dcb0a6ab563ce204e6e4db9" + }, + { + "name": "ons.age.10_20@E09000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28629.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae0e280f605baae2e8f7d4fb" + }, + { + "name": "ons.age.10_20@E09000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3d23f18a8001df4470050a0" + }, + { + "name": "ons.age.10_20@E09000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9826fe804235e4f4f357e97b" + }, + { + "name": "ons.age.10_20@E09000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1a144cecde0cc0bce03b051" + }, + { + "name": "ons.age.10_20@E09000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a26d9a82ec9a5ec0ca35929b" + }, + { + "name": "ons.age.10_20@E09000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e241f6e2ab68ca81c0468bbf" + }, + { + "name": "ons.age.10_20@E09000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36067.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d03895b904e343f5d6e58df9" + }, + { + "name": "ons.age.10_20@E09000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e877875c43bc568e0f1be36f" + }, + { + "name": "ons.age.10_20@E09000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a9d21738278bfd771820057" + }, + { + "name": "ons.age.10_20@E09000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9536a31de5e8f385f538dc5d" + }, + { + "name": "ons.age.10_20@E09000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28902.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9d5eb283e872f5616ef95b4" + }, + { + "name": "ons.age.10_20@E09000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b18fb478ffd27822474ddc51" + }, + { + "name": "ons.age.10_20@E09000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7518251247e683f0a2410121" + }, + { + "name": "ons.age.10_20@E09000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57be093dda9fb5612e69061f" + }, + { + "name": "ons.age.10_20@E09000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_844445a5d9f319720b444b40" + }, + { + "name": "ons.age.10_20@E09000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d31612b02ea03fd9cefade81" + }, + { + "name": "ons.age.10_20@E09000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52df5fe38bb62ec4886c62ad" + }, + { + "name": "ons.age.10_20@E09000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdff8fe5796d4ee9370f72c5" + }, + { + "name": "ons.age.10_20@E09000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6029ed736a22520ef36ae99" + }, + { + "name": "ons.age.10_20@E09000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a00347259761d402e55a9426" + }, + { + "name": "ons.age.10_20@E09000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3cc9791ae6e9753dcfb6f8d" + }, + { + "name": "ons.age.10_20@E09000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3609b5d09e4b50afe7ee57bf" + }, + { + "name": "ons.age.10_20@N09000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_338d7b012bdd480daed68d0b" + }, + { + "name": "ons.age.10_20@N09000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95c57347675aceb3a3a51bd" + }, + { + "name": "ons.age.10_20@N09000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_323e53a3a503e24c18dd7e84" + }, + { + "name": "ons.age.10_20@N09000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec25843f31eee2fd0acecf1c" + }, + { + "name": "ons.age.10_20@N09000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_984af49f8bf797d897332fcf" + }, + { + "name": "ons.age.10_20@N09000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c883ec620ca7e998396331a3" + }, + { + "name": "ons.age.10_20@N09000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98ff7519e59286b3c8689ba9" + }, + { + "name": "ons.age.10_20@N09000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a27022b3015f7476aca287c" + }, + { + "name": "ons.age.10_20@N09000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90a20514246a04c85683ec94" + }, + { + "name": "ons.age.10_20@N09000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9acaee729c6be5db0300c3a5" + }, + { + "name": "ons.age.10_20@N09000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb7cb7867ffa442288e5a097" + }, + { + "name": "ons.age.10_20@S12000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b566000aa84ee76b054f51ff" + }, + { + "name": "ons.age.10_20@S12000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d07899c0753ffb87919fa3fa" + }, + { + "name": "ons.age.10_20@S12000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb1dfd6c3fd60bba9004948" + }, + { + "name": "ons.age.10_20@S12000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e04e40e2d44e9a72870f498" + }, + { + "name": "ons.age.10_20@S12000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99281949ae646e0ddda3f594" + }, + { + "name": "ons.age.10_20@S12000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d9193bfe75b29d928341514" + }, + { + "name": "ons.age.10_20@S12000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f426fd17fe20360d50ca51b2" + }, + { + "name": "ons.age.10_20@S12000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde50c4e99435b0cb4e8ce71" + }, + { + "name": "ons.age.10_20@S12000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8222.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df5ee74cb5071b806e50ab58" + }, + { + "name": "ons.age.10_20@S12000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba1338b4241001be07fde2ce" + }, + { + "name": "ons.age.10_20@S12000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bae30a6811a6d92265ac30ab" + }, + { + "name": "ons.age.10_20@S12000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_671d74b23774924c5934e688" + }, + { + "name": "ons.age.10_20@S12000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0a9fa0a3c52b46dcf44e964" + }, + { + "name": "ons.age.10_20@S12000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cba5d48f2578572f8d758927" + }, + { + "name": "ons.age.10_20@S12000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9e6083364f6359830d52adb" + }, + { + "name": "ons.age.10_20@S12000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af4af1600e553239cb6ce071" + }, + { + "name": "ons.age.10_20@S12000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df7345277b3da4269f427f82" + }, + { + "name": "ons.age.10_20@S12000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5b60ac6919a5f73dc875bf8" + }, + { + "name": "ons.age.10_20@S12000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6623880b774c1eed55890a" + }, + { + "name": "ons.age.10_20@S12000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef17b6ec99a1a6b6386e1826" + }, + { + "name": "ons.age.10_20@S12000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e192b9827fad77abe266c16" + }, + { + "name": "ons.age.10_20@S12000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51754.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5a0ab32f5d7fec0ba1dda94" + }, + { + "name": "ons.age.10_20@S12000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19939.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7bf526e5b57bff7a40f51b6" + }, + { + "name": "ons.age.10_20@S12000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10104.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac5cace3e6f4aa2900427f25" + }, + { + "name": "ons.age.10_20@S12000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3ce2da9ff3c5fbcdfbf8c11" + }, + { + "name": "ons.age.10_20@S12000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d67dd47cfc727eb1945131bc" + }, + { + "name": "ons.age.10_20@S12000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16734.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39660f0afda3f0135d45b3ed" + }, + { + "name": "ons.age.10_20@S12000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4c14f47273bebf342e1368d" + }, + { + "name": "ons.age.10_20@S12000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc16db06303ca16718b52bd6" + }, + { + "name": "ons.age.10_20@S12000048", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43be0960ede7fcb7ef742a1" + }, + { + "name": "ons.age.10_20@S12000049", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7e7ba9329a731a3079e4ac8" + }, + { + "name": "ons.age.10_20@S12000050", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39844.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84a85b9a6d1a8570d3def38d" + }, + { + "name": "ons.age.10_20@W06000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c66e93368b0591a8a85381a7" + }, + { + "name": "ons.age.10_20@W06000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9996707cfcb87c14a525389c" + }, + { + "name": "ons.age.10_20@W06000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b224205e49b5ca0ff93cd385" + }, + { + "name": "ons.age.10_20@W06000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88345a92ce7957efd1a07d93" + }, + { + "name": "ons.age.10_20@W06000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9fec263a8ab6d5d4c00934" + }, + { + "name": "ons.age.10_20@W06000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adae1c371776a8d6bf042ab6" + }, + { + "name": "ons.age.10_20@W06000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dbe6298d0dfe842114437a3" + }, + { + "name": "ons.age.10_20@W06000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcd55c78649374a822cffad0" + }, + { + "name": "ons.age.10_20@W06000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdc1aa2d13bcb9a197958693" + }, + { + "name": "ons.age.10_20@W06000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af261202bc28d69f9ec3641e" + }, + { + "name": "ons.age.10_20@W06000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8236b5ca0f8e04e1ddbb5846" + }, + { + "name": "ons.age.10_20@W06000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9534ebfd349216f048195846" + }, + { + "name": "ons.age.10_20@W06000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a84b3f21fe7744df84745d9d" + }, + { + "name": "ons.age.10_20@W06000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7853c0ce78437657ef2eb9a" + }, + { + "name": "ons.age.10_20@W06000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8baffe912d9c39838351bc82" + }, + { + "name": "ons.age.10_20@W06000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cc3745711d3c205893776a4" + }, + { + "name": "ons.age.10_20@W06000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f3513b5ea9105fc2e25ee1" + }, + { + "name": "ons.age.10_20@W06000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9d67e18ff8e73cfec40b1cb" + }, + { + "name": "ons.age.10_20@W06000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_849a6e1cc9b9cb12f88afcc5" + }, + { + "name": "ons.age.10_20@W06000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8704286fd1aa3921f22e7c84" + }, + { + "name": "ons.age.10_20@W06000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7130a3b64bdfe4db191c1025" + }, + { + "name": "ons.age.10_20@W06000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0ae08fa19dc2a4aae578f01" + } + ] + } + } + }, + "ons.age.20_30": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.20_30@E14001063", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3fb1b55356e5339804537a2" + }, + { + "name": "ons.age.20_30@E14001064", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_640f771a289fa7fb746495c4" + }, + { + "name": "ons.age.20_30@E14001065", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4809a00be36a6dc961c23dd" + }, + { + "name": "ons.age.20_30@E14001066", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77f38ef86ff349723653f96f" + }, + { + "name": "ons.age.20_30@E14001067", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0089ea91296122c3e8e27fe" + }, + { + "name": "ons.age.20_30@E14001068", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_926cdb8ec9aa8be7af4ebac5" + }, + { + "name": "ons.age.20_30@E14001069", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65fa41f9d6040539a2040950" + }, + { + "name": "ons.age.20_30@E14001070", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f89b994d54c0f8d84d004940" + }, + { + "name": "ons.age.20_30@E14001071", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71ee87d827a445d5eed05c01" + }, + { + "name": "ons.age.20_30@E14001072", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a0b008fd0e16d5bb18afd18" + }, + { + "name": "ons.age.20_30@E14001073", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8b712c9967873920afb2cb6" + }, + { + "name": "ons.age.20_30@E14001074", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6df0e7d2cd33d15a7279c32" + }, + { + "name": "ons.age.20_30@E14001075", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db30fe7d81ba8a0220b5f166" + }, + { + "name": "ons.age.20_30@E14001076", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f94a45dbca261f1a1f7fdfe7" + }, + { + "name": "ons.age.20_30@E14001077", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99efeaf19a3687bc6741df0f" + }, + { + "name": "ons.age.20_30@E14001078", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_817027b9ea55e31281a11acf" + }, + { + "name": "ons.age.20_30@E14001079", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f4d3a3859fbab75543e994" + }, + { + "name": "ons.age.20_30@E14001080", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc804c6cb28020d618864b00" + }, + { + "name": "ons.age.20_30@E14001081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a8ce2c99415ea75c6770f1a" + }, + { + "name": "ons.age.20_30@E14001082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95c7eb5d3eeb3982c64ca207" + }, + { + "name": "ons.age.20_30@E14001083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fa124c5b2654139957bb10a" + }, + { + "name": "ons.age.20_30@E14001084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9aa669e198d106dc6b5b272" + }, + { + "name": "ons.age.20_30@E14001085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d76846c5e2cd834fec60f11f" + }, + { + "name": "ons.age.20_30@E14001086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b6422066301749975fb918f" + }, + { + "name": "ons.age.20_30@E14001087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7950.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0eec979415467409e3a7afa" + }, + { + "name": "ons.age.20_30@E14001088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f8e7a3f0423e6c4321814a9" + }, + { + "name": "ons.age.20_30@E14001089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de204778d783ab8454bf236e" + }, + { + "name": "ons.age.20_30@E14001090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fbbb9a8cb8c961548bddba1" + }, + { + "name": "ons.age.20_30@E14001091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2118d2fb18a252f1fab182" + }, + { + "name": "ons.age.20_30@E14001092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f29e58b341ceda1644ef157" + }, + { + "name": "ons.age.20_30@E14001093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdf2ae26701b80c689dd6ec9" + }, + { + "name": "ons.age.20_30@E14001094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5617f3982045e83ec09bed12" + }, + { + "name": "ons.age.20_30@E14001095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3e9721cb66ea2b9b972b6b1" + }, + { + "name": "ons.age.20_30@E14001096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef0a0a7e55203d6fa995d81" + }, + { + "name": "ons.age.20_30@E14001097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aba3a43863f3aeb9e1268512" + }, + { + "name": "ons.age.20_30@E14001098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49962b10483770d87ad1839" + }, + { + "name": "ons.age.20_30@E14001099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e291756092031c18c31e4d1" + }, + { + "name": "ons.age.20_30@E14001100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52056eadce2d862834638372" + }, + { + "name": "ons.age.20_30@E14001101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e12a28b9a26c1f1fedba21" + }, + { + "name": "ons.age.20_30@E14001102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86830643894a29cc85342cd0" + }, + { + "name": "ons.age.20_30@E14001103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4833f0475f269270dfbb909" + }, + { + "name": "ons.age.20_30@E14001104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7103c8ab0d59d978e5a89745" + }, + { + "name": "ons.age.20_30@E14001105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12845.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad7467ee03536c97641d6fb6" + }, + { + "name": "ons.age.20_30@E14001106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9787.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85b015c6a980aff202914417" + }, + { + "name": "ons.age.20_30@E14001107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9838a0cd941736f2daa0d620" + }, + { + "name": "ons.age.20_30@E14001108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8003111d8c53ec003601ef1" + }, + { + "name": "ons.age.20_30@E14001109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab31ccc23ab3661b52736dc7" + }, + { + "name": "ons.age.20_30@E14001110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7af5071ab80201876adb909" + }, + { + "name": "ons.age.20_30@E14001111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c68d0fc2abadf3f93c27979d" + }, + { + "name": "ons.age.20_30@E14001112", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bbe61291b5ad61811703f8c" + }, + { + "name": "ons.age.20_30@E14001113", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8caab5f200b073ec0c227e39" + }, + { + "name": "ons.age.20_30@E14001114", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5ebb161107cf51625be76dd" + }, + { + "name": "ons.age.20_30@E14001115", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3b98a43f90e812e0afeb23f" + }, + { + "name": "ons.age.20_30@E14001116", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98cd6f1691d81448fecaff03" + }, + { + "name": "ons.age.20_30@E14001117", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb8e0aa1f8113b420eca83c7" + }, + { + "name": "ons.age.20_30@E14001118", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51219aa215b5ed4327f948c6" + }, + { + "name": "ons.age.20_30@E14001119", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa836016a8fbe8e2aba080fe" + }, + { + "name": "ons.age.20_30@E14001120", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdedd208b078b05409abaaaf" + }, + { + "name": "ons.age.20_30@E14001121", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb11aacbaec6693bdf556f08" + }, + { + "name": "ons.age.20_30@E14001122", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83a2a5479add5b7d61a66972" + }, + { + "name": "ons.age.20_30@E14001123", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73dd8f1290d1f38fb164b2ba" + }, + { + "name": "ons.age.20_30@E14001124", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b70f19d82d24ff58705c776f" + }, + { + "name": "ons.age.20_30@E14001125", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde24c4355931200ea56edef" + }, + { + "name": "ons.age.20_30@E14001126", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_855927b388b395bcda1cb055" + }, + { + "name": "ons.age.20_30@E14001127", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5a37c77e699215069106708" + }, + { + "name": "ons.age.20_30@E14001128", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92db39d713d17df2f509aee9" + }, + { + "name": "ons.age.20_30@E14001129", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb86d4eeb5b114fe025dffb" + }, + { + "name": "ons.age.20_30@E14001130", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23956.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8531743884ea0c4bdd6c803" + }, + { + "name": "ons.age.20_30@E14001131", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_23937db4d4aca1dbee2b79ed" + }, + { + "name": "ons.age.20_30@E14001132", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97811a6c60e7571f825a5a33" + }, + { + "name": "ons.age.20_30@E14001133", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5381a425cde595cd6585343f" + }, + { + "name": "ons.age.20_30@E14001134", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54c180833063018c05a7bcb" + }, + { + "name": "ons.age.20_30@E14001135", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_464749f008cd2c149f8278bb" + }, + { + "name": "ons.age.20_30@E14001136", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0dc082184180055bb8fd6a6" + }, + { + "name": "ons.age.20_30@E14001137", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60b3032f23e056ab5458a3e6" + }, + { + "name": "ons.age.20_30@E14001138", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9146.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf9eacd74320c735b38266e8" + }, + { + "name": "ons.age.20_30@E14001139", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11992.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be1d4d3710670d945972cd2c" + }, + { + "name": "ons.age.20_30@E14001140", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68a577236fcb35db3b174690" + }, + { + "name": "ons.age.20_30@E14001141", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a361f7b7eda2bab11c3cba86" + }, + { + "name": "ons.age.20_30@E14001142", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_42e913084ae17ba5b1d4a224" + }, + { + "name": "ons.age.20_30@E14001143", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c699e7503faddd2e601b9cac" + }, + { + "name": "ons.age.20_30@E14001144", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd42227cc26e765ed2eaedcd" + }, + { + "name": "ons.age.20_30@E14001145", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d39e4bbd2c524d41934ce3a8" + }, + { + "name": "ons.age.20_30@E14001146", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a10ad4630d2e3f0f0fd01723" + }, + { + "name": "ons.age.20_30@E14001147", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8bba26c0cb440b465532dba" + }, + { + "name": "ons.age.20_30@E14001148", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca20dfa893f6a04d342ef1a3" + }, + { + "name": "ons.age.20_30@E14001149", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9161d960a7654cd5fd66ba1" + }, + { + "name": "ons.age.20_30@E14001150", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0ec7752cc4e14c1b1127787" + }, + { + "name": "ons.age.20_30@E14001151", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be2673f79adca826645195fa" + }, + { + "name": "ons.age.20_30@E14001152", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_657485720266362b519ab56c" + }, + { + "name": "ons.age.20_30@E14001153", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11097.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab49bae59c23e23d5e64cfe1" + }, + { + "name": "ons.age.20_30@E14001154", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_632ea3c52b11bf9c5dd4edeb" + }, + { + "name": "ons.age.20_30@E14001155", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e259324e4c16b879c7675ca0" + }, + { + "name": "ons.age.20_30@E14001156", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9566225303221d1013f9d9d" + }, + { + "name": "ons.age.20_30@E14001157", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_594064f633bf208db449736b" + }, + { + "name": "ons.age.20_30@E14001158", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92454e4c2208d1f320c5d956" + }, + { + "name": "ons.age.20_30@E14001159", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8ab3c7e2066ffe1cce35901" + }, + { + "name": "ons.age.20_30@E14001160", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e07cb64a3e4f28f40b21d51" + }, + { + "name": "ons.age.20_30@E14001161", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6936cd4ead0be07d1ffc4a6" + }, + { + "name": "ons.age.20_30@E14001162", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_decaffba0209dca17256488a" + }, + { + "name": "ons.age.20_30@E14001163", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a325b0d3d1cb88529c629da7" + }, + { + "name": "ons.age.20_30@E14001164", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0d44cd122becf965f77d17d" + }, + { + "name": "ons.age.20_30@E14001165", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3cc1c27b935154a4f033327" + }, + { + "name": "ons.age.20_30@E14001166", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32b88f41a12882f9e38e738f" + }, + { + "name": "ons.age.20_30@E14001167", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_956ea6c16297468b1efc2d33" + }, + { + "name": "ons.age.20_30@E14001168", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e30b2c5abe2b7812884dbbb3" + }, + { + "name": "ons.age.20_30@E14001169", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b935d82879bf543e3643024b" + }, + { + "name": "ons.age.20_30@E14001170", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_135a707f8d59acb48157ded8" + }, + { + "name": "ons.age.20_30@E14001171", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6489.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93349362926bb3cb76dec4d2" + }, + { + "name": "ons.age.20_30@E14001172", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f20404b52c64803c7f6adb54" + }, + { + "name": "ons.age.20_30@E14001173", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e82cb42c5dc3be3c99138d8c" + }, + { + "name": "ons.age.20_30@E14001174", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e3990e25a1c2e90cfb15e15" + }, + { + "name": "ons.age.20_30@E14001175", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_603e1920ac3d0cc9b846848b" + }, + { + "name": "ons.age.20_30@E14001176", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a05c685dc8f70dc99bc4e2e6" + }, + { + "name": "ons.age.20_30@E14001177", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_322db1d7e152838afe66d8f0" + }, + { + "name": "ons.age.20_30@E14001178", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34678425bdfb6e8768de756f" + }, + { + "name": "ons.age.20_30@E14001179", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbc63b459c3ce68735ab4585" + }, + { + "name": "ons.age.20_30@E14001180", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dc9ad47693f10cc43e295ba" + }, + { + "name": "ons.age.20_30@E14001181", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef41e80ebc981ea73f20a024" + }, + { + "name": "ons.age.20_30@E14001182", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71aa7c5446fe4ebfc8eacfa6" + }, + { + "name": "ons.age.20_30@E14001183", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e0ec05d2f7f48d4098d87cd" + }, + { + "name": "ons.age.20_30@E14001184", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de842e8f75131794230bf4bb" + }, + { + "name": "ons.age.20_30@E14001185", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cdd6ebc34b190df203df311" + }, + { + "name": "ons.age.20_30@E14001186", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f997682f7cb56a350183540b" + }, + { + "name": "ons.age.20_30@E14001187", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b30548b2e6fdcdffeeaff78" + }, + { + "name": "ons.age.20_30@E14001188", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d800447f574f8b3403a737f5" + }, + { + "name": "ons.age.20_30@E14001189", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf82294b58bcc5e21577a775" + }, + { + "name": "ons.age.20_30@E14001190", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_910068abeabb6926141f0338" + }, + { + "name": "ons.age.20_30@E14001191", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca22186fc7b9de127e776a2e" + }, + { + "name": "ons.age.20_30@E14001192", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3d206bbcdb0a172bf6a285b" + }, + { + "name": "ons.age.20_30@E14001193", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bbf1c5f07527ad977ad1ac0" + }, + { + "name": "ons.age.20_30@E14001194", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a051cde5896259951571ce4" + }, + { + "name": "ons.age.20_30@E14001195", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9737eb8c1d2f8878556a22de" + }, + { + "name": "ons.age.20_30@E14001196", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4858c44056afb3c0dad155e" + }, + { + "name": "ons.age.20_30@E14001197", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb175b9eaa61c06b0daf5f93" + }, + { + "name": "ons.age.20_30@E14001198", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13334.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c243d5273b21ffcab9a952e1" + }, + { + "name": "ons.age.20_30@E14001199", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a619664fd75acf36d5c84b6f" + }, + { + "name": "ons.age.20_30@E14001200", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a35791ab1ff578ad7405eb0" + }, + { + "name": "ons.age.20_30@E14001201", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac216ea32ef07810d2efb08b" + }, + { + "name": "ons.age.20_30@E14001202", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8edb7a3fd26a5eecd2a8c04" + }, + { + "name": "ons.age.20_30@E14001203", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1031ef7d14461f226cf0470" + }, + { + "name": "ons.age.20_30@E14001204", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d323ce360e59dbdf8791aa" + }, + { + "name": "ons.age.20_30@E14001205", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b50792d5bc26d5cce981ac" + }, + { + "name": "ons.age.20_30@E14001206", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e2fcfa1fe8efcd351c8f9cf" + }, + { + "name": "ons.age.20_30@E14001207", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24754.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b12ade9c219d4e9b94040afe" + }, + { + "name": "ons.age.20_30@E14001208", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1ac6c939547a7842a335f4b" + }, + { + "name": "ons.age.20_30@E14001209", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e0c84c2c3f9d848efbe9fd4" + }, + { + "name": "ons.age.20_30@E14001210", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12773.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9142c70c74563f4d0d1f7e6e" + }, + { + "name": "ons.age.20_30@E14001211", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60cf36d8cd84c5b9fdc8a196" + }, + { + "name": "ons.age.20_30@E14001212", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8785.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d192fa7f514cafcf6e7d763d" + }, + { + "name": "ons.age.20_30@E14001213", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2870981c7756cced1e64d2ae" + }, + { + "name": "ons.age.20_30@E14001214", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c93aacd4445d043a8599d62" + }, + { + "name": "ons.age.20_30@E14001215", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7068dd8ff90cccbed5ac2094" + }, + { + "name": "ons.age.20_30@E14001216", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52a82de52c6d037361901368" + }, + { + "name": "ons.age.20_30@E14001217", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_facf231452fafe300b9121aa" + }, + { + "name": "ons.age.20_30@E14001218", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f18e61185155b56595f07bba" + }, + { + "name": "ons.age.20_30@E14001219", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b4c86e440a5f9dd9487308" + }, + { + "name": "ons.age.20_30@E14001220", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ea3828ae4f39d5b8f7cb9bf" + }, + { + "name": "ons.age.20_30@E14001221", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b463a924036f55163f9e6e" + }, + { + "name": "ons.age.20_30@E14001222", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fba765c0893a3f5fc75b5448" + }, + { + "name": "ons.age.20_30@E14001223", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe10a80e6227e119d3ce2928" + }, + { + "name": "ons.age.20_30@E14001224", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b09ac9262c119dbdfd5714" + }, + { + "name": "ons.age.20_30@E14001225", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55db7d3c965978cd9bf4ffa6" + }, + { + "name": "ons.age.20_30@E14001226", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffc7661584152b8879d1ef50" + }, + { + "name": "ons.age.20_30@E14001227", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea212e71f50727311103d7a5" + }, + { + "name": "ons.age.20_30@E14001228", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b66e7a8794c358bce7f40726" + }, + { + "name": "ons.age.20_30@E14001229", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf7ce5eec12ee37b036e6ea2" + }, + { + "name": "ons.age.20_30@E14001230", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c03221a89c13f78c1f790b24" + }, + { + "name": "ons.age.20_30@E14001231", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_696530a9a94ee167c283999b" + }, + { + "name": "ons.age.20_30@E14001232", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11040.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d65e2d39b71204186851f8ec" + }, + { + "name": "ons.age.20_30@E14001233", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87879f2e2ae3f69052b58264" + }, + { + "name": "ons.age.20_30@E14001234", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b0fe1cd940f97b357445e9c" + }, + { + "name": "ons.age.20_30@E14001235", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0def949ad50f00e6d30ba89" + }, + { + "name": "ons.age.20_30@E14001236", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94dc31690cbd4d8b6115d99d" + }, + { + "name": "ons.age.20_30@E14001237", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3142844790faaea78b9c76e0" + }, + { + "name": "ons.age.20_30@E14001238", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ddf2eb636746aabfdb49832" + }, + { + "name": "ons.age.20_30@E14001239", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b616dc623f10b44a97a33992" + }, + { + "name": "ons.age.20_30@E14001240", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca7c905b7a5aaf46cd98d387" + }, + { + "name": "ons.age.20_30@E14001241", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4eebb71c096ca87dc0a837e3" + }, + { + "name": "ons.age.20_30@E14001242", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f30c13dc65c28d8cb18e669" + }, + { + "name": "ons.age.20_30@E14001243", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eb8098d428b79d74948fec5" + }, + { + "name": "ons.age.20_30@E14001244", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dae380ab6467d3b7f773d390" + }, + { + "name": "ons.age.20_30@E14001245", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d08da0f85aeab6f327a26725" + }, + { + "name": "ons.age.20_30@E14001246", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59dc2c0b826c2ee6d66469e2" + }, + { + "name": "ons.age.20_30@E14001247", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d930088a37f610afced0388" + }, + { + "name": "ons.age.20_30@E14001248", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16588.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1336fbaa8eb37d55487afb9" + }, + { + "name": "ons.age.20_30@E14001249", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a749af4f48328d59968b511" + }, + { + "name": "ons.age.20_30@E14001250", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba69e8072066beaa6196acda" + }, + { + "name": "ons.age.20_30@E14001251", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e44081bdfc39bdecd404f18a" + }, + { + "name": "ons.age.20_30@E14001252", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_714dadbbe256c53f1cff327f" + }, + { + "name": "ons.age.20_30@E14001253", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a2e3ec065d71ccd3d3a4b3a" + }, + { + "name": "ons.age.20_30@E14001254", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_494081a5b6513f569ffc177b" + }, + { + "name": "ons.age.20_30@E14001255", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11824.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46a8e97385e40288599e90e3" + }, + { + "name": "ons.age.20_30@E14001256", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e164e503020836ce5153dbc1" + }, + { + "name": "ons.age.20_30@E14001257", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f48aedb49d65e1d28a4b8f" + }, + { + "name": "ons.age.20_30@E14001258", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9d87f5cdf2b0526d4bd9d8e" + }, + { + "name": "ons.age.20_30@E14001259", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2ee7323c31aedc7cacc84cb" + }, + { + "name": "ons.age.20_30@E14001260", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf5ba683ecad0d7c4ab16f34" + }, + { + "name": "ons.age.20_30@E14001261", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d28c3f2270f49b5b7fcb0998" + }, + { + "name": "ons.age.20_30@E14001262", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f46a6234efe8879ae0ac0a15" + }, + { + "name": "ons.age.20_30@E14001263", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eaee8ba7a7ebefc38db1c7d" + }, + { + "name": "ons.age.20_30@E14001264", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5123a8e25d5e181b1d5d1123" + }, + { + "name": "ons.age.20_30@E14001265", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77d8a68eb1012d471bf1b7a5" + }, + { + "name": "ons.age.20_30@E14001266", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1085223e6a44adc1ee75510" + }, + { + "name": "ons.age.20_30@E14001267", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc8a34cbd90315d06f14b906" + }, + { + "name": "ons.age.20_30@E14001268", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6947.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc32f63f94949fd1fa0b9b54" + }, + { + "name": "ons.age.20_30@E14001269", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acd87ee02ce10738925edeec" + }, + { + "name": "ons.age.20_30@E14001270", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_629db85103969c0f72b4110f" + }, + { + "name": "ons.age.20_30@E14001271", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a27b8da2dd4ac2535ca4e757" + }, + { + "name": "ons.age.20_30@E14001272", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9faef22c4eb258fca8884220" + }, + { + "name": "ons.age.20_30@E14001273", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a41a8ee6310b3bc69d2632b6" + }, + { + "name": "ons.age.20_30@E14001274", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1da4e409ef0bdd909c5608d" + }, + { + "name": "ons.age.20_30@E14001275", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a563ecd1097bb07bc5e7acb4" + }, + { + "name": "ons.age.20_30@E14001276", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4237b29e5697dc4aafd13255" + }, + { + "name": "ons.age.20_30@E14001277", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efece59ca3f2c1c5dfdd1c10" + }, + { + "name": "ons.age.20_30@E14001278", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bab94c5c7a904a7db9d129c2" + }, + { + "name": "ons.age.20_30@E14001279", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81546d7d74c2c46d89296352" + }, + { + "name": "ons.age.20_30@E14001280", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_218d204f235b9d14a0283a91" + }, + { + "name": "ons.age.20_30@E14001281", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7256bc6ed1c0029e33fc4861" + }, + { + "name": "ons.age.20_30@E14001282", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cf3ddb8abc8a639535a9cc5" + }, + { + "name": "ons.age.20_30@E14001283", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b40f834e36e8ea0d43770f4d" + }, + { + "name": "ons.age.20_30@E14001284", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd7b9a991a0e0cdde8c3936f" + }, + { + "name": "ons.age.20_30@E14001285", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a55ae888122e0d2da40b446f" + }, + { + "name": "ons.age.20_30@E14001286", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c613c6e526f18f39acb7650c" + }, + { + "name": "ons.age.20_30@E14001287", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7a351f7104bae5eeecfed69" + }, + { + "name": "ons.age.20_30@E14001288", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9785b640b009910d954e7f3" + }, + { + "name": "ons.age.20_30@E14001289", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47671ea4b51c45cfa0706f7" + }, + { + "name": "ons.age.20_30@E14001290", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf9e6acf55bdca5cb78cc505" + }, + { + "name": "ons.age.20_30@E14001291", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18cf25020f7db04c8e337b84" + }, + { + "name": "ons.age.20_30@E14001292", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f978ecf83ae40bdb95b7906" + }, + { + "name": "ons.age.20_30@E14001293", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4102907b4cc168b36bed17fa" + }, + { + "name": "ons.age.20_30@E14001294", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf226d8bf797a28e84321d5c" + }, + { + "name": "ons.age.20_30@E14001295", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce66bf28813b0d5d02db76e6" + }, + { + "name": "ons.age.20_30@E14001296", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b7fce13e47161d8ca1f14a8" + }, + { + "name": "ons.age.20_30@E14001297", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17148.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c55a0a980cc86625e387fb05" + }, + { + "name": "ons.age.20_30@E14001298", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_def48eb9218b6e36301d1d8d" + }, + { + "name": "ons.age.20_30@E14001299", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7771e630fddb4db2fe638a80" + }, + { + "name": "ons.age.20_30@E14001300", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8907ebabcdc6837b3c68e844" + }, + { + "name": "ons.age.20_30@E14001301", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d687464139aa1f78910cd46" + }, + { + "name": "ons.age.20_30@E14001302", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dfedaa98d3d202a9032363a" + }, + { + "name": "ons.age.20_30@E14001303", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe41b3e31a463f22211f068d" + }, + { + "name": "ons.age.20_30@E14001304", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3676924c35ee2929684421f" + }, + { + "name": "ons.age.20_30@E14001305", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85a5bd5a2a2597998d2e9087" + }, + { + "name": "ons.age.20_30@E14001306", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30109.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c37b2eaf29ea1145f991757" + }, + { + "name": "ons.age.20_30@E14001307", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8085dfba2c222f69976792bd" + }, + { + "name": "ons.age.20_30@E14001308", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10404.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4546846c73fc805ace90e5c1" + }, + { + "name": "ons.age.20_30@E14001309", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5787079f8df9cdde101ce63" + }, + { + "name": "ons.age.20_30@E14001310", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_04d966e4b899c6d7c941938c" + }, + { + "name": "ons.age.20_30@E14001311", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2e0b2f246d5dcc3ace6b731" + }, + { + "name": "ons.age.20_30@E14001312", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b5a18223907d92240638c3b" + }, + { + "name": "ons.age.20_30@E14001313", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88b2d3ae8bd668eaf430e62c" + }, + { + "name": "ons.age.20_30@E14001314", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c78b1a44a236a20a0f4188e7" + }, + { + "name": "ons.age.20_30@E14001315", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a185d263dc2753d1b0884db6" + }, + { + "name": "ons.age.20_30@E14001316", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e171ca670c08c256235c3f8f" + }, + { + "name": "ons.age.20_30@E14001317", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e7f2b9a56fd49c63e081512" + }, + { + "name": "ons.age.20_30@E14001318", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16642.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac5552d03cc387bf621893af" + }, + { + "name": "ons.age.20_30@E14001319", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8c3fcf752adbb52c4280f2c" + }, + { + "name": "ons.age.20_30@E14001320", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a15889cd96df0d6bcc28ff93" + }, + { + "name": "ons.age.20_30@E14001321", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0ea27174efad6ba390a55fb" + }, + { + "name": "ons.age.20_30@E14001322", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cba2c19bd73c3ba32359ef4" + }, + { + "name": "ons.age.20_30@E14001323", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78dba8339b05165166f0dfa6" + }, + { + "name": "ons.age.20_30@E14001324", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7700970bb986ada36173c632" + }, + { + "name": "ons.age.20_30@E14001325", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1924b95ad313dbd3f322fd85" + }, + { + "name": "ons.age.20_30@E14001326", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19127.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac987713614193de87d2117f" + }, + { + "name": "ons.age.20_30@E14001327", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d7da3f237f1fbc4ae2d0b57" + }, + { + "name": "ons.age.20_30@E14001328", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_25c208dfe41eb84ba11b05d2" + }, + { + "name": "ons.age.20_30@E14001329", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8704655f7cc483a12ca15353" + }, + { + "name": "ons.age.20_30@E14001330", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef7224aaea55ca3888567e9b" + }, + { + "name": "ons.age.20_30@E14001331", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83bc543d26a6762ef07d7dd9" + }, + { + "name": "ons.age.20_30@E14001332", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58c50c7d9281f680e5a110a9" + }, + { + "name": "ons.age.20_30@E14001333", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4841e1ec138364fae382fb1b" + }, + { + "name": "ons.age.20_30@E14001334", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_370fa11321bae9b250a32fe4" + }, + { + "name": "ons.age.20_30@E14001335", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e40441b2991a57746f38a6" + }, + { + "name": "ons.age.20_30@E14001336", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59607a306a0b5c1c3d2dea86" + }, + { + "name": "ons.age.20_30@E14001337", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0b4f4a0fb0e7714e5091097" + }, + { + "name": "ons.age.20_30@E14001338", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b8bea9ebbb8cd6faeef1548" + }, + { + "name": "ons.age.20_30@E14001339", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a1f55617f9d317bfc24d687" + }, + { + "name": "ons.age.20_30@E14001340", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60b44617bda3e976ad5fba97" + }, + { + "name": "ons.age.20_30@E14001341", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8300e30f3c50df1ae6ee17b" + }, + { + "name": "ons.age.20_30@E14001342", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_661f13870aa9ece66e4d285c" + }, + { + "name": "ons.age.20_30@E14001343", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec1022e5325226e7cdfc7310" + }, + { + "name": "ons.age.20_30@E14001344", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e77e108e560144eab9dfcb28" + }, + { + "name": "ons.age.20_30@E14001345", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a1fcbd540b2e2a45409acd" + }, + { + "name": "ons.age.20_30@E14001346", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b55086087aca97cce24bf7d1" + }, + { + "name": "ons.age.20_30@E14001347", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da8b7edf869eb86d400d5722" + }, + { + "name": "ons.age.20_30@E14001348", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10497.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1c8230aa5ae28fafb06f62b" + }, + { + "name": "ons.age.20_30@E14001349", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae1cb0949565dbae87e639c4" + }, + { + "name": "ons.age.20_30@E14001350", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a157edd7eee1536eb85f27a8" + }, + { + "name": "ons.age.20_30@E14001351", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9955.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bd58f31931b823f8efe2f1c" + }, + { + "name": "ons.age.20_30@E14001352", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da5dfa4ab02c89b48b8ac798" + }, + { + "name": "ons.age.20_30@E14001353", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37996.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e6af365bd8c54913143d0ec" + }, + { + "name": "ons.age.20_30@E14001354", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d181e598f9cbb367407f7e" + }, + { + "name": "ons.age.20_30@E14001355", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcdfe340dcb73961211b20f4" + }, + { + "name": "ons.age.20_30@E14001356", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8021.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc212dc289e04152cf9e3072" + }, + { + "name": "ons.age.20_30@E14001357", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d68a1f43c67b57c583c0b50c" + }, + { + "name": "ons.age.20_30@E14001358", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e366566c267044ee89c0db97" + }, + { + "name": "ons.age.20_30@E14001359", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5349670be04a341e0de198f1" + }, + { + "name": "ons.age.20_30@E14001360", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8392.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d21804eefc315efd3cd64ed1" + }, + { + "name": "ons.age.20_30@E14001361", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5dca7b1699cd1bea8b7c466" + }, + { + "name": "ons.age.20_30@E14001362", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7fdb764ef0c3644568b158c" + }, + { + "name": "ons.age.20_30@E14001363", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5d8d351a6b2c05b2648ae51" + }, + { + "name": "ons.age.20_30@E14001364", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb1f668c5850ded6486efaad" + }, + { + "name": "ons.age.20_30@E14001365", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5a3f06fae2200b14de2efcf" + }, + { + "name": "ons.age.20_30@E14001366", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6ded6a2a0815b885dcf6844" + }, + { + "name": "ons.age.20_30@E14001367", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de658ce94cae96953f76bf50" + }, + { + "name": "ons.age.20_30@E14001368", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f82d9bca9a3df2532c7e0260" + }, + { + "name": "ons.age.20_30@E14001369", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abb0ca9ec3d3ff95f853d205" + }, + { + "name": "ons.age.20_30@E14001370", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10237.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6641bfb34c2ffeb8e16d2d64" + }, + { + "name": "ons.age.20_30@E14001371", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8024e3db7f9a9961ac41c99" + }, + { + "name": "ons.age.20_30@E14001372", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7bd77d6a4b597473b6920cd" + }, + { + "name": "ons.age.20_30@E14001373", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa83c4540df882c496563f1e" + }, + { + "name": "ons.age.20_30@E14001374", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c78596fc2bfeb2fd78ea2795" + }, + { + "name": "ons.age.20_30@E14001375", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd3fb431c9902f91b506c886" + }, + { + "name": "ons.age.20_30@E14001376", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e8c8896c758f70df584fb80" + }, + { + "name": "ons.age.20_30@E14001377", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_904c4d998cb2a6a9e6f4666e" + }, + { + "name": "ons.age.20_30@E14001378", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abc54dc83d55f49abd00ace9" + }, + { + "name": "ons.age.20_30@E14001379", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0bc95736246ec796aaaed6d" + }, + { + "name": "ons.age.20_30@E14001380", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9404af7936cac686202ec80e" + }, + { + "name": "ons.age.20_30@E14001381", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2d871a412e8e7e7a6906143" + }, + { + "name": "ons.age.20_30@E14001382", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7310e24970fa5417c6f4d38a" + }, + { + "name": "ons.age.20_30@E14001383", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4c9ffb080018ca1cb310915" + }, + { + "name": "ons.age.20_30@E14001384", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a36f02bf180f013633fc8c2f" + }, + { + "name": "ons.age.20_30@E14001385", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b53632c69b1e4078f33add69" + }, + { + "name": "ons.age.20_30@E14001386", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdd750adaf042135e3dbc46f" + }, + { + "name": "ons.age.20_30@E14001387", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac59c38a4d23350267232667" + }, + { + "name": "ons.age.20_30@E14001388", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3be333f3273d36aae1c07c2" + }, + { + "name": "ons.age.20_30@E14001389", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee75518a636555dbfb99b9ec" + }, + { + "name": "ons.age.20_30@E14001390", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_678ebe864a7e3b9ce6283f07" + }, + { + "name": "ons.age.20_30@E14001391", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9070.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_401edea7593871046bb13329" + }, + { + "name": "ons.age.20_30@E14001392", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea90a12b4b2d23981bb60fe0" + }, + { + "name": "ons.age.20_30@E14001393", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9961.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a98a327da9774c9e8c637e1" + }, + { + "name": "ons.age.20_30@E14001394", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9cdf383a05ed64c856142e5" + }, + { + "name": "ons.age.20_30@E14001395", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad4a7a8980890c8fe5e66e1e" + }, + { + "name": "ons.age.20_30@E14001396", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09abb36b64c0b31c09b5954" + }, + { + "name": "ons.age.20_30@E14001397", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cc8a29726034c620be7872e" + }, + { + "name": "ons.age.20_30@E14001398", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e90e808bab05c629b2d8247f" + }, + { + "name": "ons.age.20_30@E14001399", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5026e0c04d05e9cf091e6793" + }, + { + "name": "ons.age.20_30@E14001400", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aed8cfa451a83b90f31e92f7" + }, + { + "name": "ons.age.20_30@E14001401", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65ee2026603997b7c1869d52" + }, + { + "name": "ons.age.20_30@E14001402", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc63050d9923ebc69f98920d" + }, + { + "name": "ons.age.20_30@E14001403", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7443b1bda46fc1caa046f23" + }, + { + "name": "ons.age.20_30@E14001404", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7db838afee68ea47454f9975" + }, + { + "name": "ons.age.20_30@E14001405", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f36058a5eda999492a1e3d04" + }, + { + "name": "ons.age.20_30@E14001406", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_932183fcf66960577fdb664d" + }, + { + "name": "ons.age.20_30@E14001407", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efaf46520537c77468da2faf" + }, + { + "name": "ons.age.20_30@E14001408", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fca5cca5fe6c59c8321ac92b" + }, + { + "name": "ons.age.20_30@E14001409", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b368856899ce2017c09855" + }, + { + "name": "ons.age.20_30@E14001410", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1268895e1e68c1ce58222d1" + }, + { + "name": "ons.age.20_30@E14001411", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8700353abaeaa565f1a38da9" + }, + { + "name": "ons.age.20_30@E14001412", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29293.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55d325384e344e0d576984d0" + }, + { + "name": "ons.age.20_30@E14001413", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb1c5a352e1d885fa1bfffe8" + }, + { + "name": "ons.age.20_30@E14001414", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c98d7c3d7150218c736b3172" + }, + { + "name": "ons.age.20_30@E14001415", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd18157bc5f2cd6caca2adf" + }, + { + "name": "ons.age.20_30@E14001416", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15689.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdc85292faa77a520e9de761" + }, + { + "name": "ons.age.20_30@E14001417", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bb800c4761471fdd3f02607" + }, + { + "name": "ons.age.20_30@E14001418", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d263747c430aa348a3157b03" + }, + { + "name": "ons.age.20_30@E14001419", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8041ee05225dc3ccac6b6097" + }, + { + "name": "ons.age.20_30@E14001420", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac2806cd55bda91adf961092" + }, + { + "name": "ons.age.20_30@E14001421", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f02fb93826c4c51e72bdd02" + }, + { + "name": "ons.age.20_30@E14001422", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa926d9d6e55494110cd8323" + }, + { + "name": "ons.age.20_30@E14001423", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1f0008d9253a444a351e349" + }, + { + "name": "ons.age.20_30@E14001424", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39024145cc616dabba38afe3" + }, + { + "name": "ons.age.20_30@E14001425", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d7442220fe08c6b2e5d370b" + }, + { + "name": "ons.age.20_30@E14001426", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f4f058f66f822c855ff2199" + }, + { + "name": "ons.age.20_30@E14001427", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db98594ef5d47d857268e16c" + }, + { + "name": "ons.age.20_30@E14001428", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f52981d057d992d0c1b6848e" + }, + { + "name": "ons.age.20_30@E14001429", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9793.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db59ef99e0a39133735661b3" + }, + { + "name": "ons.age.20_30@E14001430", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ddd31cd2328a9dac8f82498" + }, + { + "name": "ons.age.20_30@E14001431", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b63a41b1c4b5c7ea680a8473" + }, + { + "name": "ons.age.20_30@E14001432", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_460073d6009ee7efe0bec829" + }, + { + "name": "ons.age.20_30@E14001433", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d33ac0fb974c793734af1efc" + }, + { + "name": "ons.age.20_30@E14001434", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4487c94d2ac13e85f19475ed" + }, + { + "name": "ons.age.20_30@E14001435", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cf5c7e57f3eddcd62fa8e6a" + }, + { + "name": "ons.age.20_30@E14001436", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10417.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e035da0a2a6a19ca7123089a" + }, + { + "name": "ons.age.20_30@E14001437", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b68d77573383cda1112b233d" + }, + { + "name": "ons.age.20_30@E14001438", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e9a76632841b208efef86f" + }, + { + "name": "ons.age.20_30@E14001439", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c12fa49f33f23949d4605e9" + }, + { + "name": "ons.age.20_30@E14001440", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_822ae1f2cbd188dc385993d9" + }, + { + "name": "ons.age.20_30@E14001441", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bccdc19bdb9e0fe27b118e86" + }, + { + "name": "ons.age.20_30@E14001442", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea6512bb802d8ffe255c7616" + }, + { + "name": "ons.age.20_30@E14001443", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e90b1ac050d71baf90b4d5d" + }, + { + "name": "ons.age.20_30@E14001444", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3cec940e45174c5d7c65283" + }, + { + "name": "ons.age.20_30@E14001445", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c88eff34372d09078d523f3" + }, + { + "name": "ons.age.20_30@E14001446", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dcd81fa9dfb4cdb1baed61d" + }, + { + "name": "ons.age.20_30@E14001447", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f326125dacef2a890a0ea5b9" + }, + { + "name": "ons.age.20_30@E14001448", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90c47592af82ad1f5112ce60" + }, + { + "name": "ons.age.20_30@E14001449", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbc914c1cc6bac09a14ef38b" + }, + { + "name": "ons.age.20_30@E14001450", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71bb3a5b9797727b027c736d" + }, + { + "name": "ons.age.20_30@E14001451", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a20d1c202bdff7b5f1ce6a6d" + }, + { + "name": "ons.age.20_30@E14001452", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a5fc97e6235371880f54bb7" + }, + { + "name": "ons.age.20_30@E14001453", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8a85821e2a917f56256b125" + }, + { + "name": "ons.age.20_30@E14001454", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_971ab39335fd22ff19f0dcfe" + }, + { + "name": "ons.age.20_30@E14001455", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b17928d1bebe0b514c4e99d1" + }, + { + "name": "ons.age.20_30@E14001456", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e26a83cbbd90c3cce1a8ffa" + }, + { + "name": "ons.age.20_30@E14001457", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ed48aec1583d79ae5d15a8c" + }, + { + "name": "ons.age.20_30@E14001458", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8311.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ba4e43920fdbe47477dde79" + }, + { + "name": "ons.age.20_30@E14001459", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38354.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b471f035276838e0c1ce4f42" + }, + { + "name": "ons.age.20_30@E14001460", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76be151377bd405a7353d052" + }, + { + "name": "ons.age.20_30@E14001461", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fae365075acf852ce574d34" + }, + { + "name": "ons.age.20_30@E14001462", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50c6b39758a6f3f8394e38b0" + }, + { + "name": "ons.age.20_30@E14001463", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_348f9f99cf49f35b15f263d8" + }, + { + "name": "ons.age.20_30@E14001464", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bb9b5191f60b4c4ea0450b6" + }, + { + "name": "ons.age.20_30@E14001465", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9279269323d3a257e061102" + }, + { + "name": "ons.age.20_30@E14001466", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15565.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31e0f7fa76b645d366706deb" + }, + { + "name": "ons.age.20_30@E14001467", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f571b60e1a1b007218c5e84e" + }, + { + "name": "ons.age.20_30@E14001468", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c5f5d27b7ea05ddda9d6169" + }, + { + "name": "ons.age.20_30@E14001469", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7143e2ed7b4c3dde0101db7a" + }, + { + "name": "ons.age.20_30@E14001470", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_775f5981ee32308673970cee" + }, + { + "name": "ons.age.20_30@E14001471", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11219.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a72ed95ae703673f6aa5e887" + }, + { + "name": "ons.age.20_30@E14001472", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_21d4a4261a47b1fbd60d5932" + }, + { + "name": "ons.age.20_30@E14001473", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89daa432355bb5fbca031282" + }, + { + "name": "ons.age.20_30@E14001474", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f98cd3e35318a8a9a44cb5c" + }, + { + "name": "ons.age.20_30@E14001475", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4c43d346294016f5fb41ba1" + }, + { + "name": "ons.age.20_30@E14001476", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8931b46bd5a99c56c6fc5d1d" + }, + { + "name": "ons.age.20_30@E14001477", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2233084464f5ffd326b3f32d" + }, + { + "name": "ons.age.20_30@E14001478", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2b94442b0f50b794ff4a5cc" + }, + { + "name": "ons.age.20_30@E14001479", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4edcbccf5d02d1a7f9ab95c" + }, + { + "name": "ons.age.20_30@E14001480", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa6e717980e0769e69d3d78b" + }, + { + "name": "ons.age.20_30@E14001481", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d92a63750f9104af5158031d" + }, + { + "name": "ons.age.20_30@E14001482", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d641f3b6f35f1be515757d24" + }, + { + "name": "ons.age.20_30@E14001483", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37defe54c94fd9a72e68f93e" + }, + { + "name": "ons.age.20_30@E14001484", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8ae9da9a3fe4ca0798f0de" + }, + { + "name": "ons.age.20_30@E14001485", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccf2bc77c45fc93eec337afd" + }, + { + "name": "ons.age.20_30@E14001486", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda92a4630e82c95cc69f63b" + }, + { + "name": "ons.age.20_30@E14001487", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_292e9b7534a17683143700a5" + }, + { + "name": "ons.age.20_30@E14001488", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f99d4e5c1248b8cccdc12f71" + }, + { + "name": "ons.age.20_30@E14001489", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf7d5ec0d6e8f9808c0dcfd2" + }, + { + "name": "ons.age.20_30@E14001490", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e74d27759b49555b681b3da4" + }, + { + "name": "ons.age.20_30@E14001491", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1156a61658447b45153b979" + }, + { + "name": "ons.age.20_30@E14001492", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70df28034a55a4dbb5131597" + }, + { + "name": "ons.age.20_30@E14001493", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9eca73acd7fe5f2a6647281" + }, + { + "name": "ons.age.20_30@E14001494", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd5a1c2f9dbf076990e4b41a" + }, + { + "name": "ons.age.20_30@E14001495", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cd3879e635872b23cb0931a" + }, + { + "name": "ons.age.20_30@E14001496", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_861911f6e8eca254175979ad" + }, + { + "name": "ons.age.20_30@E14001497", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41bcd5fc9166180f56e1d585" + }, + { + "name": "ons.age.20_30@E14001498", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65411152545f5b9e5dbc1680" + }, + { + "name": "ons.age.20_30@E14001499", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20955.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73eea02500c1b7b8465d0e7d" + }, + { + "name": "ons.age.20_30@E14001500", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e686022b57db1f0c22e9b2" + }, + { + "name": "ons.age.20_30@E14001501", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b3f56be32b40e2eb21ac48a" + }, + { + "name": "ons.age.20_30@E14001502", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48de1179975c991516f16c00" + }, + { + "name": "ons.age.20_30@E14001503", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf293d4072441edc14ea0ebe" + }, + { + "name": "ons.age.20_30@E14001504", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e355a64886e3057a95c38b99" + }, + { + "name": "ons.age.20_30@E14001505", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3da8e894dd7f8cefb7a806b" + }, + { + "name": "ons.age.20_30@E14001506", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d5e320ca20be3cd95a9bc2b" + }, + { + "name": "ons.age.20_30@E14001507", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28cb3a6be57e744d57b79a31" + }, + { + "name": "ons.age.20_30@E14001508", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c33c4543efb9e11beba81efd" + }, + { + "name": "ons.age.20_30@E14001509", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed38bd9d5caf0573026cfc5" + }, + { + "name": "ons.age.20_30@E14001510", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11405.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d12ba5a0c7e7f2a99574f6a" + }, + { + "name": "ons.age.20_30@E14001511", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d1ede9ee1ca8af553f05a4f" + }, + { + "name": "ons.age.20_30@E14001512", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fc8ff5bcf79bbc2779a11da" + }, + { + "name": "ons.age.20_30@E14001513", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd85781e961dd35e7a7f3056" + }, + { + "name": "ons.age.20_30@E14001514", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaa74d8259584f880290902f" + }, + { + "name": "ons.age.20_30@E14001515", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78dca1df5af481c4b77f6fcf" + }, + { + "name": "ons.age.20_30@E14001516", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee739b4a3869edd0daaa954e" + }, + { + "name": "ons.age.20_30@E14001517", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1bca63ceb110c174d673896" + }, + { + "name": "ons.age.20_30@E14001518", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f62883efa72204ebc3d6bc6" + }, + { + "name": "ons.age.20_30@E14001519", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ef6c9855f9f418c62dcbc64" + }, + { + "name": "ons.age.20_30@E14001520", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8834f7bb7d3b050f1a3b929e" + }, + { + "name": "ons.age.20_30@E14001521", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_727a98159233a9994f12e610" + }, + { + "name": "ons.age.20_30@E14001522", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf84113f43afd61f4a7a967c" + }, + { + "name": "ons.age.20_30@E14001523", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b677f5338197e29a80c85782" + }, + { + "name": "ons.age.20_30@E14001524", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc2867a802893be9ca7a7a68" + }, + { + "name": "ons.age.20_30@E14001525", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34281.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7513726486fe9ebe5700078" + }, + { + "name": "ons.age.20_30@E14001526", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad5c34438ca94d1e25503b9b" + }, + { + "name": "ons.age.20_30@E14001527", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82d1d2072fd0abe33f34b5fd" + }, + { + "name": "ons.age.20_30@E14001528", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50d8752f584e4f54f168d92" + }, + { + "name": "ons.age.20_30@E14001529", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6790afe4563330e71c1afbc" + }, + { + "name": "ons.age.20_30@E14001530", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56a82d4b577314a8813a1d18" + }, + { + "name": "ons.age.20_30@E14001531", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0e16ca0826d1ef77a7aab05" + }, + { + "name": "ons.age.20_30@E14001532", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7353059fe333150b027f698" + }, + { + "name": "ons.age.20_30@E14001533", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eed650c153c2310f5312afb0" + }, + { + "name": "ons.age.20_30@E14001534", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f590f4d70ae8ae55487e12a1" + }, + { + "name": "ons.age.20_30@E14001535", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd440e6a54cae4e15cfb621" + }, + { + "name": "ons.age.20_30@E14001536", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11723.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0b7a2be083b494f2b585c2b" + }, + { + "name": "ons.age.20_30@E14001537", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99b8f1d6389d21985ecd1686" + }, + { + "name": "ons.age.20_30@E14001538", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a55c037026f5b87455729bf" + }, + { + "name": "ons.age.20_30@E14001539", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd050d2469c7896b15621a60" + }, + { + "name": "ons.age.20_30@E14001540", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11274.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37093e949a0c96d40136a7de" + }, + { + "name": "ons.age.20_30@E14001541", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6c40f938e17356b8b477484" + }, + { + "name": "ons.age.20_30@E14001542", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4975955dcd877c2d4dfe982" + }, + { + "name": "ons.age.20_30@E14001543", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afa95af5fb6844c6117dfcfd" + }, + { + "name": "ons.age.20_30@E14001544", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f2bdd0b372e48e66709d2ed" + }, + { + "name": "ons.age.20_30@E14001545", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a0baa953700c31aaedec8e0" + }, + { + "name": "ons.age.20_30@E14001546", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_501183a41ab35d08ca811064" + }, + { + "name": "ons.age.20_30@E14001547", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79035efe0a635e00d7b816bc" + }, + { + "name": "ons.age.20_30@E14001548", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc51a4cdf1f5f39ce5e691b3" + }, + { + "name": "ons.age.20_30@E14001549", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b04052ec3f23d8ae2929c31" + }, + { + "name": "ons.age.20_30@E14001550", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd683e00859fca77a955ae4c" + }, + { + "name": "ons.age.20_30@E14001551", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc847127e0ad5740c74c8483" + }, + { + "name": "ons.age.20_30@E14001552", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf73897ca20fad19310949ac" + }, + { + "name": "ons.age.20_30@E14001553", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b9acbfd6f3ed1465e747c3f" + }, + { + "name": "ons.age.20_30@E14001554", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed4fcdca0d81ef553494719" + }, + { + "name": "ons.age.20_30@E14001555", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edc8bbbe27864b9b2dd20891" + }, + { + "name": "ons.age.20_30@E14001556", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a02c35dd0f192707e496fa93" + }, + { + "name": "ons.age.20_30@E14001557", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db5b7b574948dfff7803f18d" + }, + { + "name": "ons.age.20_30@E14001558", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a000d3b0f8acbcbd86b275dc" + }, + { + "name": "ons.age.20_30@E14001559", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33ece7a8157ad57fd3f766cf" + }, + { + "name": "ons.age.20_30@E14001560", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfacfb7219826cde0ea55899" + }, + { + "name": "ons.age.20_30@E14001561", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10247.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73cd76f953760ad21b1b3e14" + }, + { + "name": "ons.age.20_30@E14001562", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bfa6bbeff69c75ce739ad15" + }, + { + "name": "ons.age.20_30@E14001563", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6997536804f83cb7d54e895e" + }, + { + "name": "ons.age.20_30@E14001564", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d0261eb76dd58b8c31965a1" + }, + { + "name": "ons.age.20_30@E14001565", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea29babde8b89e9fa72ceb4" + }, + { + "name": "ons.age.20_30@E14001566", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad3463752efd14b3f56fa8b9" + }, + { + "name": "ons.age.20_30@E14001567", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5002cd6a41d3c4ec99d158c" + }, + { + "name": "ons.age.20_30@E14001568", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b825eb3afed4a6c9f7a28a45" + }, + { + "name": "ons.age.20_30@E14001569", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5b0d923ec16da4700308441" + }, + { + "name": "ons.age.20_30@E14001570", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8334.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db22b95a381471898d92a3e6" + }, + { + "name": "ons.age.20_30@E14001571", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b333ef786cf9463af28d176b" + }, + { + "name": "ons.age.20_30@E14001572", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7613.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cce3488c872963789a9f050b" + }, + { + "name": "ons.age.20_30@E14001573", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44e1327f25915e9a0128ab71" + }, + { + "name": "ons.age.20_30@E14001574", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb77da78f5f41918f60a5df" + }, + { + "name": "ons.age.20_30@E14001575", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe3f3d21233ee6a760dd4fc" + }, + { + "name": "ons.age.20_30@E14001576", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a16b92bfc0da4862afa662e" + }, + { + "name": "ons.age.20_30@E14001577", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_762cd225232026880a3a57f2" + }, + { + "name": "ons.age.20_30@E14001578", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_316af408e576a65de60b1d5c" + }, + { + "name": "ons.age.20_30@E14001579", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b26599d3b0f1bd430308439a" + }, + { + "name": "ons.age.20_30@E14001580", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8154c83904c2081e6a3a0c8e" + }, + { + "name": "ons.age.20_30@E14001581", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4647881ba2985fcfc7204683" + }, + { + "name": "ons.age.20_30@E14001582", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8869cd310f388a9f617ff696" + }, + { + "name": "ons.age.20_30@E14001583", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa009fc611d2183ca5c65335" + }, + { + "name": "ons.age.20_30@E14001584", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eee4cce4bbd7bbeb486a1fa2" + }, + { + "name": "ons.age.20_30@E14001585", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9dda15be940dda44b30efd8" + }, + { + "name": "ons.age.20_30@E14001586", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f627254a5909fa52d0fc0d0" + }, + { + "name": "ons.age.20_30@E14001587", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87756a54a2305a9afcb18d05" + }, + { + "name": "ons.age.20_30@E14001588", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b190df189245dc73b8efdefa" + }, + { + "name": "ons.age.20_30@E14001589", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d6c51a30e16e9191138c899" + }, + { + "name": "ons.age.20_30@E14001590", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_885f0b3c59efef3aa791bccb" + }, + { + "name": "ons.age.20_30@E14001591", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82b3ea4b7f2052d2cbeaf8f6" + }, + { + "name": "ons.age.20_30@E14001592", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc99ea9a852ad4a72d338fd1" + }, + { + "name": "ons.age.20_30@E14001593", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb5c2c99f549971444a96a03" + }, + { + "name": "ons.age.20_30@E14001594", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d976f63e8153464af9696cf2" + }, + { + "name": "ons.age.20_30@E14001595", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16613.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dadcddfdf7c5f9026c023e24" + }, + { + "name": "ons.age.20_30@E14001596", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15021.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6da4f5a2991b20d2734d71c9" + }, + { + "name": "ons.age.20_30@E14001597", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3a106bb5702de68d3e2c2bc" + }, + { + "name": "ons.age.20_30@E14001598", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d12be9a73fdb783b2d38808" + }, + { + "name": "ons.age.20_30@E14001599", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2240949ea56b50b34e72c17" + }, + { + "name": "ons.age.20_30@E14001600", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_27277fd24538c6cd45e8df39" + }, + { + "name": "ons.age.20_30@E14001601", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c86a7a2acf194865fa80de1e" + }, + { + "name": "ons.age.20_30@E14001602", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c47b5668da25877cf9eae4a7" + }, + { + "name": "ons.age.20_30@E14001603", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8615b5b3ddfb8e59d83cea37" + }, + { + "name": "ons.age.20_30@E14001604", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1c3c70350824ed4489320d9" + }, + { + "name": "ons.age.20_30@E14001605", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd545f5e26492f1673ba78d7" + }, + { + "name": "ons.age.20_30@N05000001", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d394606dba69e4f8e67d611a" + }, + { + "name": "ons.age.20_30@N05000002", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd966a65ebc72685b47131cb" + }, + { + "name": "ons.age.20_30@N05000003", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e3f346838c6dde01c608583" + }, + { + "name": "ons.age.20_30@N05000004", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a837dafd2bbb7ff4e234a48" + }, + { + "name": "ons.age.20_30@N05000005", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a92ced223ce47533cf209811" + }, + { + "name": "ons.age.20_30@N05000006", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfdf947c366c5a5b31a7c5fe" + }, + { + "name": "ons.age.20_30@N05000007", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9efef1be187f5bf8a81d595" + }, + { + "name": "ons.age.20_30@N05000008", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4aafddfb7c449927608f0aa" + }, + { + "name": "ons.age.20_30@N05000009", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e501f60407a6c093263074b5" + }, + { + "name": "ons.age.20_30@N05000010", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33870631ef65b398dc91db6" + }, + { + "name": "ons.age.20_30@N05000011", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f255e6f24561a6a008d01e74" + }, + { + "name": "ons.age.20_30@N05000012", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a0a8ca630227ad9141597a" + }, + { + "name": "ons.age.20_30@N05000013", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1d702b00007e887c63396e7" + }, + { + "name": "ons.age.20_30@N05000014", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4daf4dea42c3e63752cb051d" + }, + { + "name": "ons.age.20_30@N05000015", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0cc76e0294c01f49b6075ef" + }, + { + "name": "ons.age.20_30@N05000016", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3e7552a038a9d5016a0dcde" + }, + { + "name": "ons.age.20_30@N05000017", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfc95aa2e5e65b4c58d7f55a" + }, + { + "name": "ons.age.20_30@N05000018", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_777e6a80bb71d0b68a91cf2f" + }, + { + "name": "ons.age.20_30@S14000021", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e79c2320fefd842116e2a4b7" + }, + { + "name": "ons.age.20_30@S14000027", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 1998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d46563c7531c2b56be17f758" + }, + { + "name": "ons.age.20_30@S14000045", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe3677a726e4941db6786af4" + }, + { + "name": "ons.age.20_30@S14000048", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7cf2e285c91b190f3f52aee" + }, + { + "name": "ons.age.20_30@S14000051", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 3900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef5bdf136dc866f03014d622" + }, + { + "name": "ons.age.20_30@S14000060", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1fe603dcd87ce64d0bc199c" + }, + { + "name": "ons.age.20_30@S14000061", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 21501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e34b1e50f64e176a0df458bc" + }, + { + "name": "ons.age.20_30@S14000062", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef8c7a6e9d3220df7bb3cea6" + }, + { + "name": "ons.age.20_30@S14000063", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78bc6ed045087096aa42e6a" + }, + { + "name": "ons.age.20_30@S14000064", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb24570138ce71d7698329e2" + }, + { + "name": "ons.age.20_30@S14000065", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda08687414a68fd8f93d56f" + }, + { + "name": "ons.age.20_30@S14000066", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ca2c3ea806ea5e7894789af" + }, + { + "name": "ons.age.20_30@S14000067", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f90a4685df7beabaff72f42f" + }, + { + "name": "ons.age.20_30@S14000068", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9565.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd2b589eb1166e63d2f2cc80" + }, + { + "name": "ons.age.20_30@S14000069", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9bab13b1e709dd970f0dd0" + }, + { + "name": "ons.age.20_30@S14000070", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c122bb3d7fafce807cd406" + }, + { + "name": "ons.age.20_30@S14000071", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4ffab6d1b05608435f25246" + }, + { + "name": "ons.age.20_30@S14000072", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff65b0b18c8db63411664803" + }, + { + "name": "ons.age.20_30@S14000073", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8c90b77f59b263d69d110cc" + }, + { + "name": "ons.age.20_30@S14000074", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e62ee765353ac507d5bb1297" + }, + { + "name": "ons.age.20_30@S14000075", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 21125.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e854989103d17fc38356ebe7" + }, + { + "name": "ons.age.20_30@S14000076", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8be4c396431f592a559656a" + }, + { + "name": "ons.age.20_30@S14000077", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddd24501a7c64ea89728f6ca" + }, + { + "name": "ons.age.20_30@S14000078", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 29430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b26a64b99d0505fc5eeac2" + }, + { + "name": "ons.age.20_30@S14000079", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 22273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbbdc85e4b5bc3ecf638cded" + }, + { + "name": "ons.age.20_30@S14000080", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed42c0494bc9af7118b10030" + }, + { + "name": "ons.age.20_30@S14000081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 23618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e82f2b9e7b5636c3b2a316" + }, + { + "name": "ons.age.20_30@S14000082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9aef7c25c2c58b83f8d1623" + }, + { + "name": "ons.age.20_30@S14000083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4c4d9d4c69ac2333aa100d0" + }, + { + "name": "ons.age.20_30@S14000084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 19352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc42199a7c565e13ad7d8bc9" + }, + { + "name": "ons.age.20_30@S14000085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 37126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d409654562f71dce693b4b" + }, + { + "name": "ons.age.20_30@S14000086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 21667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6fa77effef5d9680c577b5e" + }, + { + "name": "ons.age.20_30@S14000087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda5a6622236fb1dfc5ccbe7" + }, + { + "name": "ons.age.20_30@S14000088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 17216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e4e1140ff4f4bfaa58e44d" + }, + { + "name": "ons.age.20_30@S14000089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 22149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcf31e8a546a722f418095b8" + }, + { + "name": "ons.age.20_30@S14000090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6cf25ce97c79cd6e0f7d8ee" + }, + { + "name": "ons.age.20_30@S14000091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7378.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8da476800b88b2be3acb001" + }, + { + "name": "ons.age.20_30@S14000092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b24ac9bd04c7ce0e17605c94" + }, + { + "name": "ons.age.20_30@S14000093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b992a7c9f8e985bfb6ed0adf" + }, + { + "name": "ons.age.20_30@S14000094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e75a372c97209cdd7dbc1e2b" + }, + { + "name": "ons.age.20_30@S14000095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0f16340933669977e84a663" + }, + { + "name": "ons.age.20_30@S14000096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eabeb4e466a3ba2f727bf797" + }, + { + "name": "ons.age.20_30@S14000097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6bf2b357642905e362e9ddc" + }, + { + "name": "ons.age.20_30@S14000098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9570.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0881e71512519cbb53f309a" + }, + { + "name": "ons.age.20_30@S14000099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9deb3fd678312dd05c2842e" + }, + { + "name": "ons.age.20_30@S14000100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f91ce0a0b499d4d865f470a7" + }, + { + "name": "ons.age.20_30@S14000101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8e96cdce95321cba5bd5397" + }, + { + "name": "ons.age.20_30@S14000102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f01a90fdee9391a9218bcda0" + }, + { + "name": "ons.age.20_30@S14000103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde88179943cbd57d30de2e1" + }, + { + "name": "ons.age.20_30@S14000104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4a89d132b022e30c3cef185" + }, + { + "name": "ons.age.20_30@S14000105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c607dabc5e4f8cafdf84dc" + }, + { + "name": "ons.age.20_30@S14000106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf5411e0ac4dd0e0e73971e" + }, + { + "name": "ons.age.20_30@S14000107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f529ad4588c332cde313bd12" + }, + { + "name": "ons.age.20_30@S14000108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb879f348408b71df39c9a5d" + }, + { + "name": "ons.age.20_30@S14000109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea03efa080906d5acf5b7dec" + }, + { + "name": "ons.age.20_30@S14000110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9944.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9bc425fee07dd3cc541662" + }, + { + "name": "ons.age.20_30@S14000111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7005.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43cadb43841407c50ff51f9" + }, + { + "name": "ons.age.20_30@W07000081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7210e7ac169b5730e5e2ca66" + }, + { + "name": "ons.age.20_30@W07000082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f256da07b78b3dd87653be" + }, + { + "name": "ons.age.20_30@W07000083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca94bcc4459999a36fc47d3" + }, + { + "name": "ons.age.20_30@W07000084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10763.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50a3257e778a9c0ceb524df2" + }, + { + "name": "ons.age.20_30@W07000085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de13020da96a97e254a0eac1" + }, + { + "name": "ons.age.20_30@W07000086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e3ef27c6a899f73def4133b" + }, + { + "name": "ons.age.20_30@W07000087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb51fc1b116487ba377157e" + }, + { + "name": "ons.age.20_30@W07000088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6e3b066fce1de05830b5b00" + }, + { + "name": "ons.age.20_30@W07000089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e986d4e6467917a596fabd" + }, + { + "name": "ons.age.20_30@W07000090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64a35ceca443d8f0238295ec" + }, + { + "name": "ons.age.20_30@W07000091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4b7e9267dcb9796d6237b9b" + }, + { + "name": "ons.age.20_30@W07000092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_22f2bf14a328536f0d4798f9" + }, + { + "name": "ons.age.20_30@W07000093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c46db13297496e830c9c2034" + }, + { + "name": "ons.age.20_30@W07000094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8795.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1872b30d76805f3649437cc" + }, + { + "name": "ons.age.20_30@W07000095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e55a774eb2670b95084faea9" + }, + { + "name": "ons.age.20_30@W07000096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd6ef407d02122e155f1056" + }, + { + "name": "ons.age.20_30@W07000097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df1f58d4f43da6cbb9e20ea7" + }, + { + "name": "ons.age.20_30@W07000098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf64844725a877121a1ed3f6" + }, + { + "name": "ons.age.20_30@W07000099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_415fcb3960515f15effb6c0d" + }, + { + "name": "ons.age.20_30@W07000100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c0509e2e63ba89bea3826c" + }, + { + "name": "ons.age.20_30@W07000101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fbbb11f0c11b02e5c629784" + }, + { + "name": "ons.age.20_30@W07000102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9adb8409c4ccaeb6b58c589" + }, + { + "name": "ons.age.20_30@W07000103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d79a81d82da0c17f950b86b1" + }, + { + "name": "ons.age.20_30@W07000104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b6c1e0c16fff032a5d3e17" + }, + { + "name": "ons.age.20_30@W07000105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6026171c889fbe7bf3494311" + }, + { + "name": "ons.age.20_30@W07000106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d61e19918cf5ae4d2eef4607" + }, + { + "name": "ons.age.20_30@W07000107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bc56354545f32315343ce5b" + }, + { + "name": "ons.age.20_30@W07000108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f67b15cd950f1b390b432eb2" + }, + { + "name": "ons.age.20_30@W07000109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db906d137cf095394e7ff937" + }, + { + "name": "ons.age.20_30@W07000110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1132644f1d78f2ba47e6f38" + }, + { + "name": "ons.age.20_30@W07000111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11293.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ccb77df90eb41301b6a77c" + }, + { + "name": "ons.age.20_30@W07000112", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce924dc134fe99a92bc7c6ae" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.20_30@E06000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ab7b82fdaa8a27414ca4021" + }, + { + "name": "ons.age.20_30@E06000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba63650123fa0301281b0d54" + }, + { + "name": "ons.age.20_30@E06000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dab668a6b17058f57fb6b613" + }, + { + "name": "ons.age.20_30@E06000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77f8fdedd780f7d14d01d809" + }, + { + "name": "ons.age.20_30@E06000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df88355be37bdb4e05f9a314" + }, + { + "name": "ons.age.20_30@E06000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f61ddf5652fc478e349dcd97" + }, + { + "name": "ons.age.20_30@E06000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eec8c1f223a4dee66ebe58e" + }, + { + "name": "ons.age.20_30@E06000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3976ac5ccfd1544866fe36f5" + }, + { + "name": "ons.age.20_30@E06000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15351.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_596ab1527724f62bb06e9bcb" + }, + { + "name": "ons.age.20_30@E06000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_939146be9d339c06e1087410" + }, + { + "name": "ons.age.20_30@E06000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7e1f71fe3dc074d889c71e4" + }, + { + "name": "ons.age.20_30@E06000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a52aa1ac52be9ab7833bc33d" + }, + { + "name": "ons.age.20_30@E06000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16291.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c16f2890f6a2752549e5ae53" + }, + { + "name": "ons.age.20_30@E06000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef6e2b7226000f9e4960170c" + }, + { + "name": "ons.age.20_30@E06000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c08c4b34b8b8c107059ed30" + }, + { + "name": "ons.age.20_30@E06000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe3eebf9380efd2fac868db3" + }, + { + "name": "ons.age.20_30@E06000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b4dc4c6ef7a3996c41d6d4d" + }, + { + "name": "ons.age.20_30@E06000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6323b86cabdbcf92ff9917ca" + }, + { + "name": "ons.age.20_30@E06000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b37d7b35b5bc82749a256ce5" + }, + { + "name": "ons.age.20_30@E06000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b26cec9049752ba1b5c36d71" + }, + { + "name": "ons.age.20_30@E06000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f858dcb01b6fd6776d814418" + }, + { + "name": "ons.age.20_30@E06000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e005e62fee76a8b2a0b49b" + }, + { + "name": "ons.age.20_30@E06000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 108666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d8b31fed2bbdb08f81fb523" + }, + { + "name": "ons.age.20_30@E06000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2b20407017b5e08f381e328" + }, + { + "name": "ons.age.20_30@E06000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35990d390cce9d40e5e1527a" + }, + { + "name": "ons.age.20_30@E06000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80b0591c61e7132cffe677f0" + }, + { + "name": "ons.age.20_30@E06000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9bcda284afbf72de68196e9" + }, + { + "name": "ons.age.20_30@E06000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_719c8de64f1f85122a066bd9" + }, + { + "name": "ons.age.20_30@E06000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b9e56b7c2c0c4052cf0646f" + }, + { + "name": "ons.age.20_30@E06000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ba12332d08cc4d5a26fd98e" + }, + { + "name": "ons.age.20_30@E06000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95318789d4b79dbc3781c87b" + }, + { + "name": "ons.age.20_30@E06000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_170a17fbb4561e8e88e8bce1" + }, + { + "name": "ons.age.20_30@E06000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70093a78b4f47bb661ed7113" + }, + { + "name": "ons.age.20_30@E06000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_17c1a459506d633d942ac92e" + }, + { + "name": "ons.age.20_30@E06000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15310.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb5eca6d80653f30a4639031" + }, + { + "name": "ons.age.20_30@E06000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20ba80815e71d04a282d7a8" + }, + { + "name": "ons.age.20_30@E06000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5e9a7b4bc6fb37e20a00fc6" + }, + { + "name": "ons.age.20_30@E06000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2c73649027050cdad2ca460" + }, + { + "name": "ons.age.20_30@E06000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3aa02c4ee5696e07511672f" + }, + { + "name": "ons.age.20_30@E06000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eafa7fb3a1757eccbbb1d97b" + }, + { + "name": "ons.age.20_30@E06000043", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f92f26eac98ea370e83eca75" + }, + { + "name": "ons.age.20_30@E06000044", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef780f946419a76b83393892" + }, + { + "name": "ons.age.20_30@E06000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9118df51795639fe9a3bb60c" + }, + { + "name": "ons.age.20_30@E06000046", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bce44c027c13df8c0a4e111" + }, + { + "name": "ons.age.20_30@E06000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_835643ebff07b980ba562823" + }, + { + "name": "ons.age.20_30@E06000049", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b48a98190662fe9051e9e4c3" + }, + { + "name": "ons.age.20_30@E06000050", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41021.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd8ed9518dcc121c067ea49d" + }, + { + "name": "ons.age.20_30@E06000051", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e59da388cdcd43e82a9357f1" + }, + { + "name": "ons.age.20_30@E06000052", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6224b8caf14cb9a9b846bdd" + }, + { + "name": "ons.age.20_30@E06000053", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dab5731bc7b0b9ddbcc3e5a8" + }, + { + "name": "ons.age.20_30@E06000054", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c30fe0dc0df47e7e9b535d5d" + }, + { + "name": "ons.age.20_30@E06000055", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e712f8974173991e4048b1d3" + }, + { + "name": "ons.age.20_30@E06000056", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45395f8afb6071ca9f5c16b8" + }, + { + "name": "ons.age.20_30@E06000057", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53e236079ec37e976a3151d6" + }, + { + "name": "ons.age.20_30@E06000058", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8edc76d2f8481bd55e68181" + }, + { + "name": "ons.age.20_30@E06000059", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5eabe424a504e55cfc829e0" + }, + { + "name": "ons.age.20_30@E06000060", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6af2cd5d41c3331fca522159" + }, + { + "name": "ons.age.20_30@E06000061", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38464.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f84f3f7d077d19f892fc88a5" + }, + { + "name": "ons.age.20_30@E06000062", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d646256afe06f23fe9833458" + }, + { + "name": "ons.age.20_30@E06000063", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18075d4de3130e20cf73698" + }, + { + "name": "ons.age.20_30@E06000064", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_956236fc80c33537f4c45b66" + }, + { + "name": "ons.age.20_30@E06000065", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f24ff42380b6d52942f76252" + }, + { + "name": "ons.age.20_30@E06000066", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7557f6335063a555a4d4493b" + }, + { + "name": "ons.age.20_30@E07000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb1dc2200db19008f16b93e" + }, + { + "name": "ons.age.20_30@E07000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5fad7bff8fb641bab38be0e" + }, + { + "name": "ons.age.20_30@E07000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e76af8d24dbd738719c1b047" + }, + { + "name": "ons.age.20_30@E07000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e7d292eb018947fed23ed20" + }, + { + "name": "ons.age.20_30@E07000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14723.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60a989b41ddce8976c5ee724" + }, + { + "name": "ons.age.20_30@E07000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_697f6c4e06844d9cb07a2854" + }, + { + "name": "ons.age.20_30@E07000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9315.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ddbd2a90b1537f0ad4f4827" + }, + { + "name": "ons.age.20_30@E07000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11114.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6977e98ab823e842b4f381a9" + }, + { + "name": "ons.age.20_30@E07000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5318b798a69d0a8c7e3237d" + }, + { + "name": "ons.age.20_30@E07000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ec13fec4ce35847b381eb01" + }, + { + "name": "ons.age.20_30@E07000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66163dc532dc8477dda0739" + }, + { + "name": "ons.age.20_30@E07000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10024.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd0feab8f397b10fbe751449" + }, + { + "name": "ons.age.20_30@E07000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb3bc253ece6992d6a0a4289" + }, + { + "name": "ons.age.20_30@E07000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a4dbe2fef4c9af5a3d5831b" + }, + { + "name": "ons.age.20_30@E07000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed2e897bf110678b13671537" + }, + { + "name": "ons.age.20_30@E07000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee9c5154c9c372531821b267" + }, + { + "name": "ons.age.20_30@E07000043", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46ba524458a2958ed23f2886" + }, + { + "name": "ons.age.20_30@E07000044", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6a4fe0fd38a6468e5a9ffc1" + }, + { + "name": "ons.age.20_30@E07000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_717064cebabb4cb9b5fa4f2b" + }, + { + "name": "ons.age.20_30@E07000046", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2a9c1f813341a20b9c16570" + }, + { + "name": "ons.age.20_30@E07000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4418.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed993f88383da5b7a874bb90" + }, + { + "name": "ons.age.20_30@E07000061", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47b40191dfb65411665130e" + }, + { + "name": "ons.age.20_30@E07000062", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50c661cfb803c9137a3382ec" + }, + { + "name": "ons.age.20_30@E07000063", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53fa881af2089f749bb250b4" + }, + { + "name": "ons.age.20_30@E07000064", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51c682e30dace2a633686c42" + }, + { + "name": "ons.age.20_30@E07000065", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbf92920da2b052f55f43f81" + }, + { + "name": "ons.age.20_30@E07000066", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3b27898eabf4b0262cc67d5" + }, + { + "name": "ons.age.20_30@E07000067", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a990fe56882d085c8901ae5" + }, + { + "name": "ons.age.20_30@E07000068", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe824c031d0a59a3186b0eca" + }, + { + "name": "ons.age.20_30@E07000069", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f9cf3f319cb78d306cec9c" + }, + { + "name": "ons.age.20_30@E07000070", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e98c6dd2db8a06356e4190d5" + }, + { + "name": "ons.age.20_30@E07000071", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24839.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_984e5a1ffef493b8eb272ce0" + }, + { + "name": "ons.age.20_30@E07000072", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e82d5f4624ee9ecd3f73bdf" + }, + { + "name": "ons.age.20_30@E07000073", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10939.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95f8f3a4693cd5b56a39b7e" + }, + { + "name": "ons.age.20_30@E07000074", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec26a95c67507a788098357f" + }, + { + "name": "ons.age.20_30@E07000075", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8763.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99ee898aeb37a517bc09e689" + }, + { + "name": "ons.age.20_30@E07000076", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef528adc0e81947588d2058" + }, + { + "name": "ons.age.20_30@E07000077", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b27de1315aeacef396eae965" + }, + { + "name": "ons.age.20_30@E07000078", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_773c1017faa8a646bb3b88e0" + }, + { + "name": "ons.age.20_30@E07000079", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d380e872c882dfd2a8d31b2" + }, + { + "name": "ons.age.20_30@E07000080", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f33aa7d85ced5efc23dabe22" + }, + { + "name": "ons.age.20_30@E07000081", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e844f0cf7112387d13aa0959" + }, + { + "name": "ons.age.20_30@E07000082", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ac27d9685d3cf748d4958ce" + }, + { + "name": "ons.age.20_30@E07000083", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9411.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b09fe021cd2d448c8ce31d2b" + }, + { + "name": "ons.age.20_30@E07000084", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db8bbdea46df53e38ad81917" + }, + { + "name": "ons.age.20_30@E07000085", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e361d2e13d5d873605337af" + }, + { + "name": "ons.age.20_30@E07000086", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f82b143339c1dd0e84cb6c30" + }, + { + "name": "ons.age.20_30@E07000087", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5bd4430beb2b86244447e54" + }, + { + "name": "ons.age.20_30@E07000088", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd634c320b2b06a8b583ccec" + }, + { + "name": "ons.age.20_30@E07000089", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e776fce3636ba8611b63a4ff" + }, + { + "name": "ons.age.20_30@E07000090", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c88544956beea4ccd206977a" + }, + { + "name": "ons.age.20_30@E07000091", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13814.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0da6f9c9d3e15d955e5c96e" + }, + { + "name": "ons.age.20_30@E07000092", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6306c803143573df99d6e04" + }, + { + "name": "ons.age.20_30@E07000093", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12213.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a3c1684755be6cfe80484fd" + }, + { + "name": "ons.age.20_30@E07000094", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0788551ac236dfb54766ba8" + }, + { + "name": "ons.age.20_30@E07000095", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4e30c6188c8c2ff48b16112" + }, + { + "name": "ons.age.20_30@E07000096", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecb4088cff9b69ef56941982" + }, + { + "name": "ons.age.20_30@E07000098", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c4abab597f9bccca3c1b4c5" + }, + { + "name": "ons.age.20_30@E07000099", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87a55ea7feaf82f087b59587" + }, + { + "name": "ons.age.20_30@E07000102", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dbdfe79cc705d2056b05026" + }, + { + "name": "ons.age.20_30@E07000103", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27d78dd5ee096e916dcd804" + }, + { + "name": "ons.age.20_30@E07000105", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8992da94187b68deb4b8c1c" + }, + { + "name": "ons.age.20_30@E07000106", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90bcf3ac5e4ddb4641e9c4b4" + }, + { + "name": "ons.age.20_30@E07000107", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac2996c30840d24f717e2e10" + }, + { + "name": "ons.age.20_30@E07000108", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba36d9cadcd98d29784c5d25" + }, + { + "name": "ons.age.20_30@E07000109", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab3a8de12b706208f30ad65e" + }, + { + "name": "ons.age.20_30@E07000110", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_688f2b3e3c3d033649106ce3" + }, + { + "name": "ons.age.20_30@E07000111", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e978cc3ecfb9878612151f57" + }, + { + "name": "ons.age.20_30@E07000112", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae2ef8c07cde49a4a7ba37fa" + }, + { + "name": "ons.age.20_30@E07000113", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_776efcfc56e1662e1e67114f" + }, + { + "name": "ons.age.20_30@E07000114", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b8207fb93dcb2e109403204" + }, + { + "name": "ons.age.20_30@E07000115", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a99f6c5cc12f6275526c4e5b" + }, + { + "name": "ons.age.20_30@E07000116", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87397b225a4d958af9ce039d" + }, + { + "name": "ons.age.20_30@E07000117", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b24493e97bd8faa719e8bbc9" + }, + { + "name": "ons.age.20_30@E07000118", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78dc8ae60fb9546049edae35" + }, + { + "name": "ons.age.20_30@E07000119", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94d33fb3dd1361914973501d" + }, + { + "name": "ons.age.20_30@E07000120", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_837012c095ba14c3735851bf" + }, + { + "name": "ons.age.20_30@E07000121", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60c9c4a8416c33797ab22ace" + }, + { + "name": "ons.age.20_30@E07000122", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b489c378059e24da52038612" + }, + { + "name": "ons.age.20_30@E07000123", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0469984816e53eba41b9976" + }, + { + "name": "ons.age.20_30@E07000124", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c60d5d92ce9c3cd203063cd7" + }, + { + "name": "ons.age.20_30@E07000125", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b13793d36d3d51dcd8944358" + }, + { + "name": "ons.age.20_30@E07000126", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f062b229a446a97cdb35013c" + }, + { + "name": "ons.age.20_30@E07000127", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56de1825a092548fca6fb5f3" + }, + { + "name": "ons.age.20_30@E07000128", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be8a652febfc7e444b6c2a82" + }, + { + "name": "ons.age.20_30@E07000129", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d02e8d02928548285cec2d63" + }, + { + "name": "ons.age.20_30@E07000130", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e711c0938963b3494104095" + }, + { + "name": "ons.age.20_30@E07000131", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd6a2421d76f24f8421b8e5d" + }, + { + "name": "ons.age.20_30@E07000132", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f0ca5f6c246e75c022281e" + }, + { + "name": "ons.age.20_30@E07000133", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa33976e74e56d51f2605e4" + }, + { + "name": "ons.age.20_30@E07000134", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e26b8dad327c821b8301d035" + }, + { + "name": "ons.age.20_30@E07000135", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32144db83493ee70978bc3ed" + }, + { + "name": "ons.age.20_30@E07000136", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46017ff2297387a29c5e16cf" + }, + { + "name": "ons.age.20_30@E07000137", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b62fa8c5a90906eca723be82" + }, + { + "name": "ons.age.20_30@E07000138", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc81a89e01fac53981c1b7e7" + }, + { + "name": "ons.age.20_30@E07000139", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73da8b5d8df604e88f7ca9d8" + }, + { + "name": "ons.age.20_30@E07000140", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9404.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e855e9537b8232508fa1ac50" + }, + { + "name": "ons.age.20_30@E07000141", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a41268a899b5b73381cf117d" + }, + { + "name": "ons.age.20_30@E07000142", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bee826718f856c8d10d2817" + }, + { + "name": "ons.age.20_30@E07000143", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_804a937f47993be9975f8c70" + }, + { + "name": "ons.age.20_30@E07000144", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc65c9df44ef34e34f194f5a" + }, + { + "name": "ons.age.20_30@E07000145", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ee565c3dbc7333e5d529639" + }, + { + "name": "ons.age.20_30@E07000146", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc25d25efb89b78c4f252f12" + }, + { + "name": "ons.age.20_30@E07000147", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7643.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b179ac177d96dfe84b9f487a" + }, + { + "name": "ons.age.20_30@E07000148", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a762e7f45475e5a4cc44977" + }, + { + "name": "ons.age.20_30@E07000149", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de124f545067ccb3e79ac701" + }, + { + "name": "ons.age.20_30@E07000170", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e71631fc162f806367cc8c3f" + }, + { + "name": "ons.age.20_30@E07000171", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad0b52b713710f2c73606ae7" + }, + { + "name": "ons.age.20_30@E07000172", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18da16d147094cba511d76b5" + }, + { + "name": "ons.age.20_30@E07000173", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4108e4278dc9387fa3c2a12a" + }, + { + "name": "ons.age.20_30@E07000174", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b54ed040f15823a12f07c6cf" + }, + { + "name": "ons.age.20_30@E07000175", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5278c782e20371bbd03cfc00" + }, + { + "name": "ons.age.20_30@E07000176", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b440165af0379d15ab8ee24" + }, + { + "name": "ons.age.20_30@E07000177", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5574cc39d24f21ec57a0a56" + }, + { + "name": "ons.age.20_30@E07000178", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83ea3f534c69d7c27603daf" + }, + { + "name": "ons.age.20_30@E07000179", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ec7cb476a73489821239fe1" + }, + { + "name": "ons.age.20_30@E07000180", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35cba47d9c2ba05eba4960ca" + }, + { + "name": "ons.age.20_30@E07000181", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12238.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5400d718ba18db66ddaa9219" + }, + { + "name": "ons.age.20_30@E07000192", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47e912b9ecd40b14c381f217" + }, + { + "name": "ons.age.20_30@E07000193", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c756b6894db8307598d4fd0c" + }, + { + "name": "ons.age.20_30@E07000194", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d13e0d5533252eba65c6d2c0" + }, + { + "name": "ons.age.20_30@E07000195", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b9ba2740beac5b52e1f430e" + }, + { + "name": "ons.age.20_30@E07000196", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f590eb2e6a274c36e9e84429" + }, + { + "name": "ons.age.20_30@E07000197", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f659d2222f6d1f712815a61" + }, + { + "name": "ons.age.20_30@E07000198", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b82a65d234e8943b51bf7e4" + }, + { + "name": "ons.age.20_30@E07000199", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_759025dac424d9ff18166bfb" + }, + { + "name": "ons.age.20_30@E07000200", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3b02ca0f6352fe143ff29be" + }, + { + "name": "ons.age.20_30@E07000202", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57f8558c9bf974164c54542a" + }, + { + "name": "ons.age.20_30@E07000203", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c39576f634382002b46dec" + }, + { + "name": "ons.age.20_30@E07000207", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d93615f096be0bec76f4ea67" + }, + { + "name": "ons.age.20_30@E07000208", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0153203c7f48c67f2c1ed75" + }, + { + "name": "ons.age.20_30@E07000209", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0aabfeb2d0544486c274f1b" + }, + { + "name": "ons.age.20_30@E07000210", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7242.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e245cb211621a8c1ea01f507" + }, + { + "name": "ons.age.20_30@E07000211", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6af20953ffdb75d498007f66" + }, + { + "name": "ons.age.20_30@E07000212", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_927ae5a806359e0408f21027" + }, + { + "name": "ons.age.20_30@E07000213", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb3a016848481d7db8ae6ed" + }, + { + "name": "ons.age.20_30@E07000214", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9b2c17dc9531f47504cc8e7" + }, + { + "name": "ons.age.20_30@E07000215", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7824.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d88d388fd757c833333e470e" + }, + { + "name": "ons.age.20_30@E07000216", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11109.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63757f5a890ededb3cbd9742" + }, + { + "name": "ons.age.20_30@E07000217", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1a56cf5867b4bea2fce87a5" + }, + { + "name": "ons.age.20_30@E07000218", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc15adb684ed613d35e6b67f" + }, + { + "name": "ons.age.20_30@E07000219", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ff16a4de5fc2480cb188913" + }, + { + "name": "ons.age.20_30@E07000220", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b610b1a3c5919bbc2820e81a" + }, + { + "name": "ons.age.20_30@E07000221", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69b99f08ef060dc567b7962b" + }, + { + "name": "ons.age.20_30@E07000222", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9b213635cd1af2956404c3c" + }, + { + "name": "ons.age.20_30@E07000223", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e8b809e570106a58ec1b0c0" + }, + { + "name": "ons.age.20_30@E07000224", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96969dfb8afee531d36c04bf" + }, + { + "name": "ons.age.20_30@E07000225", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3c98fe5bbc2508fae009d7c" + }, + { + "name": "ons.age.20_30@E07000226", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_110677fe3b700528f2c5ec4a" + }, + { + "name": "ons.age.20_30@E07000227", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5b8078b31a3ef800ce53760" + }, + { + "name": "ons.age.20_30@E07000228", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d59c27b48d3874a1539f1407" + }, + { + "name": "ons.age.20_30@E07000229", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10768.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0edd6da24c65bbd821a1c34" + }, + { + "name": "ons.age.20_30@E07000234", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8918.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a258a358ff17ded35543d49" + }, + { + "name": "ons.age.20_30@E07000235", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7bb423c9dbe44b7939e7033" + }, + { + "name": "ons.age.20_30@E07000236", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ea39f1b22990763a4d9ca2" + }, + { + "name": "ons.age.20_30@E07000237", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76a6ca26c9ac3fbcade1cc8a" + }, + { + "name": "ons.age.20_30@E07000238", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c09b3f2062b800f4ea345a7" + }, + { + "name": "ons.age.20_30@E07000239", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d52bb90b3c780a7f4a164cbf" + }, + { + "name": "ons.age.20_30@E07000240", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7eff74eddec16de8ef8ab51" + }, + { + "name": "ons.age.20_30@E07000241", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c70f00125357dc5dee2a5d9" + }, + { + "name": "ons.age.20_30@E07000242", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed58e65196bac278ebb859a" + }, + { + "name": "ons.age.20_30@E07000243", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee9971afd2a0fb57b5e2d30f" + }, + { + "name": "ons.age.20_30@E07000244", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a298ba3de069ccf4942912c2" + }, + { + "name": "ons.age.20_30@E07000245", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d53f55be91b465f90abdb4" + }, + { + "name": "ons.age.20_30@E08000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f27c96d3fd120787e191346" + }, + { + "name": "ons.age.20_30@E08000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2766086ecdbf3760a322295" + }, + { + "name": "ons.age.20_30@E08000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 134621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_477ce1322a182c40c18a0981" + }, + { + "name": "ons.age.20_30@E08000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b876a6c1e4c7bc6e64dd457d" + }, + { + "name": "ons.age.20_30@E08000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78634c0805f848138852dec0" + }, + { + "name": "ons.age.20_30@E08000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76a375cf802ba68949b78c52" + }, + { + "name": "ons.age.20_30@E08000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92013f99014138a824ae48b4" + }, + { + "name": "ons.age.20_30@E08000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f17089690ca8d56deea97da6" + }, + { + "name": "ons.age.20_30@E08000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdd9d3ae28a0e9c0d5135ba7" + }, + { + "name": "ons.age.20_30@E08000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfcbac32ffb548d097de66f8" + }, + { + "name": "ons.age.20_30@E08000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_941e21909b6cf7acd4df5782" + }, + { + "name": "ons.age.20_30@E08000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 98236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_25e37cdd7635b659e5f1992f" + }, + { + "name": "ons.age.20_30@E08000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d23ccf956a1e6c6baff91726" + }, + { + "name": "ons.age.20_30@E08000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4a17c00c796787492335fc1" + }, + { + "name": "ons.age.20_30@E08000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f2a4f0a62a780555582fb58" + }, + { + "name": "ons.age.20_30@E08000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26947.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa7f3a0dbe4b21a6065668e" + }, + { + "name": "ons.age.20_30@E08000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24d88259b408a7eb2b39dbd8" + }, + { + "name": "ons.age.20_30@E08000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd2e0a900dadf7333a3ab198" + }, + { + "name": "ons.age.20_30@E08000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d00dcab6bb9d371a7a5cc32" + }, + { + "name": "ons.age.20_30@E08000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8997b2199ed603ba1397fa85" + }, + { + "name": "ons.age.20_30@E08000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52028a032751dd2f20593fa1" + }, + { + "name": "ons.age.20_30@E08000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea25b8505fbf5d8025a9180b" + }, + { + "name": "ons.age.20_30@E08000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32768.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acccfb7b857f0e9ad93c49ac" + }, + { + "name": "ons.age.20_30@E08000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 194989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61d7702a8f0d29e3c15c4f31" + }, + { + "name": "ons.age.20_30@E08000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63907.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_399768ef7e8d690b1fd98232" + }, + { + "name": "ons.age.20_30@E08000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df721c9601b758d9b5a12cc7" + }, + { + "name": "ons.age.20_30@E08000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26c3ce0eb8eba46d07e57c2" + }, + { + "name": "ons.age.20_30@E08000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac84e4db0eb7a668bde598ca" + }, + { + "name": "ons.age.20_30@E08000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e9e474438241b34ea782aaa" + }, + { + "name": "ons.age.20_30@E08000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4673075255bef0cc7c7ddf5" + }, + { + "name": "ons.age.20_30@E08000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9597fb2cf21c8c8c9ed6c92" + }, + { + "name": "ons.age.20_30@E08000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21760.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c22b965557f27e89ea171637" + }, + { + "name": "ons.age.20_30@E08000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af5d67093488797025c25c9b" + }, + { + "name": "ons.age.20_30@E08000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 143027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d182b4712da4d86799e2d24" + }, + { + "name": "ons.age.20_30@E08000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4df8ce90418b93538ef830f" + }, + { + "name": "ons.age.20_30@E08000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aed0d4d71bbd3b1138163e95" + }, + { + "name": "ons.age.20_30@E09000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5163.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c24362407c2715515d24f41" + }, + { + "name": "ons.age.20_30@E09000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e290c637a4065323f224d0a1" + }, + { + "name": "ons.age.20_30@E09000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70582a71ca69c1135ebf5969" + }, + { + "name": "ons.age.20_30@E09000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95e8e0097c059c3c01e681ea" + }, + { + "name": "ons.age.20_30@E09000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73c35d0c9f5e2c5339f9aac7" + }, + { + "name": "ons.age.20_30@E09000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c253e1b27dd41d0d666cfee7" + }, + { + "name": "ons.age.20_30@E09000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2831c86e6a3abc2f2f42524" + }, + { + "name": "ons.age.20_30@E09000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb1bbc895945b72c809d6f0b" + }, + { + "name": "ons.age.20_30@E09000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e727890fc2d3813e5265ab8a" + }, + { + "name": "ons.age.20_30@E09000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8afafcaeefb64ac9049cea1d" + }, + { + "name": "ons.age.20_30@E09000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b451e372344ab54085f22ff7" + }, + { + "name": "ons.age.20_30@E09000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84043a0939ae37873c79795a" + }, + { + "name": "ons.age.20_30@E09000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a38918865098e2d7d48984e2" + }, + { + "name": "ons.age.20_30@E09000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e091c79354891a7556f8e6fc" + }, + { + "name": "ons.age.20_30@E09000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c372061a4e2ff891ac75485" + }, + { + "name": "ons.age.20_30@E09000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f28e0ed4752982f88d74dccd" + }, + { + "name": "ons.age.20_30@E09000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef82504c3d100c5694526599" + }, + { + "name": "ons.age.20_30@E09000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_773f0cab7627a8b1017d98df" + }, + { + "name": "ons.age.20_30@E09000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cacf2266a2d19cd95ae68efd" + }, + { + "name": "ons.age.20_30@E09000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d8a338e93579515958004eb" + }, + { + "name": "ons.age.20_30@E09000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bce8146a153d2763b1121e0f" + }, + { + "name": "ons.age.20_30@E09000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 77174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dac42b95cc09e62fbaca18ec" + }, + { + "name": "ons.age.20_30@E09000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46625.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d68d2fb2689d1cbdf485906" + }, + { + "name": "ons.age.20_30@E09000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9b146af72f17c32475044df" + }, + { + "name": "ons.age.20_30@E09000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df7003669e9cc36c7c6d5283" + }, + { + "name": "ons.age.20_30@E09000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6810dd4de4988676571ddb" + }, + { + "name": "ons.age.20_30@E09000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9d6902715657cc4f39995e6" + }, + { + "name": "ons.age.20_30@E09000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95ceacabbee01a83a4fc760" + }, + { + "name": "ons.age.20_30@E09000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3f82d9f6ad7312def2e80a4" + }, + { + "name": "ons.age.20_30@E09000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 91058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b629b62dbb1626cb2cdd8853" + }, + { + "name": "ons.age.20_30@E09000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b730fe899432ca1ee5c223c" + }, + { + "name": "ons.age.20_30@E09000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dadc2998c55f93e6c7d1c9f5" + }, + { + "name": "ons.age.20_30@E09000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d3b4066ab7c57f3ec4f3345" + }, + { + "name": "ons.age.20_30@N09000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a205e54f7630c2ff176e1b" + }, + { + "name": "ons.age.20_30@N09000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cddd6bb5c7d0ad53c59c0b5d" + }, + { + "name": "ons.age.20_30@N09000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0b59cdcc059509724fe9e79" + }, + { + "name": "ons.age.20_30@N09000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14752.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c42467741f8087ece8ce6ec7" + }, + { + "name": "ons.age.20_30@N09000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7df36bc2ed3fa7d4220961" + }, + { + "name": "ons.age.20_30@N09000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11929.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7146fa2b3dae4e96b648450" + }, + { + "name": "ons.age.20_30@N09000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db69e3f46cc34010099f7c1c" + }, + { + "name": "ons.age.20_30@N09000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93c8e0aa3f2ae83f362978f4" + }, + { + "name": "ons.age.20_30@N09000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e24d837a6aac3f37b6ebe2b4" + }, + { + "name": "ons.age.20_30@N09000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_682b1666474ec23f91b441cd" + }, + { + "name": "ons.age.20_30@N09000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a05136d49cacb79fad06e79" + }, + { + "name": "ons.age.20_30@S12000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b43770deeee395fa604fd828" + }, + { + "name": "ons.age.20_30@S12000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d832afdfc90e8b6930cecbf1" + }, + { + "name": "ons.age.20_30@S12000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80bc14ca81155d01850bf4c" + }, + { + "name": "ons.age.20_30@S12000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06b17bd99fd59c3cc932d9d" + }, + { + "name": "ons.age.20_30@S12000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ae09a26274a32424ab61592" + }, + { + "name": "ons.age.20_30@S12000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d89f26ca466afca154028211" + }, + { + "name": "ons.age.20_30@S12000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5afd27a19cc1133f06c3de1b" + }, + { + "name": "ons.age.20_30@S12000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7722e0873b10af255ba1d5f2" + }, + { + "name": "ons.age.20_30@S12000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_757309c7cfe3d54d5c9acac8" + }, + { + "name": "ons.age.20_30@S12000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd1ca86e82674de5da09a3ea" + }, + { + "name": "ons.age.20_30@S12000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6c7553494a35104b7bab97f" + }, + { + "name": "ons.age.20_30@S12000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9af0b9e93fb8ab7370003f67" + }, + { + "name": "ons.age.20_30@S12000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf235e6b03621bc74753255" + }, + { + "name": "ons.age.20_30@S12000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94c7761bd42e968d10698fda" + }, + { + "name": "ons.age.20_30@S12000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d0ba0acfbac2acb35d8bab" + }, + { + "name": "ons.age.20_30@S12000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3b06ad55e579eca7f86494e" + }, + { + "name": "ons.age.20_30@S12000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b0b6cd369e8d6289fe560d4" + }, + { + "name": "ons.age.20_30@S12000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6504a45a9468192a3e13b0b2" + }, + { + "name": "ons.age.20_30@S12000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c12706de5f535c9c99c01f2" + }, + { + "name": "ons.age.20_30@S12000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a7a1bf7197c8d8b1eee9c3" + }, + { + "name": "ons.age.20_30@S12000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2d6b78f9cef3469c4ed4a5b" + }, + { + "name": "ons.age.20_30@S12000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 105829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b117e43d7bb5efa2cca6da" + }, + { + "name": "ons.age.20_30@S12000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf9b7230c4ca69567edd2686" + }, + { + "name": "ons.age.20_30@S12000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaae30c44697d4729971b0da" + }, + { + "name": "ons.age.20_30@S12000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82b3c69d7abc735deddbf545" + }, + { + "name": "ons.age.20_30@S12000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_838f4cb10563783e58e49150" + }, + { + "name": "ons.age.20_30@S12000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6e762714561086674a408ea" + }, + { + "name": "ons.age.20_30@S12000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5615bc2401fcee7297850ee8" + }, + { + "name": "ons.age.20_30@S12000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9f92c62e9e3122b285d54c" + }, + { + "name": "ons.age.20_30@S12000048", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_999d55469a30058e2f2297c7" + }, + { + "name": "ons.age.20_30@S12000049", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 136093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8403ce8157166a669980597" + }, + { + "name": "ons.age.20_30@S12000050", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2254fd8345b00d855787f70a" + }, + { + "name": "ons.age.20_30@W06000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6012.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4825f5e21fa45553f61a3f5" + }, + { + "name": "ons.age.20_30@W06000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dedfcb449b1d5c53b5471dec" + }, + { + "name": "ons.age.20_30@W06000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e21dadde4dbcf79b16220596" + }, + { + "name": "ons.age.20_30@W06000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c7abf3eb3304a7006bafb1b" + }, + { + "name": "ons.age.20_30@W06000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6dcfd98abc66dcbdaa1e510" + }, + { + "name": "ons.age.20_30@W06000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44a4be283c61f5562eced948" + }, + { + "name": "ons.age.20_30@W06000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a2b3f51f0b37e4d8d32b01f" + }, + { + "name": "ons.age.20_30@W06000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_860cbe378a6ee6ed281e56c3" + }, + { + "name": "ons.age.20_30@W06000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff87be1ba0b9913b248de62f" + }, + { + "name": "ons.age.20_30@W06000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b363cfa3f0592ba3c8ff7c34" + }, + { + "name": "ons.age.20_30@W06000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15321.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff32715db656b625c3c33166" + }, + { + "name": "ons.age.20_30@W06000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3046e636bda6b6bd0bc88610" + }, + { + "name": "ons.age.20_30@W06000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0cf0de59e28dd312cb4210d" + }, + { + "name": "ons.age.20_30@W06000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_409bb95747f664934eac387c" + }, + { + "name": "ons.age.20_30@W06000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f27039ac4734e3f4074f97c8" + }, + { + "name": "ons.age.20_30@W06000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dbdfa8a17ff37c5dd33300b" + }, + { + "name": "ons.age.20_30@W06000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c2eed534c5d8b8e1bbb3b3" + }, + { + "name": "ons.age.20_30@W06000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8013986708dbc8fb77b567e" + }, + { + "name": "ons.age.20_30@W06000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17fc3474d81abad9e17483c" + }, + { + "name": "ons.age.20_30@W06000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bce03adee5b0d4a0e696d710" + }, + { + "name": "ons.age.20_30@W06000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd076e398271f67bc5370806" + }, + { + "name": "ons.age.20_30@W06000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2afd75b7e351a844d4b5355c" + } + ] + } + } + }, + "ons.age.30_40": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.30_40@E14001063", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f9bb63ec4c9b3ab506d1d5d" + }, + { + "name": "ons.age.30_40@E14001064", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d249cac72eb3599f4faf786" + }, + { + "name": "ons.age.30_40@E14001065", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e355e518fd4d2b66a1e38541" + }, + { + "name": "ons.age.30_40@E14001066", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12210.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_818c6a66ba0d20eb4e5eb2b8" + }, + { + "name": "ons.age.30_40@E14001067", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d89379aba65f4efcc8688990" + }, + { + "name": "ons.age.30_40@E14001068", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_12c207cf5e2efc3d438c84d5" + }, + { + "name": "ons.age.30_40@E14001069", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa71fb7e8f660c2594ec945" + }, + { + "name": "ons.age.30_40@E14001070", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e3f87ade0bf6fe1ce9c94e4" + }, + { + "name": "ons.age.30_40@E14001071", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5111bf7ef72fa975c2d151b" + }, + { + "name": "ons.age.30_40@E14001072", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15378.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_decb2624d07c812388d6c11d" + }, + { + "name": "ons.age.30_40@E14001073", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf9fc79a764f9db4a9059079" + }, + { + "name": "ons.age.30_40@E14001074", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc0ff9660b6c4298493b3045" + }, + { + "name": "ons.age.30_40@E14001075", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9410b80211856a1e0bcaa56" + }, + { + "name": "ons.age.30_40@E14001076", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba0956625652bd258d23d3cc" + }, + { + "name": "ons.age.30_40@E14001077", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c84f1a31b5c2996881d6cfa0" + }, + { + "name": "ons.age.30_40@E14001078", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52c3f7eba48039661a04324d" + }, + { + "name": "ons.age.30_40@E14001079", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd121953361c74ffd99605e1" + }, + { + "name": "ons.age.30_40@E14001080", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dee72472fcc1dc07b7b902b" + }, + { + "name": "ons.age.30_40@E14001081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1c53c6b12ad06bcaeec38fd" + }, + { + "name": "ons.age.30_40@E14001082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76a21fce6346d843dd2aa91d" + }, + { + "name": "ons.age.30_40@E14001083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b0ecf908c87c530423e4d8" + }, + { + "name": "ons.age.30_40@E14001084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed3184d2ae4ec21f1377e878" + }, + { + "name": "ons.age.30_40@E14001085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae4bc131ea081eec9c35f445" + }, + { + "name": "ons.age.30_40@E14001086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9890b337a2aef8fdeba26ca" + }, + { + "name": "ons.age.30_40@E14001087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ec8881dd298ecb4b545dd1" + }, + { + "name": "ons.age.30_40@E14001088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_becde8b547ce2c93bd9b1eec" + }, + { + "name": "ons.age.30_40@E14001089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee217e091b93a87ac69e4d1" + }, + { + "name": "ons.age.30_40@E14001090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a34a5600665f9eacf2fb1ce" + }, + { + "name": "ons.age.30_40@E14001091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a91cb24539240098f091558" + }, + { + "name": "ons.age.30_40@E14001092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b15fc0faa292bc669ad821" + }, + { + "name": "ons.age.30_40@E14001093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f67e5a024609323e9b3571ee" + }, + { + "name": "ons.age.30_40@E14001094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4be570c5e1cabcf08569923" + }, + { + "name": "ons.age.30_40@E14001095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9739a0e7b1897478a915645" + }, + { + "name": "ons.age.30_40@E14001096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96789030637b763528f74578" + }, + { + "name": "ons.age.30_40@E14001097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6edef2c7304e5f0865d8234d" + }, + { + "name": "ons.age.30_40@E14001098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a83f0e04f60a383e31e123f" + }, + { + "name": "ons.age.30_40@E14001099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb1c0f05c18422e48dd14bce" + }, + { + "name": "ons.age.30_40@E14001100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f877a23c370c90f81e589f7b" + }, + { + "name": "ons.age.30_40@E14001101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1ebb6ba43b49378459e4aef" + }, + { + "name": "ons.age.30_40@E14001102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e2214a6f1d89701195a8c8e" + }, + { + "name": "ons.age.30_40@E14001103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16768.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8459a74c997b041f67b8b06a" + }, + { + "name": "ons.age.30_40@E14001104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c607e3ef4b59b356503df510" + }, + { + "name": "ons.age.30_40@E14001105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee40de193cc54788262462b2" + }, + { + "name": "ons.age.30_40@E14001106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db3f72e4aae0a8e92f96626e" + }, + { + "name": "ons.age.30_40@E14001107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_880ae35987f9c182ec991eb6" + }, + { + "name": "ons.age.30_40@E14001108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58c18cae4fbe0a723a328c1e" + }, + { + "name": "ons.age.30_40@E14001109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5b38c851a80f3ce30190de0" + }, + { + "name": "ons.age.30_40@E14001110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dfc35b2226567940cd1db2" + }, + { + "name": "ons.age.30_40@E14001111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d7c0767cd731080f88a3e9" + }, + { + "name": "ons.age.30_40@E14001112", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13613.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c77b40bdd9361c97505c0f72" + }, + { + "name": "ons.age.30_40@E14001113", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97da21dae9ea7406698a4b8b" + }, + { + "name": "ons.age.30_40@E14001114", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af98c42a6a34455e280cfa07" + }, + { + "name": "ons.age.30_40@E14001115", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72afb277acda7601eadefe3c" + }, + { + "name": "ons.age.30_40@E14001116", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f23400e9e4534758fbf4ecef" + }, + { + "name": "ons.age.30_40@E14001117", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e664bc9d499c117882f1eb6a" + }, + { + "name": "ons.age.30_40@E14001118", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47fbf23c3d3bbd4e95d7a30" + }, + { + "name": "ons.age.30_40@E14001119", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f88df854407e8e1a8df0ad4" + }, + { + "name": "ons.age.30_40@E14001120", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5210372d6aab3a40a2a5bf" + }, + { + "name": "ons.age.30_40@E14001121", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff3ad2b4264c2cda11af7399" + }, + { + "name": "ons.age.30_40@E14001122", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8294487c0e21b3bb994045aa" + }, + { + "name": "ons.age.30_40@E14001123", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fce437081ff5ce663bd12488" + }, + { + "name": "ons.age.30_40@E14001124", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac87fc54e46dfd07bc36dccc" + }, + { + "name": "ons.age.30_40@E14001125", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c25bdbb592e12ef8cb3d317c" + }, + { + "name": "ons.age.30_40@E14001126", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_741437fbc4711d75efb56945" + }, + { + "name": "ons.age.30_40@E14001127", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf27bcffec0757190bc81602" + }, + { + "name": "ons.age.30_40@E14001128", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ebdc9dc19e464520964dcc" + }, + { + "name": "ons.age.30_40@E14001129", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c73f8279579b026d2396afe7" + }, + { + "name": "ons.age.30_40@E14001130", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac93030b13310d119291c0ed" + }, + { + "name": "ons.age.30_40@E14001131", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e918c1e235252d07b64ddd75" + }, + { + "name": "ons.age.30_40@E14001132", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22315.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd480432e20628de339ecad6" + }, + { + "name": "ons.age.30_40@E14001133", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff61a2c2a502e16644814232" + }, + { + "name": "ons.age.30_40@E14001134", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_680eae80666dc1fdaabef34e" + }, + { + "name": "ons.age.30_40@E14001135", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9661b7b80f6da40f7ec513d7" + }, + { + "name": "ons.age.30_40@E14001136", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc7145a2e1bd575f633ac21f" + }, + { + "name": "ons.age.30_40@E14001137", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d424abf72f32ec07e42f52ed" + }, + { + "name": "ons.age.30_40@E14001138", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de98f29536322e1d4ac455eb" + }, + { + "name": "ons.age.30_40@E14001139", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe37f2a6091d6d9f7ab8f061" + }, + { + "name": "ons.age.30_40@E14001140", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa71026a01b107f583c6cbc3" + }, + { + "name": "ons.age.30_40@E14001141", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15083.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d64c2bf2d683b6dcf1583d5c" + }, + { + "name": "ons.age.30_40@E14001142", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e82dbd6ac7a23dcbc03ea01e" + }, + { + "name": "ons.age.30_40@E14001143", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf434aa65b994490312e825c" + }, + { + "name": "ons.age.30_40@E14001144", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_986d0e40f040210815644bb2" + }, + { + "name": "ons.age.30_40@E14001145", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bd2712685a3cf41fff510d8" + }, + { + "name": "ons.age.30_40@E14001146", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb6aa995479d4b74d2af496a" + }, + { + "name": "ons.age.30_40@E14001147", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0042af65116e3eefd5ab2a2" + }, + { + "name": "ons.age.30_40@E14001148", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d4999ddec5e562f77d7cc0" + }, + { + "name": "ons.age.30_40@E14001149", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20616.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89dfcd7d3775d37672d80ae5" + }, + { + "name": "ons.age.30_40@E14001150", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da62c721fdb86a57a83711ae" + }, + { + "name": "ons.age.30_40@E14001151", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9010a5fec331e4fef6269b7" + }, + { + "name": "ons.age.30_40@E14001152", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d91ae3b3d4acb99b50c3b44e" + }, + { + "name": "ons.age.30_40@E14001153", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64d15699b55239e8f2bb6b3c" + }, + { + "name": "ons.age.30_40@E14001154", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62148283ff4bfa74101e3c90" + }, + { + "name": "ons.age.30_40@E14001155", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a9539a7825b3283bba6de6e" + }, + { + "name": "ons.age.30_40@E14001156", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d248f38ecffede20e581b5fa" + }, + { + "name": "ons.age.30_40@E14001157", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3419afd4d89b300a629500be" + }, + { + "name": "ons.age.30_40@E14001158", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1d86d477cb260a8d01859a" + }, + { + "name": "ons.age.30_40@E14001159", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca0ee08556e8277f9ade87d0" + }, + { + "name": "ons.age.30_40@E14001160", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d4dba354466e0a7bbd1bbce" + }, + { + "name": "ons.age.30_40@E14001161", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aa8bf5b13d83f39ab86d888" + }, + { + "name": "ons.age.30_40@E14001162", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10599.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b24694b32a4246f3900f4db7" + }, + { + "name": "ons.age.30_40@E14001163", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a64b01dc8d64ff296231bc0b" + }, + { + "name": "ons.age.30_40@E14001164", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_934c68a472866353121e57e4" + }, + { + "name": "ons.age.30_40@E14001165", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12579.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a05ef77c7536f83832713df" + }, + { + "name": "ons.age.30_40@E14001166", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_544f57e1713735f842cfb4c8" + }, + { + "name": "ons.age.30_40@E14001167", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86385d4b1c61ff742699aa7e" + }, + { + "name": "ons.age.30_40@E14001168", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b9bea016df686cbcfbab0d0" + }, + { + "name": "ons.age.30_40@E14001169", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c9ff825632fbccca36c700a" + }, + { + "name": "ons.age.30_40@E14001170", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e244da42b02f34849a0c6b53" + }, + { + "name": "ons.age.30_40@E14001171", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d10869725d31244a60a35756" + }, + { + "name": "ons.age.30_40@E14001172", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4fd978e7f3316a9d4be3e1" + }, + { + "name": "ons.age.30_40@E14001173", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c1c67c4e83bc6fd9b5bffb8" + }, + { + "name": "ons.age.30_40@E14001174", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e190554f54fb08f7e3e4671e" + }, + { + "name": "ons.age.30_40@E14001175", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9bde03c0918d98d7e1aff7f" + }, + { + "name": "ons.age.30_40@E14001176", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5884f0d45238f349667a7811" + }, + { + "name": "ons.age.30_40@E14001177", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb5ad16bf8c5600da6a89155" + }, + { + "name": "ons.age.30_40@E14001178", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12293.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c2c74bc353235f369668df" + }, + { + "name": "ons.age.30_40@E14001179", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5573dac1af25d708f59ea10a" + }, + { + "name": "ons.age.30_40@E14001180", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5446476ea7ac261e55ce49e" + }, + { + "name": "ons.age.30_40@E14001181", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5faf37f4dad496a461127cb" + }, + { + "name": "ons.age.30_40@E14001182", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64a43403dd5407e49a0ecfb" + }, + { + "name": "ons.age.30_40@E14001183", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f282834efb35d6370f0bac5c" + }, + { + "name": "ons.age.30_40@E14001184", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba49cdb3132c2768e2ce1bce" + }, + { + "name": "ons.age.30_40@E14001185", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_884abe8a061a04dcf85d1619" + }, + { + "name": "ons.age.30_40@E14001186", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b43cde392044d6e6f8bd5d" + }, + { + "name": "ons.age.30_40@E14001187", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2907445a93eae07b725dac1" + }, + { + "name": "ons.age.30_40@E14001188", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56d1bafc42e075dbca617dd0" + }, + { + "name": "ons.age.30_40@E14001189", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bae3e58de00d050932d216d6" + }, + { + "name": "ons.age.30_40@E14001190", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6bb5bb0abcccbced7e38cf1" + }, + { + "name": "ons.age.30_40@E14001191", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4c086b79c62110aaf6ab112" + }, + { + "name": "ons.age.30_40@E14001192", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_884b84fd655de03fabfbc6a0" + }, + { + "name": "ons.age.30_40@E14001193", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb1f22591f19d15b7b7f743" + }, + { + "name": "ons.age.30_40@E14001194", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4509589ef9d48f8f9be238b" + }, + { + "name": "ons.age.30_40@E14001195", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e375ae855aed1c0d4faef175" + }, + { + "name": "ons.age.30_40@E14001196", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f634bf11d121227c1b7d94f5" + }, + { + "name": "ons.age.30_40@E14001197", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_518ed3c6bf48af1cdb9de7a7" + }, + { + "name": "ons.age.30_40@E14001198", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d41cb2a39ce45fb91c8e3d" + }, + { + "name": "ons.age.30_40@E14001199", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47cf08249e87d207300c6932" + }, + { + "name": "ons.age.30_40@E14001200", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d52f4e908a618fd1d8cf548" + }, + { + "name": "ons.age.30_40@E14001201", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c126a608521184814d133826" + }, + { + "name": "ons.age.30_40@E14001202", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3700e0a974814461ee7327bd" + }, + { + "name": "ons.age.30_40@E14001203", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbc590c3234e55b0ac47c663" + }, + { + "name": "ons.age.30_40@E14001204", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fee3c0ebbfea01fb162c6c4" + }, + { + "name": "ons.age.30_40@E14001205", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72eb46a56b3810f12bb22999" + }, + { + "name": "ons.age.30_40@E14001206", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19845.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aad8cbc626f366fc4745e159" + }, + { + "name": "ons.age.30_40@E14001207", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb4bfcbb75d2939f5ceb2ed1" + }, + { + "name": "ons.age.30_40@E14001208", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89f8157f850da3cdc46bd059" + }, + { + "name": "ons.age.30_40@E14001209", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eed61b02f67183231aea28c8" + }, + { + "name": "ons.age.30_40@E14001210", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15456.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_effb322048fcd4c4a755f56b" + }, + { + "name": "ons.age.30_40@E14001211", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12163.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb83f7f65400a4b4aeb8bc99" + }, + { + "name": "ons.age.30_40@E14001212", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b390a910fab41e103088ce6a" + }, + { + "name": "ons.age.30_40@E14001213", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be7de9367fd04724d738e8c6" + }, + { + "name": "ons.age.30_40@E14001214", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8aa4d88280398d8b96b4f9" + }, + { + "name": "ons.age.30_40@E14001215", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bdd88e1438300abecbccc00" + }, + { + "name": "ons.age.30_40@E14001216", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb003f48f31d1c3109fbcc0e" + }, + { + "name": "ons.age.30_40@E14001217", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6819cb2c73a238a0fe145926" + }, + { + "name": "ons.age.30_40@E14001218", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50a43f010cf4632a4435f814" + }, + { + "name": "ons.age.30_40@E14001219", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_522640e6085a07495d3c7743" + }, + { + "name": "ons.age.30_40@E14001220", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5186b1991d12818533c8e730" + }, + { + "name": "ons.age.30_40@E14001221", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5fa9ed94fde0ef156ef0805" + }, + { + "name": "ons.age.30_40@E14001222", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccca745202643b913c3a369c" + }, + { + "name": "ons.age.30_40@E14001223", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a283810211c9a813fc238b3" + }, + { + "name": "ons.age.30_40@E14001224", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2705c9c5d9fb7f482fee2f5" + }, + { + "name": "ons.age.30_40@E14001225", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77900c1a6f8ca95f3cac5647" + }, + { + "name": "ons.age.30_40@E14001226", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd51cdf9acdc872138499981" + }, + { + "name": "ons.age.30_40@E14001227", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13161.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd589d9488afdecfda2878d4" + }, + { + "name": "ons.age.30_40@E14001228", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71c9dd5db420ee0c323c0040" + }, + { + "name": "ons.age.30_40@E14001229", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_564e2a9b1f02ee33fdcb5043" + }, + { + "name": "ons.age.30_40@E14001230", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df1c861597e1effeeaaabd58" + }, + { + "name": "ons.age.30_40@E14001231", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89004ff8963004839aeb4bca" + }, + { + "name": "ons.age.30_40@E14001232", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96555d083ea7bc67da0fe249" + }, + { + "name": "ons.age.30_40@E14001233", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f09d44e9333f4f514d0804f" + }, + { + "name": "ons.age.30_40@E14001234", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a26b5dfde75466c9e864dba" + }, + { + "name": "ons.age.30_40@E14001235", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0e9c235198d2bf3d38c712" + }, + { + "name": "ons.age.30_40@E14001236", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95318700ec343ecd4531fab7" + }, + { + "name": "ons.age.30_40@E14001237", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_978f978b02055e11edfcf602" + }, + { + "name": "ons.age.30_40@E14001238", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18629.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6df9ac906c79d48b2459cc4f" + }, + { + "name": "ons.age.30_40@E14001239", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32de69e8544a27cd0e301e7e" + }, + { + "name": "ons.age.30_40@E14001240", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bfbea9a86885759842c30d0" + }, + { + "name": "ons.age.30_40@E14001241", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2dc77a268a72e7cef6b7e6a" + }, + { + "name": "ons.age.30_40@E14001242", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb52d1e2135c898f7712b3ef" + }, + { + "name": "ons.age.30_40@E14001243", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5cd7e096f7cb179bc60e90a" + }, + { + "name": "ons.age.30_40@E14001244", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f989f6257e7893d4aed09b17" + }, + { + "name": "ons.age.30_40@E14001245", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a29f17d5ce99b08ee3ba1fa5" + }, + { + "name": "ons.age.30_40@E14001246", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e388bab0a3d7bf788c003dcf" + }, + { + "name": "ons.age.30_40@E14001247", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1abc74f5822077f04805f06" + }, + { + "name": "ons.age.30_40@E14001248", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_293d0630d5d9bf0f1eccc534" + }, + { + "name": "ons.age.30_40@E14001249", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aac2d941efcc4eb57146abc6" + }, + { + "name": "ons.age.30_40@E14001250", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13210.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5e60111112378abe366b758" + }, + { + "name": "ons.age.30_40@E14001251", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a2240bb2c635680bbf812e4" + }, + { + "name": "ons.age.30_40@E14001252", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fc302a67d3a918984a4d57" + }, + { + "name": "ons.age.30_40@E14001253", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf6c955f4bdbfa4153c1d97" + }, + { + "name": "ons.age.30_40@E14001254", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b12a70201fdb5d14c869fa32" + }, + { + "name": "ons.age.30_40@E14001255", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_944e01c1fa055518193a5c81" + }, + { + "name": "ons.age.30_40@E14001256", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acb8abf93bd7d253ca3289c7" + }, + { + "name": "ons.age.30_40@E14001257", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96a3f077af9b07659e98bea1" + }, + { + "name": "ons.age.30_40@E14001258", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9ac1b9df947431ff9ef4d92" + }, + { + "name": "ons.age.30_40@E14001259", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9571413d97aededcf164600" + }, + { + "name": "ons.age.30_40@E14001260", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6bb666dd2742ff097180b00" + }, + { + "name": "ons.age.30_40@E14001261", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b41762f5ace8c38fb751625c" + }, + { + "name": "ons.age.30_40@E14001262", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15661.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb9b8a28cfa340e136460fc2" + }, + { + "name": "ons.age.30_40@E14001263", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85d0f4a3375c4ba0abd8c9f3" + }, + { + "name": "ons.age.30_40@E14001264", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c90b75d95c16d559d97ef7cf" + }, + { + "name": "ons.age.30_40@E14001265", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf42cfcf57340958c86b061b" + }, + { + "name": "ons.age.30_40@E14001266", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13777.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3dbdb5d859e054aeb7a2232" + }, + { + "name": "ons.age.30_40@E14001267", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0a5c7e6f403bfec6bee69f8" + }, + { + "name": "ons.age.30_40@E14001268", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad8c57dac3d919dbdde12ffb" + }, + { + "name": "ons.age.30_40@E14001269", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8dbc29b7e09aca16f8a7fa0" + }, + { + "name": "ons.age.30_40@E14001270", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d039653d063d961edc31f1fa" + }, + { + "name": "ons.age.30_40@E14001271", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21439.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7187ac92ab85bfae9850a648" + }, + { + "name": "ons.age.30_40@E14001272", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97119b8be833ec50c8bff03" + }, + { + "name": "ons.age.30_40@E14001273", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11693.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb45bc0d5cb920596953d827" + }, + { + "name": "ons.age.30_40@E14001274", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f663d62158778dda56b425" + }, + { + "name": "ons.age.30_40@E14001275", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8441065dc8d869b4d479e6e2" + }, + { + "name": "ons.age.30_40@E14001276", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73c54c64b2d02516176ef4f9" + }, + { + "name": "ons.age.30_40@E14001277", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3003b05cbe736cedf08100c" + }, + { + "name": "ons.age.30_40@E14001278", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05bef4aeac257039da614e4" + }, + { + "name": "ons.age.30_40@E14001279", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3a7af280ea925b866d25c08" + }, + { + "name": "ons.age.30_40@E14001280", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba0ed7f8455caebf43496cb0" + }, + { + "name": "ons.age.30_40@E14001281", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_914179d51f6e1527531a998d" + }, + { + "name": "ons.age.30_40@E14001282", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c5fab999536661f220a9260" + }, + { + "name": "ons.age.30_40@E14001283", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bb559fac7f9a26658269274" + }, + { + "name": "ons.age.30_40@E14001284", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55821360ad7f9d8efd5c3936" + }, + { + "name": "ons.age.30_40@E14001285", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32598b210154b04ad46ce692" + }, + { + "name": "ons.age.30_40@E14001286", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af1c729c9b0e093afa0a1819" + }, + { + "name": "ons.age.30_40@E14001287", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8afe1248d9980ff3d5f19c87" + }, + { + "name": "ons.age.30_40@E14001288", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9614af90404489cdd9a15b62" + }, + { + "name": "ons.age.30_40@E14001289", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba2d388e06eb6dec10318c5d" + }, + { + "name": "ons.age.30_40@E14001290", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18172187ea650c558f396a7" + }, + { + "name": "ons.age.30_40@E14001291", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8814.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc312a52c530efa9ce561b27" + }, + { + "name": "ons.age.30_40@E14001292", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1f6a5dd86f178185b512a88" + }, + { + "name": "ons.age.30_40@E14001293", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_327f6c6a93448d73d5383b14" + }, + { + "name": "ons.age.30_40@E14001294", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63b51310160f7d890e3a8e50" + }, + { + "name": "ons.age.30_40@E14001295", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a37c8d3095c58fe6773b378d" + }, + { + "name": "ons.age.30_40@E14001296", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa09f9736d97feee950d60d2" + }, + { + "name": "ons.age.30_40@E14001297", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a1194125d9be481329d9e17" + }, + { + "name": "ons.age.30_40@E14001298", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16281.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63b83b0164493dfba71de066" + }, + { + "name": "ons.age.30_40@E14001299", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13763.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1b368e8c38d6f9f6675fc00" + }, + { + "name": "ons.age.30_40@E14001300", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1b32a78b0e38f38c48695fb" + }, + { + "name": "ons.age.30_40@E14001301", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca3c163d4d865c2e9931832" + }, + { + "name": "ons.age.30_40@E14001302", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f502225b6ff40b762fec4842" + }, + { + "name": "ons.age.30_40@E14001303", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1949a99836848214e7be5ee" + }, + { + "name": "ons.age.30_40@E14001304", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7280104435e3753a0c0cdbb0" + }, + { + "name": "ons.age.30_40@E14001305", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fc4de6602265ed45d8b829a" + }, + { + "name": "ons.age.30_40@E14001306", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b55af13a66edfe15f934afe3" + }, + { + "name": "ons.age.30_40@E14001307", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96bbacb8133eb8bd09095b1e" + }, + { + "name": "ons.age.30_40@E14001308", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57d29df194d1fb863e90d7d" + }, + { + "name": "ons.age.30_40@E14001309", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39b6dcdac074813b673b6559" + }, + { + "name": "ons.age.30_40@E14001310", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa890754243f429b0e077701" + }, + { + "name": "ons.age.30_40@E14001311", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_583ea10476674434d7272479" + }, + { + "name": "ons.age.30_40@E14001312", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95c1acd9631f15ebd61c4951" + }, + { + "name": "ons.age.30_40@E14001313", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea66531f5d8a6c4bdc9f5e35" + }, + { + "name": "ons.age.30_40@E14001314", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebaae83fa056d2b1c95e3839" + }, + { + "name": "ons.age.30_40@E14001315", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ad795f4109338b20151a378" + }, + { + "name": "ons.age.30_40@E14001316", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c765069ad2de799be5a354a2" + }, + { + "name": "ons.age.30_40@E14001317", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffaec39c93c21cde9e29125e" + }, + { + "name": "ons.age.30_40@E14001318", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33a72d306f123584d558db2" + }, + { + "name": "ons.age.30_40@E14001319", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec06500495ade078a6d38ec5" + }, + { + "name": "ons.age.30_40@E14001320", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_67db7ea1d53e4d8be5e0426b" + }, + { + "name": "ons.age.30_40@E14001321", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9b81f647624201bddccf063" + }, + { + "name": "ons.age.30_40@E14001322", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_599450467d0f3ac4c4d4d788" + }, + { + "name": "ons.age.30_40@E14001323", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83edb6ad0f7d5fa30a39eff" + }, + { + "name": "ons.age.30_40@E14001324", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_859430a90cc2cd0c27433605" + }, + { + "name": "ons.age.30_40@E14001325", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3565a7e700c900a5695da81e" + }, + { + "name": "ons.age.30_40@E14001326", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f32d675997784488bddba38d" + }, + { + "name": "ons.age.30_40@E14001327", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f7d97c2c9120e2341b88926" + }, + { + "name": "ons.age.30_40@E14001328", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e9bf8f2fe531fb533b76b78" + }, + { + "name": "ons.age.30_40@E14001329", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17378.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e75d847a96d76a86f29db1fd" + }, + { + "name": "ons.age.30_40@E14001330", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10107.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50d684edeb15714b07baa7d9" + }, + { + "name": "ons.age.30_40@E14001331", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1a97e197a5352bab2115b2" + }, + { + "name": "ons.age.30_40@E14001332", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb99f5f2c56a92167e2ad7e4" + }, + { + "name": "ons.age.30_40@E14001333", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd78fcb4e4d46108dfe2cbbd" + }, + { + "name": "ons.age.30_40@E14001334", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7a34eb3aec4c64468907a56" + }, + { + "name": "ons.age.30_40@E14001335", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4b2ea27d504102b1c7da181" + }, + { + "name": "ons.age.30_40@E14001336", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4cbda933c770348f1fc2872" + }, + { + "name": "ons.age.30_40@E14001337", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0d7d5a8b3cf5a4ff466b680" + }, + { + "name": "ons.age.30_40@E14001338", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0aece89da06b1bdf6b03417f" + }, + { + "name": "ons.age.30_40@E14001339", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88053a0a267170b92c404d94" + }, + { + "name": "ons.age.30_40@E14001340", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fcd253e7f990ca9eefe12c7" + }, + { + "name": "ons.age.30_40@E14001341", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a1c1f8d8970b36e453f3ab" + }, + { + "name": "ons.age.30_40@E14001342", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6c281b3aa8b0a76b4fc214f" + }, + { + "name": "ons.age.30_40@E14001343", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95fcbed0b88bcf495dfbf6d8" + }, + { + "name": "ons.age.30_40@E14001344", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0071ae52f707bdc0851da61" + }, + { + "name": "ons.age.30_40@E14001345", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_945d52d36d72c9f2e21e7257" + }, + { + "name": "ons.age.30_40@E14001346", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1c0e8a9bbc49ed33a107185" + }, + { + "name": "ons.age.30_40@E14001347", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a8ba65cb3c719e0c27e725" + }, + { + "name": "ons.age.30_40@E14001348", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8cf66ca3b97e8cd12870f46" + }, + { + "name": "ons.age.30_40@E14001349", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4af9a6a884ef1450bb286b61" + }, + { + "name": "ons.age.30_40@E14001350", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_940b4ac1415e110af06a7a8b" + }, + { + "name": "ons.age.30_40@E14001351", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccc6849ed195406710839350" + }, + { + "name": "ons.age.30_40@E14001352", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_922464501c82b3e4d1d53fcd" + }, + { + "name": "ons.age.30_40@E14001353", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad93c83540fdcc9a01d862d6" + }, + { + "name": "ons.age.30_40@E14001354", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ff4ce83e39c990db2871b02" + }, + { + "name": "ons.age.30_40@E14001355", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4b0e669bf814ed7d1fc8cb" + }, + { + "name": "ons.age.30_40@E14001356", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c9acf4de6f29651d1912a7" + }, + { + "name": "ons.age.30_40@E14001357", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ea9e8f4a6774bbe8704637" + }, + { + "name": "ons.age.30_40@E14001358", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1329c155e45434ca0594a2b" + }, + { + "name": "ons.age.30_40@E14001359", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acad0db86c6eb26922f47c2c" + }, + { + "name": "ons.age.30_40@E14001360", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f94391fa8368f193267466" + }, + { + "name": "ons.age.30_40@E14001361", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a48272801c376be4301c518f" + }, + { + "name": "ons.age.30_40@E14001362", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1febc4b6756536a703e456a" + }, + { + "name": "ons.age.30_40@E14001363", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9b16ea1d96a92a04b8ca8e7" + }, + { + "name": "ons.age.30_40@E14001364", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e34f18d8225c952d38b8de2" + }, + { + "name": "ons.age.30_40@E14001365", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11310.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81ceaa0d65c17ec5a055f150" + }, + { + "name": "ons.age.30_40@E14001366", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3509aa50dd723e36a01c726" + }, + { + "name": "ons.age.30_40@E14001367", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a757b7097f018b96be1f439c" + }, + { + "name": "ons.age.30_40@E14001368", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93bb117ac1745b1f3ab3814" + }, + { + "name": "ons.age.30_40@E14001369", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1b96c3227f7c00a3ac0dd8" + }, + { + "name": "ons.age.30_40@E14001370", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb4962d8e358ee0b7cbc04c7" + }, + { + "name": "ons.age.30_40@E14001371", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fceb5517a8991f335da435c4" + }, + { + "name": "ons.age.30_40@E14001372", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aeecf576df51d24a2a3a02b6" + }, + { + "name": "ons.age.30_40@E14001373", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e1571d7fea63bc0245b5dac" + }, + { + "name": "ons.age.30_40@E14001374", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f150dae321150f9fe91a9bb7" + }, + { + "name": "ons.age.30_40@E14001375", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a15db2c328c7710f83471e" + }, + { + "name": "ons.age.30_40@E14001376", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e7b42cbc34e5aabdd51c871" + }, + { + "name": "ons.age.30_40@E14001377", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3a17aa645c66529aaa0731d" + }, + { + "name": "ons.age.30_40@E14001378", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70890bb3c0c5a0cf0730a7f" + }, + { + "name": "ons.age.30_40@E14001379", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2044a92d79dbb6e20c42e86" + }, + { + "name": "ons.age.30_40@E14001380", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b711e1ff9fc39636a308f181" + }, + { + "name": "ons.age.30_40@E14001381", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f461b904f9bcd2137466e685" + }, + { + "name": "ons.age.30_40@E14001382", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e636cf4af88a1e28ca9429db" + }, + { + "name": "ons.age.30_40@E14001383", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_676c831244a8fd8c8d1656fe" + }, + { + "name": "ons.age.30_40@E14001384", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85af12aedfe8a6bf52966d2f" + }, + { + "name": "ons.age.30_40@E14001385", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecf0875011791b00b3945581" + }, + { + "name": "ons.age.30_40@E14001386", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0b4f40a7c3515ec4d64868" + }, + { + "name": "ons.age.30_40@E14001387", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b449cf369798da2dff744f06" + }, + { + "name": "ons.age.30_40@E14001388", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_855d95dd394ee9b39139bbc1" + }, + { + "name": "ons.age.30_40@E14001389", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e36fc4c16355307586a139f0" + }, + { + "name": "ons.age.30_40@E14001390", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f273a04f7677284298653e46" + }, + { + "name": "ons.age.30_40@E14001391", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40d8e97aa6ddc3a7af8abad1" + }, + { + "name": "ons.age.30_40@E14001392", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a9c8603ab42415d0672a54d" + }, + { + "name": "ons.age.30_40@E14001393", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1afe2c041595b31eac7fcc" + }, + { + "name": "ons.age.30_40@E14001394", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12582.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b426e696acf4cabb8bbe3841" + }, + { + "name": "ons.age.30_40@E14001395", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b15339ac95801f2cb249588c" + }, + { + "name": "ons.age.30_40@E14001396", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57bb847ff8be7383b09bcce8" + }, + { + "name": "ons.age.30_40@E14001397", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ce01578c01a5505cb99bc82" + }, + { + "name": "ons.age.30_40@E14001398", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaae50c2a09af54254293980" + }, + { + "name": "ons.age.30_40@E14001399", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51f2fd9d1ff295b4539d6fb5" + }, + { + "name": "ons.age.30_40@E14001400", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4253faf4d94556b87d1b18e" + }, + { + "name": "ons.age.30_40@E14001401", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bee3d894090c0d46918cfc46" + }, + { + "name": "ons.age.30_40@E14001402", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a59d0fc729e0a562b3f3b267" + }, + { + "name": "ons.age.30_40@E14001403", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adbbdd82e98f2a94d50a7442" + }, + { + "name": "ons.age.30_40@E14001404", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d02bf61b5c8c009008f5741d" + }, + { + "name": "ons.age.30_40@E14001405", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12125.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b53889ffec8bfc7652504016" + }, + { + "name": "ons.age.30_40@E14001406", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c16f0447ab4a12eaf0235c8" + }, + { + "name": "ons.age.30_40@E14001407", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78620e23414a96544730fb9" + }, + { + "name": "ons.age.30_40@E14001408", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dde6bd8496148367ddfed72f" + }, + { + "name": "ons.age.30_40@E14001409", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac09e10bb63ad276586b2d26" + }, + { + "name": "ons.age.30_40@E14001410", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dea718b8185606429c995ad0" + }, + { + "name": "ons.age.30_40@E14001411", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9edc735c0da385d1d6d2d750" + }, + { + "name": "ons.age.30_40@E14001412", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f18cfaa20cde4afd92bb9c3" + }, + { + "name": "ons.age.30_40@E14001413", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f620826d2bdba4f8991aee4e" + }, + { + "name": "ons.age.30_40@E14001414", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_987ff2835b1fec9b8ad71679" + }, + { + "name": "ons.age.30_40@E14001415", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20e7dac31953f8463475310" + }, + { + "name": "ons.age.30_40@E14001416", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93e0d1cc7d51dbdcbaf678e" + }, + { + "name": "ons.age.30_40@E14001417", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db2fc1b1122a4d223aea1f23" + }, + { + "name": "ons.age.30_40@E14001418", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43e12b77b6a2e694c9192af4" + }, + { + "name": "ons.age.30_40@E14001419", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdf0badd380a28679c659c2f" + }, + { + "name": "ons.age.30_40@E14001420", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b7fd6697f457b1545642b3a" + }, + { + "name": "ons.age.30_40@E14001421", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83384dde19d16c84f4add18" + }, + { + "name": "ons.age.30_40@E14001422", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f437d4ead657be783cba708b" + }, + { + "name": "ons.age.30_40@E14001423", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bc3907b1535a2767ebd5e5f" + }, + { + "name": "ons.age.30_40@E14001424", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e170999ea65c0d54fdb1a10" + }, + { + "name": "ons.age.30_40@E14001425", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85ff44df7b019ca0729ba6a" + }, + { + "name": "ons.age.30_40@E14001426", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5bed61913dbca5e472f56c7" + }, + { + "name": "ons.age.30_40@E14001427", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17590.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e28c349abb2d53d7c4858ef7" + }, + { + "name": "ons.age.30_40@E14001428", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb0b1f31691cbcf374077cf" + }, + { + "name": "ons.age.30_40@E14001429", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62db1ac5069d81457f77e55f" + }, + { + "name": "ons.age.30_40@E14001430", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2d37ecce9a937080791ce79" + }, + { + "name": "ons.age.30_40@E14001431", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_308b5ce5c3943a6679ec2f7b" + }, + { + "name": "ons.age.30_40@E14001432", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfc126c3b0214220dbfbb762" + }, + { + "name": "ons.age.30_40@E14001433", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65b25272b7bf6b66d7ff4a0c" + }, + { + "name": "ons.age.30_40@E14001434", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_646daf5f46c9c91d114aefb0" + }, + { + "name": "ons.age.30_40@E14001435", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e63ad77023214b3a326b3ab6" + }, + { + "name": "ons.age.30_40@E14001436", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c21436abbc1579b794bdb47e" + }, + { + "name": "ons.age.30_40@E14001437", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12286.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83ceab0b3810d2c4cd8b866" + }, + { + "name": "ons.age.30_40@E14001438", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22397.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed21b1ac04dad025cfd53d63" + }, + { + "name": "ons.age.30_40@E14001439", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efccdf197e21261232fb97ef" + }, + { + "name": "ons.age.30_40@E14001440", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4256e0e63b56afd3026e6737" + }, + { + "name": "ons.age.30_40@E14001441", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72c684e95193cada4a595810" + }, + { + "name": "ons.age.30_40@E14001442", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b742d65fd7429b6b6eb9fb5" + }, + { + "name": "ons.age.30_40@E14001443", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d243edf54b1b76d20d6605d" + }, + { + "name": "ons.age.30_40@E14001444", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf426c34d84cf2877d74821e" + }, + { + "name": "ons.age.30_40@E14001445", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d51ad85e61ff9ecb0868991" + }, + { + "name": "ons.age.30_40@E14001446", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ce4d88bd8b40ab5a57b7c1" + }, + { + "name": "ons.age.30_40@E14001447", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3fd9706fcdce1b6a472876f" + }, + { + "name": "ons.age.30_40@E14001448", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeaa14c3266028de3417828a" + }, + { + "name": "ons.age.30_40@E14001449", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e422d540e8d4549dfb20b7" + }, + { + "name": "ons.age.30_40@E14001450", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c54f9d83c1ba1abc0bc3795a" + }, + { + "name": "ons.age.30_40@E14001451", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2252c64058e8d0fdf78b33b" + }, + { + "name": "ons.age.30_40@E14001452", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_666e65d2a3cc2d8c9994f5fb" + }, + { + "name": "ons.age.30_40@E14001453", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6423bfc5b2b89e7e3d7c1057" + }, + { + "name": "ons.age.30_40@E14001454", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbecb0f9cd920ad4190d65b5" + }, + { + "name": "ons.age.30_40@E14001455", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1d74e89f03b9cb2c0dd24c9" + }, + { + "name": "ons.age.30_40@E14001456", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_903fe0a6f57547c2e752d8c7" + }, + { + "name": "ons.age.30_40@E14001457", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12939.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_480c1f631c26942911a73389" + }, + { + "name": "ons.age.30_40@E14001458", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbf7e9db19c26fee01259ca8" + }, + { + "name": "ons.age.30_40@E14001459", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbeff56d05d64790e27a10c0" + }, + { + "name": "ons.age.30_40@E14001460", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9255c013454ca96f239a2def" + }, + { + "name": "ons.age.30_40@E14001461", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b60cfd074949cd1f40050a9e" + }, + { + "name": "ons.age.30_40@E14001462", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a5fdb608f366fd8db4cf71a" + }, + { + "name": "ons.age.30_40@E14001463", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d298b3f58e7ea0ea67d25e81" + }, + { + "name": "ons.age.30_40@E14001464", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47c0612dbea7e1a3322ef88e" + }, + { + "name": "ons.age.30_40@E14001465", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de17d759bb1d4188d6f88d67" + }, + { + "name": "ons.age.30_40@E14001466", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df9485ae46e013b201656b32" + }, + { + "name": "ons.age.30_40@E14001467", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5638d05ec2fd446f525269f" + }, + { + "name": "ons.age.30_40@E14001468", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da5f571937ce2581d2e1ae87" + }, + { + "name": "ons.age.30_40@E14001469", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdb497e2b78f79ec0facfc1c" + }, + { + "name": "ons.age.30_40@E14001470", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6d7371f2c620d284ddbec23" + }, + { + "name": "ons.age.30_40@E14001471", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14882.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f2bb14420de47587fa6c6c6" + }, + { + "name": "ons.age.30_40@E14001472", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eba804fe1c6a171c1c9cfe7" + }, + { + "name": "ons.age.30_40@E14001473", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e48cc6d51d515056f934304" + }, + { + "name": "ons.age.30_40@E14001474", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16721.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6d47e2cfd138fedc5fbc257" + }, + { + "name": "ons.age.30_40@E14001475", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9763.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdf81e3c1d528e104e63697e" + }, + { + "name": "ons.age.30_40@E14001476", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d28170aa55dd26ec6ae3bf0" + }, + { + "name": "ons.age.30_40@E14001477", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe966696bacf540046e7dfa2" + }, + { + "name": "ons.age.30_40@E14001478", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e862577d6693fb8a4c2f3f7f" + }, + { + "name": "ons.age.30_40@E14001479", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbc7d98216262002a060c96a" + }, + { + "name": "ons.age.30_40@E14001480", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d597b75d0900fa6ef9cdaf4e" + }, + { + "name": "ons.age.30_40@E14001481", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8da352020d37ce24e97b985" + }, + { + "name": "ons.age.30_40@E14001482", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efaff270027f2b693b9b81ae" + }, + { + "name": "ons.age.30_40@E14001483", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e38ac65a4da3d042d6ca75d" + }, + { + "name": "ons.age.30_40@E14001484", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2db38f911471bfa97e99d8cb" + }, + { + "name": "ons.age.30_40@E14001485", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_879d658c58773741c3929e13" + }, + { + "name": "ons.age.30_40@E14001486", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5afae717be1db1abad00b42d" + }, + { + "name": "ons.age.30_40@E14001487", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d14393fcd3d449c801d355a7" + }, + { + "name": "ons.age.30_40@E14001488", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e34a2c74d44cfb3e1350898e" + }, + { + "name": "ons.age.30_40@E14001489", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccc252293a7892bd17e2d59d" + }, + { + "name": "ons.age.30_40@E14001490", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f92da49ba91829838e2f3344" + }, + { + "name": "ons.age.30_40@E14001491", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d92dc2e6b8aac82f8cf79a3a" + }, + { + "name": "ons.age.30_40@E14001492", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b5bd8def10a15fe945b2a2c" + }, + { + "name": "ons.age.30_40@E14001493", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56f69dc40858c1bd4bba9b70" + }, + { + "name": "ons.age.30_40@E14001494", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6770fbf6092396c3aac7458c" + }, + { + "name": "ons.age.30_40@E14001495", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8531c4a2ba0bee0590126e09" + }, + { + "name": "ons.age.30_40@E14001496", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bb8d8408863ea8b0f174a3c" + }, + { + "name": "ons.age.30_40@E14001497", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5a762819af0034e3cab303e" + }, + { + "name": "ons.age.30_40@E14001498", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12553.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f427f134fb172e3a47abdebb" + }, + { + "name": "ons.age.30_40@E14001499", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6d829a9d92184c2e7bf082" + }, + { + "name": "ons.age.30_40@E14001500", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_353caa0396870a1901a4d111" + }, + { + "name": "ons.age.30_40@E14001501", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44b59498ee675706d43288d1" + }, + { + "name": "ons.age.30_40@E14001502", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f25085f379cd8767b2c51a4c" + }, + { + "name": "ons.age.30_40@E14001503", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b91bcee18b13dfd26ea2a9c2" + }, + { + "name": "ons.age.30_40@E14001504", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_631984cb2837b514e5eae15b" + }, + { + "name": "ons.age.30_40@E14001505", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e70a49db96eb6bf2a5ffaed4" + }, + { + "name": "ons.age.30_40@E14001506", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74e55fde94a410c0991abe79" + }, + { + "name": "ons.age.30_40@E14001507", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb532c140bbe3b1a48f2542" + }, + { + "name": "ons.age.30_40@E14001508", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eef041b4563ade31f4fe30bd" + }, + { + "name": "ons.age.30_40@E14001509", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6e7dd3558c4caad9bafa3d5" + }, + { + "name": "ons.age.30_40@E14001510", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e896946719b3169aa0e28dc" + }, + { + "name": "ons.age.30_40@E14001511", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7afe8ae946749dbaa0b172a6" + }, + { + "name": "ons.age.30_40@E14001512", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e55f7cd24cc8acf8026f331f" + }, + { + "name": "ons.age.30_40@E14001513", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_417956b8077f2cc322aac56f" + }, + { + "name": "ons.age.30_40@E14001514", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_652516c5f2cbfd60620205fb" + }, + { + "name": "ons.age.30_40@E14001515", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8936954503c903150ce6601c" + }, + { + "name": "ons.age.30_40@E14001516", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ee8d93b65f2b88232ce2a76" + }, + { + "name": "ons.age.30_40@E14001517", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85f6da341d8fcb1ea225b686" + }, + { + "name": "ons.age.30_40@E14001518", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2b78774431122e7d13084ee" + }, + { + "name": "ons.age.30_40@E14001519", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cd65ac1ce993bbec1ac7269" + }, + { + "name": "ons.age.30_40@E14001520", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b51fb8edc470ca7b83c3ba9f" + }, + { + "name": "ons.age.30_40@E14001521", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c39b7c534d5ae305cb2fbd5a" + }, + { + "name": "ons.age.30_40@E14001522", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8004c96cb927187d88d9909e" + }, + { + "name": "ons.age.30_40@E14001523", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b326c772e7e3f6eeff090621" + }, + { + "name": "ons.age.30_40@E14001524", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d96a6da156b929259326c262" + }, + { + "name": "ons.age.30_40@E14001525", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_598a2a404f1da2746321d632" + }, + { + "name": "ons.age.30_40@E14001526", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11354.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f071eb6c84f2cf8fd8c045d0" + }, + { + "name": "ons.age.30_40@E14001527", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22034.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74e843f81dd5fb837c940b8a" + }, + { + "name": "ons.age.30_40@E14001528", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4b5dcffebb3c00403ca5beb" + }, + { + "name": "ons.age.30_40@E14001529", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c1d7cfd8e4488a0a1024ea5" + }, + { + "name": "ons.age.30_40@E14001530", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e828915ca4df77a157f765d7" + }, + { + "name": "ons.age.30_40@E14001531", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15941.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bd76bc5f8f8d6fd9e65cf2c" + }, + { + "name": "ons.age.30_40@E14001532", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4289bfa88a4e2fdae9d0a3f" + }, + { + "name": "ons.age.30_40@E14001533", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4382608aee9a93315f3811" + }, + { + "name": "ons.age.30_40@E14001534", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c891d0b8bb79e96bacf1f9" + }, + { + "name": "ons.age.30_40@E14001535", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a96e9b6696b3aa99650f41e5" + }, + { + "name": "ons.age.30_40@E14001536", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee5e60e315f8abcc9514ad26" + }, + { + "name": "ons.age.30_40@E14001537", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4468fd7ee0dae0eff39cc61" + }, + { + "name": "ons.age.30_40@E14001538", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56196e44f53bff1cdf908b1" + }, + { + "name": "ons.age.30_40@E14001539", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a843722a683c080f626d6b3c" + }, + { + "name": "ons.age.30_40@E14001540", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62958a41cbd9a3573d992359" + }, + { + "name": "ons.age.30_40@E14001541", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a42847f300c537d531132e99" + }, + { + "name": "ons.age.30_40@E14001542", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13470.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dee7e3c1c4fd779d8e206144" + }, + { + "name": "ons.age.30_40@E14001543", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6a29400f2753320d05d916a" + }, + { + "name": "ons.age.30_40@E14001544", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed4a8a186dce8aed4825e6dd" + }, + { + "name": "ons.age.30_40@E14001545", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13130.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3304ad7d785e253702eadf3" + }, + { + "name": "ons.age.30_40@E14001546", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1c80d9613d9270591e14076" + }, + { + "name": "ons.age.30_40@E14001547", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f17762d7cc378b5c40ebb95" + }, + { + "name": "ons.age.30_40@E14001548", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75eb54b4d16335752be8bab4" + }, + { + "name": "ons.age.30_40@E14001549", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af43fe93a527b6ae16f52323" + }, + { + "name": "ons.age.30_40@E14001550", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_939fc858741ec837895909fd" + }, + { + "name": "ons.age.30_40@E14001551", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d243c852cdb369fb8ea01206" + }, + { + "name": "ons.age.30_40@E14001552", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34748df47965e286cdc47068" + }, + { + "name": "ons.age.30_40@E14001553", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e31704d2b7f0d7070a583684" + }, + { + "name": "ons.age.30_40@E14001554", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc5365f7955631d223a43bb5" + }, + { + "name": "ons.age.30_40@E14001555", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af4d39a1c3af8d77c9b7dcf7" + }, + { + "name": "ons.age.30_40@E14001556", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92ee4fb1089f11f56073fa7d" + }, + { + "name": "ons.age.30_40@E14001557", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47494c8a2fd6e1395c397eb9" + }, + { + "name": "ons.age.30_40@E14001558", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_986c0aad6e0727185e099f88" + }, + { + "name": "ons.age.30_40@E14001559", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a82fa5e10060398a24781508" + }, + { + "name": "ons.age.30_40@E14001560", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7167180e6b901529b8fd9593" + }, + { + "name": "ons.age.30_40@E14001561", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb17093cd3ef66422dc2c45a" + }, + { + "name": "ons.age.30_40@E14001562", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec655739e75f1cba816bf5f" + }, + { + "name": "ons.age.30_40@E14001563", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26495.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b930cfbeb6cf67164212a69a" + }, + { + "name": "ons.age.30_40@E14001564", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9035cf1319b4861b176a5547" + }, + { + "name": "ons.age.30_40@E14001565", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5bb03d0417885375240f3da" + }, + { + "name": "ons.age.30_40@E14001566", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fd1e8c4639a14a7bf0e27b5" + }, + { + "name": "ons.age.30_40@E14001567", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12596.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a8511e80821f3a8f9e37ab" + }, + { + "name": "ons.age.30_40@E14001568", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19647.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f165bab6b2a45044132b33" + }, + { + "name": "ons.age.30_40@E14001569", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93b3eb018041de57ea615b0d" + }, + { + "name": "ons.age.30_40@E14001570", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0991214ef8d6e1ab6b3178b" + }, + { + "name": "ons.age.30_40@E14001571", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba56d796f8b40d60c07daebd" + }, + { + "name": "ons.age.30_40@E14001572", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05f5fa824ab87ba14c3caba" + }, + { + "name": "ons.age.30_40@E14001573", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17010.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f81626c150dfcad77207c301" + }, + { + "name": "ons.age.30_40@E14001574", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c548bb05b847b5fc06718d4" + }, + { + "name": "ons.age.30_40@E14001575", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c9c7d8eea219b2376209e6" + }, + { + "name": "ons.age.30_40@E14001576", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aff7f64dc0fb76c36a80b12" + }, + { + "name": "ons.age.30_40@E14001577", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acd0430950d1a6cca933d554" + }, + { + "name": "ons.age.30_40@E14001578", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17936.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fc59fa0affc1bfc538efd40" + }, + { + "name": "ons.age.30_40@E14001579", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d67431001726117ebbeb160" + }, + { + "name": "ons.age.30_40@E14001580", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2e564559873060387662391" + }, + { + "name": "ons.age.30_40@E14001581", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec2c4ea30f6ecd7d969af4d" + }, + { + "name": "ons.age.30_40@E14001582", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f035a36dda8b2e7a1434c06" + }, + { + "name": "ons.age.30_40@E14001583", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_36d2ecfc21dbbccb038af4bf" + }, + { + "name": "ons.age.30_40@E14001584", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba648c4631a7393ecc1a5884" + }, + { + "name": "ons.age.30_40@E14001585", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfd1a57982cf43f531c1b50b" + }, + { + "name": "ons.age.30_40@E14001586", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63978c91bd67ae05935998a" + }, + { + "name": "ons.age.30_40@E14001587", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edd8a534972ed21428b47a51" + }, + { + "name": "ons.age.30_40@E14001588", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c7933416e2db07a3140b3c1" + }, + { + "name": "ons.age.30_40@E14001589", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b1eca99c62d678f35ea641" + }, + { + "name": "ons.age.30_40@E14001590", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b135f771bd1f6ee7392d2363" + }, + { + "name": "ons.age.30_40@E14001591", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_472e70a49dcc88e56123139a" + }, + { + "name": "ons.age.30_40@E14001592", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0fb177b0d2f06e6516d0d2d" + }, + { + "name": "ons.age.30_40@E14001593", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe840cf74faa4af57b84162" + }, + { + "name": "ons.age.30_40@E14001594", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_513f53828f8216207f620e06" + }, + { + "name": "ons.age.30_40@E14001595", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da1f0abc2553f320748719ee" + }, + { + "name": "ons.age.30_40@E14001596", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d8c7f6fc1e63f4e81aa4bb2" + }, + { + "name": "ons.age.30_40@E14001597", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_012563c99b46556cd2ff3701" + }, + { + "name": "ons.age.30_40@E14001598", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_479613fe7a701bdc62e3baae" + }, + { + "name": "ons.age.30_40@E14001599", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d1564acadd50b52f6e9f12" + }, + { + "name": "ons.age.30_40@E14001600", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4050c15f4a1ba3b06f5424" + }, + { + "name": "ons.age.30_40@E14001601", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12308.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8be9b9f3abd0b31c4facfe04" + }, + { + "name": "ons.age.30_40@E14001602", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c7381e98aba091a04fcb424" + }, + { + "name": "ons.age.30_40@E14001603", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8c3efc5b58bc0dc34404fb0" + }, + { + "name": "ons.age.30_40@E14001604", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a722a003de3c041db32ce8fd" + }, + { + "name": "ons.age.30_40@E14001605", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cddd4cb39304bfb8a2b4bd5" + }, + { + "name": "ons.age.30_40@N05000001", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff15b281cfdb2d12ce76d3a8" + }, + { + "name": "ons.age.30_40@N05000002", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d4e07748ff7626ff9364e8" + }, + { + "name": "ons.age.30_40@N05000003", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18161.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6135155e24769df5cb0c7ac8" + }, + { + "name": "ons.age.30_40@N05000004", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a218638f77af7c2f9a69da93" + }, + { + "name": "ons.age.30_40@N05000005", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d02377077a9533e728d711b5" + }, + { + "name": "ons.age.30_40@N05000006", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a27b3d96f52a715300ba93f4" + }, + { + "name": "ons.age.30_40@N05000007", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a3e6ccafd7b6be9f35c0a73" + }, + { + "name": "ons.age.30_40@N05000008", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac50b4b8f280c412fd0c180c" + }, + { + "name": "ons.age.30_40@N05000009", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1fa373a8018cf97f71a6f4b" + }, + { + "name": "ons.age.30_40@N05000010", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3ff18ba984743b3b41e4a40" + }, + { + "name": "ons.age.30_40@N05000011", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86148d42fecc33124d83a05b" + }, + { + "name": "ons.age.30_40@N05000012", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_916a7290b229a1a3adf38d26" + }, + { + "name": "ons.age.30_40@N05000013", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2255aa0954c5c7252efbdb5" + }, + { + "name": "ons.age.30_40@N05000014", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9fd7fa2d12aae05f5fff332" + }, + { + "name": "ons.age.30_40@N05000015", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91daaa766c26ae8189b8060" + }, + { + "name": "ons.age.30_40@N05000016", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98d31890b060a89d09c15c7c" + }, + { + "name": "ons.age.30_40@N05000017", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7162640887f84a8005b4a55d" + }, + { + "name": "ons.age.30_40@N05000018", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5b9d56458c57c0a13b76e66" + }, + { + "name": "ons.age.30_40@S14000021", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd3a867c8baaa9f182f8a424" + }, + { + "name": "ons.age.30_40@S14000027", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 2582.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff07de0b614bf90bc31985f" + }, + { + "name": "ons.age.30_40@S14000045", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7fc7aa22506a2b493e8cd5e" + }, + { + "name": "ons.age.30_40@S14000048", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2458dc3a4374a1377ffe60a" + }, + { + "name": "ons.age.30_40@S14000051", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 5500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f45b2fa482b1a8af5f9deb7b" + }, + { + "name": "ons.age.30_40@S14000060", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 17538.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe5d1ae027af3b71ed8f4161" + }, + { + "name": "ons.age.30_40@S14000061", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fd95e90c6a88a78357d589f" + }, + { + "name": "ons.age.30_40@S14000062", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7bbf80ec235a308d44bc16c" + }, + { + "name": "ons.age.30_40@S14000063", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf19b959862a4ffe2629cd04" + }, + { + "name": "ons.age.30_40@S14000064", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e522798c8abe9ddf72529a44" + }, + { + "name": "ons.age.30_40@S14000065", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6f958905693448a28268dcb" + }, + { + "name": "ons.age.30_40@S14000066", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f74ce66276263d6527ca238a" + }, + { + "name": "ons.age.30_40@S14000067", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa565142d4941ff6c809394" + }, + { + "name": "ons.age.30_40@S14000068", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0a0aef623c0a4c132621842" + }, + { + "name": "ons.age.30_40@S14000069", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb8bd6493170ab138ff98b9d" + }, + { + "name": "ons.age.30_40@S14000070", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f89bd1f0739edf8b5666d4ba" + }, + { + "name": "ons.age.30_40@S14000071", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f42f6eb21a9ec62895aa785a" + }, + { + "name": "ons.age.30_40@S14000072", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8de7e94b37b31d1c0719aad" + }, + { + "name": "ons.age.30_40@S14000073", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed303db6b01843cbfccaf2b0" + }, + { + "name": "ons.age.30_40@S14000074", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f163a5083919e09b4cd50c80" + }, + { + "name": "ons.age.30_40@S14000075", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7c5975c35162cf53647a0b" + }, + { + "name": "ons.age.30_40@S14000076", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12768.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8d5a94beec55570f8276361" + }, + { + "name": "ons.age.30_40@S14000077", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f56dcca129aabae97e595215" + }, + { + "name": "ons.age.30_40@S14000078", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 20847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdbbca578177e8f48fd152eb" + }, + { + "name": "ons.age.30_40@S14000079", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 22875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c58eb81f92dace7cc650bcd9" + }, + { + "name": "ons.age.30_40@S14000080", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13220.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5617b1f6e738935b618a396" + }, + { + "name": "ons.age.30_40@S14000081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 17019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6821c450a801872a79598a6" + }, + { + "name": "ons.age.30_40@S14000082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea41c63450a620f1b707a221" + }, + { + "name": "ons.age.30_40@S14000083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f124c7ed0e372e7f649b5900" + }, + { + "name": "ons.age.30_40@S14000084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8b2367ac6913c6235532986" + }, + { + "name": "ons.age.30_40@S14000085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df752fd70047466383134300" + }, + { + "name": "ons.age.30_40@S14000086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f652b149f97bbe5a5aa42bf6" + }, + { + "name": "ons.age.30_40@S14000087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 18055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e817dbe9f98bce1b02194b69" + }, + { + "name": "ons.age.30_40@S14000088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 16367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0377a284b077fe179388653" + }, + { + "name": "ons.age.30_40@S14000089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 17254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db8b4d52f747831fc0bc437b" + }, + { + "name": "ons.age.30_40@S14000090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7d451acc65aaaea60be2892" + }, + { + "name": "ons.age.30_40@S14000091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced16578a39a6a7320ef582a" + }, + { + "name": "ons.age.30_40@S14000092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea91d30208c06dcb31bf2ea3" + }, + { + "name": "ons.age.30_40@S14000093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edf8aa73fc379584f4a8d406" + }, + { + "name": "ons.age.30_40@S14000094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd5ce141c7d411ab9154bf2" + }, + { + "name": "ons.age.30_40@S14000095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be5215831c3846dbd6f87fdb" + }, + { + "name": "ons.age.30_40@S14000096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e99673ef70201eb48a2ff181" + }, + { + "name": "ons.age.30_40@S14000097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0109433d257340ba109a974" + }, + { + "name": "ons.age.30_40@S14000098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c09638c549e347842b3eaef3" + }, + { + "name": "ons.age.30_40@S14000099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d376df19edf26b4b3d0e63c3" + }, + { + "name": "ons.age.30_40@S14000100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63a36143bafd713791ea6e0" + }, + { + "name": "ons.age.30_40@S14000101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce06dcb16e503387c4c53693" + }, + { + "name": "ons.age.30_40@S14000102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d778d7ed0942b24134301719" + }, + { + "name": "ons.age.30_40@S14000103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8b939a3185a23261d5c19fe" + }, + { + "name": "ons.age.30_40@S14000104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f33e4b6a3514d246a7d06c" + }, + { + "name": "ons.age.30_40@S14000105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da3eb78ff935a80ed05392f2" + }, + { + "name": "ons.age.30_40@S14000106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11983.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d374adfa259a8d5e7258238e" + }, + { + "name": "ons.age.30_40@S14000107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b833a45932fdc75006a7f5" + }, + { + "name": "ons.age.30_40@S14000108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9b9bc80083fd6ea443aaba" + }, + { + "name": "ons.age.30_40@S14000109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f30e0b01d8815098af8bc86b" + }, + { + "name": "ons.age.30_40@S14000110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77dc066fdb383bcfdd95c4d" + }, + { + "name": "ons.age.30_40@S14000111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1bce745c1cc61e2af8234e5" + }, + { + "name": "ons.age.30_40@W07000081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d61b64bfd460d576f92631" + }, + { + "name": "ons.age.30_40@W07000082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbc8004e2bf92c606e478cae" + }, + { + "name": "ons.age.30_40@W07000083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1eb14a44398c1a476c78315" + }, + { + "name": "ons.age.30_40@W07000084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81aee479646ae12317298ee4" + }, + { + "name": "ons.age.30_40@W07000085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9992.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b10ad310e7b6e1cc4380fa5" + }, + { + "name": "ons.age.30_40@W07000086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4cbc554dc350c700d6c69dc" + }, + { + "name": "ons.age.30_40@W07000087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d04c5f2738e5ad55686f935" + }, + { + "name": "ons.age.30_40@W07000088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_966fdcf7182ca12bb589f7cf" + }, + { + "name": "ons.age.30_40@W07000089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_831879495b641acc3afb3a2f" + }, + { + "name": "ons.age.30_40@W07000090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b512b09a250192dd76fa503b" + }, + { + "name": "ons.age.30_40@W07000091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bc9743d7ee2c7346d701dfa" + }, + { + "name": "ons.age.30_40@W07000092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8db46c0708dde8ce60e3760" + }, + { + "name": "ons.age.30_40@W07000093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c55976792429b2196d6c8833" + }, + { + "name": "ons.age.30_40@W07000094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c63d9931efdaff11354c8152" + }, + { + "name": "ons.age.30_40@W07000095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3cb849c7ea409222dc7e4d9" + }, + { + "name": "ons.age.30_40@W07000096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62ca4bfcc8bff2d979c9999b" + }, + { + "name": "ons.age.30_40@W07000097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91c00153c951e42b81a325ae" + }, + { + "name": "ons.age.30_40@W07000098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97c9301a7697d6624ce8ac30" + }, + { + "name": "ons.age.30_40@W07000099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14040.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5188e32ba3153a7d6262e46b" + }, + { + "name": "ons.age.30_40@W07000100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85dafd94a4158f85aad9331" + }, + { + "name": "ons.age.30_40@W07000101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_570f6d7757d860a30039a04d" + }, + { + "name": "ons.age.30_40@W07000102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7043e3deed5bb0a4d1c6f576" + }, + { + "name": "ons.age.30_40@W07000103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13247.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eceb02c57754c7d7dda267b7" + }, + { + "name": "ons.age.30_40@W07000104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19304.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a15f39f25e4cd5e94a44d2c6" + }, + { + "name": "ons.age.30_40@W07000105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc21cadeffe039b88f737258" + }, + { + "name": "ons.age.30_40@W07000106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5ea0a1f1108c7cc3d43361c" + }, + { + "name": "ons.age.30_40@W07000107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b92d556cb209ab3e7766fb10" + }, + { + "name": "ons.age.30_40@W07000108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b89b1cae663293c68bfcdb7" + }, + { + "name": "ons.age.30_40@W07000109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f296934ee9f0b43621ec5a0" + }, + { + "name": "ons.age.30_40@W07000110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12680.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0c9357c57869bae4251fb34" + }, + { + "name": "ons.age.30_40@W07000111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc9b13c7146e73bca9c9d8b6" + }, + { + "name": "ons.age.30_40@W07000112", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce54fb10b9f1c575f1ed98cd" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.30_40@E06000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12787.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c910c9a4e0d58a99601a78df" + }, + { + "name": "ons.age.30_40@E06000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89fbb56d6175a4d8b0d27faa" + }, + { + "name": "ons.age.30_40@E06000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb8b66c5f8659975560482b6" + }, + { + "name": "ons.age.30_40@E06000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43e03220d95caa2a78864819" + }, + { + "name": "ons.age.30_40@E06000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d970e23038e1b24ff052528" + }, + { + "name": "ons.age.30_40@E06000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b64f5c5c27b792ffc896087" + }, + { + "name": "ons.age.30_40@E06000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28752.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f93a78b1e92b73d4689942e" + }, + { + "name": "ons.age.30_40@E06000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7521895061f030b5b6a77d" + }, + { + "name": "ons.age.30_40@E06000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1463eaaa857d20faf9f0a6e" + }, + { + "name": "ons.age.30_40@E06000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89fa927d57f6ae78f14a0614" + }, + { + "name": "ons.age.30_40@E06000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45c6925df31a6cba523e80c1" + }, + { + "name": "ons.age.30_40@E06000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20995.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41b0fb51480162b311a34f17" + }, + { + "name": "ons.age.30_40@E06000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_416c181d5ea7830a72c0c803" + }, + { + "name": "ons.age.30_40@E06000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdd74707fc1e0f604082896f" + }, + { + "name": "ons.age.30_40@E06000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8130f5bf5b8c1c5347cefeeb" + }, + { + "name": "ons.age.30_40@E06000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bd5c8e9cb29ed155fd8a78a" + }, + { + "name": "ons.age.30_40@E06000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1dac2f16c2a4fcd7eb10903" + }, + { + "name": "ons.age.30_40@E06000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4528d4bb0e761182a7c4c0eb" + }, + { + "name": "ons.age.30_40@E06000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22310.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4541bfd29095254e5aff529" + }, + { + "name": "ons.age.30_40@E06000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81622e0329485752c741a93f" + }, + { + "name": "ons.age.30_40@E06000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff5d2beeaf93f9cbe247a49" + }, + { + "name": "ons.age.30_40@E06000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f57782cda549702dbba2309b" + }, + { + "name": "ons.age.30_40@E06000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 84973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7dcb715e1e14bc327348fcc" + }, + { + "name": "ons.age.30_40@E06000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ecb73d45dfee02c939e5fde" + }, + { + "name": "ons.age.30_40@E06000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c96f954bb12c0c3bdb609e20" + }, + { + "name": "ons.age.30_40@E06000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d31f83790491202fe150718f" + }, + { + "name": "ons.age.30_40@E06000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9e11193482695e9eb033848" + }, + { + "name": "ons.age.30_40@E06000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5e1067a755d5d7b6d58b485" + }, + { + "name": "ons.age.30_40@E06000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_616c38fa1b085c6948936531" + }, + { + "name": "ons.age.30_40@E06000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7d99ab0199d488a53657087" + }, + { + "name": "ons.age.30_40@E06000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6d73e23e8e87efaf4092a23" + }, + { + "name": "ons.age.30_40@E06000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f3e789f7130d2329db0f346" + }, + { + "name": "ons.age.30_40@E06000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2c5bbfd84abace152c5de8f" + }, + { + "name": "ons.age.30_40@E06000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1e9a213fd78fbc2ffd437d6" + }, + { + "name": "ons.age.30_40@E06000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a444254a361defaebdc050ca" + }, + { + "name": "ons.age.30_40@E06000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcfc54fddfdb05d2cd27601b" + }, + { + "name": "ons.age.30_40@E06000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b00ef9d757a1ee05629dc08a" + }, + { + "name": "ons.age.30_40@E06000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_497ebbcdab0ed4136379226c" + }, + { + "name": "ons.age.30_40@E06000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_507997ebb87ef92821a4b19b" + }, + { + "name": "ons.age.30_40@E06000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4646476fc299d866b3227d3" + }, + { + "name": "ons.age.30_40@E06000043", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41596.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f16458484b5c082f2bac7fa2" + }, + { + "name": "ons.age.30_40@E06000044", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c96f07d07eb4642c25be79d" + }, + { + "name": "ons.age.30_40@E06000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d734443a56a5345e93d5c589" + }, + { + "name": "ons.age.30_40@E06000046", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac464dcf69ee9bb1cb1cbba5" + }, + { + "name": "ons.age.30_40@E06000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e03cc10945dac508139e87f4" + }, + { + "name": "ons.age.30_40@E06000049", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d14886c749bace46b3d5d220" + }, + { + "name": "ons.age.30_40@E06000050", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_460257b0d611fbdd04aee0ba" + }, + { + "name": "ons.age.30_40@E06000051", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aed45d1d391d45ee3c1a9599" + }, + { + "name": "ons.age.30_40@E06000052", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51c30b1355de72ccf83846bc" + }, + { + "name": "ons.age.30_40@E06000053", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f92daf25aeae5f9fe8cf1f5a" + }, + { + "name": "ons.age.30_40@E06000054", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de862cd3dca97954ba07cac8" + }, + { + "name": "ons.age.30_40@E06000055", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af54a8a7243203f4e0da006a" + }, + { + "name": "ons.age.30_40@E06000056", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8226f3c3ab0eed6b72bb5790" + }, + { + "name": "ons.age.30_40@E06000057", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a891362a7f769e618f2eb325" + }, + { + "name": "ons.age.30_40@E06000058", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6f62188580a879efa48c188" + }, + { + "name": "ons.age.30_40@E06000059", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_896529f93ac5f24020ce3b53" + }, + { + "name": "ons.age.30_40@E06000060", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75647.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0718f36d6df942e4e31d6f0" + }, + { + "name": "ons.age.30_40@E06000061", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae4c4a85a92741b7e33f52ed" + }, + { + "name": "ons.age.30_40@E06000062", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 64519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3dd5e4f73ca0c36f979a956" + }, + { + "name": "ons.age.30_40@E06000063", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba8e8059a0abea1b4afa70e7" + }, + { + "name": "ons.age.30_40@E06000064", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26130.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d605f1b0523bca8c778baf6d" + }, + { + "name": "ons.age.30_40@E06000065", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a65c05dd6b99a951e6b75750" + }, + { + "name": "ons.age.30_40@E06000066", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eef933c5210295ce3c129924" + }, + { + "name": "ons.age.30_40@E07000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e055a9f541df290a7e2944d4" + }, + { + "name": "ons.age.30_40@E07000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee231827271307295f4c45cb" + }, + { + "name": "ons.age.30_40@E07000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45c8a5c51b4a8c12726723a1" + }, + { + "name": "ons.age.30_40@E07000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6016088089e4663f66c3239" + }, + { + "name": "ons.age.30_40@E07000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_25c7cd8f55d1d88a7708b9c7" + }, + { + "name": "ons.age.30_40@E07000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c049808ddb2a66a63c64bc14" + }, + { + "name": "ons.age.30_40@E07000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c63aa1a1bf9b8169a8fb1f0f" + }, + { + "name": "ons.age.30_40@E07000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b56da806c579b5d4d28fb179" + }, + { + "name": "ons.age.30_40@E07000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6642.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eeedc36c2a0c1b9f1f27c15" + }, + { + "name": "ons.age.30_40@E07000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba3e9e3a24cd0d648a025cb8" + }, + { + "name": "ons.age.30_40@E07000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e6755f4c0076926132840d7" + }, + { + "name": "ons.age.30_40@E07000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff368eee4fa51e5283293372" + }, + { + "name": "ons.age.30_40@E07000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ef51c9c9dd25a030d92cba2" + }, + { + "name": "ons.age.30_40@E07000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee615703bcce98fe8ee1474f" + }, + { + "name": "ons.age.30_40@E07000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31935d0a9b60a502a9661d6f" + }, + { + "name": "ons.age.30_40@E07000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90106a313eb18f47e6a0f460" + }, + { + "name": "ons.age.30_40@E07000043", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a1c8d53d8680e1a53235676" + }, + { + "name": "ons.age.30_40@E07000044", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf5cd6de0af749fdde555b8f" + }, + { + "name": "ons.age.30_40@E07000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e21b1a4276ae1b58abbe348b" + }, + { + "name": "ons.age.30_40@E07000046", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6938b3317d06383cca80008" + }, + { + "name": "ons.age.30_40@E07000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88e021a136a56a96e527ee7a" + }, + { + "name": "ons.age.30_40@E07000061", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_824029a6cd7d19888376caaf" + }, + { + "name": "ons.age.30_40@E07000062", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da0228fb8032176430aec5b8" + }, + { + "name": "ons.age.30_40@E07000063", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44e1cbfa261cb43b3515964d" + }, + { + "name": "ons.age.30_40@E07000064", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_23495c70d6ff8dd24eee022f" + }, + { + "name": "ons.age.30_40@E07000065", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b729490dfbe1ac837f548ae" + }, + { + "name": "ons.age.30_40@E07000066", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e61d08926aba9ab7c4c7d624" + }, + { + "name": "ons.age.30_40@E07000067", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22482.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca5828d36038dbad99e4cb23" + }, + { + "name": "ons.age.30_40@E07000068", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_676a7cff39132b7b9a222932" + }, + { + "name": "ons.age.30_40@E07000069", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10304.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86554b5b010f9058b7d31ca5" + }, + { + "name": "ons.age.30_40@E07000070", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7625dd77b3bad88fcb1c5ac" + }, + { + "name": "ons.age.30_40@E07000071", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28793.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fa763b1f693d0e73a8b5fdb" + }, + { + "name": "ons.age.30_40@E07000072", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51965daac1113f47c6f80866" + }, + { + "name": "ons.age.30_40@E07000073", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d07c7c3a97742969fa694a4c" + }, + { + "name": "ons.age.30_40@E07000074", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82ed7d7b806402e4e3dbab66" + }, + { + "name": "ons.age.30_40@E07000075", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4e1f2330a40d4a8025c537" + }, + { + "name": "ons.age.30_40@E07000076", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16809.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6b9b1ab71f7df74601c0047" + }, + { + "name": "ons.age.30_40@E07000077", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5aedd13c6a9215297ce4e06b" + }, + { + "name": "ons.age.30_40@E07000078", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16600.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aad98f5972b0f94251a997d6" + }, + { + "name": "ons.age.30_40@E07000079", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a72c77eacdbf0ff34da1cb5f" + }, + { + "name": "ons.age.30_40@E07000080", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45db44b6ec95b55cb49d6b4b" + }, + { + "name": "ons.age.30_40@E07000081", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20456.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f11e86e02af5149f25ee5cff" + }, + { + "name": "ons.age.30_40@E07000082", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b998b7fce59153d49563d5f2" + }, + { + "name": "ons.age.30_40@E07000083", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40b2c7cf3e0c54786f25d8ad" + }, + { + "name": "ons.age.30_40@E07000084", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b3abb3333f61ff6ef7d9df0" + }, + { + "name": "ons.age.30_40@E07000085", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5960e2d9bbce8960b35898a5" + }, + { + "name": "ons.age.30_40@E07000086", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6640c89aeb2a1a763b5f8c30" + }, + { + "name": "ons.age.30_40@E07000087", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84bf8dd9ac07510538e3ca5b" + }, + { + "name": "ons.age.30_40@E07000088", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa3a8ed6e9d7eafd0fc5523f" + }, + { + "name": "ons.age.30_40@E07000089", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c17c544647f815787127e5f" + }, + { + "name": "ons.age.30_40@E07000090", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc72a7142f31b742fb49546c" + }, + { + "name": "ons.age.30_40@E07000091", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7fd8b06fb44cb8f9cd7c6e2" + }, + { + "name": "ons.age.30_40@E07000092", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb0e4b38e1dad542bee064ac" + }, + { + "name": "ons.age.30_40@E07000093", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17902.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_855e0c96cf3c3ca4c141231f" + }, + { + "name": "ons.age.30_40@E07000094", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6332c1a5f0784e2ded6fe72f" + }, + { + "name": "ons.age.30_40@E07000095", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57a25316d2efe68dc09d2aa9" + }, + { + "name": "ons.age.30_40@E07000096", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b398ee97aa438c3d4ea5ba8" + }, + { + "name": "ons.age.30_40@E07000098", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_966c13ecd741f81a392a5f96" + }, + { + "name": "ons.age.30_40@E07000099", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18995.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7637141f1c2633b58416f5c7" + }, + { + "name": "ons.age.30_40@E07000102", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11641.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f0ac14348a267c7e8da7a51" + }, + { + "name": "ons.age.30_40@E07000103", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c1bb83ba806e4529cd497ed" + }, + { + "name": "ons.age.30_40@E07000105", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f772c969046a729721408522" + }, + { + "name": "ons.age.30_40@E07000106", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18795.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ada4b48c881fecd4f85b078" + }, + { + "name": "ons.age.30_40@E07000107", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1ab435ff6b40589435d30af" + }, + { + "name": "ons.age.30_40@E07000108", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5009c746ae83063623e39aa3" + }, + { + "name": "ons.age.30_40@E07000109", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16125.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ede053fbf894719dc66b03a8" + }, + { + "name": "ons.age.30_40@E07000110", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75196db8636bf8c6e41c25a7" + }, + { + "name": "ons.age.30_40@E07000111", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56ba11a1e1f1fbae835d123" + }, + { + "name": "ons.age.30_40@E07000112", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8da5e685b09cd6a72ec522e" + }, + { + "name": "ons.age.30_40@E07000113", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22140.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cda5f2e1c84b23868a1b5ef6" + }, + { + "name": "ons.age.30_40@E07000114", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed51d869b3ee11aad7af88ea" + }, + { + "name": "ons.age.30_40@E07000115", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6d71e7cf242c821f497e02c" + }, + { + "name": "ons.age.30_40@E07000116", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85b7fe7f76672e41756f5a91" + }, + { + "name": "ons.age.30_40@E07000117", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb9973c41a3404fa7d3bf2f0" + }, + { + "name": "ons.age.30_40@E07000118", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_859a02d14b1aa422d62c320d" + }, + { + "name": "ons.age.30_40@E07000119", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc185a83c8ef05445436ddfa" + }, + { + "name": "ons.age.30_40@E07000120", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf1e85a14589b5a493b0d7a8" + }, + { + "name": "ons.age.30_40@E07000121", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16788.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adf5f5d19dacb190e28029ab" + }, + { + "name": "ons.age.30_40@E07000122", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06052e569fec268fd090832" + }, + { + "name": "ons.age.30_40@E07000123", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e2297bb31ee20994faa346b" + }, + { + "name": "ons.age.30_40@E07000124", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b86e98a8117df80b8d0d5cdf" + }, + { + "name": "ons.age.30_40@E07000125", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9826.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7dd256d8e5b1451ed30e99d" + }, + { + "name": "ons.age.30_40@E07000126", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6eec035692a4c96f428377f" + }, + { + "name": "ons.age.30_40@E07000127", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abec7db6e971fc447325b296" + }, + { + "name": "ons.age.30_40@E07000128", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e42db4c4ccd17eacbcde6b63" + }, + { + "name": "ons.age.30_40@E07000129", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91a64f7f2556c440d9d3f372" + }, + { + "name": "ons.age.30_40@E07000130", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ae25b40bbb88b7761451236" + }, + { + "name": "ons.age.30_40@E07000131", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d625dd3744604c3677830185" + }, + { + "name": "ons.age.30_40@E07000132", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15372.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4c9a9fbd1013592d99f22af" + }, + { + "name": "ons.age.30_40@E07000133", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f688aff228db581ef5270fa7" + }, + { + "name": "ons.age.30_40@E07000134", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15485.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0e9ca20529e1cc08423ca95" + }, + { + "name": "ons.age.30_40@E07000135", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f574a8f9dd55764ba3cbd732" + }, + { + "name": "ons.age.30_40@E07000136", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9213b31a40e382d56b6e0a2" + }, + { + "name": "ons.age.30_40@E07000137", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4755e9bf2ff5eb17d96c956" + }, + { + "name": "ons.age.30_40@E07000138", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_646c1b76bdadb7d9046e7efd" + }, + { + "name": "ons.age.30_40@E07000139", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14809.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ac9811422c9076f66d69da" + }, + { + "name": "ons.age.30_40@E07000140", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58f8205647da9bb2d6a9956e" + }, + { + "name": "ons.age.30_40@E07000141", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df4264bb2947896c0f2801e1" + }, + { + "name": "ons.age.30_40@E07000142", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ac5bda13b5b445f513fe895" + }, + { + "name": "ons.age.30_40@E07000143", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6deb4840cd647751c6c0aab" + }, + { + "name": "ons.age.30_40@E07000144", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e69f8529156e9d7bd74dde4f" + }, + { + "name": "ons.age.30_40@E07000145", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_990921e875728630673d5edb" + }, + { + "name": "ons.age.30_40@E07000146", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77ef1297d2381720d780728c" + }, + { + "name": "ons.age.30_40@E07000147", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a586ee08692c7fd1f217984" + }, + { + "name": "ons.age.30_40@E07000148", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e098f850979478f355784ac5" + }, + { + "name": "ons.age.30_40@E07000149", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b1d82a1d98eb6ef79436b8" + }, + { + "name": "ons.age.30_40@E07000170", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa597636683e06814363dd18" + }, + { + "name": "ons.age.30_40@E07000171", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19283ca4b5d194913f0b4dc" + }, + { + "name": "ons.age.30_40@E07000172", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e91cb967682d984695840748" + }, + { + "name": "ons.age.30_40@E07000173", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fae7b92ec6eed78c785b4ede" + }, + { + "name": "ons.age.30_40@E07000174", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e010e8495a7bee015ee92048" + }, + { + "name": "ons.age.30_40@E07000175", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57e3d26ab730cbf4d92cb7f2" + }, + { + "name": "ons.age.30_40@E07000176", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a53cafee8420303169138afd" + }, + { + "name": "ons.age.30_40@E07000177", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_371d29c740dc3c8e8cac1a11" + }, + { + "name": "ons.age.30_40@E07000178", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e94c93b18ee01e778bd3faad" + }, + { + "name": "ons.age.30_40@E07000179", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_363f94942ed2d10da4b6f44c" + }, + { + "name": "ons.age.30_40@E07000180", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d73e8a70c9031b0193fd444c" + }, + { + "name": "ons.age.30_40@E07000181", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_36fba6bf332a7d015e289e51" + }, + { + "name": "ons.age.30_40@E07000192", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48081bc5946ef3503aa9c903" + }, + { + "name": "ons.age.30_40@E07000193", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b926e54c60a0e7f7fd5dfe11" + }, + { + "name": "ons.age.30_40@E07000194", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb942434bde3425603dc256b" + }, + { + "name": "ons.age.30_40@E07000195", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d165b6aa3be8dd9e140cae65" + }, + { + "name": "ons.age.30_40@E07000196", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95852d9fc2283ba45b578dd" + }, + { + "name": "ons.age.30_40@E07000197", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a434f140bed3ce1c4b8556db" + }, + { + "name": "ons.age.30_40@E07000198", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6bfdfd49bab0514990ba4ba" + }, + { + "name": "ons.age.30_40@E07000199", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be3de21067b3789dd9635c53" + }, + { + "name": "ons.age.30_40@E07000200", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abba5bcb914b01e55e71f38b" + }, + { + "name": "ons.age.30_40@E07000202", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91b0fd328aff930e1573cb9" + }, + { + "name": "ons.age.30_40@E07000203", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a477069be8db5f5a57551052" + }, + { + "name": "ons.age.30_40@E07000207", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cae203f77b891b88c33405c7" + }, + { + "name": "ons.age.30_40@E07000208", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa818ebb21538524cff9a888" + }, + { + "name": "ons.age.30_40@E07000209", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0776b1603213ff33fc167dd" + }, + { + "name": "ons.age.30_40@E07000210", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f799add861a3555d6038da6a" + }, + { + "name": "ons.age.30_40@E07000211", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9affbc024147048487e7de6" + }, + { + "name": "ons.age.30_40@E07000212", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74fce7c46ff1a3fed0be1dff" + }, + { + "name": "ons.age.30_40@E07000213", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3ae7024e0611dc94065cdf2" + }, + { + "name": "ons.age.30_40@E07000214", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11805.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85e9be6f6b67062458ff9f14" + }, + { + "name": "ons.age.30_40@E07000215", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e931e96c2291548d5ca394d4" + }, + { + "name": "ons.age.30_40@E07000216", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ef4ecd243cc9b227f2a334b" + }, + { + "name": "ons.age.30_40@E07000217", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6464f036f9e8856edc59816" + }, + { + "name": "ons.age.30_40@E07000218", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd4847076885debba3f2ea2" + }, + { + "name": "ons.age.30_40@E07000219", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2697d3b326f582bf50daae9" + }, + { + "name": "ons.age.30_40@E07000220", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_250d24b3eb7d913abdfb1b81" + }, + { + "name": "ons.age.30_40@E07000221", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17495.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5cb65a6ef263e539cb96fd5" + }, + { + "name": "ons.age.30_40@E07000222", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdd982f64b2eaadac407b9cf" + }, + { + "name": "ons.age.30_40@E07000223", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3fc7732a1db4b91c396ec46" + }, + { + "name": "ons.age.30_40@E07000224", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_659dadeb7eccbd807e412334" + }, + { + "name": "ons.age.30_40@E07000225", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab4464dbddb30107c3011db9" + }, + { + "name": "ons.age.30_40@E07000226", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bec60a6fc8d5dd0123d9c6e3" + }, + { + "name": "ons.age.30_40@E07000227", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3366c9609a46c65115e94a2" + }, + { + "name": "ons.age.30_40@E07000228", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a4b56639e5f16153d7c33dc" + }, + { + "name": "ons.age.30_40@E07000229", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5585f318b002fe491f94e70c" + }, + { + "name": "ons.age.30_40@E07000234", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8d87d80b2b337f02b349cbe" + }, + { + "name": "ons.age.30_40@E07000235", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8281.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fe9b0d634fb9d667cc0569c" + }, + { + "name": "ons.age.30_40@E07000236", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94ce70881b6aed69e8c40327" + }, + { + "name": "ons.age.30_40@E07000237", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15503.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cadc05652b469c32267195a1" + }, + { + "name": "ons.age.30_40@E07000238", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceab0015f860aa750235ffc4" + }, + { + "name": "ons.age.30_40@E07000239", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac4292b193726f261805ded5" + }, + { + "name": "ons.age.30_40@E07000240", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eac170c9d1813223334ea305" + }, + { + "name": "ons.age.30_40@E07000241", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17752.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d39223fb0935bd7acac115f" + }, + { + "name": "ons.age.30_40@E07000242", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21210.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6df787f3ce797ded55b23a7b" + }, + { + "name": "ons.age.30_40@E07000243", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e08bdb9f1acf0d20372f54" + }, + { + "name": "ons.age.30_40@E07000244", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25709.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4982493f56a7b2d6d9e9243" + }, + { + "name": "ons.age.30_40@E07000245", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a66a93653dad174ec0e82e" + }, + { + "name": "ons.age.30_40@E08000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43104.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95005d203e5da6331a7139b" + }, + { + "name": "ons.age.30_40@E08000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1fc1ade44dfe5a7acdb5e63" + }, + { + "name": "ons.age.30_40@E08000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efc055fb2345ba1e28ce669a" + }, + { + "name": "ons.age.30_40@E08000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34814.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d35f98cf39dd26059586dc5" + }, + { + "name": "ons.age.30_40@E08000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8835c8e1fe6b33fe9a92f0b6" + }, + { + "name": "ons.age.30_40@E08000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f2f816752a9071b843ae758" + }, + { + "name": "ons.age.30_40@E08000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a970503241d2dcbe5698577d" + }, + { + "name": "ons.age.30_40@E08000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d5beff0d01d6f7aba5bb563" + }, + { + "name": "ons.age.30_40@E08000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a4918998f833d1e235cf6de" + }, + { + "name": "ons.age.30_40@E08000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f30c0cf662e5402b7e90ba76" + }, + { + "name": "ons.age.30_40@E08000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bec2cf11b0eec18a3f87ed9" + }, + { + "name": "ons.age.30_40@E08000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f1c45e501c55aca5192b78" + }, + { + "name": "ons.age.30_40@E08000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c85cefb7d3d4acf0fcf88d" + }, + { + "name": "ons.age.30_40@E08000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc960659513914b2534b6853" + }, + { + "name": "ons.age.30_40@E08000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1402859d4b22837b9e1bcef8" + }, + { + "name": "ons.age.30_40@E08000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee77207a06155a7cc6495b5c" + }, + { + "name": "ons.age.30_40@E08000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c530e0760560699d83d9ac3" + }, + { + "name": "ons.age.30_40@E08000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba680e676b543b1d33833e34" + }, + { + "name": "ons.age.30_40@E08000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e616fad8a0551de62e09aedf" + }, + { + "name": "ons.age.30_40@E08000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c64c1e085b105681dfc9b88f" + }, + { + "name": "ons.age.30_40@E08000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7baec5733b04810436e85081" + }, + { + "name": "ons.age.30_40@E08000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_809a47d0f71a2fa5df532349" + }, + { + "name": "ons.age.30_40@E08000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9573a88eb57bd60de767649f" + }, + { + "name": "ons.age.30_40@E08000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 172001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b357710158bcf8ef81f4bafd" + }, + { + "name": "ons.age.30_40@E08000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_512229b1a70ccd671b4cd72d" + }, + { + "name": "ons.age.30_40@E08000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85a74d61f50e065da4e258a2" + }, + { + "name": "ons.age.30_40@E08000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e07852b5d54a59d1fce3de" + }, + { + "name": "ons.age.30_40@E08000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6be8f8971b2bad2fecd12a7" + }, + { + "name": "ons.age.30_40@E08000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41265.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcf8663e98227599f52bed94" + }, + { + "name": "ons.age.30_40@E08000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dc009b336d421cb2c6bb7b1" + }, + { + "name": "ons.age.30_40@E08000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 78688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee62dad72f169e1bb13a0707" + }, + { + "name": "ons.age.30_40@E08000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aae9d8d7a691d49f46f6d8be" + }, + { + "name": "ons.age.30_40@E08000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60279.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc2996f1aaf2671f77f655ff" + }, + { + "name": "ons.age.30_40@E08000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 122777.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_556485d461cc3516c74e1b2e" + }, + { + "name": "ons.age.30_40@E08000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf3debdc693f8ccddb07e5c" + }, + { + "name": "ons.age.30_40@E08000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_714cde9cb74b91377b883a7d" + }, + { + "name": "ons.age.30_40@E09000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ca3ebb73812d3ca7c4bea9" + }, + { + "name": "ons.age.30_40@E09000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b5687f2cab772857c7583d" + }, + { + "name": "ons.age.30_40@E09000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8ea1b8bbbf457c4a25f25b3" + }, + { + "name": "ons.age.30_40@E09000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b26330096c30f2503e33d1" + }, + { + "name": "ons.age.30_40@E09000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90d085cd657dbe19047b134e" + }, + { + "name": "ons.age.30_40@E09000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde801631d245051366da54e" + }, + { + "name": "ons.age.30_40@E09000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88c4ae2229928978a4edc600" + }, + { + "name": "ons.age.30_40@E09000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_711f8d1be3d4fc7493f14bc9" + }, + { + "name": "ons.age.30_40@E09000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_794f4c974a88a6f536fae9a6" + }, + { + "name": "ons.age.30_40@E09000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9045333e0b75ebbad763132" + }, + { + "name": "ons.age.30_40@E09000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56334.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b354f567f7c18cc5eed2fe12" + }, + { + "name": "ons.age.30_40@E09000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca3cd1ec2ce644d4bcdc8d7" + }, + { + "name": "ons.age.30_40@E09000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6a620b0f593264f790a35ac" + }, + { + "name": "ons.age.30_40@E09000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d132580bf138d995233e9108" + }, + { + "name": "ons.age.30_40@E09000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0eeb676b31dd166757bf47" + }, + { + "name": "ons.age.30_40@E09000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b29dd0c8c90e34ae41ed1ecf" + }, + { + "name": "ons.age.30_40@E09000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a7423fc0ddfea28b768e473" + }, + { + "name": "ons.age.30_40@E09000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8482ea50e4b071b66c4c95a1" + }, + { + "name": "ons.age.30_40@E09000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca30695f0c7cf0931bb9550e" + }, + { + "name": "ons.age.30_40@E09000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0a24e8a61f375a9b8de9603" + }, + { + "name": "ons.age.30_40@E09000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e73c39ced6f1a1f05262f9d5" + }, + { + "name": "ons.age.30_40@E09000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a596c8344d32c257e537abef" + }, + { + "name": "ons.age.30_40@E09000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f7cc86304a7eb95ae00c42b" + }, + { + "name": "ons.age.30_40@E09000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f07312fb4b6cb8da6bfa556" + }, + { + "name": "ons.age.30_40@E09000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65c4a03c4910301054aa36b9" + }, + { + "name": "ons.age.30_40@E09000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_974cc9bd514e35ed6114749f" + }, + { + "name": "ons.age.30_40@E09000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aede7e4adc9bed5d3ca06426" + }, + { + "name": "ons.age.30_40@E09000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb5f03ad42629b0d5c5cb4ff" + }, + { + "name": "ons.age.30_40@E09000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81180fd0daa0aef221ba2201" + }, + { + "name": "ons.age.30_40@E09000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 73039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ac0f98129aa4a1f40f016f6" + }, + { + "name": "ons.age.30_40@E09000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ce13542663b5e33f3ecace7" + }, + { + "name": "ons.age.30_40@E09000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1093c3c0ae0edd689532d16" + }, + { + "name": "ons.age.30_40@E09000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_497fb3f13d92c7b3ba0966ae" + }, + { + "name": "ons.age.30_40@N09000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dbed34b1cba7e923985a60" + }, + { + "name": "ons.age.30_40@N09000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a329624144da1bb5d408140" + }, + { + "name": "ons.age.30_40@N09000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3d5738ad947e31df2c74e2d" + }, + { + "name": "ons.age.30_40@N09000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fe052814ddfcdca06d06feb" + }, + { + "name": "ons.age.30_40@N09000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19599.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc9ed2602330b375908fe85" + }, + { + "name": "ons.age.30_40@N09000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13629.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb34c75f21c15d21ec01eeb2" + }, + { + "name": "ons.age.30_40@N09000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c19b166dc9873072617098c7" + }, + { + "name": "ons.age.30_40@N09000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d1e9ab16b880f38d47b4be9" + }, + { + "name": "ons.age.30_40@N09000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c159058ff6a083462c0a3c19" + }, + { + "name": "ons.age.30_40@N09000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6d2ddb8d5ae4e1f8fb485f8" + }, + { + "name": "ons.age.30_40@N09000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0ff4981caf29cc73120496" + }, + { + "name": "ons.age.30_40@S12000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7717b36c2bf0ab5a3a1ee37" + }, + { + "name": "ons.age.30_40@S12000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb448f15f1574e2fc4646d5" + }, + { + "name": "ons.age.30_40@S12000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bba0bb91ae8bdf7e0ed274d1" + }, + { + "name": "ons.age.30_40@S12000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a513d98a45a8ec60d0ac51e" + }, + { + "name": "ons.age.30_40@S12000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a811aca408371aa1ba5d28c9" + }, + { + "name": "ons.age.30_40@S12000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0428fc87bc6ef4cebf78f17" + }, + { + "name": "ons.age.30_40@S12000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99eb8eceb07c4b031f51f2d7" + }, + { + "name": "ons.age.30_40@S12000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27372.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f62d852f88c774b10167afcd" + }, + { + "name": "ons.age.30_40@S12000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5c6d85eeb6dda550b3bd87a" + }, + { + "name": "ons.age.30_40@S12000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa95844cac878580c9b77aa0" + }, + { + "name": "ons.age.30_40@S12000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ab6399d24ceda86a617b567" + }, + { + "name": "ons.age.30_40@S12000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7907e39926b8350e8e37f2cc" + }, + { + "name": "ons.age.30_40@S12000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f45078ca1ed61d8443d62bc0" + }, + { + "name": "ons.age.30_40@S12000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbcce31d72f7c9934348be44" + }, + { + "name": "ons.age.30_40@S12000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa94187523557e4832d4f609" + }, + { + "name": "ons.age.30_40@S12000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11773.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e03d6f437255903441e389f5" + }, + { + "name": "ons.age.30_40@S12000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4a7b14dfe4ac5eb1f1f5f9" + }, + { + "name": "ons.age.30_40@S12000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d73131b3212f50067ad88175" + }, + { + "name": "ons.age.30_40@S12000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa1cac8f6784966326bd376f" + }, + { + "name": "ons.age.30_40@S12000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_935a8ab25d527131b0b0538b" + }, + { + "name": "ons.age.30_40@S12000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceef5aeb430caf2018c8f270" + }, + { + "name": "ons.age.30_40@S12000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 85900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_877ddfaa2e9e35e0eecfe183" + }, + { + "name": "ons.age.30_40@S12000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea7817385f6d34f9fb67119b" + }, + { + "name": "ons.age.30_40@S12000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac7cfa191db91d292a21f082" + }, + { + "name": "ons.age.30_40@S12000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac0001109bd55068697c3f02" + }, + { + "name": "ons.age.30_40@S12000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca9c656f4edf2c6937d0963b" + }, + { + "name": "ons.age.30_40@S12000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3aca7a0ba297a6de0ab66b2" + }, + { + "name": "ons.age.30_40@S12000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebeb75150bafb09e105c4dc1" + }, + { + "name": "ons.age.30_40@S12000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83190e3f51ce9a64601f9fe" + }, + { + "name": "ons.age.30_40@S12000048", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60febd1195a382d5c03c4cc0" + }, + { + "name": "ons.age.30_40@S12000049", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 109695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7d5f17d41bd0ac05d5d0b37" + }, + { + "name": "ons.age.30_40@S12000050", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f78a40eb5aef2fe75357977e" + }, + { + "name": "ons.age.30_40@W06000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdd34be11a9b3a200a08761" + }, + { + "name": "ons.age.30_40@W06000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba6bbfe3bac0133c4a406070" + }, + { + "name": "ons.age.30_40@W06000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efd0b337811b3ea0a209cea4" + }, + { + "name": "ons.age.30_40@W06000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56dd301d91f2b76467c62caa" + }, + { + "name": "ons.age.30_40@W06000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f033325bb3a0fd75da145c" + }, + { + "name": "ons.age.30_40@W06000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8adb85ac5e2e632632d9621a" + }, + { + "name": "ons.age.30_40@W06000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d55d8d9aae9c655fe3948847" + }, + { + "name": "ons.age.30_40@W06000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a6ddfc3664367e0d790ccc" + }, + { + "name": "ons.age.30_40@W06000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e258d61ed466c5f143106c45" + }, + { + "name": "ons.age.30_40@W06000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e002dd2125fe24be91d4337" + }, + { + "name": "ons.age.30_40@W06000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8aa2e7aff6efc4c5c292bf3" + }, + { + "name": "ons.age.30_40@W06000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88f67aa71703e05f730a3943" + }, + { + "name": "ons.age.30_40@W06000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a4113ff5f090d4a0aa322f2" + }, + { + "name": "ons.age.30_40@W06000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5090754276c696d516238be5" + }, + { + "name": "ons.age.30_40@W06000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33564.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_13a0cdcd96c00fec9b19ecc1" + }, + { + "name": "ons.age.30_40@W06000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52dad5b48902aba4825a484b" + }, + { + "name": "ons.age.30_40@W06000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b83acc98fd264bb6d39483f0" + }, + { + "name": "ons.age.30_40@W06000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ad49189bc9fbbc9d242a9d" + }, + { + "name": "ons.age.30_40@W06000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78fb8664ce8cb5a87d81356c" + }, + { + "name": "ons.age.30_40@W06000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2064add752efae52d2de92d" + }, + { + "name": "ons.age.30_40@W06000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8bea90f364574921d64dc68" + }, + { + "name": "ons.age.30_40@W06000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c74af71a3b33ae1a288cc3a5" + } + ] + } + } + }, + "ons.age.40_50": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.40_50@E14001063", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc40136f8fbd6f7c3eeede26" + }, + { + "name": "ons.age.40_50@E14001064", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed10d796bbb80ee3241a6ce8" + }, + { + "name": "ons.age.40_50@E14001065", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c35ad210e465a2e39c2002f5" + }, + { + "name": "ons.age.40_50@E14001066", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e4b9e8c32ec3dd369bb668" + }, + { + "name": "ons.age.40_50@E14001067", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b14c9b99205f3668f85d0e39" + }, + { + "name": "ons.age.40_50@E14001068", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11570.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9748ec005b4ec54a9df26857" + }, + { + "name": "ons.age.40_50@E14001069", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a8d2d983e43037ad47c830" + }, + { + "name": "ons.age.40_50@E14001070", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58d2c2a532a28c84e43b5d09" + }, + { + "name": "ons.age.40_50@E14001071", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_900959a525ea2688fdbcdcfe" + }, + { + "name": "ons.age.40_50@E14001072", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb0a5230266f6e0760ee2ab1" + }, + { + "name": "ons.age.40_50@E14001073", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7370bc8911cc04ef665629d" + }, + { + "name": "ons.age.40_50@E14001074", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf559e57fe67479568f5d830" + }, + { + "name": "ons.age.40_50@E14001075", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a5255d07ee90cbbdd2568a" + }, + { + "name": "ons.age.40_50@E14001076", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10538.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3a9f2acbb7cd98ff2d5d261" + }, + { + "name": "ons.age.40_50@E14001077", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f52c477c519f644f95c791" + }, + { + "name": "ons.age.40_50@E14001078", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9caf6de754a2e7141f6b7315" + }, + { + "name": "ons.age.40_50@E14001079", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b02fbc5de8e51c5852a6982b" + }, + { + "name": "ons.age.40_50@E14001080", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5bfa07bb3fe6337e9313201" + }, + { + "name": "ons.age.40_50@E14001081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66adb2913b41c802a49de54" + }, + { + "name": "ons.age.40_50@E14001082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce3ce8aac40decb37da30794" + }, + { + "name": "ons.age.40_50@E14001083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b6f50818096ba1c61030a24" + }, + { + "name": "ons.age.40_50@E14001084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0ca18c58a5a61e54be595cb" + }, + { + "name": "ons.age.40_50@E14001085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7829c3df602c5a6b79a06896" + }, + { + "name": "ons.age.40_50@E14001086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1fcfc7acf3775b81cd84d7" + }, + { + "name": "ons.age.40_50@E14001087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb3c93f9a2b0422e9c51c815" + }, + { + "name": "ons.age.40_50@E14001088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4fc1c7f29bce02a080d9bd8" + }, + { + "name": "ons.age.40_50@E14001089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4cc78f466a62b14c5e6647" + }, + { + "name": "ons.age.40_50@E14001090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4010dadd51a29f23494c9fe8" + }, + { + "name": "ons.age.40_50@E14001091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c59a4536c9a063e36efe407a" + }, + { + "name": "ons.age.40_50@E14001092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae7c92246cc3074f1ed7167b" + }, + { + "name": "ons.age.40_50@E14001093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_583cae4eabd47afe7d19362d" + }, + { + "name": "ons.age.40_50@E14001094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd2021edb266f42ed0a7de72" + }, + { + "name": "ons.age.40_50@E14001095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15097.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94f6aea55f3cdd335c294b05" + }, + { + "name": "ons.age.40_50@E14001096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19224.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e88fbf07602401d5c839243c" + }, + { + "name": "ons.age.40_50@E14001097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_750c9a2aa70f963bd45677fa" + }, + { + "name": "ons.age.40_50@E14001098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58ebdeacfb74752dc8b4fc12" + }, + { + "name": "ons.age.40_50@E14001099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2bf53debdad37a38aeb3dd4" + }, + { + "name": "ons.age.40_50@E14001100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b706f2767a3ab7f2d390d6a8" + }, + { + "name": "ons.age.40_50@E14001101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0c607604c255cf9f4ecc4cd" + }, + { + "name": "ons.age.40_50@E14001102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd2e43304a31b1e9c78985e7" + }, + { + "name": "ons.age.40_50@E14001103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88b5e15a67d65274c5184c0c" + }, + { + "name": "ons.age.40_50@E14001104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10012.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6b7226b430a87bb591c643b" + }, + { + "name": "ons.age.40_50@E14001105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ce71ca9f5fc5b4776d9673" + }, + { + "name": "ons.age.40_50@E14001106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11511.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d8e3a29bff65464bc7ed1b7" + }, + { + "name": "ons.age.40_50@E14001107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11882.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfffdec9715975f4e0c3f859" + }, + { + "name": "ons.age.40_50@E14001108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f22e26e105e3b9da2f78b822" + }, + { + "name": "ons.age.40_50@E14001109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba64abe13d82c4a6315dea87" + }, + { + "name": "ons.age.40_50@E14001110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14667.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f294752e9eb1050c9b5d0757" + }, + { + "name": "ons.age.40_50@E14001111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f8308eef7fd12d0a2e7bcb7" + }, + { + "name": "ons.age.40_50@E14001112", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee4fb51c90bcb29bfca0e16" + }, + { + "name": "ons.age.40_50@E14001113", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b38927181c92f241a1f8f27c" + }, + { + "name": "ons.age.40_50@E14001114", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b0967cb695885dc9700d7e" + }, + { + "name": "ons.age.40_50@E14001115", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d66e10f31531488b8e146d0f" + }, + { + "name": "ons.age.40_50@E14001116", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af7d1423fbe7e0bca2b4377b" + }, + { + "name": "ons.age.40_50@E14001117", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4c1310eccd562d24daa9a03" + }, + { + "name": "ons.age.40_50@E14001118", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a417c16aa8dff80fbefb48f8" + }, + { + "name": "ons.age.40_50@E14001119", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce5d0d0a9f0726c3f266fc23" + }, + { + "name": "ons.age.40_50@E14001120", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db89da88dc957cb6fb26c894" + }, + { + "name": "ons.age.40_50@E14001121", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d836b5e52156a1c039e02b4e" + }, + { + "name": "ons.age.40_50@E14001122", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6628c9067dbce31cb0a0181" + }, + { + "name": "ons.age.40_50@E14001123", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_646215a95968f2e0f2590781" + }, + { + "name": "ons.age.40_50@E14001124", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d7a015ccad01fca4e8c282c" + }, + { + "name": "ons.age.40_50@E14001125", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93f5141fc24ed275348c7fea" + }, + { + "name": "ons.age.40_50@E14001126", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b64aaaafdf8d85cdc6763f8e" + }, + { + "name": "ons.age.40_50@E14001127", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a201f45b0b23b33dd12f0dcd" + }, + { + "name": "ons.age.40_50@E14001128", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee069e4b8f3abd9d91da93fd" + }, + { + "name": "ons.age.40_50@E14001129", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6dc323ca674caea4f15f73b" + }, + { + "name": "ons.age.40_50@E14001130", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e67702d1c1df98623ff9e8d1" + }, + { + "name": "ons.age.40_50@E14001131", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e184f59a8c8d9d69f1d36eb4" + }, + { + "name": "ons.age.40_50@E14001132", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31d73dba8b2d8b2090d35ed4" + }, + { + "name": "ons.age.40_50@E14001133", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41755aba6a27ac265c712b8d" + }, + { + "name": "ons.age.40_50@E14001134", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_656312286ab6e4275cc6c4a8" + }, + { + "name": "ons.age.40_50@E14001135", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1918e16a850d86200cbbafb" + }, + { + "name": "ons.age.40_50@E14001136", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d65ed9bc234669539e831f55" + }, + { + "name": "ons.age.40_50@E14001137", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85efd7a1dd0755e1e49bbe1" + }, + { + "name": "ons.age.40_50@E14001138", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96af59b5807c9fef6a334450" + }, + { + "name": "ons.age.40_50@E14001139", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffab8f5759689ecd024991f2" + }, + { + "name": "ons.age.40_50@E14001140", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_937c769e7618e090dc9a86e4" + }, + { + "name": "ons.age.40_50@E14001141", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15148.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd7143f6b5b8afcb4cd27a71" + }, + { + "name": "ons.age.40_50@E14001142", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_551d9eb5c5de7ca235c4214d" + }, + { + "name": "ons.age.40_50@E14001143", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e96a25ae10e675f8305c7a0b" + }, + { + "name": "ons.age.40_50@E14001144", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc92712f12364ea54f968174" + }, + { + "name": "ons.age.40_50@E14001145", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb881345a9a4271975a9a149" + }, + { + "name": "ons.age.40_50@E14001146", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba577f89b406dcfe96fac4ab" + }, + { + "name": "ons.age.40_50@E14001147", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9770ee0accf869146929673" + }, + { + "name": "ons.age.40_50@E14001148", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26885426083b69ab6aed9f5" + }, + { + "name": "ons.age.40_50@E14001149", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85be45800248c338e6dd4d3e" + }, + { + "name": "ons.age.40_50@E14001150", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acae78e4fd530f200edfec0d" + }, + { + "name": "ons.age.40_50@E14001151", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d612c61d964e6f23c5ceec0e" + }, + { + "name": "ons.age.40_50@E14001152", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaae77fe48a50186954c292f" + }, + { + "name": "ons.age.40_50@E14001153", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17005.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a1b329b3414fe7fb7a79b39" + }, + { + "name": "ons.age.40_50@E14001154", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc2d2186f0e1957599a923ff" + }, + { + "name": "ons.age.40_50@E14001155", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9802f63c41a88b0fbe17364d" + }, + { + "name": "ons.age.40_50@E14001156", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51578b2b14da4d137d91ae31" + }, + { + "name": "ons.age.40_50@E14001157", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fceec8cb6088c107f0854a0" + }, + { + "name": "ons.age.40_50@E14001158", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_684a15a5f06c6b679c081410" + }, + { + "name": "ons.age.40_50@E14001159", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f3963ca5113d3f73a32c397" + }, + { + "name": "ons.age.40_50@E14001160", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcbbcec4ba703bfef34e2a1a" + }, + { + "name": "ons.age.40_50@E14001161", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7899152683f7bdac71edd202" + }, + { + "name": "ons.age.40_50@E14001162", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a81246ebac07bd7e831c64c6" + }, + { + "name": "ons.age.40_50@E14001163", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11356.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47aaf16ec0126e9d81785fa5" + }, + { + "name": "ons.age.40_50@E14001164", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6e9e61049ffa8cb3461c31a" + }, + { + "name": "ons.age.40_50@E14001165", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de28fa8fe38e25aaa52df7d" + }, + { + "name": "ons.age.40_50@E14001166", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34a133d578b5024c2130c521" + }, + { + "name": "ons.age.40_50@E14001167", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b53922ebd8d5f0ca0e731e57" + }, + { + "name": "ons.age.40_50@E14001168", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83fed70967a9270db5a7b025" + }, + { + "name": "ons.age.40_50@E14001169", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2136130ee8095df049bfb21" + }, + { + "name": "ons.age.40_50@E14001170", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_577b93f8d53a8907aa5df84d" + }, + { + "name": "ons.age.40_50@E14001171", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff37c3bf4b9a5583c6908c3c" + }, + { + "name": "ons.age.40_50@E14001172", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8eda7b41ac083a6de4cb0eb" + }, + { + "name": "ons.age.40_50@E14001173", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f4bf3ab804766169ee1668e" + }, + { + "name": "ons.age.40_50@E14001174", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f36900f7705e6d789fe33c8f" + }, + { + "name": "ons.age.40_50@E14001175", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ced40a92073bb6b8c20313e" + }, + { + "name": "ons.age.40_50@E14001176", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cb3bddf57d75a70cc3acebf" + }, + { + "name": "ons.age.40_50@E14001177", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b22282192bf33d2236cf72d1" + }, + { + "name": "ons.age.40_50@E14001178", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11293.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db2d86cffd4d58c027bd11a" + }, + { + "name": "ons.age.40_50@E14001179", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c56addab15ee5c4e4355f28e" + }, + { + "name": "ons.age.40_50@E14001180", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0152fd93577281ea87e3412" + }, + { + "name": "ons.age.40_50@E14001181", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c572b3a05f82aa83795632bc" + }, + { + "name": "ons.age.40_50@E14001182", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f355832403b8ff4fbefb6ade" + }, + { + "name": "ons.age.40_50@E14001183", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b3151eaef9fc0c72d7bdb26" + }, + { + "name": "ons.age.40_50@E14001184", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83e806e2278c24e835230de4" + }, + { + "name": "ons.age.40_50@E14001185", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52bdfec06ad61120f140ac8b" + }, + { + "name": "ons.age.40_50@E14001186", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94d2b9e71ec109192d6f4e8f" + }, + { + "name": "ons.age.40_50@E14001187", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ffeb76d9b947e351d9a6f49" + }, + { + "name": "ons.age.40_50@E14001188", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a34ca037c045ea23cc187e85" + }, + { + "name": "ons.age.40_50@E14001189", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5e20ab0c8a95940a41e7037" + }, + { + "name": "ons.age.40_50@E14001190", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfdcd68801a43702ef90e07d" + }, + { + "name": "ons.age.40_50@E14001191", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e118ce402a76393b545bd0c" + }, + { + "name": "ons.age.40_50@E14001192", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8ddf8c44fa72aa9c6847c67" + }, + { + "name": "ons.age.40_50@E14001193", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce0ed7703beff0b345717c3d" + }, + { + "name": "ons.age.40_50@E14001194", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88170411bc5ec51c10e17af" + }, + { + "name": "ons.age.40_50@E14001195", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eccf275d032d3e7b920ebb18" + }, + { + "name": "ons.age.40_50@E14001196", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14074.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a8c4fd107264e73f92d905c" + }, + { + "name": "ons.age.40_50@E14001197", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de22b6fe2ccf61805e91051d" + }, + { + "name": "ons.age.40_50@E14001198", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d6457ff33faf969d893f63" + }, + { + "name": "ons.age.40_50@E14001199", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_349b1b870e129b5748191a8c" + }, + { + "name": "ons.age.40_50@E14001200", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11070.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32f4e75811c237c5baf13550" + }, + { + "name": "ons.age.40_50@E14001201", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e48664e3e798fd3d0f8dd47c" + }, + { + "name": "ons.age.40_50@E14001202", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f85dd6d64109bd13c921199a" + }, + { + "name": "ons.age.40_50@E14001203", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bac4b8b1cf50554ce47a83c0" + }, + { + "name": "ons.age.40_50@E14001204", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fcfc56bb2d79d08fa8b94f9" + }, + { + "name": "ons.age.40_50@E14001205", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f859c1cee85ab3b58e61bad0" + }, + { + "name": "ons.age.40_50@E14001206", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16482.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e299b449c96ac2605ed6edf4" + }, + { + "name": "ons.age.40_50@E14001207", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_617c2b8d6a44cdb5c2318737" + }, + { + "name": "ons.age.40_50@E14001208", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab89c5d71607b612a56437b2" + }, + { + "name": "ons.age.40_50@E14001209", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0ff3e2d6a370666d3ee44e5" + }, + { + "name": "ons.age.40_50@E14001210", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4932c4062036330bcdc0946" + }, + { + "name": "ons.age.40_50@E14001211", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3193d9c677d025f7747e46c" + }, + { + "name": "ons.age.40_50@E14001212", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc813c37aa085a540b52da89" + }, + { + "name": "ons.age.40_50@E14001213", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e5f32efdec66ca7957f5e60" + }, + { + "name": "ons.age.40_50@E14001214", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d88d5cf363e9eb05a63a8c2f" + }, + { + "name": "ons.age.40_50@E14001215", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b750c82fbd6b72bf2a321f29" + }, + { + "name": "ons.age.40_50@E14001216", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2faef028dff7c700e1a1c5f" + }, + { + "name": "ons.age.40_50@E14001217", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12222.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6751902416da40710d3dcac" + }, + { + "name": "ons.age.40_50@E14001218", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13226.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbeb6717d87f5503b7398a48" + }, + { + "name": "ons.age.40_50@E14001219", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aef1c459bc14147d32fba99e" + }, + { + "name": "ons.age.40_50@E14001220", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc3b456049174abec74ddae8" + }, + { + "name": "ons.age.40_50@E14001221", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfec3bd156a58f3913741fa5" + }, + { + "name": "ons.age.40_50@E14001222", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c724732a01be18463a211bdc" + }, + { + "name": "ons.age.40_50@E14001223", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_813d696e2813f60b63150f7a" + }, + { + "name": "ons.age.40_50@E14001224", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_681548237acdde55f84ab437" + }, + { + "name": "ons.age.40_50@E14001225", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85d0b056fc1500ecdb00bf6f" + }, + { + "name": "ons.age.40_50@E14001226", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f579c1fde4b39b32132336b" + }, + { + "name": "ons.age.40_50@E14001227", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb551a3b8c047da7d44baffb" + }, + { + "name": "ons.age.40_50@E14001228", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50bf3af92431c714f5c1a470" + }, + { + "name": "ons.age.40_50@E14001229", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b03a90ea6ced1e1bca750c" + }, + { + "name": "ons.age.40_50@E14001230", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97d077405871ff92c961cc7c" + }, + { + "name": "ons.age.40_50@E14001231", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da10179f50d168cd4a67e6d1" + }, + { + "name": "ons.age.40_50@E14001232", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abb0be56eb82682fcdc6be1b" + }, + { + "name": "ons.age.40_50@E14001233", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_04f84bf085d1d440bc4c1b79" + }, + { + "name": "ons.age.40_50@E14001234", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d1d92e057a98d945d00b48" + }, + { + "name": "ons.age.40_50@E14001235", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2638e29b0279f896b33f509" + }, + { + "name": "ons.age.40_50@E14001236", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e1704e9672921289053b3a6" + }, + { + "name": "ons.age.40_50@E14001237", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d953764aa0477d59a9c455cf" + }, + { + "name": "ons.age.40_50@E14001238", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a51c18ef5bb9891c01883eae" + }, + { + "name": "ons.age.40_50@E14001239", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d79906ae8739df2513965981" + }, + { + "name": "ons.age.40_50@E14001240", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec0a785d89c0e8ca288ef64" + }, + { + "name": "ons.age.40_50@E14001241", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44908a1a7de4a130035fa1b8" + }, + { + "name": "ons.age.40_50@E14001242", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbc0188828519762defde118" + }, + { + "name": "ons.age.40_50@E14001243", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5b4d542607f8d52b1a444f9" + }, + { + "name": "ons.age.40_50@E14001244", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12482.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b99dd842426795c4785c3e3d" + }, + { + "name": "ons.age.40_50@E14001245", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5933817ed64a0a1e3638ac2" + }, + { + "name": "ons.age.40_50@E14001246", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d967103c8ba7fdd75fc8ef55" + }, + { + "name": "ons.age.40_50@E14001247", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_437ca1678e0e5dafd15221b8" + }, + { + "name": "ons.age.40_50@E14001248", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97a1ea36363e118e21f57a62" + }, + { + "name": "ons.age.40_50@E14001249", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13504.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc4a77bfe1b285de10a44f00" + }, + { + "name": "ons.age.40_50@E14001250", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3619787cfa609e5685748cc" + }, + { + "name": "ons.age.40_50@E14001251", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1f789342c680efc56e0f2f" + }, + { + "name": "ons.age.40_50@E14001252", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe548842daaea9ccc2b382aa" + }, + { + "name": "ons.age.40_50@E14001253", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdb2c490d839f5c9b5a73e24" + }, + { + "name": "ons.age.40_50@E14001254", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7edcf1d6c02dbe369bff36a7" + }, + { + "name": "ons.age.40_50@E14001255", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb10250ace6ad6c6e6341a1d" + }, + { + "name": "ons.age.40_50@E14001256", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18413607b37d29839e44166e" + }, + { + "name": "ons.age.40_50@E14001257", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18277.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8225fb31c835d387903d517b" + }, + { + "name": "ons.age.40_50@E14001258", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f086dd036883b6ecd3e550fb" + }, + { + "name": "ons.age.40_50@E14001259", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7d7344dcf0f00d7b32eb1c0" + }, + { + "name": "ons.age.40_50@E14001260", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f3df96756eb720161437759" + }, + { + "name": "ons.age.40_50@E14001261", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8881f79635e65781ed85dd9e" + }, + { + "name": "ons.age.40_50@E14001262", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bcec5068aa01e11e1adb3b3" + }, + { + "name": "ons.age.40_50@E14001263", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13659.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c582c8e14bb40f97c8d95d84" + }, + { + "name": "ons.age.40_50@E14001264", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbf7f2d1df95aa4f1f903542" + }, + { + "name": "ons.age.40_50@E14001265", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eca31afd4ce16c06bfd6b999" + }, + { + "name": "ons.age.40_50@E14001266", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff8314a9ed1ab034ee28d30f" + }, + { + "name": "ons.age.40_50@E14001267", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aec9b144daa73872e5dad578" + }, + { + "name": "ons.age.40_50@E14001268", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_512d4683a4b2862d5c11d0be" + }, + { + "name": "ons.age.40_50@E14001269", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecfddca1045510ed74f1e2fc" + }, + { + "name": "ons.age.40_50@E14001270", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d8623cf4064b247b7b8e263" + }, + { + "name": "ons.age.40_50@E14001271", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9bc34c2a7ad7e10e3a1bd14" + }, + { + "name": "ons.age.40_50@E14001272", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee947688aafb3758961efe97" + }, + { + "name": "ons.age.40_50@E14001273", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4190c13ddf5381b602fea4e" + }, + { + "name": "ons.age.40_50@E14001274", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e399a60769007ad500820baf" + }, + { + "name": "ons.age.40_50@E14001275", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db2eb2d9c6fb3a0e0807b04b" + }, + { + "name": "ons.age.40_50@E14001276", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbfe22bb59c747c122aef986" + }, + { + "name": "ons.age.40_50@E14001277", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e84198187844974a62aee42c" + }, + { + "name": "ons.age.40_50@E14001278", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14996.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fc3bca18a260cc97ab2f0be" + }, + { + "name": "ons.age.40_50@E14001279", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20308.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee9a68dd4ddfdeda14fdfa92" + }, + { + "name": "ons.age.40_50@E14001280", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecb4402572c2640f534d0d21" + }, + { + "name": "ons.age.40_50@E14001281", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1280825be5c526d1efdd05f" + }, + { + "name": "ons.age.40_50@E14001282", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86472b363bdf8d3a60ed5bc3" + }, + { + "name": "ons.age.40_50@E14001283", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15661.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfbb737ff905d889552a5708" + }, + { + "name": "ons.age.40_50@E14001284", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_900f32242dda92ee4c1738c2" + }, + { + "name": "ons.age.40_50@E14001285", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a725dd317927e6307ad332a" + }, + { + "name": "ons.age.40_50@E14001286", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5fad8a0e49e21fab0d933e4" + }, + { + "name": "ons.age.40_50@E14001287", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2a0e588ccd37d8c51378ca5" + }, + { + "name": "ons.age.40_50@E14001288", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12348.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec34d913f832623c9aec813f" + }, + { + "name": "ons.age.40_50@E14001289", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63519a9977b49c62c3b5bff0" + }, + { + "name": "ons.age.40_50@E14001290", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80ed5a809cf8b08f27be91ab" + }, + { + "name": "ons.age.40_50@E14001291", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a74776eb863c66cbcb9b42cd" + }, + { + "name": "ons.age.40_50@E14001292", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_941affbd1fc3aac7f66f5815" + }, + { + "name": "ons.age.40_50@E14001293", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db0c8ac72f7399c04fc3065c" + }, + { + "name": "ons.age.40_50@E14001294", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66ce3c418308da3c126f832" + }, + { + "name": "ons.age.40_50@E14001295", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a7fcf2e347656af3e406e0f" + }, + { + "name": "ons.age.40_50@E14001296", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eff84488979a73750d1f265f" + }, + { + "name": "ons.age.40_50@E14001297", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e28b40b38666863dc3674cb5" + }, + { + "name": "ons.age.40_50@E14001298", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7f90052dd8ac98eadd1fd38" + }, + { + "name": "ons.age.40_50@E14001299", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_348689744a192f99d24dfd19" + }, + { + "name": "ons.age.40_50@E14001300", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c64e6164a81f9c099d7029b3" + }, + { + "name": "ons.age.40_50@E14001301", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65fd537fc65ccc056a3c9155" + }, + { + "name": "ons.age.40_50@E14001302", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d36bf63ce02a937927963167" + }, + { + "name": "ons.age.40_50@E14001303", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e161e25a14f32362a8ce8a56" + }, + { + "name": "ons.age.40_50@E14001304", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88250db7c29943fb1f66f73" + }, + { + "name": "ons.age.40_50@E14001305", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24c530a7d56792cc3975994d" + }, + { + "name": "ons.age.40_50@E14001306", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6ad1407e23f97b37c3071af" + }, + { + "name": "ons.age.40_50@E14001307", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f661de244077ed6e515a3375" + }, + { + "name": "ons.age.40_50@E14001308", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72561abac2b494140c0ec60b" + }, + { + "name": "ons.age.40_50@E14001309", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0e9ab316f1d1cc8d7e1ebcc" + }, + { + "name": "ons.age.40_50@E14001310", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea8bc4f690b5a688721e692c" + }, + { + "name": "ons.age.40_50@E14001311", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7254465abdc7f64301d05b7" + }, + { + "name": "ons.age.40_50@E14001312", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f048928d036533512c754784" + }, + { + "name": "ons.age.40_50@E14001313", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e22142e03aef047dacc95bd" + }, + { + "name": "ons.age.40_50@E14001314", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e7a61d03d02ea63603d670e" + }, + { + "name": "ons.age.40_50@E14001315", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a194f3ee61520ed86c9d2e30" + }, + { + "name": "ons.age.40_50@E14001316", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bda170dcc2b87ccbb0e491d4" + }, + { + "name": "ons.age.40_50@E14001317", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f4d7aa07eb18125f3ce63f8" + }, + { + "name": "ons.age.40_50@E14001318", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbf19e0be037454897c9dab0" + }, + { + "name": "ons.age.40_50@E14001319", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c44236fafb448ebfe13c8e8" + }, + { + "name": "ons.age.40_50@E14001320", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbf0f4473a50cb8b51b796be" + }, + { + "name": "ons.age.40_50@E14001321", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b423bbfd7493e9a34a13b93b" + }, + { + "name": "ons.age.40_50@E14001322", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e8361ff4f59ffecb6c89ac3" + }, + { + "name": "ons.age.40_50@E14001323", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a94ca6c696244dbc42f08de2" + }, + { + "name": "ons.age.40_50@E14001324", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1c814de0a52641c73ad3a97" + }, + { + "name": "ons.age.40_50@E14001325", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cfa9844e1af45252c446a6e" + }, + { + "name": "ons.age.40_50@E14001326", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3108a81e71751c316732512" + }, + { + "name": "ons.age.40_50@E14001327", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7951f52d63a15e3d37eb22b2" + }, + { + "name": "ons.age.40_50@E14001328", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d313da575254965f4f596223" + }, + { + "name": "ons.age.40_50@E14001329", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c072aa8a5a6958294b329b32" + }, + { + "name": "ons.age.40_50@E14001330", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a1036cfe24a90eaceedbcc" + }, + { + "name": "ons.age.40_50@E14001331", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c220b03117c2790d63f62761" + }, + { + "name": "ons.age.40_50@E14001332", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85694aed31316bef38e56c77" + }, + { + "name": "ons.age.40_50@E14001333", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9db6ff1f1f1d19d3be7b2f1" + }, + { + "name": "ons.age.40_50@E14001334", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff53d5492703981dfb04f634" + }, + { + "name": "ons.age.40_50@E14001335", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9b11215362fc0f45fa0f8f6" + }, + { + "name": "ons.age.40_50@E14001336", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d731920d32df0f3e58c6a2" + }, + { + "name": "ons.age.40_50@E14001337", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_623f705a01096aa94657cf1f" + }, + { + "name": "ons.age.40_50@E14001338", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41db20751e7a987bad201cc" + }, + { + "name": "ons.age.40_50@E14001339", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8202b7694182a47e52dda2b" + }, + { + "name": "ons.age.40_50@E14001340", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9285dbd83d7598e083f62b4b" + }, + { + "name": "ons.age.40_50@E14001341", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d1cbfaaff2c7d02f9fa9bc5" + }, + { + "name": "ons.age.40_50@E14001342", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc010d7010687b1b5d940a73" + }, + { + "name": "ons.age.40_50@E14001343", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3bd387dfaaac8d4d320f9e8" + }, + { + "name": "ons.age.40_50@E14001344", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0a39f67824446832904ed27" + }, + { + "name": "ons.age.40_50@E14001345", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90f49c015bcd92c403510b53" + }, + { + "name": "ons.age.40_50@E14001346", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ffd31b72509d25d5f77a445" + }, + { + "name": "ons.age.40_50@E14001347", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1e189f7df95b48abb5d0185" + }, + { + "name": "ons.age.40_50@E14001348", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd68b79aec523f4d988570f2" + }, + { + "name": "ons.age.40_50@E14001349", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5746768afc53ef533c78352" + }, + { + "name": "ons.age.40_50@E14001350", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61dfe005fe1fd47f82121db4" + }, + { + "name": "ons.age.40_50@E14001351", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b609bdbbc35b9b97926d18" + }, + { + "name": "ons.age.40_50@E14001352", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae33bf7dcd2246591547919d" + }, + { + "name": "ons.age.40_50@E14001353", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7fbb8a66a26946bbc1b2160" + }, + { + "name": "ons.age.40_50@E14001354", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d9a44dbb6f962d463ad3eb8" + }, + { + "name": "ons.age.40_50@E14001355", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdbb5478b5fb3d93b4bbeb6a" + }, + { + "name": "ons.age.40_50@E14001356", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d11399bcf970f01126e148d" + }, + { + "name": "ons.age.40_50@E14001357", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f85b6b7d897def2de863a113" + }, + { + "name": "ons.age.40_50@E14001358", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced99491ce5ed58e45482944" + }, + { + "name": "ons.age.40_50@E14001359", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_30a787190a761bf8fa37eff3" + }, + { + "name": "ons.age.40_50@E14001360", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_419a6719a49ce930e3f4282e" + }, + { + "name": "ons.age.40_50@E14001361", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8462d0053d26634559601b40" + }, + { + "name": "ons.age.40_50@E14001362", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_07806303e266dd05c77be161" + }, + { + "name": "ons.age.40_50@E14001363", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0a4550dd8b7c9bcd822d446" + }, + { + "name": "ons.age.40_50@E14001364", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_911c658dc65fdec255db8a1f" + }, + { + "name": "ons.age.40_50@E14001365", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b645b3c483f3ac3eecde526a" + }, + { + "name": "ons.age.40_50@E14001366", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa30be5a35eb652d17f30dc6" + }, + { + "name": "ons.age.40_50@E14001367", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aee498a0d1a0085f932ecde6" + }, + { + "name": "ons.age.40_50@E14001368", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89c02589cc47eea6395b093d" + }, + { + "name": "ons.age.40_50@E14001369", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05f39a640a03792d7f8963f" + }, + { + "name": "ons.age.40_50@E14001370", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebeb469937bca0860285a65c" + }, + { + "name": "ons.age.40_50@E14001371", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba60aa365767d0ee562c5963" + }, + { + "name": "ons.age.40_50@E14001372", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa42bb478471dcf30362d8c2" + }, + { + "name": "ons.age.40_50@E14001373", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10040.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_584e0c87f26b4682bf0a3f77" + }, + { + "name": "ons.age.40_50@E14001374", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a485873b592019f895868132" + }, + { + "name": "ons.age.40_50@E14001375", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_532c21dad1a8f515cd90c95a" + }, + { + "name": "ons.age.40_50@E14001376", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69e3371a410515bf5ab339b5" + }, + { + "name": "ons.age.40_50@E14001377", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fe1233d097b4c0f111559db" + }, + { + "name": "ons.age.40_50@E14001378", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a38093d720c026e880c857e" + }, + { + "name": "ons.age.40_50@E14001379", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_798e2d282915a5e8c9b20976" + }, + { + "name": "ons.age.40_50@E14001380", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e58d15bc036e68fa72be3afb" + }, + { + "name": "ons.age.40_50@E14001381", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb8a0370324e6d4a2fdb4c8b" + }, + { + "name": "ons.age.40_50@E14001382", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9448e5b3ecb1b9ee78759b7" + }, + { + "name": "ons.age.40_50@E14001383", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18338d66b00105163a3a3706" + }, + { + "name": "ons.age.40_50@E14001384", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65d48bfa782d277427d35a7b" + }, + { + "name": "ons.age.40_50@E14001385", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35ea277a1a0c435fc6cbe0a6" + }, + { + "name": "ons.age.40_50@E14001386", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6c43361f6278cd658d45431" + }, + { + "name": "ons.age.40_50@E14001387", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3427296395eadfce1eed78d7" + }, + { + "name": "ons.age.40_50@E14001388", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_781177ca1d14abfc8af57264" + }, + { + "name": "ons.age.40_50@E14001389", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c68ba13de98a6a17d6ef3013" + }, + { + "name": "ons.age.40_50@E14001390", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f9a2fed1d01b35c1c5b3087" + }, + { + "name": "ons.age.40_50@E14001391", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4962fa34c85a554e70adb03" + }, + { + "name": "ons.age.40_50@E14001392", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_338dbf0ede0e70aef5538476" + }, + { + "name": "ons.age.40_50@E14001393", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c623645ad191bfcfcea6d02b" + }, + { + "name": "ons.age.40_50@E14001394", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39cd42f0f78e94a36cae51dc" + }, + { + "name": "ons.age.40_50@E14001395", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a082736549350cd1b0fc67a" + }, + { + "name": "ons.age.40_50@E14001396", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7983.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d04cf63ec397c8b65c52692f" + }, + { + "name": "ons.age.40_50@E14001397", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b90ba5ce05b31bb061c8559c" + }, + { + "name": "ons.age.40_50@E14001398", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9bfd027d41f673ce84a74b" + }, + { + "name": "ons.age.40_50@E14001399", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa1d619809d51d6d940d2f93" + }, + { + "name": "ons.age.40_50@E14001400", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ceb49baa7dff6807a2f314" + }, + { + "name": "ons.age.40_50@E14001401", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37b12315216709083bf31687" + }, + { + "name": "ons.age.40_50@E14001402", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_609c96ae0588f970d8da6963" + }, + { + "name": "ons.age.40_50@E14001403", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d64d3f5339aafb7f72e1181e" + }, + { + "name": "ons.age.40_50@E14001404", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12983.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a13ce26c2abcc39d313cca61" + }, + { + "name": "ons.age.40_50@E14001405", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f6334faf30651072346bd94" + }, + { + "name": "ons.age.40_50@E14001406", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_635126b6dee1cd24b5dc6879" + }, + { + "name": "ons.age.40_50@E14001407", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fa7cce81a6b2efb852e88b5" + }, + { + "name": "ons.age.40_50@E14001408", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbcec87ba6230405316021c3" + }, + { + "name": "ons.age.40_50@E14001409", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49ef267b88bbdd6f54952d1" + }, + { + "name": "ons.age.40_50@E14001410", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f055b46507c50c1e64dbb4" + }, + { + "name": "ons.age.40_50@E14001411", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b886413837e6d378a35e760e" + }, + { + "name": "ons.age.40_50@E14001412", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5c262f133b10211fda9685d" + }, + { + "name": "ons.age.40_50@E14001413", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12950.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9663d7625c0bbab4cf9da1d" + }, + { + "name": "ons.age.40_50@E14001414", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_604140370dbf695bfc809e29" + }, + { + "name": "ons.age.40_50@E14001415", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81ad9a7a93aeabaf82142877" + }, + { + "name": "ons.age.40_50@E14001416", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8b13755af8d8a91d11d0077" + }, + { + "name": "ons.age.40_50@E14001417", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3f2dd0d0fc0469b171a8987" + }, + { + "name": "ons.age.40_50@E14001418", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1c69f9f4c340591ce6a1d57" + }, + { + "name": "ons.age.40_50@E14001419", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3f21329cb5ba5d40af55f4c" + }, + { + "name": "ons.age.40_50@E14001420", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c54c04d0f848272eea358af1" + }, + { + "name": "ons.age.40_50@E14001421", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13741.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb9972345af0a72f33b954d2" + }, + { + "name": "ons.age.40_50@E14001422", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13882.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ff444cd9c1830d2611b958" + }, + { + "name": "ons.age.40_50@E14001423", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_684d2979d48151c2c3898031" + }, + { + "name": "ons.age.40_50@E14001424", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dd37d75b88282880593c951" + }, + { + "name": "ons.age.40_50@E14001425", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6ac17b85e93a359f7430d83" + }, + { + "name": "ons.age.40_50@E14001426", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e714eb2f11af3c766b8d66c7" + }, + { + "name": "ons.age.40_50@E14001427", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b472d37a879ab269026a3f9d" + }, + { + "name": "ons.age.40_50@E14001428", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c23d303c0d090ded8535e2b1" + }, + { + "name": "ons.age.40_50@E14001429", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_912f47d717ba9bfce9df39f8" + }, + { + "name": "ons.age.40_50@E14001430", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ace3826121714a347fc29a00" + }, + { + "name": "ons.age.40_50@E14001431", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_700295c237c6bee109309fbc" + }, + { + "name": "ons.age.40_50@E14001432", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ca8ddbd5b000f044c6d6436" + }, + { + "name": "ons.age.40_50@E14001433", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbc585a82a490e860f415836" + }, + { + "name": "ons.age.40_50@E14001434", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9efc60f814f09a871d1ba60" + }, + { + "name": "ons.age.40_50@E14001435", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68d0822771cb4aa421e64527" + }, + { + "name": "ons.age.40_50@E14001436", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b72d0059162ccebcaf92d1e5" + }, + { + "name": "ons.age.40_50@E14001437", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_942e2a5b7a324c7f03190538" + }, + { + "name": "ons.age.40_50@E14001438", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17485.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed614588d0147a76fa583860" + }, + { + "name": "ons.age.40_50@E14001439", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec4a2d67899f9b9eef63848" + }, + { + "name": "ons.age.40_50@E14001440", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10405.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5b3ea981d41956fa07fbfd8" + }, + { + "name": "ons.age.40_50@E14001441", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea7d7239f0c6307a09da9eef" + }, + { + "name": "ons.age.40_50@E14001442", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8deb372bc565f254999e449f" + }, + { + "name": "ons.age.40_50@E14001443", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b82a831eb706ba89ffe98338" + }, + { + "name": "ons.age.40_50@E14001444", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9590.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be9f4a5aff670d3a21b638d4" + }, + { + "name": "ons.age.40_50@E14001445", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ff3739283b91eafc7f5ff7e" + }, + { + "name": "ons.age.40_50@E14001446", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb56a26817646dec4322705c" + }, + { + "name": "ons.age.40_50@E14001447", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a0322486d415fb8a4bfc3e0" + }, + { + "name": "ons.age.40_50@E14001448", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7b524b65f0c124d87b10a43" + }, + { + "name": "ons.age.40_50@E14001449", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2f2fe66abe5d7fd782f5e39" + }, + { + "name": "ons.age.40_50@E14001450", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b624549d6ece7c9f014d6889" + }, + { + "name": "ons.age.40_50@E14001451", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10538.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6638f3bc3651d9f876c53c5" + }, + { + "name": "ons.age.40_50@E14001452", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf1fe19248363d981d196418" + }, + { + "name": "ons.age.40_50@E14001453", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa13a87e894b175db8cd8230" + }, + { + "name": "ons.age.40_50@E14001454", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cdf8dff2c6b4b224f40550b" + }, + { + "name": "ons.age.40_50@E14001455", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fd5c075c5ce65b33b52bd03" + }, + { + "name": "ons.age.40_50@E14001456", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4c9cad3e7ff4d3b03c8ed9" + }, + { + "name": "ons.age.40_50@E14001457", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13826.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee4ca84352f2dcf0beaad4d6" + }, + { + "name": "ons.age.40_50@E14001458", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9feb4541a6546b270725ce2" + }, + { + "name": "ons.age.40_50@E14001459", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3a32fb05ad02cbbd35a981e" + }, + { + "name": "ons.age.40_50@E14001460", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de3ba8d664020407f002fda7" + }, + { + "name": "ons.age.40_50@E14001461", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69d411ad95f2d3739bf26a1e" + }, + { + "name": "ons.age.40_50@E14001462", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a64e20d131cb4f138b02ab95" + }, + { + "name": "ons.age.40_50@E14001463", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10369.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d51555defdd3040b098698" + }, + { + "name": "ons.age.40_50@E14001464", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e72d4ed4f476568f5d8173" + }, + { + "name": "ons.age.40_50@E14001465", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d00617d352cf56a3f33f4b16" + }, + { + "name": "ons.age.40_50@E14001466", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1a12d882e4d22df18c615c0" + }, + { + "name": "ons.age.40_50@E14001467", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa8b1be8be64f47b5f9a022f" + }, + { + "name": "ons.age.40_50@E14001468", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b89d3b669c776f2d2554086f" + }, + { + "name": "ons.age.40_50@E14001469", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4abc51eface301e9c21a65e" + }, + { + "name": "ons.age.40_50@E14001470", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81f471d529260075f4f5d648" + }, + { + "name": "ons.age.40_50@E14001471", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12633.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7658e357f812a11df88612fa" + }, + { + "name": "ons.age.40_50@E14001472", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5397b8ce06def34d56594fd7" + }, + { + "name": "ons.age.40_50@E14001473", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad6abf2b09dd9a98768b291a" + }, + { + "name": "ons.age.40_50@E14001474", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_feea6d5978e410dc161c11c4" + }, + { + "name": "ons.age.40_50@E14001475", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10947.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b266e915f4ae99979ccaefc9" + }, + { + "name": "ons.age.40_50@E14001476", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1e73f612eb743f4bcbc27e" + }, + { + "name": "ons.age.40_50@E14001477", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d648664a24b9b2876f5cda4b" + }, + { + "name": "ons.age.40_50@E14001478", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_26efab1c872f12469ff50e15" + }, + { + "name": "ons.age.40_50@E14001479", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95e00804a7a6b5fc1f5b34df" + }, + { + "name": "ons.age.40_50@E14001480", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13107.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a98b147b2c10001c4e4c8e47" + }, + { + "name": "ons.age.40_50@E14001481", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8803c2f853c2a35ca72b2b6" + }, + { + "name": "ons.age.40_50@E14001482", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11553.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_149deb6861fc693c6685ec80" + }, + { + "name": "ons.age.40_50@E14001483", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b35c916db54333e7e248b77" + }, + { + "name": "ons.age.40_50@E14001484", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0036cb41e41ff7b08c587d1" + }, + { + "name": "ons.age.40_50@E14001485", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10541.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbbc24eafeade9f57cd7fbc1" + }, + { + "name": "ons.age.40_50@E14001486", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48dc74e623afea5894e06285" + }, + { + "name": "ons.age.40_50@E14001487", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb829ec3d8f30860dc0caea8" + }, + { + "name": "ons.age.40_50@E14001488", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56ba9ebfb2a1a9fe014470e" + }, + { + "name": "ons.age.40_50@E14001489", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_574907e4a9a050cab37a4c8f" + }, + { + "name": "ons.age.40_50@E14001490", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6541e556099e68fc28e47d7" + }, + { + "name": "ons.age.40_50@E14001491", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85dffbf8709188c425fffdb5" + }, + { + "name": "ons.age.40_50@E14001492", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc45cfaab5520896a24079e4" + }, + { + "name": "ons.age.40_50@E14001493", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_990591fb01cd56c1ab24229c" + }, + { + "name": "ons.age.40_50@E14001494", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd4bcd5e728475328fe5a1ee" + }, + { + "name": "ons.age.40_50@E14001495", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4a146c5c7becfeb8dd97d6a" + }, + { + "name": "ons.age.40_50@E14001496", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e98c547810455e4eb093130d" + }, + { + "name": "ons.age.40_50@E14001497", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93581e09d98ca057f4fff14" + }, + { + "name": "ons.age.40_50@E14001498", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eaa06cfb55b3b0579f7ba8d" + }, + { + "name": "ons.age.40_50@E14001499", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2c13bbca662a4ccdedab535" + }, + { + "name": "ons.age.40_50@E14001500", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15356.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b810fee9de6593c05de55f58" + }, + { + "name": "ons.age.40_50@E14001501", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13281.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b25aea5f6c84312276f77d2" + }, + { + "name": "ons.age.40_50@E14001502", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14372.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6abb638155d154a9bd3b0f2" + }, + { + "name": "ons.age.40_50@E14001503", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de7776e6f0bad196c4f7f844" + }, + { + "name": "ons.age.40_50@E14001504", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c465285bb8d898aafb2669e3" + }, + { + "name": "ons.age.40_50@E14001505", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaf50550f4e1d4083ce561c6" + }, + { + "name": "ons.age.40_50@E14001506", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae02d178a1263a20a7332a24" + }, + { + "name": "ons.age.40_50@E14001507", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3a9970675439af62ff67e47" + }, + { + "name": "ons.age.40_50@E14001508", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e368de17ecfb2124085143fd" + }, + { + "name": "ons.age.40_50@E14001509", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52ddf3c83c6bc17a2518c042" + }, + { + "name": "ons.age.40_50@E14001510", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_20eb5d73a50d7c104907bd77" + }, + { + "name": "ons.age.40_50@E14001511", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd50cafc67db3581dfacd83" + }, + { + "name": "ons.age.40_50@E14001512", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5503aa430753530d8d78473d" + }, + { + "name": "ons.age.40_50@E14001513", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11689.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9b6edcdb189c88d7dbc6f33" + }, + { + "name": "ons.age.40_50@E14001514", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22401abd7add312e177f815" + }, + { + "name": "ons.age.40_50@E14001515", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12417.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8e186df848b3b4afba2fea0" + }, + { + "name": "ons.age.40_50@E14001516", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_452a7c5c894f7abcdbd8a72c" + }, + { + "name": "ons.age.40_50@E14001517", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_19a966e636da85cf294a4e1a" + }, + { + "name": "ons.age.40_50@E14001518", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75dbe336e9fca1d9a8adb12" + }, + { + "name": "ons.age.40_50@E14001519", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_812f5c8133d01ab0600431a3" + }, + { + "name": "ons.age.40_50@E14001520", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db1d3e014357afe0f11cb0e9" + }, + { + "name": "ons.age.40_50@E14001521", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c5a99ff09a83a0b229ea7d7" + }, + { + "name": "ons.age.40_50@E14001522", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc996caea9498b586a2aaaa9" + }, + { + "name": "ons.age.40_50@E14001523", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dbba4aba988204785fa5469" + }, + { + "name": "ons.age.40_50@E14001524", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_198d9c1c9f384240fb923774" + }, + { + "name": "ons.age.40_50@E14001525", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb2cf7bf857b888de862d25" + }, + { + "name": "ons.age.40_50@E14001526", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_449c5de103620d476c57a465" + }, + { + "name": "ons.age.40_50@E14001527", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_887bf14415b6f666b4eccb73" + }, + { + "name": "ons.age.40_50@E14001528", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14417.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f5ea7b06aa00b8624be94d4" + }, + { + "name": "ons.age.40_50@E14001529", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2711d0200e29c84181872eee" + }, + { + "name": "ons.age.40_50@E14001530", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_caa318844387f086f12abdd4" + }, + { + "name": "ons.age.40_50@E14001531", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12291.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac3b8b257379fcf7abee102" + }, + { + "name": "ons.age.40_50@E14001532", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d83d6439beeda963520a2b3f" + }, + { + "name": "ons.age.40_50@E14001533", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf25f03596ddaccec5316bf3" + }, + { + "name": "ons.age.40_50@E14001534", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed703e3a090d0daad1351a9" + }, + { + "name": "ons.age.40_50@E14001535", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be1c91c9d847dea58b2dbebe" + }, + { + "name": "ons.age.40_50@E14001536", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9563a8f4c898abca15eb694d" + }, + { + "name": "ons.age.40_50@E14001537", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dee8b5ad88bdbb505d2b8a90" + }, + { + "name": "ons.age.40_50@E14001538", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e15319c1932072b6cf2c694d" + }, + { + "name": "ons.age.40_50@E14001539", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8422c6964eb5bb82743f2b7b" + }, + { + "name": "ons.age.40_50@E14001540", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4b58161c03426e4bee6d29b" + }, + { + "name": "ons.age.40_50@E14001541", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb5004eddea96f830095a17" + }, + { + "name": "ons.age.40_50@E14001542", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adec65eea3596d779234eef3" + }, + { + "name": "ons.age.40_50@E14001543", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ee40d020ba4e358523fa2db" + }, + { + "name": "ons.age.40_50@E14001544", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9f21c3d3b3d24f3925cf5ac" + }, + { + "name": "ons.age.40_50@E14001545", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d64e49b6ff745837f671a88" + }, + { + "name": "ons.age.40_50@E14001546", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dcccecd5ed12ba70c60784f" + }, + { + "name": "ons.age.40_50@E14001547", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0a40430e99bcc8702afbf86" + }, + { + "name": "ons.age.40_50@E14001548", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d16cb26973c3ce43d31ab856" + }, + { + "name": "ons.age.40_50@E14001549", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13084.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c4e05f02ebf629a0b437755" + }, + { + "name": "ons.age.40_50@E14001550", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95be1d9dc1881f15f842206" + }, + { + "name": "ons.age.40_50@E14001551", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_832d8ddb65bf6a5b154b9539" + }, + { + "name": "ons.age.40_50@E14001552", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8f92f29b23eed24486e6d92" + }, + { + "name": "ons.age.40_50@E14001553", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ddbfc06fc82f5c5028ab739" + }, + { + "name": "ons.age.40_50@E14001554", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5d2ae93575b7075a9364066" + }, + { + "name": "ons.age.40_50@E14001555", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c20a74c295f37d5d49b350f1" + }, + { + "name": "ons.age.40_50@E14001556", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dad8f99d09ab645574eac1b" + }, + { + "name": "ons.age.40_50@E14001557", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3b8931a1a776717b8e2f371" + }, + { + "name": "ons.age.40_50@E14001558", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f95a631473bb2c6081682c63" + }, + { + "name": "ons.age.40_50@E14001559", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87b85af76e3db8566cb0774c" + }, + { + "name": "ons.age.40_50@E14001560", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81e9314d01cfef164942b801" + }, + { + "name": "ons.age.40_50@E14001561", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df6dac7f6c8a2c22806a8ff8" + }, + { + "name": "ons.age.40_50@E14001562", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8c2e30af91fa531e050ca3c" + }, + { + "name": "ons.age.40_50@E14001563", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c9a5fe8172128ae2652e663" + }, + { + "name": "ons.age.40_50@E14001564", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_12e0891d90b11c4ceb4cb76c" + }, + { + "name": "ons.age.40_50@E14001565", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afbd4d9e79948f092fef439c" + }, + { + "name": "ons.age.40_50@E14001566", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fcd9c0ac7024b33219873de" + }, + { + "name": "ons.age.40_50@E14001567", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa90668c35b4eaac14bd34a7" + }, + { + "name": "ons.age.40_50@E14001568", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5512b9b10719ec881ff7791c" + }, + { + "name": "ons.age.40_50@E14001569", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_979374352f43e164d737de6a" + }, + { + "name": "ons.age.40_50@E14001570", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_978bc4ac39b1227f15736c69" + }, + { + "name": "ons.age.40_50@E14001571", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d2d552a614a735f7e31a2d" + }, + { + "name": "ons.age.40_50@E14001572", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10114.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3838a74ef2dbadb8b90bc785" + }, + { + "name": "ons.age.40_50@E14001573", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52e17cdb19f28891d0b1c417" + }, + { + "name": "ons.age.40_50@E14001574", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7029e8be51f87d12128d9ce9" + }, + { + "name": "ons.age.40_50@E14001575", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3d2e6de2b3ca5c1ff9b60ee" + }, + { + "name": "ons.age.40_50@E14001576", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5dec9ad7cb6f021960e0d3d" + }, + { + "name": "ons.age.40_50@E14001577", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba9655e2b6f071ff716f73f8" + }, + { + "name": "ons.age.40_50@E14001578", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_455b67f7274cfb6a04dae30b" + }, + { + "name": "ons.age.40_50@E14001579", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_822cd850ac3dd9cb4988ee77" + }, + { + "name": "ons.age.40_50@E14001580", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5fef2371d79dbac7b47d2d" + }, + { + "name": "ons.age.40_50@E14001581", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b0b4bcf1eccf40eef5a6988" + }, + { + "name": "ons.age.40_50@E14001582", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6099acc73834086335ead12" + }, + { + "name": "ons.age.40_50@E14001583", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f40feaadb77d89634aa7ae24" + }, + { + "name": "ons.age.40_50@E14001584", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96571d83f0e552f81dda7c2d" + }, + { + "name": "ons.age.40_50@E14001585", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2d0108b2060f7b25bd80a3e" + }, + { + "name": "ons.age.40_50@E14001586", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3064aa91dfe490714cd5d8b" + }, + { + "name": "ons.age.40_50@E14001587", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_895529fe3d8122c8cba319f2" + }, + { + "name": "ons.age.40_50@E14001588", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15785.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6d4c6b8f0d68a9e828e3d00" + }, + { + "name": "ons.age.40_50@E14001589", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85c4ed24d10a32239bc79f5" + }, + { + "name": "ons.age.40_50@E14001590", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6772089ad79255532291e7c2" + }, + { + "name": "ons.age.40_50@E14001591", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d739361a18932b500a1da1e7" + }, + { + "name": "ons.age.40_50@E14001592", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e09cd317b4562414757d3381" + }, + { + "name": "ons.age.40_50@E14001593", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b16369bfb0aa33b55eb34fb" + }, + { + "name": "ons.age.40_50@E14001594", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aae0565f2a0133c3f975825a" + }, + { + "name": "ons.age.40_50@E14001595", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7d90bda296cac6935177d76" + }, + { + "name": "ons.age.40_50@E14001596", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15579.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d08c841a12a3e55b495bfbda" + }, + { + "name": "ons.age.40_50@E14001597", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f08167ae7b4fba7d20528731" + }, + { + "name": "ons.age.40_50@E14001598", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f537b53f40bc4babaf934acd" + }, + { + "name": "ons.age.40_50@E14001599", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe849db5c6caf9681901f87a" + }, + { + "name": "ons.age.40_50@E14001600", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68e9c6daed76837d48218c26" + }, + { + "name": "ons.age.40_50@E14001601", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ede9bbf0a0830badc4646c6" + }, + { + "name": "ons.age.40_50@E14001602", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8de5449b00c8c49afd0340ab" + }, + { + "name": "ons.age.40_50@E14001603", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d765e0e834c1e1b09d4a2162" + }, + { + "name": "ons.age.40_50@E14001604", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38ae263187aa7d7d07d4e4aa" + }, + { + "name": "ons.age.40_50@E14001605", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d08b1fb7fd0ecc3d07de974" + }, + { + "name": "ons.age.40_50@N05000001", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13983.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_10843a685c2dae7396c5c265" + }, + { + "name": "ons.age.40_50@N05000002", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13564.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8652d7d397d114f96b49229" + }, + { + "name": "ons.age.40_50@N05000003", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14210.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fd349ab9cf8e5fde8fc52c5" + }, + { + "name": "ons.age.40_50@N05000004", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a20dceb10c6d9a68560d97" + }, + { + "name": "ons.age.40_50@N05000005", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f56521f01bb3acc98b44fab" + }, + { + "name": "ons.age.40_50@N05000006", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb48f58419946d9c56e9fa80" + }, + { + "name": "ons.age.40_50@N05000007", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ee7efa4cb042e9eec762390" + }, + { + "name": "ons.age.40_50@N05000008", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e99865a6629cf219a5c11e14" + }, + { + "name": "ons.age.40_50@N05000009", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15054.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e282978c56d60e43fad563fc" + }, + { + "name": "ons.age.40_50@N05000010", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e331928a45542444cc8e04d9" + }, + { + "name": "ons.age.40_50@N05000011", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14642.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4584925aed9e5e1e2ad635c" + }, + { + "name": "ons.age.40_50@N05000012", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c32a8a0437b3a2b19f26b80" + }, + { + "name": "ons.age.40_50@N05000013", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d44414728a8abfe3a275f721" + }, + { + "name": "ons.age.40_50@N05000014", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71e8105d22142e479606deee" + }, + { + "name": "ons.age.40_50@N05000015", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_188576cabb24061b3be0fbb1" + }, + { + "name": "ons.age.40_50@N05000016", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f6c203e6af66fc230968658" + }, + { + "name": "ons.age.40_50@N05000017", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6172ffca2ca02b65c5c6f8" + }, + { + "name": "ons.age.40_50@N05000018", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e841b92c6c0a527373e7b0ab" + }, + { + "name": "ons.age.40_50@S14000021", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1c906e45646bc6c02bbbce" + }, + { + "name": "ons.age.40_50@S14000027", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 3060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5c0c7cd7ceb72d2d8242f33" + }, + { + "name": "ons.age.40_50@S14000045", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8622cec5e655f28981e03d6" + }, + { + "name": "ons.age.40_50@S14000048", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8e408029a06e9715abbbf52" + }, + { + "name": "ons.age.40_50@S14000051", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 5314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2c8d1ba7707f337f5a44ddd" + }, + { + "name": "ons.age.40_50@S14000060", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe08513f92175b883bd73f96" + }, + { + "name": "ons.age.40_50@S14000061", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb4a4cdd87cf56f0a8eb483b" + }, + { + "name": "ons.age.40_50@S14000062", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e20ed7a8be9847f73333963e" + }, + { + "name": "ons.age.40_50@S14000063", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e582ceacae02586d9f7d0b72" + }, + { + "name": "ons.age.40_50@S14000064", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c997e373fcbbd6217946a79c" + }, + { + "name": "ons.age.40_50@S14000065", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f772c98581d7c98eaee6c5" + }, + { + "name": "ons.age.40_50@S14000066", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11944.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec288c96370167db496c1735" + }, + { + "name": "ons.age.40_50@S14000067", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f95f1f4efb00ce7331db9047" + }, + { + "name": "ons.age.40_50@S14000068", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf0cfc3693fee3b2cd959524" + }, + { + "name": "ons.age.40_50@S14000069", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d038b8be30efb6e289907a89" + }, + { + "name": "ons.age.40_50@S14000070", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f766cc649af253b490083185" + }, + { + "name": "ons.age.40_50@S14000071", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8dcb960617e46f6f85d185f" + }, + { + "name": "ons.age.40_50@S14000072", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dca1aa042dfd30b34b0f447f" + }, + { + "name": "ons.age.40_50@S14000073", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff8b2eae74c61a667cd18933" + }, + { + "name": "ons.age.40_50@S14000074", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0fef38a0a3f207c6af0063f" + }, + { + "name": "ons.age.40_50@S14000075", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c246be627602f2311b3fd533" + }, + { + "name": "ons.age.40_50@S14000076", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b7595b65a35e2ffa2fb1fc" + }, + { + "name": "ons.age.40_50@S14000077", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6220f077a0215fe3add17b4" + }, + { + "name": "ons.age.40_50@S14000078", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f03a172e1cf14d3fe2f93657" + }, + { + "name": "ons.age.40_50@S14000079", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0026329ab8c95232dba1cc" + }, + { + "name": "ons.age.40_50@S14000080", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb0ad5d125e6c56baebcf78e" + }, + { + "name": "ons.age.40_50@S14000081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5d479b22c3aa54682fcefbd" + }, + { + "name": "ons.age.40_50@S14000082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb19cbb48ca4f539ee108dd3" + }, + { + "name": "ons.age.40_50@S14000083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77375fda031e3e22cd0cf68" + }, + { + "name": "ons.age.40_50@S14000084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12294.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f345875b670c239b356290a4" + }, + { + "name": "ons.age.40_50@S14000085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2cb41c0d6abba41950af713" + }, + { + "name": "ons.age.40_50@S14000086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe932c06440f6e49d0415560" + }, + { + "name": "ons.age.40_50@S14000087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88123bdb9c7be2d59c62750" + }, + { + "name": "ons.age.40_50@S14000088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12259.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b730e2e8d9516b50d1a5df15" + }, + { + "name": "ons.age.40_50@S14000089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff139f59eb21dd5b810990b" + }, + { + "name": "ons.age.40_50@S14000090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f317a22943756224bbbeea75" + }, + { + "name": "ons.age.40_50@S14000091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e094ae618be72e877bf54cc7" + }, + { + "name": "ons.age.40_50@S14000092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7aea35282ced8d64a7c9e3e" + }, + { + "name": "ons.age.40_50@S14000093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f166365d66cf93f743b02fd3" + }, + { + "name": "ons.age.40_50@S14000094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f76f6ea293dd00bc4690cd4d" + }, + { + "name": "ons.age.40_50@S14000095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3dc8c1dd5a6e48ff63b21fd" + }, + { + "name": "ons.age.40_50@S14000096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3edb82e57e37e422524be55" + }, + { + "name": "ons.age.40_50@S14000097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fddb95847252ae7e4585cce8" + }, + { + "name": "ons.age.40_50@S14000098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1593491f9c98a7fae3b9442" + }, + { + "name": "ons.age.40_50@S14000099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12944.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20210c8bafab548c6092a00" + }, + { + "name": "ons.age.40_50@S14000100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9210.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee8a030acfe6ee8173ac16fd" + }, + { + "name": "ons.age.40_50@S14000101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd812731e233685391c6070e" + }, + { + "name": "ons.age.40_50@S14000102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ede1f7740f611176c6a416d1" + }, + { + "name": "ons.age.40_50@S14000103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88ca96e8213d0a403c7a1f8" + }, + { + "name": "ons.age.40_50@S14000104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f476f6d0c7395f8d30e9c3f0" + }, + { + "name": "ons.age.40_50@S14000105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12351.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e433171c237d53e2b8bdc5e6" + }, + { + "name": "ons.age.40_50@S14000106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc9edd1cde1e86a853aaefac" + }, + { + "name": "ons.age.40_50@S14000107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4cdd044b9c1680d3cad90e4" + }, + { + "name": "ons.age.40_50@S14000108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7563276acb54c4e039bf6f40" + }, + { + "name": "ons.age.40_50@S14000109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdad168c67b65a108a99b8c6" + }, + { + "name": "ons.age.40_50@S14000110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8823cc31b1d446569bd2d8e" + }, + { + "name": "ons.age.40_50@S14000111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc86733493c1772d1e0db7de" + }, + { + "name": "ons.age.40_50@W07000081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_23d71a02944c446392908e94" + }, + { + "name": "ons.age.40_50@W07000082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_996b68dc5cfa303f6d43a6dc" + }, + { + "name": "ons.age.40_50@W07000083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e63bd2c41cf537ec8bb74123" + }, + { + "name": "ons.age.40_50@W07000084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5c620512c8ab0a988074de1" + }, + { + "name": "ons.age.40_50@W07000085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a2ca2bd51c54ef8b13a186b" + }, + { + "name": "ons.age.40_50@W07000086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11785.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bcfa525b9f1ef0e7ed81a0a" + }, + { + "name": "ons.age.40_50@W07000087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c57c32a3d5e5fd7b9d6ee6c" + }, + { + "name": "ons.age.40_50@W07000088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af333b52da7bfa41679795bf" + }, + { + "name": "ons.age.40_50@W07000089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5fe472d0cd85222069b5597" + }, + { + "name": "ons.age.40_50@W07000090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12737.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97766837b89e9873bed6256f" + }, + { + "name": "ons.age.40_50@W07000091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_777256750b5d4fa419482f4b" + }, + { + "name": "ons.age.40_50@W07000092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cba2d92813f10d958f7954be" + }, + { + "name": "ons.age.40_50@W07000093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7b6bcc4cc81bfdb03b49e4e" + }, + { + "name": "ons.age.40_50@W07000094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9c61fb35e9c00968aa91b58" + }, + { + "name": "ons.age.40_50@W07000095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4cf357bc9d4bdbeb53c42fb" + }, + { + "name": "ons.age.40_50@W07000096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee6bdcd308ce51cf580192f" + }, + { + "name": "ons.age.40_50@W07000097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90ffd2a495cee956659f14bf" + }, + { + "name": "ons.age.40_50@W07000098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db70a1fca9e04a83869d6701" + }, + { + "name": "ons.age.40_50@W07000099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3e2d545e26105083565b4eb" + }, + { + "name": "ons.age.40_50@W07000100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8937c9acb0c3bc745b3d04af" + }, + { + "name": "ons.age.40_50@W07000101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10709.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a8b4f5a0afb6ca951f336c" + }, + { + "name": "ons.age.40_50@W07000102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c18d4c11dc5fe4cdf717c860" + }, + { + "name": "ons.age.40_50@W07000103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9731690bf4f53e8e68964b7" + }, + { + "name": "ons.age.40_50@W07000104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_165623eaa7d1a0cbf49ba4f6" + }, + { + "name": "ons.age.40_50@W07000105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a46daae6cbbad9f931d8d12b" + }, + { + "name": "ons.age.40_50@W07000106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e4b42abee82e63458ea1a27" + }, + { + "name": "ons.age.40_50@W07000107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd09d04abbdcb550217307ef" + }, + { + "name": "ons.age.40_50@W07000108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da0aa5f2b2c546255013415" + }, + { + "name": "ons.age.40_50@W07000109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e666539d95d9258899dfe5de" + }, + { + "name": "ons.age.40_50@W07000110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2962dbf61e3442d239383fa" + }, + { + "name": "ons.age.40_50@W07000111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50dbcc73f5a4134929c13de0" + }, + { + "name": "ons.age.40_50@W07000112", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cef81aa2ec7b19dc32eb68f1" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.40_50@E06000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b76dcc043d5eda594175b126" + }, + { + "name": "ons.age.40_50@E06000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff8892c2544c3112b39ad3fa" + }, + { + "name": "ons.age.40_50@E06000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f898845959a3471c88cdfe1d" + }, + { + "name": "ons.age.40_50@E06000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0bc6b60e2f401b9afe31941" + }, + { + "name": "ons.age.40_50@E06000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8edd757c3a88c8aca48b14db" + }, + { + "name": "ons.age.40_50@E06000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2965e4b3dfeb25a2aa15d7ab" + }, + { + "name": "ons.age.40_50@E06000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c02326ab8074986f2f4f5801" + }, + { + "name": "ons.age.40_50@E06000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71d6fac7e3f9e83af70b7222" + }, + { + "name": "ons.age.40_50@E06000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50195ec091735c251fbad36c" + }, + { + "name": "ons.age.40_50@E06000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e678209bca292ad868dcb102" + }, + { + "name": "ons.age.40_50@E06000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39372.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d664390330f27d27f96254c6" + }, + { + "name": "ons.age.40_50@E06000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b96228c781c28c183fea8f29" + }, + { + "name": "ons.age.40_50@E06000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b2d02ce1d82100e3cc819b6" + }, + { + "name": "ons.age.40_50@E06000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7c6e0933bc3ef837f578c47" + }, + { + "name": "ons.age.40_50@E06000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b73c56ad55f7c56a0b5f0d9b" + }, + { + "name": "ons.age.40_50@E06000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66ccf088c1f408e2108e32ab" + }, + { + "name": "ons.age.40_50@E06000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8cdf6e5d280406a3679d128" + }, + { + "name": "ons.age.40_50@E06000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb633e0b0700bab30a29c90e" + }, + { + "name": "ons.age.40_50@E06000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52687d6aac660e68163a0928" + }, + { + "name": "ons.age.40_50@E06000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c443077b6e7981eb4f0b6f4c" + }, + { + "name": "ons.age.40_50@E06000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b346a5f6380004d6f2a0ec83" + }, + { + "name": "ons.age.40_50@E06000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da84a28733a9b08fe84d05e0" + }, + { + "name": "ons.age.40_50@E06000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60805.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c7a566af50f19377abe785f" + }, + { + "name": "ons.age.40_50@E06000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2569b86f44340c61a795a8e" + }, + { + "name": "ons.age.40_50@E06000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c39004d6f522f07f1c21256" + }, + { + "name": "ons.age.40_50@E06000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b1930089dfe878a5cc1c0a" + }, + { + "name": "ons.age.40_50@E06000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81f3825ba0b4ae7b9dec48fa" + }, + { + "name": "ons.age.40_50@E06000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c93bc06833b76304d1d2110" + }, + { + "name": "ons.age.40_50@E06000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4bb6be8793288c114f9d8ad" + }, + { + "name": "ons.age.40_50@E06000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93c73d94609484ca93ad9fa5" + }, + { + "name": "ons.age.40_50@E06000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efc4e2d1a059f077f33f2b13" + }, + { + "name": "ons.age.40_50@E06000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b05f07659d3f207eaea4c571" + }, + { + "name": "ons.age.40_50@E06000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85639823dd04afdd5d47c596" + }, + { + "name": "ons.age.40_50@E06000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dd4dbb3d460707bd2a4f828" + }, + { + "name": "ons.age.40_50@E06000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be9a57e07950d980e88ba7f3" + }, + { + "name": "ons.age.40_50@E06000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f98ae646d5970e1ee24fc119" + }, + { + "name": "ons.age.40_50@E06000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb74ec9a3c0dc696575d12d" + }, + { + "name": "ons.age.40_50@E06000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c04927bd078cd4b280b5361d" + }, + { + "name": "ons.age.40_50@E06000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dfaa7112a3e48f13fd5e203" + }, + { + "name": "ons.age.40_50@E06000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82c25003d12856cf0b7ecba3" + }, + { + "name": "ons.age.40_50@E06000043", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c748ebfe7d4b720b0617f072" + }, + { + "name": "ons.age.40_50@E06000044", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_929697665dbe16f62972fc3f" + }, + { + "name": "ons.age.40_50@E06000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_585fb696a95ba198f0c34f3e" + }, + { + "name": "ons.age.40_50@E06000046", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14661.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e95b687b000e9f1289586d29" + }, + { + "name": "ons.age.40_50@E06000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_669dcb0f73b6a35f88ca570a" + }, + { + "name": "ons.age.40_50@E06000049", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d60719acd6c3c7daeab490ea" + }, + { + "name": "ons.age.40_50@E06000050", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9e0287a0f53c2b893f780a7" + }, + { + "name": "ons.age.40_50@E06000051", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0dd26fc81510a5c15f5bd74" + }, + { + "name": "ons.age.40_50@E06000052", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95d0504755cedc2fca0b25c" + }, + { + "name": "ons.age.40_50@E06000053", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc2dbfd27e1859ab6ec5d53b" + }, + { + "name": "ons.age.40_50@E06000054", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 62150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9454c98305527a4ff9ff9020" + }, + { + "name": "ons.age.40_50@E06000055", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc721560f113dbcd5f472ed3" + }, + { + "name": "ons.age.40_50@E06000056", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f44c25e376e46fbf6e593aee" + }, + { + "name": "ons.age.40_50@E06000057", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f87571e2a557806081ef803" + }, + { + "name": "ons.age.40_50@E06000058", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c91c27a004a51c4b01a6c78f" + }, + { + "name": "ons.age.40_50@E06000059", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc68362ded44e216e9a46d26" + }, + { + "name": "ons.age.40_50@E06000060", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8a5e1c305f64776aff6fc16" + }, + { + "name": "ons.age.40_50@E06000061", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f538a14cf49d508399389ec1" + }, + { + "name": "ons.age.40_50@E06000062", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59372.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee226d7c870e60db0881e213" + }, + { + "name": "ons.age.40_50@E06000063", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c93ca4585030f586505e963b" + }, + { + "name": "ons.age.40_50@E06000064", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a6374f36c222513ddcc35b" + }, + { + "name": "ons.age.40_50@E06000065", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa2682e8f0ee151327b88ad6" + }, + { + "name": "ons.age.40_50@E06000066", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d5395e52eecc8f1328563bb" + }, + { + "name": "ons.age.40_50@E07000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c44d46159b4ddad157cd77e" + }, + { + "name": "ons.age.40_50@E07000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3187e234613334637144715e" + }, + { + "name": "ons.age.40_50@E07000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d062cd82fa06669bd5d626dc" + }, + { + "name": "ons.age.40_50@E07000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd2a8f7465c5fc33b1c55cc" + }, + { + "name": "ons.age.40_50@E07000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfc7284f99a86d922b95723f" + }, + { + "name": "ons.age.40_50@E07000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c38cd5e1b32a7267ffb86b72" + }, + { + "name": "ons.age.40_50@E07000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c60c2abaa4892943df54e4c8" + }, + { + "name": "ons.age.40_50@E07000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d7064d485f320b9a6322387" + }, + { + "name": "ons.age.40_50@E07000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ba7dbd1c6165728223e34d1" + }, + { + "name": "ons.age.40_50@E07000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf219d1f57ae095550ad36e5" + }, + { + "name": "ons.age.40_50@E07000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10777.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcbe8192557b77428f55a32a" + }, + { + "name": "ons.age.40_50@E07000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced7fb97cea28e8d7d4015b3" + }, + { + "name": "ons.age.40_50@E07000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14773.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e675d8e5904c7cdf28ad62d9" + }, + { + "name": "ons.age.40_50@E07000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c93e83550e94b4bc0b21b660" + }, + { + "name": "ons.age.40_50@E07000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f140980ec2a4554ddf0e0ca5" + }, + { + "name": "ons.age.40_50@E07000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96448f648657c2212073ff01" + }, + { + "name": "ons.age.40_50@E07000043", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51474cb9918638af815d7784" + }, + { + "name": "ons.age.40_50@E07000044", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cf8ee431ebe474acad6135b" + }, + { + "name": "ons.age.40_50@E07000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_862bce1e9f21b37160015cf5" + }, + { + "name": "ons.age.40_50@E07000046", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5042472e9355e924b5c9fb8" + }, + { + "name": "ons.age.40_50@E07000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfc3351b56642b23d8cd766f" + }, + { + "name": "ons.age.40_50@E07000061", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12418.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf62e00492ed1aa19a24a58a" + }, + { + "name": "ons.age.40_50@E07000062", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba8ad5f7f32d305c241209e5" + }, + { + "name": "ons.age.40_50@E07000063", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4791bfa8cd9d4435d37301" + }, + { + "name": "ons.age.40_50@E07000064", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_857a980986347adf3acccbf6" + }, + { + "name": "ons.age.40_50@E07000065", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc1f52ceb39a440fa7bb428a" + }, + { + "name": "ons.age.40_50@E07000066", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cbde42ae0ae554a65bb2c44" + }, + { + "name": "ons.age.40_50@E07000067", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4510eb9ed33a753d5e610f" + }, + { + "name": "ons.age.40_50@E07000068", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e675548323bb04261017737" + }, + { + "name": "ons.age.40_50@E07000069", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be2347b0d2f2b03de38fafd6" + }, + { + "name": "ons.age.40_50@E07000070", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9c49cdab7741a876f49c326" + }, + { + "name": "ons.age.40_50@E07000071", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88424968e8fb8c4e641a177f" + }, + { + "name": "ons.age.40_50@E07000072", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18417.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4c6c7426985d9454be84645" + }, + { + "name": "ons.age.40_50@E07000073", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d73b5ea38bd8f2c39c6e7f0e" + }, + { + "name": "ons.age.40_50@E07000074", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e8d837112e6c320407b5f95" + }, + { + "name": "ons.age.40_50@E07000075", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8c7c3acca90d3a07660c788" + }, + { + "name": "ons.age.40_50@E07000076", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0be125f7c5f97c070e1e7d2" + }, + { + "name": "ons.age.40_50@E07000077", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a04580253994ff5677ee682" + }, + { + "name": "ons.age.40_50@E07000078", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85ba06638470c5daf4cf6fd9" + }, + { + "name": "ons.age.40_50@E07000079", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a69e605c1a39c90b93d3f76b" + }, + { + "name": "ons.age.40_50@E07000080", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc02c2a9c3bcdf29b10ad4e5" + }, + { + "name": "ons.age.40_50@E07000081", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78ed5723db107e7d243c3a4" + }, + { + "name": "ons.age.40_50@E07000082", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a50a0ba88048f49b02586f31" + }, + { + "name": "ons.age.40_50@E07000083", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66077e6dba295cff2ff9bba3" + }, + { + "name": "ons.age.40_50@E07000084", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4b2318f9da40c8e613f01fd" + }, + { + "name": "ons.age.40_50@E07000085", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd2b5b585fa78cc52cc5270c" + }, + { + "name": "ons.age.40_50@E07000086", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fb53c90b3f18834f7cc0092" + }, + { + "name": "ons.age.40_50@E07000087", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9172ef23d646f4ce961822dc" + }, + { + "name": "ons.age.40_50@E07000088", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c532126e8d6e40d1a6dbd32" + }, + { + "name": "ons.age.40_50@E07000089", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82754d83e754c1402118ab04" + }, + { + "name": "ons.age.40_50@E07000090", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bed135059ca8e40503517e1c" + }, + { + "name": "ons.age.40_50@E07000091", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d511b5d76cd4a7f55a152dc" + }, + { + "name": "ons.age.40_50@E07000092", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b19ad31deebeb0d48a9e81b" + }, + { + "name": "ons.age.40_50@E07000093", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac10714d1571f6f2aa54a7b6" + }, + { + "name": "ons.age.40_50@E07000094", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb91a3b12e859925b48c0c88" + }, + { + "name": "ons.age.40_50@E07000095", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef66fd210cf227941e64cf9c" + }, + { + "name": "ons.age.40_50@E07000096", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afd129877fa2a671685149f4" + }, + { + "name": "ons.age.40_50@E07000098", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_23fe3b849c29f7d7e6fe682a" + }, + { + "name": "ons.age.40_50@E07000099", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7942355c6f32c1ca4e3135f" + }, + { + "name": "ons.age.40_50@E07000102", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97d7dc8cc3c90af519843508" + }, + { + "name": "ons.age.40_50@E07000103", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1ac49164c063de18f6dc440" + }, + { + "name": "ons.age.40_50@E07000105", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5b5fe0aa8ed21cec09553e" + }, + { + "name": "ons.age.40_50@E07000106", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33bd352957f4e0c51fc754b9" + }, + { + "name": "ons.age.40_50@E07000107", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe392ee29a57fcc3e69bb664" + }, + { + "name": "ons.age.40_50@E07000108", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98e3e86db6876f1d9a8bfc5d" + }, + { + "name": "ons.age.40_50@E07000109", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6fbae7f87b306cbac58efc8" + }, + { + "name": "ons.age.40_50@E07000110", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4df9ce89c5208cdc4ce33797" + }, + { + "name": "ons.age.40_50@E07000111", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e13d096f55fde1dc54f41022" + }, + { + "name": "ons.age.40_50@E07000112", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3cfb97124b1ceacc1e685a6" + }, + { + "name": "ons.age.40_50@E07000113", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19788.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4a397a5162db9ad80a9157c" + }, + { + "name": "ons.age.40_50@E07000114", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aff8975f618f3f62b6cb5e39" + }, + { + "name": "ons.age.40_50@E07000115", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf1a65410641d6b55a4dae5" + }, + { + "name": "ons.age.40_50@E07000116", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c1be2151381399a36c6508a" + }, + { + "name": "ons.age.40_50@E07000117", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_964a8ce2add5072870fa024d" + }, + { + "name": "ons.age.40_50@E07000118", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15599.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab4dab27edddf5bb561045da" + }, + { + "name": "ons.age.40_50@E07000119", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64196e28e61135de69b237ff" + }, + { + "name": "ons.age.40_50@E07000120", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db7d95e4ba223f6a55799e38" + }, + { + "name": "ons.age.40_50@E07000121", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae6704eb49e826d611f98759" + }, + { + "name": "ons.age.40_50@E07000122", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b46d4434de3e32290a4d6aa" + }, + { + "name": "ons.age.40_50@E07000123", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7eabdadf585e395a294aa2a" + }, + { + "name": "ons.age.40_50@E07000124", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae8d473767b58e49a1174a42" + }, + { + "name": "ons.age.40_50@E07000125", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9109cf312133c399585bb7e3" + }, + { + "name": "ons.age.40_50@E07000126", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f33052d63ecdea02d80458" + }, + { + "name": "ons.age.40_50@E07000127", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43ae85d89d5407a7394ad2c" + }, + { + "name": "ons.age.40_50@E07000128", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f57053437013097bab57cb3" + }, + { + "name": "ons.age.40_50@E07000129", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13768.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a029ba52b057e179abb577d" + }, + { + "name": "ons.age.40_50@E07000130", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9956773cacbfcd48843c6168" + }, + { + "name": "ons.age.40_50@E07000131", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda5d04d12299d0c55c969aa" + }, + { + "name": "ons.age.40_50@E07000132", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f5f3e497302f807d997d053" + }, + { + "name": "ons.age.40_50@E07000133", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d37d05b76db2a55da0c0ea5b" + }, + { + "name": "ons.age.40_50@E07000134", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfe14ba47afda2dfceefcd69" + }, + { + "name": "ons.age.40_50@E07000135", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bea3901bbe8c98cb5cd56f25" + }, + { + "name": "ons.age.40_50@E07000136", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fae7f53a989affc96d7f0bfa" + }, + { + "name": "ons.age.40_50@E07000137", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aee245283f5d85a8186e68ae" + }, + { + "name": "ons.age.40_50@E07000138", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a6a7ce3e356e78a65e67abe" + }, + { + "name": "ons.age.40_50@E07000139", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0e2cdf5bf602b06acd6a3af" + }, + { + "name": "ons.age.40_50@E07000140", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8adc6b797db84a7cedc0781" + }, + { + "name": "ons.age.40_50@E07000141", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7ae49a80301fccfd0640604" + }, + { + "name": "ons.age.40_50@E07000142", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68396eff09e3c9054a0bc535" + }, + { + "name": "ons.age.40_50@E07000143", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4843c37a5d08cf5402ad1d" + }, + { + "name": "ons.age.40_50@E07000144", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0b06eb5ce101002a5e5b87" + }, + { + "name": "ons.age.40_50@E07000145", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f25e8ed79ee120446f212b11" + }, + { + "name": "ons.age.40_50@E07000146", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_708cae3517ff6d37d0d9ef42" + }, + { + "name": "ons.age.40_50@E07000147", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_107385a9f96fbc19982e3614" + }, + { + "name": "ons.age.40_50@E07000148", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_17a52d34dc6721f1baaba8cc" + }, + { + "name": "ons.age.40_50@E07000149", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ae448a7ff2bef1de5fbc2b2" + }, + { + "name": "ons.age.40_50@E07000170", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5eb60e8a1c926c30cb3d205" + }, + { + "name": "ons.age.40_50@E07000171", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14426.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7eb215e7cb810eb7a295c1" + }, + { + "name": "ons.age.40_50@E07000172", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dccd0ef9f21658a74f365f0f" + }, + { + "name": "ons.age.40_50@E07000173", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82ea15efdd5893b262fccb13" + }, + { + "name": "ons.age.40_50@E07000174", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14012.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ed125f6d3a0f4af4b4c055" + }, + { + "name": "ons.age.40_50@E07000175", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5dc4ad7aeba4039a87b3845" + }, + { + "name": "ons.age.40_50@E07000176", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16588.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0b5311b61c0a962ca9be3e2" + }, + { + "name": "ons.age.40_50@E07000177", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23259.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_177d2eab9a766e1b17692a21" + }, + { + "name": "ons.age.40_50@E07000178", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b5a40102f122e9803ebcafa" + }, + { + "name": "ons.age.40_50@E07000179", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20609.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f178f963fd19c383dc69c34" + }, + { + "name": "ons.age.40_50@E07000180", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6fe82e36141622ba1b6ebe8" + }, + { + "name": "ons.age.40_50@E07000181", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f136a271a6c64514a6eadd2c" + }, + { + "name": "ons.age.40_50@E07000192", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b846b16d2789de6ba98e4e0a" + }, + { + "name": "ons.age.40_50@E07000193", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf763fa9107cd4e500bb801b" + }, + { + "name": "ons.age.40_50@E07000194", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba61b586c4579c9f8a8beb3" + }, + { + "name": "ons.age.40_50@E07000195", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad467e981684deaa5116149a" + }, + { + "name": "ons.age.40_50@E07000196", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12757.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68569cafdfeb2012247d9dbb" + }, + { + "name": "ons.age.40_50@E07000197", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81d8a47d76669089544ab4e6" + }, + { + "name": "ons.age.40_50@E07000198", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df216f95643276ca0080a8d8" + }, + { + "name": "ons.age.40_50@E07000199", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7a9c436bc6526ea90d773ef" + }, + { + "name": "ons.age.40_50@E07000200", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc43ea3f2544172fd8ca4ea5" + }, + { + "name": "ons.age.40_50@E07000202", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64a47d1303378aee5228c29f" + }, + { + "name": "ons.age.40_50@E07000203", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d8c77a3706c57719ccd4297" + }, + { + "name": "ons.age.40_50@E07000207", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2f092a68c0e9cf4a16e2bc9" + }, + { + "name": "ons.age.40_50@E07000208", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26959a53ecc1b3b17c809c9" + }, + { + "name": "ons.age.40_50@E07000209", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4011b9ce930ea39887b3205" + }, + { + "name": "ons.age.40_50@E07000210", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_962cc89d4d70a707b5721afc" + }, + { + "name": "ons.age.40_50@E07000211", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea521192dcae00ce924888ef" + }, + { + "name": "ons.age.40_50@E07000212", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a242aff247cbb3ffa1c0b22" + }, + { + "name": "ons.age.40_50@E07000213", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbf89c7aa13d0ea5ecb5d112" + }, + { + "name": "ons.age.40_50@E07000214", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e805a05de0feffd680a01f43" + }, + { + "name": "ons.age.40_50@E07000215", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca8c59a2bded466bcaaa9464" + }, + { + "name": "ons.age.40_50@E07000216", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0a46f9c2feb11998cecaf39" + }, + { + "name": "ons.age.40_50@E07000217", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16078.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_989de0699534b92bae7145fe" + }, + { + "name": "ons.age.40_50@E07000218", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7642.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a106408817a7ddf65c052cff" + }, + { + "name": "ons.age.40_50@E07000219", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17501.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61caec6f543d58586c2c2f83" + }, + { + "name": "ons.age.40_50@E07000220", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16927.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60920e8bcefdd171b51ca443" + }, + { + "name": "ons.age.40_50@E07000221", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcc0327c1100bb84f47e2c73" + }, + { + "name": "ons.age.40_50@E07000222", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba2b3e34d4e17b6a4ca90e2c" + }, + { + "name": "ons.age.40_50@E07000223", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b4ee6c84dfc0f03e8bc5a8a" + }, + { + "name": "ons.age.40_50@E07000224", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b68a095fcf0c4e02f89548" + }, + { + "name": "ons.age.40_50@E07000225", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed6d65596c15e76f0de2d743" + }, + { + "name": "ons.age.40_50@E07000226", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18470.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdde6342bf1fbb0ad02af2d5" + }, + { + "name": "ons.age.40_50@E07000227", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad00769914a322c48e6b0948" + }, + { + "name": "ons.age.40_50@E07000228", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6422a068076654653be291d0" + }, + { + "name": "ons.age.40_50@E07000229", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a06fd31cc2846a3be0d903e6" + }, + { + "name": "ons.age.40_50@E07000234", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af0add6c27348c01a38ccd51" + }, + { + "name": "ons.age.40_50@E07000235", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd95a4a0a8616582e310b3a9" + }, + { + "name": "ons.age.40_50@E07000236", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef3b2bf9c07d43c7529235fa" + }, + { + "name": "ons.age.40_50@E07000237", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ee127294d897008b331bb7b" + }, + { + "name": "ons.age.40_50@E07000238", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde5fca0fcb78fcecaaa96be" + }, + { + "name": "ons.age.40_50@E07000239", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cef224db0128373714c4ad23" + }, + { + "name": "ons.age.40_50@E07000240", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_781f291bbaa9768ea1600e64" + }, + { + "name": "ons.age.40_50@E07000241", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79bd65a85326ad9cba2ab6ae" + }, + { + "name": "ons.age.40_50@E07000242", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21179.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5a477547d8b900dd333969b" + }, + { + "name": "ons.age.40_50@E07000243", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdbf210b1406850e3c4ed325" + }, + { + "name": "ons.age.40_50@E07000244", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2b2cff6b9837386c3632ae1" + }, + { + "name": "ons.age.40_50@E07000245", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fcf214dad2ba69ffed73c7d" + }, + { + "name": "ons.age.40_50@E08000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_870d41427c827cc8cdc1f155" + }, + { + "name": "ons.age.40_50@E08000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da6b16aa7dd4241ce18f8f33" + }, + { + "name": "ons.age.40_50@E08000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c841f496ea93bd8a1eff2d1f" + }, + { + "name": "ons.age.40_50@E08000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8878bd97c9573d098ff1232" + }, + { + "name": "ons.age.40_50@E08000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_524b018000a6c941d1c7838f" + }, + { + "name": "ons.age.40_50@E08000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66eca94a5a23ac9ea6b07d68" + }, + { + "name": "ons.age.40_50@E08000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1574010f1f76f7d3a8f14a8" + }, + { + "name": "ons.age.40_50@E08000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eab49248134f180c8045a59f" + }, + { + "name": "ons.age.40_50@E08000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dafc380a5ba98d06faf84d3" + }, + { + "name": "ons.age.40_50@E08000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cbe4d3918da11e8ef8574f9" + }, + { + "name": "ons.age.40_50@E08000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3790cbd169ac7aceb0795256" + }, + { + "name": "ons.age.40_50@E08000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3deb808b6a8658d33d21794" + }, + { + "name": "ons.age.40_50@E08000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66a9b4225f2d0ff6c5974589" + }, + { + "name": "ons.age.40_50@E08000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3b6ddb10f449beddccdcc89" + }, + { + "name": "ons.age.40_50@E08000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52d1b556e96118b29dad6b92" + }, + { + "name": "ons.age.40_50@E08000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a0df65c017115e520969212" + }, + { + "name": "ons.age.40_50@E08000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3f5b52cf44cc1de50b929b1" + }, + { + "name": "ons.age.40_50@E08000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1e6cba3f323c8eb9226d1dc" + }, + { + "name": "ons.age.40_50@E08000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66662.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be62e7cd4effcf0241886171" + }, + { + "name": "ons.age.40_50@E08000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c43692a999b66ffda989b09e" + }, + { + "name": "ons.age.40_50@E08000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d5f6a41a13f13e64757d75" + }, + { + "name": "ons.age.40_50@E08000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de32bf5b60b0c906901b0b71" + }, + { + "name": "ons.age.40_50@E08000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecfd6a431fb2790a2ad9896f" + }, + { + "name": "ons.age.40_50@E08000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 148358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef17f1c99a26c646b3ce330b" + }, + { + "name": "ons.age.40_50@E08000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94f85407cedd615bcdfcd8b4" + }, + { + "name": "ons.age.40_50@E08000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63b4977e0f79a6089c6473cb" + }, + { + "name": "ons.age.40_50@E08000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f0a82b2a2e200b32cc3ff39" + }, + { + "name": "ons.age.40_50@E08000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d63b6e71a1d0c396c270e73c" + }, + { + "name": "ons.age.40_50@E08000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf892c5a73f7099d7749e9ce" + }, + { + "name": "ons.age.40_50@E08000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc0938cfa0a7750e7cbfd572" + }, + { + "name": "ons.age.40_50@E08000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 72637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9885bf381b270c2d672ca57" + }, + { + "name": "ons.age.40_50@E08000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4b069bb25de69df6e21bdfe" + }, + { + "name": "ons.age.40_50@E08000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 56055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57ea807880c7a42708549b52" + }, + { + "name": "ons.age.40_50@E08000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 104211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4d5b8e6ce43477042b9ac62" + }, + { + "name": "ons.age.40_50@E08000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a20522c2cb181c867fa8ee5a" + }, + { + "name": "ons.age.40_50@E08000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24525.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab4b4e6f0a4589467748c9ab" + }, + { + "name": "ons.age.40_50@E09000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abb711eb96ef10f6aa21a5fc" + }, + { + "name": "ons.age.40_50@E09000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fb9245e1abdfb538f063569" + }, + { + "name": "ons.age.40_50@E09000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e0c1a7f4dc784407c842027" + }, + { + "name": "ons.age.40_50@E09000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35902.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e820a44ae923134903b429e8" + }, + { + "name": "ons.age.40_50@E09000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_977479100697ee6501b94c69" + }, + { + "name": "ons.age.40_50@E09000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 50711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed53f4036becce53ed9c9d12" + }, + { + "name": "ons.age.40_50@E09000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d30ad2516797ca1afdc503a" + }, + { + "name": "ons.age.40_50@E09000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 58342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf9f8b1c096bb57d5c16a38a" + }, + { + "name": "ons.age.40_50@E09000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8401849bd2689bc836ece6bb" + }, + { + "name": "ons.age.40_50@E09000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ced556cb57856363733208" + }, + { + "name": "ons.age.40_50@E09000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87045a353a2eb6b0887b7dec" + }, + { + "name": "ons.age.40_50@E09000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9b05383ad6abdde20812e44" + }, + { + "name": "ons.age.40_50@E09000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1c9683a801778f0ee5b7462" + }, + { + "name": "ons.age.40_50@E09000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55048d61e55e4a3cded21594" + }, + { + "name": "ons.age.40_50@E09000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_466dea06f4bbe692e2da8cd3" + }, + { + "name": "ons.age.40_50@E09000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd758999185b00f768b53447" + }, + { + "name": "ons.age.40_50@E09000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47247.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c354c4253be7e74eb4588d7c" + }, + { + "name": "ons.age.40_50@E09000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfafc075c3b85905229e30a3" + }, + { + "name": "ons.age.40_50@E09000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26929.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_918f0a03f3517a139d944dc0" + }, + { + "name": "ons.age.40_50@E09000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18641.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d7b70b3879d27bfb0f3917b" + }, + { + "name": "ons.age.40_50@E09000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6693add9da281554cb905383" + }, + { + "name": "ons.age.40_50@E09000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f80878eb001a267411d74e67" + }, + { + "name": "ons.age.40_50@E09000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50fc3faaf41b174e371c42b6" + }, + { + "name": "ons.age.40_50@E09000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3810230b0972bf0fdd60d34" + }, + { + "name": "ons.age.40_50@E09000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78b23b565d9bc6665242e52" + }, + { + "name": "ons.age.40_50@E09000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae0f1f74b648e782afff2e91" + }, + { + "name": "ons.age.40_50@E09000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a21eaf2d9ba0ebaaba7fee" + }, + { + "name": "ons.age.40_50@E09000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe7121f15b931481c48aa819" + }, + { + "name": "ons.age.40_50@E09000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f491eacdc671d25511a64a10" + }, + { + "name": "ons.age.40_50@E09000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_effa4faee7e94fa89c9cdfce" + }, + { + "name": "ons.age.40_50@E09000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9981213720d645a4e410198" + }, + { + "name": "ons.age.40_50@E09000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44392.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8981a9eb68dd0b05a60026d0" + }, + { + "name": "ons.age.40_50@E09000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a169bc2a2fe56ff2f798df" + }, + { + "name": "ons.age.40_50@N09000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e5611f312081669dc23e644" + }, + { + "name": "ons.age.40_50@N09000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4fc3eebc6fb90c0400e8341" + }, + { + "name": "ons.age.40_50@N09000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5317e68643b5282951610b48" + }, + { + "name": "ons.age.40_50@N09000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7157341ba51e80e40271ff1" + }, + { + "name": "ons.age.40_50@N09000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9e5b22225477792b24b7bbd" + }, + { + "name": "ons.age.40_50@N09000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47d45a17239b1b610797b59e" + }, + { + "name": "ons.age.40_50@N09000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d5dfa90336f6c85ef4656b5" + }, + { + "name": "ons.age.40_50@N09000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44b66b3c116cd19c88a0fb9e" + }, + { + "name": "ons.age.40_50@N09000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fa26e99aef3ead50c338a0b" + }, + { + "name": "ons.age.40_50@N09000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb00042eb98972c783c76080" + }, + { + "name": "ons.age.40_50@N09000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88bb59011853644bb674f9d3" + }, + { + "name": "ons.age.40_50@S12000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b35e69cce5608c4dde6c5af6" + }, + { + "name": "ons.age.40_50@S12000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9d1c57b9ed3842c3a8423ed" + }, + { + "name": "ons.age.40_50@S12000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4cbfa7d6a61891f51f072c2" + }, + { + "name": "ons.age.40_50@S12000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86cb55ea232f1a44a38d9c52" + }, + { + "name": "ons.age.40_50@S12000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_889b4947c463e978bf87919f" + }, + { + "name": "ons.age.40_50@S12000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f969366f1b99b91d71d9ba" + }, + { + "name": "ons.age.40_50@S12000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46246e0c16fc2cbd52908003" + }, + { + "name": "ons.age.40_50@S12000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a337f4662eebd672d9b080f3" + }, + { + "name": "ons.age.40_50@S12000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3cfe5eafad43a3b3932bc0f" + }, + { + "name": "ons.age.40_50@S12000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e304b6688a3a910b768c7704" + }, + { + "name": "ons.age.40_50@S12000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68177dd85067101709f7691a" + }, + { + "name": "ons.age.40_50@S12000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_34b6674fbd7ee133e842f5bf" + }, + { + "name": "ons.age.40_50@S12000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9249b85579d5bf4aca5a258" + }, + { + "name": "ons.age.40_50@S12000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a68d79af1b42b723891b76f" + }, + { + "name": "ons.age.40_50@S12000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be258f9651bfaa6b5ceda733" + }, + { + "name": "ons.age.40_50@S12000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab70b927991381d77c1537ee" + }, + { + "name": "ons.age.40_50@S12000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d0f7a01841b3dac3de82d08" + }, + { + "name": "ons.age.40_50@S12000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11286.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d98d185dd7312040a5f75394" + }, + { + "name": "ons.age.40_50@S12000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30625.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f02f06c9e54f69f7cd064c6" + }, + { + "name": "ons.age.40_50@S12000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe610fbbfb7390f47ed8b1bf" + }, + { + "name": "ons.age.40_50@S12000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d450bff1d5eed1968e2ba1e3" + }, + { + "name": "ons.age.40_50@S12000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8bd2aff21cc89c5c35534a0" + }, + { + "name": "ons.age.40_50@S12000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6f2bf8450bb53853d6067bf" + }, + { + "name": "ons.age.40_50@S12000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c8717588ee39f86e1f14ad0" + }, + { + "name": "ons.age.40_50@S12000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f98b53ffce12384a8cc036b0" + }, + { + "name": "ons.age.40_50@S12000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1534b1e2d0a46d7e9f47a12" + }, + { + "name": "ons.age.40_50@S12000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9bd1a9ae989c810efcb153b" + }, + { + "name": "ons.age.40_50@S12000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4e0c844b05efa8dad98ec02" + }, + { + "name": "ons.age.40_50@S12000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44592.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f528a5d12c2073e50d0fd6" + }, + { + "name": "ons.age.40_50@S12000048", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e0383da5cff2ca164e2c101" + }, + { + "name": "ons.age.40_50@S12000049", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fcdb8df3c299e6fda6679de" + }, + { + "name": "ons.age.40_50@S12000050", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e00a818818ee678a0ad1a082" + }, + { + "name": "ons.age.40_50@W06000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_889725a94f62a325f8d52b41" + }, + { + "name": "ons.age.40_50@W06000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd392583bc5678ddbf55f0c2" + }, + { + "name": "ons.age.40_50@W06000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3b3e19057971779f08645c6" + }, + { + "name": "ons.age.40_50@W06000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdfe15b89d5856e3006c9a41" + }, + { + "name": "ons.age.40_50@W06000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c08b02b955f44eadf48fd69b" + }, + { + "name": "ons.age.40_50@W06000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d6694a94fc42bc09c71a459" + }, + { + "name": "ons.age.40_50@W06000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ba5a0366917bad55fe3091e" + }, + { + "name": "ons.age.40_50@W06000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ed215c4f6cdaebd7bc62e38" + }, + { + "name": "ons.age.40_50@W06000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6045f71a28658725e41b406" + }, + { + "name": "ons.age.40_50@W06000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8d8125e81bf9d1cf0603692" + }, + { + "name": "ons.age.40_50@W06000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba4bc91de9ba7c6a622c41a7" + }, + { + "name": "ons.age.40_50@W06000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfd7af7a2f84476603db83f8" + }, + { + "name": "ons.age.40_50@W06000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d8083252ad850dbb4990f7" + }, + { + "name": "ons.age.40_50@W06000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d1ddbac8745d1190acc34f0" + }, + { + "name": "ons.age.40_50@W06000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85ca87aac4a34dd9420a21f5" + }, + { + "name": "ons.age.40_50@W06000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6717f6ddfa69e379b3d937dd" + }, + { + "name": "ons.age.40_50@W06000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6e5285c0da5308122d30147" + }, + { + "name": "ons.age.40_50@W06000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be914e8094bfe377b77e4601" + }, + { + "name": "ons.age.40_50@W06000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10814.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eebebdcb166351d888d9a630" + }, + { + "name": "ons.age.40_50@W06000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21084.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc54b8a4d3779b9e05b05a26" + }, + { + "name": "ons.age.40_50@W06000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6f7c4e80757f4435f6a3bf8" + }, + { + "name": "ons.age.40_50@W06000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7024.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b769bc5a5be88ac9181dbfda" + } + ] + } + } + }, + "ons.age.50_60": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.50_60@E14001063", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15772.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2021f0284a88c26849ede9b" + }, + { + "name": "ons.age.50_60@E14001064", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_954d8cce0de86b6314098599" + }, + { + "name": "ons.age.50_60@E14001065", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc09b94bb49c3141f641d2ae" + }, + { + "name": "ons.age.50_60@E14001066", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bb46ffc5f0b73f6a01da7ad" + }, + { + "name": "ons.age.50_60@E14001067", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9ac1d6f8b7a6d6ccb67b65b" + }, + { + "name": "ons.age.50_60@E14001068", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db529e79b12d181962e37546" + }, + { + "name": "ons.age.50_60@E14001069", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_23b2ebed9152d61e8f1bbbe2" + }, + { + "name": "ons.age.50_60@E14001070", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8889b0bd9e24e33a3b59fe16" + }, + { + "name": "ons.age.50_60@E14001071", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fddcd7d6c6e3056dccc9fa44" + }, + { + "name": "ons.age.50_60@E14001072", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca4b8df6b9cc32da066ba4f8" + }, + { + "name": "ons.age.50_60@E14001073", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea90d4fc66aaabaeca58b739" + }, + { + "name": "ons.age.50_60@E14001074", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14938.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e00503f9983b3d898b6552" + }, + { + "name": "ons.age.50_60@E14001075", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b958544e385f648a4bc92eee" + }, + { + "name": "ons.age.50_60@E14001076", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47f43f789fc0d0af8f81d51" + }, + { + "name": "ons.age.50_60@E14001077", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_935f2da811e09dc1045dfb32" + }, + { + "name": "ons.age.50_60@E14001078", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81cbcd8aac6bb5d85019d9b4" + }, + { + "name": "ons.age.50_60@E14001079", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc930b2c5f2866820825ef4c" + }, + { + "name": "ons.age.50_60@E14001080", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7f212cd9783c7e7db926257" + }, + { + "name": "ons.age.50_60@E14001081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41dfc3835966414c4e53bc12" + }, + { + "name": "ons.age.50_60@E14001082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9370d516813d01d442ab5f2" + }, + { + "name": "ons.age.50_60@E14001083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15088.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90bee4b1b662879785d23e79" + }, + { + "name": "ons.age.50_60@E14001084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbf51e79d1dacfb7e6f12903" + }, + { + "name": "ons.age.50_60@E14001085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_965506236d2a0a7289ce7db1" + }, + { + "name": "ons.age.50_60@E14001086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5e652f88560d6d7cf56037f" + }, + { + "name": "ons.age.50_60@E14001087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ff3b1261a1efade3843ac1" + }, + { + "name": "ons.age.50_60@E14001088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9e9ab0f2c0c535fb3afe91" + }, + { + "name": "ons.age.50_60@E14001089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_786044e9df73ff47b1ad3077" + }, + { + "name": "ons.age.50_60@E14001090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0177eed74d7ecce3af7c7e4" + }, + { + "name": "ons.age.50_60@E14001091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a43f849d268d692d088b933b" + }, + { + "name": "ons.age.50_60@E14001092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1cba84bda196e12e240cd7" + }, + { + "name": "ons.age.50_60@E14001093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5da13020432d381225e27ee2" + }, + { + "name": "ons.age.50_60@E14001094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81eb3a0c339efaa8ed01aef3" + }, + { + "name": "ons.age.50_60@E14001095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13901.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6676b81291137ceddffa1920" + }, + { + "name": "ons.age.50_60@E14001096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c88c347fe889eba97bd23f4" + }, + { + "name": "ons.age.50_60@E14001097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13525.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf748e3191932172b201e082" + }, + { + "name": "ons.age.50_60@E14001098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6605a5e8234a0ceeb0447164" + }, + { + "name": "ons.age.50_60@E14001099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba6646b777120ecde99d0db0" + }, + { + "name": "ons.age.50_60@E14001100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0735802d58abbd442375542" + }, + { + "name": "ons.age.50_60@E14001101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eba779a2469ee9c64a31d8a" + }, + { + "name": "ons.age.50_60@E14001102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_471997ecf089a1727c52b817" + }, + { + "name": "ons.age.50_60@E14001103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f385bb9f6f9320b46f408572" + }, + { + "name": "ons.age.50_60@E14001104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbda0de6d7f8e97b702b9512" + }, + { + "name": "ons.age.50_60@E14001105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7a31baf9a1f4987b17e69c4" + }, + { + "name": "ons.age.50_60@E14001106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba98f292520af75c312fdac9" + }, + { + "name": "ons.age.50_60@E14001107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ff4d8e688abe08aa91da82d" + }, + { + "name": "ons.age.50_60@E14001108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbc2569f8ad400fe1d03dcae" + }, + { + "name": "ons.age.50_60@E14001109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43c95a7b3032b7d22b279956" + }, + { + "name": "ons.age.50_60@E14001110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e49a8aa267ad40a2bf8e30ae" + }, + { + "name": "ons.age.50_60@E14001111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6c156e9b13e9c6e281d87b2" + }, + { + "name": "ons.age.50_60@E14001112", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1fe12d8cba828d5f83d7548" + }, + { + "name": "ons.age.50_60@E14001113", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80003f4bb144b09385c35306" + }, + { + "name": "ons.age.50_60@E14001114", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4cac32fec497b7f4bab882c" + }, + { + "name": "ons.age.50_60@E14001115", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9663ea964b2fc759df8c5dc3" + }, + { + "name": "ons.age.50_60@E14001116", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d072aa9e96e632a900d0c30d" + }, + { + "name": "ons.age.50_60@E14001117", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14034.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee8f7c76659d2ab71408d01" + }, + { + "name": "ons.age.50_60@E14001118", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e535472a357ee92e65b8928c" + }, + { + "name": "ons.age.50_60@E14001119", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13525.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b0a9d6998c2aaa764639cd5" + }, + { + "name": "ons.age.50_60@E14001120", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c6cc84df9a0990f986de622" + }, + { + "name": "ons.age.50_60@E14001121", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a629dee48f4e66ac9a89bb1" + }, + { + "name": "ons.age.50_60@E14001122", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd62e65bae09b7e5814d6d7b" + }, + { + "name": "ons.age.50_60@E14001123", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6088b090662ed4e6989b549d" + }, + { + "name": "ons.age.50_60@E14001124", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_784fa6587692f97d6a7bdab2" + }, + { + "name": "ons.age.50_60@E14001125", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13541.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca81c68f44879d45b9eb5ff5" + }, + { + "name": "ons.age.50_60@E14001126", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4144ba1de4dc519ac0d35a7" + }, + { + "name": "ons.age.50_60@E14001127", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13590.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7bbb21e1566ad230f024500" + }, + { + "name": "ons.age.50_60@E14001128", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3cc69a1eed30b0410e7ad22" + }, + { + "name": "ons.age.50_60@E14001129", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d24b494c88475433e0538f6" + }, + { + "name": "ons.age.50_60@E14001130", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5e097d549c5ce936fdf2265" + }, + { + "name": "ons.age.50_60@E14001131", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b19dedf113f188105ff5fe18" + }, + { + "name": "ons.age.50_60@E14001132", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3f87d576f36697c60084477" + }, + { + "name": "ons.age.50_60@E14001133", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be62643bff762b655db3bc4b" + }, + { + "name": "ons.age.50_60@E14001134", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad3f727330f6a21c120360ee" + }, + { + "name": "ons.age.50_60@E14001135", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1e10691305bebeb6fff2842" + }, + { + "name": "ons.age.50_60@E14001136", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14311.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2e11450772cb9a662710b0e" + }, + { + "name": "ons.age.50_60@E14001137", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65bb5c50e29e92dc5872a11d" + }, + { + "name": "ons.age.50_60@E14001138", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_953bb4170c91b01b61f4f5cb" + }, + { + "name": "ons.age.50_60@E14001139", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7199157525adcfac060b5dc1" + }, + { + "name": "ons.age.50_60@E14001140", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aadf9c57144de8b87dcef822" + }, + { + "name": "ons.age.50_60@E14001141", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_486a4e82b38e7c52e53b2005" + }, + { + "name": "ons.age.50_60@E14001142", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8dd08640b0ce27320921342" + }, + { + "name": "ons.age.50_60@E14001143", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca376ec69013ea85d982f8c3" + }, + { + "name": "ons.age.50_60@E14001144", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72aec066bbe438141e45f94e" + }, + { + "name": "ons.age.50_60@E14001145", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6deab1ba5c0a22d40f9f38f2" + }, + { + "name": "ons.age.50_60@E14001146", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94f9622e35f1e71ea2dae8ac" + }, + { + "name": "ons.age.50_60@E14001147", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78841d4edf790b2e240fcfa5" + }, + { + "name": "ons.age.50_60@E14001148", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_652c88f6c39281534fe7f80f" + }, + { + "name": "ons.age.50_60@E14001149", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12116.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91ee3882885f8cb1ae430053" + }, + { + "name": "ons.age.50_60@E14001150", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1e907503cc0c8917dbdec6e" + }, + { + "name": "ons.age.50_60@E14001151", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c62df1191a0ab6ac107d6e50" + }, + { + "name": "ons.age.50_60@E14001152", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8805b0d447aa9e9fc9771f5" + }, + { + "name": "ons.age.50_60@E14001153", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5672f5514f0a9ffc3adac8f" + }, + { + "name": "ons.age.50_60@E14001154", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3d7810f6fb4a78e3388baa7" + }, + { + "name": "ons.age.50_60@E14001155", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b33c72f9e0d4b9fecdb1396c" + }, + { + "name": "ons.age.50_60@E14001156", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce1b1f80528ccf7a92643348" + }, + { + "name": "ons.age.50_60@E14001157", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13947.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8a10bfbd38fd90586987781" + }, + { + "name": "ons.age.50_60@E14001158", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f78875d54b22cdfd02a9a58f" + }, + { + "name": "ons.age.50_60@E14001159", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fd33988aacee3e404c664dc" + }, + { + "name": "ons.age.50_60@E14001160", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_848209bea1c7133134a8c863" + }, + { + "name": "ons.age.50_60@E14001161", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e978e409a76f7e442d9c426" + }, + { + "name": "ons.age.50_60@E14001162", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0894feb2d05c857f0541d6d" + }, + { + "name": "ons.age.50_60@E14001163", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12246.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f2b60a3e5a9413a0cc0cc8" + }, + { + "name": "ons.age.50_60@E14001164", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaed117c04deb188049fa430" + }, + { + "name": "ons.age.50_60@E14001165", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9a393fea2154571bd550798" + }, + { + "name": "ons.age.50_60@E14001166", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d950cd74bef243edd65f2213" + }, + { + "name": "ons.age.50_60@E14001167", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14795.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e9cacd30bef17e241ec1445" + }, + { + "name": "ons.age.50_60@E14001168", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5c10380021a017c8c5ec6e" + }, + { + "name": "ons.age.50_60@E14001169", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65ddd7d5c00b90e55cad49f6" + }, + { + "name": "ons.age.50_60@E14001170", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebdea274c20fe10cb1b9b885" + }, + { + "name": "ons.age.50_60@E14001171", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_293373eea85bdb54322ff892" + }, + { + "name": "ons.age.50_60@E14001172", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddf2855707b3f357a323e385" + }, + { + "name": "ons.age.50_60@E14001173", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d61928f6471bdd61f4bf21a0" + }, + { + "name": "ons.age.50_60@E14001174", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c20f2b0d91cfc1508367048" + }, + { + "name": "ons.age.50_60@E14001175", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0c94d5d7ea085cf05bf62c9" + }, + { + "name": "ons.age.50_60@E14001176", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f28dea881f0b9ba77d677138" + }, + { + "name": "ons.age.50_60@E14001177", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_935349fafa248d350a5eb48b" + }, + { + "name": "ons.age.50_60@E14001178", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8caa65eebc5215807242aa85" + }, + { + "name": "ons.age.50_60@E14001179", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac08141c9fbd60ea0832b910" + }, + { + "name": "ons.age.50_60@E14001180", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb762657062c4d06ec0e3132" + }, + { + "name": "ons.age.50_60@E14001181", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d8f4db0d2426d61ec9c1193" + }, + { + "name": "ons.age.50_60@E14001182", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d023cad33f63a9d5cf5f4003" + }, + { + "name": "ons.age.50_60@E14001183", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79d4175c4d5161f89d011727" + }, + { + "name": "ons.age.50_60@E14001184", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8654dcf05dfb2e0ff17faebb" + }, + { + "name": "ons.age.50_60@E14001185", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e78d387bd8f12429fecb2a8" + }, + { + "name": "ons.age.50_60@E14001186", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5891816b81dc2afc5d441c1" + }, + { + "name": "ons.age.50_60@E14001187", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_579d9c3de389214f2fbf52c1" + }, + { + "name": "ons.age.50_60@E14001188", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b68d95399b048e37ad1c98c" + }, + { + "name": "ons.age.50_60@E14001189", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b087de674e3a8acfe80200d8" + }, + { + "name": "ons.age.50_60@E14001190", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dedff553b4510c5b7bf66d8a" + }, + { + "name": "ons.age.50_60@E14001191", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_906b727cb0f556ec4cfef4bb" + }, + { + "name": "ons.age.50_60@E14001192", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce82c9098be79c2fe2077a1e" + }, + { + "name": "ons.age.50_60@E14001193", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13074.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd4d3ceff3da87b67c902921" + }, + { + "name": "ons.age.50_60@E14001194", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afec7c5ef53f8aed1f6179a5" + }, + { + "name": "ons.age.50_60@E14001195", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cccbd13c9e0f29a86fa62313" + }, + { + "name": "ons.age.50_60@E14001196", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb70ffc0694d07f3c4ce97fc" + }, + { + "name": "ons.age.50_60@E14001197", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15107.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb947a38483957657dbd6e30" + }, + { + "name": "ons.age.50_60@E14001198", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e58e25e31e7de98b28ad07" + }, + { + "name": "ons.age.50_60@E14001199", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e65509fddd31c7f135a6e3a" + }, + { + "name": "ons.age.50_60@E14001200", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab706553c14b11e9f3544be" + }, + { + "name": "ons.age.50_60@E14001201", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa39d294aec3c183b4d3d3b5" + }, + { + "name": "ons.age.50_60@E14001202", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14184.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e65fe09278f581e47914f7a" + }, + { + "name": "ons.age.50_60@E14001203", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9329b78900be46c97105c854" + }, + { + "name": "ons.age.50_60@E14001204", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37eabae92dacd60ca32d99a2" + }, + { + "name": "ons.age.50_60@E14001205", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e686af29af18c3f83e7bc102" + }, + { + "name": "ons.age.50_60@E14001206", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_54a111035b272766677af569" + }, + { + "name": "ons.age.50_60@E14001207", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eb4c6fbb3b4923fe9cccec8" + }, + { + "name": "ons.age.50_60@E14001208", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17114.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da2a71313e73f474b7e952a7" + }, + { + "name": "ons.age.50_60@E14001209", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81bb7acd7ab89b0f311e14d0" + }, + { + "name": "ons.age.50_60@E14001210", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb5a9a6d5a9d93b317d6cb3a" + }, + { + "name": "ons.age.50_60@E14001211", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aff80a983370cf606ec5c55" + }, + { + "name": "ons.age.50_60@E14001212", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_917153bbdeb0ba4857096d0b" + }, + { + "name": "ons.age.50_60@E14001213", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6706d4293c898967a74019c" + }, + { + "name": "ons.age.50_60@E14001214", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b08c13d11b185990bfa2d998" + }, + { + "name": "ons.age.50_60@E14001215", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52d9bb1f75146ee8689cb645" + }, + { + "name": "ons.age.50_60@E14001216", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf83624da0feffc44f84176" + }, + { + "name": "ons.age.50_60@E14001217", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a54ae4b6ac532b92515510ce" + }, + { + "name": "ons.age.50_60@E14001218", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2cb410dd3c7920af2381ae5" + }, + { + "name": "ons.age.50_60@E14001219", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cff5e3a47608849d91a17a3" + }, + { + "name": "ons.age.50_60@E14001220", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f51065d4e23b00c8a98e28b" + }, + { + "name": "ons.age.50_60@E14001221", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cc2dce5e91af8e25ab46980" + }, + { + "name": "ons.age.50_60@E14001222", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef1a7311114bdd5b52c708bc" + }, + { + "name": "ons.age.50_60@E14001223", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b64c00fbedea8c29dcdd4316" + }, + { + "name": "ons.age.50_60@E14001224", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de520a8521def758428e4869" + }, + { + "name": "ons.age.50_60@E14001225", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9fc5cf5cc3a014a0f5cccd" + }, + { + "name": "ons.age.50_60@E14001226", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61b264de5d666c48bb27fbf4" + }, + { + "name": "ons.age.50_60@E14001227", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e6642654cf90cf304b85d02" + }, + { + "name": "ons.age.50_60@E14001228", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec66112cae16c5155ae58f3" + }, + { + "name": "ons.age.50_60@E14001229", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e84b176c7fc2eac2a92d7f3c" + }, + { + "name": "ons.age.50_60@E14001230", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15442.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a5eef0833e835ee6acaf88" + }, + { + "name": "ons.age.50_60@E14001231", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abd9982063be8373087f8965" + }, + { + "name": "ons.age.50_60@E14001232", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd1fd49c63f922e1434ad5c" + }, + { + "name": "ons.age.50_60@E14001233", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c26aca435f20b7baf0763fd1" + }, + { + "name": "ons.age.50_60@E14001234", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc2b81163938e772bbaa576c" + }, + { + "name": "ons.age.50_60@E14001235", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f307678d4c50125e493f2aa2" + }, + { + "name": "ons.age.50_60@E14001236", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7145076ae91739b97eb564c" + }, + { + "name": "ons.age.50_60@E14001237", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5cdf4e82009409e88af915b" + }, + { + "name": "ons.age.50_60@E14001238", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0521a10e4aa74d4d4a73749" + }, + { + "name": "ons.age.50_60@E14001239", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e07d48a286fc11f6c1b39ff1" + }, + { + "name": "ons.age.50_60@E14001240", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_722a0a76852fb17943448e7b" + }, + { + "name": "ons.age.50_60@E14001241", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ad61473e87f8f6cba7ff3b3" + }, + { + "name": "ons.age.50_60@E14001242", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fde2ac62b8f5d136d818246" + }, + { + "name": "ons.age.50_60@E14001243", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aeaeaf313a1f2e36dc5bcd08" + }, + { + "name": "ons.age.50_60@E14001244", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95fb4cc52127bb9f69a23015" + }, + { + "name": "ons.age.50_60@E14001245", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6901a26c33d63f110b822b4" + }, + { + "name": "ons.age.50_60@E14001246", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf7fbdd4a4bc1a63eec0cd1a" + }, + { + "name": "ons.age.50_60@E14001247", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13680.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b94b6a07f45fae8f05c1044a" + }, + { + "name": "ons.age.50_60@E14001248", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df0030c0e6e0d4dd5f81e88f" + }, + { + "name": "ons.age.50_60@E14001249", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_634f42d1d263683ff2366ce9" + }, + { + "name": "ons.age.50_60@E14001250", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9ac8563de0a0319854242de" + }, + { + "name": "ons.age.50_60@E14001251", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13809.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89742e4f8adea4e94e1c0506" + }, + { + "name": "ons.age.50_60@E14001252", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8805f1b40dd86601a49c97c7" + }, + { + "name": "ons.age.50_60@E14001253", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9fa4b2b548814e7d1b96f73" + }, + { + "name": "ons.age.50_60@E14001254", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d1160278974a9d030c49c70" + }, + { + "name": "ons.age.50_60@E14001255", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4718e124448c4840b5876f8" + }, + { + "name": "ons.age.50_60@E14001256", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5728347503dc26cd58f37b" + }, + { + "name": "ons.age.50_60@E14001257", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c48dddc095d3e9f2ad3db9ea" + }, + { + "name": "ons.age.50_60@E14001258", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_717b722ce0d5e50b7d117bb9" + }, + { + "name": "ons.age.50_60@E14001259", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9895b23b8571d27f3e3228b0" + }, + { + "name": "ons.age.50_60@E14001260", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47804702abd79c62bffdfe47" + }, + { + "name": "ons.age.50_60@E14001261", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63dbc7d0ed86539cb72ccb5e" + }, + { + "name": "ons.age.50_60@E14001262", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6fa8a64c785d59f41dabdd4" + }, + { + "name": "ons.age.50_60@E14001263", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eb479f20359ee520da51b29" + }, + { + "name": "ons.age.50_60@E14001264", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbc8f7b4c4900927eee084a5" + }, + { + "name": "ons.age.50_60@E14001265", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91c0f1a14fb7cf3882583823" + }, + { + "name": "ons.age.50_60@E14001266", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b218f5c742c02aa33c3d4c2" + }, + { + "name": "ons.age.50_60@E14001267", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14088.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d13e02db0257ba41f5686e33" + }, + { + "name": "ons.age.50_60@E14001268", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab691bd04c9e33789fe66f02" + }, + { + "name": "ons.age.50_60@E14001269", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c70959f9f2d154de6bc2ebe8" + }, + { + "name": "ons.age.50_60@E14001270", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13882.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af14ee76ede1dec5ca7d608a" + }, + { + "name": "ons.age.50_60@E14001271", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1746c0b008f6049f9fd21d2" + }, + { + "name": "ons.age.50_60@E14001272", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bf3c394dae553fa54df79e2" + }, + { + "name": "ons.age.50_60@E14001273", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14270.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa39c53980b55aaafe7633f4" + }, + { + "name": "ons.age.50_60@E14001274", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e347226cada78ebf134d5bca" + }, + { + "name": "ons.age.50_60@E14001275", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95ed2b911ecfbe0f86759d1" + }, + { + "name": "ons.age.50_60@E14001276", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_895440340f9455bbe454aff1" + }, + { + "name": "ons.age.50_60@E14001277", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb49e760b5aa2378e2f66e1" + }, + { + "name": "ons.age.50_60@E14001278", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c0c54210254e66f9f6e6b0" + }, + { + "name": "ons.age.50_60@E14001279", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48d6096f116eaa1ae61d279f" + }, + { + "name": "ons.age.50_60@E14001280", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec0d0b526b2caeddefc9b43" + }, + { + "name": "ons.age.50_60@E14001281", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86622a64306c1aae5ab3f4a6" + }, + { + "name": "ons.age.50_60@E14001282", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db46ab395facbda373ea8d98" + }, + { + "name": "ons.age.50_60@E14001283", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88be4196e5039eb43a21f7e2" + }, + { + "name": "ons.age.50_60@E14001284", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddde188982bafa76f234f8f0" + }, + { + "name": "ons.age.50_60@E14001285", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_26ec31a0a509058614d5961e" + }, + { + "name": "ons.age.50_60@E14001286", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13079.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7364c361fc98913c55efe7d" + }, + { + "name": "ons.age.50_60@E14001287", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9843bde1889c96167c1dd193" + }, + { + "name": "ons.age.50_60@E14001288", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b451eb0c9f66aed69503a7b7" + }, + { + "name": "ons.age.50_60@E14001289", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_913e4589d61a395120c1c3bd" + }, + { + "name": "ons.age.50_60@E14001290", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b089646f7e99b2d65657c6ba" + }, + { + "name": "ons.age.50_60@E14001291", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e933671b71d8cdaa6e72d616" + }, + { + "name": "ons.age.50_60@E14001292", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d06c7b3525b3199e3f47dc35" + }, + { + "name": "ons.age.50_60@E14001293", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ce77fbfafb94db321822c0b" + }, + { + "name": "ons.age.50_60@E14001294", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6172c4646a8351c0f6e15d9b" + }, + { + "name": "ons.age.50_60@E14001295", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59ba468e0c99fbbf9c4fb647" + }, + { + "name": "ons.age.50_60@E14001296", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a55c436b3a7eab5318a25ccd" + }, + { + "name": "ons.age.50_60@E14001297", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e141c407fc77e74ec4f7d585" + }, + { + "name": "ons.age.50_60@E14001298", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd77f55b5da4c37532071e1d" + }, + { + "name": "ons.age.50_60@E14001299", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_971a8742a0c514f663e4b22a" + }, + { + "name": "ons.age.50_60@E14001300", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce40d7ea34939e8b170dc665" + }, + { + "name": "ons.age.50_60@E14001301", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f9b13952a7129d83618d8e" + }, + { + "name": "ons.age.50_60@E14001302", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_761af79b134b31f0d4cc1bcc" + }, + { + "name": "ons.age.50_60@E14001303", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac176f4ae2efe7c4258f408a" + }, + { + "name": "ons.age.50_60@E14001304", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2346425f74fb6997418f128" + }, + { + "name": "ons.age.50_60@E14001305", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbc9d767795971e4699e3c54" + }, + { + "name": "ons.age.50_60@E14001306", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12570.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f81eaf6d551f2090bd6f96c1" + }, + { + "name": "ons.age.50_60@E14001307", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b979153b1f740ada02ffb701" + }, + { + "name": "ons.age.50_60@E14001308", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c835feb96696ddc687d480ba" + }, + { + "name": "ons.age.50_60@E14001309", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb9a2a6bc1a5536aaf5a4e4d" + }, + { + "name": "ons.age.50_60@E14001310", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84d318348acb2dcb3554bef5" + }, + { + "name": "ons.age.50_60@E14001311", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a65d81d57e8cc94fc087e58" + }, + { + "name": "ons.age.50_60@E14001312", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db75f2795ddc8456b426b026" + }, + { + "name": "ons.age.50_60@E14001313", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbfab75406c2386c67c109b" + }, + { + "name": "ons.age.50_60@E14001314", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14238.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_424ef28c8a46b31568ee734a" + }, + { + "name": "ons.age.50_60@E14001315", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61e097fbbe8dfc8492523191" + }, + { + "name": "ons.age.50_60@E14001316", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92bbec685b755108bf3025f1" + }, + { + "name": "ons.age.50_60@E14001317", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1157944819e8c9ef0e27a40" + }, + { + "name": "ons.age.50_60@E14001318", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_492c1ebae4cb25a2a3443392" + }, + { + "name": "ons.age.50_60@E14001319", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2f3d7e57ec497504bd2f04" + }, + { + "name": "ons.age.50_60@E14001320", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4054b83d4d8e26997c0b611" + }, + { + "name": "ons.age.50_60@E14001321", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12004.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62efa654d2e4de0aecd63db0" + }, + { + "name": "ons.age.50_60@E14001322", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12512.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d2b8409f3668ebaa885695" + }, + { + "name": "ons.age.50_60@E14001323", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62018038c6e94c4f49a50eda" + }, + { + "name": "ons.age.50_60@E14001324", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd194333fb82a81d98034f81" + }, + { + "name": "ons.age.50_60@E14001325", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7ec8952d2c3dcd785403d9" + }, + { + "name": "ons.age.50_60@E14001326", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9c9cb30e6dbc0f810d8fc60" + }, + { + "name": "ons.age.50_60@E14001327", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12088.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73eaf540a088fbd563c04c6b" + }, + { + "name": "ons.age.50_60@E14001328", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea44d00e13c4fc53fbbeca8a" + }, + { + "name": "ons.age.50_60@E14001329", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9938e4caa87adee23f2fdf5f" + }, + { + "name": "ons.age.50_60@E14001330", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39a77e7001b8b37f0b1a6426" + }, + { + "name": "ons.age.50_60@E14001331", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9893879579a665a9059d0de5" + }, + { + "name": "ons.age.50_60@E14001332", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_608d94fb27d0290903c4ae86" + }, + { + "name": "ons.age.50_60@E14001333", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12199.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff9f60106dc1553802ea5d99" + }, + { + "name": "ons.age.50_60@E14001334", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3eb1a7865f983f9a6ee389ca" + }, + { + "name": "ons.age.50_60@E14001335", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_411cb0b2277c5c5e2dfebfc8" + }, + { + "name": "ons.age.50_60@E14001336", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81bb159b55853c6c97020c8e" + }, + { + "name": "ons.age.50_60@E14001337", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abffc1329ebab654594d1327" + }, + { + "name": "ons.age.50_60@E14001338", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10797.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83953521045892f260ba9c8" + }, + { + "name": "ons.age.50_60@E14001339", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d360c3d29a640a496dc66be1" + }, + { + "name": "ons.age.50_60@E14001340", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7496c68b4b01181b56dea300" + }, + { + "name": "ons.age.50_60@E14001341", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b05958da0cc956f70849fa23" + }, + { + "name": "ons.age.50_60@E14001342", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96a7e06bf307ec7ca039b85" + }, + { + "name": "ons.age.50_60@E14001343", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd82318fc189fcd292245119" + }, + { + "name": "ons.age.50_60@E14001344", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70fdc6695be98a46505d2aed" + }, + { + "name": "ons.age.50_60@E14001345", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8e6712d877e6fd4f4e4c34a" + }, + { + "name": "ons.age.50_60@E14001346", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09a55cb05f1e3f2d1660530" + }, + { + "name": "ons.age.50_60@E14001347", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfe8e0964f3ec5b054820fa8" + }, + { + "name": "ons.age.50_60@E14001348", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15010.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c09efa130dca2ee2282dcf4" + }, + { + "name": "ons.age.50_60@E14001349", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0bcf92423c47db8db1132be" + }, + { + "name": "ons.age.50_60@E14001350", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e0a2cbaa0cebc5a485a5dd2" + }, + { + "name": "ons.age.50_60@E14001351", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15109.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f648402490968cc7c91d35" + }, + { + "name": "ons.age.50_60@E14001352", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8e2d031f7f17908abbfcd32" + }, + { + "name": "ons.age.50_60@E14001353", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6fe433caaf54ed0632106a0" + }, + { + "name": "ons.age.50_60@E14001354", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a764b027362a0192a5962a7" + }, + { + "name": "ons.age.50_60@E14001355", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63d21a8bdc91cec9376a3c7" + }, + { + "name": "ons.age.50_60@E14001356", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8176c909f4de021f66dfd0a" + }, + { + "name": "ons.age.50_60@E14001357", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9041b1094c65f0253a30bb00" + }, + { + "name": "ons.age.50_60@E14001358", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8424f6564998d7c34c070791" + }, + { + "name": "ons.age.50_60@E14001359", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d04fc3cf246a8d9b7e1a53" + }, + { + "name": "ons.age.50_60@E14001360", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14671.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f469fa819f5f4234e73efae5" + }, + { + "name": "ons.age.50_60@E14001361", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b3bd82a318a47a8154c31ba" + }, + { + "name": "ons.age.50_60@E14001362", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daf0298c2ce15c67948cf37d" + }, + { + "name": "ons.age.50_60@E14001363", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de139d0caa7b329b54f4dfd4" + }, + { + "name": "ons.age.50_60@E14001364", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfcd3a80fcc9291be3084b3f" + }, + { + "name": "ons.age.50_60@E14001365", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81c843e0477772544633925e" + }, + { + "name": "ons.age.50_60@E14001366", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c44de2e3a92f2008052c579e" + }, + { + "name": "ons.age.50_60@E14001367", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb08da3fe3bfae1890caf589" + }, + { + "name": "ons.age.50_60@E14001368", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab4b3ec4ab5f36af2c9301a3" + }, + { + "name": "ons.age.50_60@E14001369", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c640ef448ed3f40206f27e8a" + }, + { + "name": "ons.age.50_60@E14001370", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8ea71ea30d2939a2f8d5081" + }, + { + "name": "ons.age.50_60@E14001371", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c16a9291c3525d006227b30b" + }, + { + "name": "ons.age.50_60@E14001372", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a58e4efd9b6a2bf8e8c53dc3" + }, + { + "name": "ons.age.50_60@E14001373", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13277.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6f73e42e6dc2f8d53937772" + }, + { + "name": "ons.age.50_60@E14001374", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb101532192b9cb7fb42793d" + }, + { + "name": "ons.age.50_60@E14001375", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15874.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_747e463055ce064af6382269" + }, + { + "name": "ons.age.50_60@E14001376", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4e8b8a72dcab31cabd6b4a0" + }, + { + "name": "ons.age.50_60@E14001377", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13973.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3c46819fee6cf39a7675054" + }, + { + "name": "ons.age.50_60@E14001378", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef6dc524cb058a5a59e56780" + }, + { + "name": "ons.age.50_60@E14001379", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5cae83fdab3bd47f079484" + }, + { + "name": "ons.age.50_60@E14001380", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a2774cd0f7000795b61f32" + }, + { + "name": "ons.age.50_60@E14001381", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13512.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c733e1291edcba45084798f" + }, + { + "name": "ons.age.50_60@E14001382", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92c8cd4cfb885b99e83b9fbf" + }, + { + "name": "ons.age.50_60@E14001383", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd9c460483b00dc8acff842c" + }, + { + "name": "ons.age.50_60@E14001384", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e575c297245401daa91ac902" + }, + { + "name": "ons.age.50_60@E14001385", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9231e2b41e7c8e2450c857b2" + }, + { + "name": "ons.age.50_60@E14001386", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bbcad4658fe8815d9bbaee7" + }, + { + "name": "ons.age.50_60@E14001387", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c5aa169fcb61058507d6c53" + }, + { + "name": "ons.age.50_60@E14001388", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65ec645cab272295005da537" + }, + { + "name": "ons.age.50_60@E14001389", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b1607db0f353c09739e2c89" + }, + { + "name": "ons.age.50_60@E14001390", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed9c329f76db225251b7b844" + }, + { + "name": "ons.age.50_60@E14001391", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0118d19a80734bbeec2dcc2" + }, + { + "name": "ons.age.50_60@E14001392", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93977090ef3a3c08671f2852" + }, + { + "name": "ons.age.50_60@E14001393", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d75e1f1288383585eeb34b11" + }, + { + "name": "ons.age.50_60@E14001394", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbdb366d388708c3c3c3affb" + }, + { + "name": "ons.age.50_60@E14001395", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0ae6f48bd3533425d5bdd77" + }, + { + "name": "ons.age.50_60@E14001396", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1e18b800c996cc241048efb" + }, + { + "name": "ons.age.50_60@E14001397", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbcc241f502705f40ba9594" + }, + { + "name": "ons.age.50_60@E14001398", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5329310329faca24a43586c1" + }, + { + "name": "ons.age.50_60@E14001399", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1e2d07742d88fc2ad37c11c" + }, + { + "name": "ons.age.50_60@E14001400", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7109de215a645bc2ecd6fd7d" + }, + { + "name": "ons.age.50_60@E14001401", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3b1bc74da9c81652d684c4c" + }, + { + "name": "ons.age.50_60@E14001402", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f917a6153c820a6d2b3023d" + }, + { + "name": "ons.age.50_60@E14001403", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae6133ac72e7888350ef8f10" + }, + { + "name": "ons.age.50_60@E14001404", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed680b0f9dbab3df4a8f79d8" + }, + { + "name": "ons.age.50_60@E14001405", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0dc49ed55ca9772f79c293d" + }, + { + "name": "ons.age.50_60@E14001406", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61e52d44b3c7552c4e82676c" + }, + { + "name": "ons.age.50_60@E14001407", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6cbd1eed4bef66792600865" + }, + { + "name": "ons.age.50_60@E14001408", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d09dec6228bbbf7dd27c6c" + }, + { + "name": "ons.age.50_60@E14001409", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d00fa29773f0cb8f2e82c68d" + }, + { + "name": "ons.age.50_60@E14001410", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12009.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dae8d4a2516ea94074270a3f" + }, + { + "name": "ons.age.50_60@E14001411", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a02e9310c341cc0dfb415f45" + }, + { + "name": "ons.age.50_60@E14001412", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_801ed2186b93d4c916faad4c" + }, + { + "name": "ons.age.50_60@E14001413", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17c8cc48965ff7d73ede4f7" + }, + { + "name": "ons.age.50_60@E14001414", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f02e32010642fd74f43c4bb3" + }, + { + "name": "ons.age.50_60@E14001415", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d47fec7e646d8905238b81af" + }, + { + "name": "ons.age.50_60@E14001416", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f4c1f25b3a391135525e075" + }, + { + "name": "ons.age.50_60@E14001417", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13412.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b966be320e360a31800eb144" + }, + { + "name": "ons.age.50_60@E14001418", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea81936d5258b3f16c9b35f3" + }, + { + "name": "ons.age.50_60@E14001419", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e563507abd1042212235cf" + }, + { + "name": "ons.age.50_60@E14001420", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f9fb8f0ef7f0bba9fe8d508" + }, + { + "name": "ons.age.50_60@E14001421", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f293f91a298fdc91fec7eada" + }, + { + "name": "ons.age.50_60@E14001422", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_676c5b57fe947daf2353c5df" + }, + { + "name": "ons.age.50_60@E14001423", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a04ad8886e558f5f15fef48" + }, + { + "name": "ons.age.50_60@E14001424", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c2f8174696560b6e9f3a89" + }, + { + "name": "ons.age.50_60@E14001425", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98c83abe1081f0221f6ce700" + }, + { + "name": "ons.age.50_60@E14001426", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7db24143c12a0cec066f2b3" + }, + { + "name": "ons.age.50_60@E14001427", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a746caf23802bd4f26d505c7" + }, + { + "name": "ons.age.50_60@E14001428", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7d5a30e64486e6ef3ce5409" + }, + { + "name": "ons.age.50_60@E14001429", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db32996d33eee987102c18b2" + }, + { + "name": "ons.age.50_60@E14001430", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1fdb25ca3bb1cdc7c9546de" + }, + { + "name": "ons.age.50_60@E14001431", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbadf2deb4386a3370c2bb3e" + }, + { + "name": "ons.age.50_60@E14001432", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_768e60186866eb418aeb2020" + }, + { + "name": "ons.age.50_60@E14001433", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_152a7dec7eb8504fba04f336" + }, + { + "name": "ons.age.50_60@E14001434", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47ce824654a27b3f9710e57" + }, + { + "name": "ons.age.50_60@E14001435", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9752208fdf0ee8fcadea6ce" + }, + { + "name": "ons.age.50_60@E14001436", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6caac808153160cb7e840e8d" + }, + { + "name": "ons.age.50_60@E14001437", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba383a076a1a75407238ca59" + }, + { + "name": "ons.age.50_60@E14001438", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6106694425b9989970146f51" + }, + { + "name": "ons.age.50_60@E14001439", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea4f7276be76a892c21f24d4" + }, + { + "name": "ons.age.50_60@E14001440", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13294.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0230943425475e3d78c1d86" + }, + { + "name": "ons.age.50_60@E14001441", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a215a59b3101c2124967b5c7" + }, + { + "name": "ons.age.50_60@E14001442", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc48bf9e7eb9cc5813d1be1" + }, + { + "name": "ons.age.50_60@E14001443", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c668619461b6cb34b7be7581" + }, + { + "name": "ons.age.50_60@E14001444", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9879d7cb279a3e3a488ad25c" + }, + { + "name": "ons.age.50_60@E14001445", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2e3233f0635199a92108794" + }, + { + "name": "ons.age.50_60@E14001446", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13227.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94ad10d322657afc0833d975" + }, + { + "name": "ons.age.50_60@E14001447", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13961.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f0e3f5aafa3584df054d257" + }, + { + "name": "ons.age.50_60@E14001448", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89ea314a3768907be2b67195" + }, + { + "name": "ons.age.50_60@E14001449", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2891665c319240499bedea" + }, + { + "name": "ons.age.50_60@E14001450", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9025408b4278bfa39995ca4" + }, + { + "name": "ons.age.50_60@E14001451", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d4f78ba50dbf9a29435fa60" + }, + { + "name": "ons.age.50_60@E14001452", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d13b64b920d5950d18fb26" + }, + { + "name": "ons.age.50_60@E14001453", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_996faff349c336668416a54b" + }, + { + "name": "ons.age.50_60@E14001454", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89803e8362d7f77e008062ad" + }, + { + "name": "ons.age.50_60@E14001455", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_15e77d92690a773a38a8107a" + }, + { + "name": "ons.age.50_60@E14001456", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15148.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0464ce21ab76edc5b6e33bd" + }, + { + "name": "ons.age.50_60@E14001457", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60f02ddf59c926fd2a32254a" + }, + { + "name": "ons.age.50_60@E14001458", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_868980c61c168d66ac3edff5" + }, + { + "name": "ons.age.50_60@E14001459", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11351.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abcf0d25b3a74e8c3e7e8cea" + }, + { + "name": "ons.age.50_60@E14001460", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d46a3df645691cf99b44bf66" + }, + { + "name": "ons.age.50_60@E14001461", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a38786f97c2635a13877f838" + }, + { + "name": "ons.age.50_60@E14001462", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_36c7b0d8ba39a78d5712dd25" + }, + { + "name": "ons.age.50_60@E14001463", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca918a7230127abced3ec614" + }, + { + "name": "ons.age.50_60@E14001464", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab887ae8d416af5391e4dd09" + }, + { + "name": "ons.age.50_60@E14001465", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc741ff8c1e04b061a085e93" + }, + { + "name": "ons.age.50_60@E14001466", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_957aa8b79031edb90b5a582d" + }, + { + "name": "ons.age.50_60@E14001467", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa279e2851c62b704a3d04d" + }, + { + "name": "ons.age.50_60@E14001468", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62ec85e178a310c0b1075b96" + }, + { + "name": "ons.age.50_60@E14001469", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6001a984ffe63f9f3c4b625" + }, + { + "name": "ons.age.50_60@E14001470", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be84ecf868ab3eabb9a78c01" + }, + { + "name": "ons.age.50_60@E14001471", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd2652633474a92a524142e5" + }, + { + "name": "ons.age.50_60@E14001472", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b036cfc148b1dcc5b7f328" + }, + { + "name": "ons.age.50_60@E14001473", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_836f73ee3547aca7fff37629" + }, + { + "name": "ons.age.50_60@E14001474", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4777db9393aeb8935f2b0c3" + }, + { + "name": "ons.age.50_60@E14001475", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4c3a9c5231c33011cfe8e14" + }, + { + "name": "ons.age.50_60@E14001476", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5e819e4a40c4ef6d2a6dd58" + }, + { + "name": "ons.age.50_60@E14001477", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15939.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99c329beff7fdb68f7ab6e29" + }, + { + "name": "ons.age.50_60@E14001478", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c151cc15ce4d3df5f3323e4e" + }, + { + "name": "ons.age.50_60@E14001479", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c80a2d679999d4ace2be10a" + }, + { + "name": "ons.age.50_60@E14001480", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c45759b68c55b8152f1d2828" + }, + { + "name": "ons.age.50_60@E14001481", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea3984ef1bf4a4f0335077d5" + }, + { + "name": "ons.age.50_60@E14001482", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4887a38563a28296b759e4af" + }, + { + "name": "ons.age.50_60@E14001483", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9e0e3e32cb31027bec41990" + }, + { + "name": "ons.age.50_60@E14001484", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13196.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2532016261c92829895115d" + }, + { + "name": "ons.age.50_60@E14001485", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d4cccbd28da867f1cfe5949" + }, + { + "name": "ons.age.50_60@E14001486", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6423a7ea7380f683d6b07fc" + }, + { + "name": "ons.age.50_60@E14001487", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dab8b4c5485c598239a9f63e" + }, + { + "name": "ons.age.50_60@E14001488", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dc998d704cae5d710d69d64" + }, + { + "name": "ons.age.50_60@E14001489", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f68733215c9c5f0040ed40" + }, + { + "name": "ons.age.50_60@E14001490", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aa98e9177cc54842f396f9e" + }, + { + "name": "ons.age.50_60@E14001491", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afbda6d7325ad914dd7002a5" + }, + { + "name": "ons.age.50_60@E14001492", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c1b947551d3bb9b11773de8" + }, + { + "name": "ons.age.50_60@E14001493", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_921121747ce55806e3a36a6b" + }, + { + "name": "ons.age.50_60@E14001494", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56715b37578fe3c35acc1f77" + }, + { + "name": "ons.age.50_60@E14001495", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_672c610cd91ec8e3950630c6" + }, + { + "name": "ons.age.50_60@E14001496", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_911243e2e1a16f0884fd2326" + }, + { + "name": "ons.age.50_60@E14001497", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6919224f5b039f995c75f2b" + }, + { + "name": "ons.age.50_60@E14001498", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb54991fcf80cb0ba5c67aab" + }, + { + "name": "ons.age.50_60@E14001499", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12342.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfe5945b9b1fd8f020e24eb8" + }, + { + "name": "ons.age.50_60@E14001500", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66608372d86cac3643971956" + }, + { + "name": "ons.age.50_60@E14001501", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_382e34e016d9f501da41ca56" + }, + { + "name": "ons.age.50_60@E14001502", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9754a081842f2b6c8883b07e" + }, + { + "name": "ons.age.50_60@E14001503", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7403710b20a460ee0ac9325b" + }, + { + "name": "ons.age.50_60@E14001504", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf565f118657a40e81d53bb" + }, + { + "name": "ons.age.50_60@E14001505", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e210bd2aed495e5887903c" + }, + { + "name": "ons.age.50_60@E14001506", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d15a291156fda900cec8a73" + }, + { + "name": "ons.age.50_60@E14001507", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf777eb427a295faaba5b664" + }, + { + "name": "ons.age.50_60@E14001508", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_948e32c598539c66ff4734b0" + }, + { + "name": "ons.age.50_60@E14001509", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0c6113b00d6b8c2f71eae8b" + }, + { + "name": "ons.age.50_60@E14001510", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3bb337fbb46c8166c572de3" + }, + { + "name": "ons.age.50_60@E14001511", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db5868696b0613374751878b" + }, + { + "name": "ons.age.50_60@E14001512", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ab966e05f7cbdafef62544" + }, + { + "name": "ons.age.50_60@E14001513", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f2d5ef6c0cbd6f79eac84f0" + }, + { + "name": "ons.age.50_60@E14001514", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac318af9a9b573664ba6e99b" + }, + { + "name": "ons.age.50_60@E14001515", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e8cce81f24623b3361cbf10" + }, + { + "name": "ons.age.50_60@E14001516", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13041.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97588b882a019e846042ad0a" + }, + { + "name": "ons.age.50_60@E14001517", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13845.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6541c735be48fa7c333d9edd" + }, + { + "name": "ons.age.50_60@E14001518", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a410c3b026f6ef31efd607" + }, + { + "name": "ons.age.50_60@E14001519", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdbf723e27e54dd10c6e8522" + }, + { + "name": "ons.age.50_60@E14001520", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf44af8dadc154a7294d846d" + }, + { + "name": "ons.age.50_60@E14001521", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8bab39e78cdf5fcd87d53c7" + }, + { + "name": "ons.age.50_60@E14001522", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12632.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f440e30cfd0b498dc9e607f7" + }, + { + "name": "ons.age.50_60@E14001523", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f66641df0cf771f51a03fd86" + }, + { + "name": "ons.age.50_60@E14001524", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd9aeb95577cac104d00f219" + }, + { + "name": "ons.age.50_60@E14001525", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11885.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_642775395c226a34039a847c" + }, + { + "name": "ons.age.50_60@E14001526", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_476cc6b34e45b7dc1b3c816d" + }, + { + "name": "ons.age.50_60@E14001527", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d08b5aa4b589b807c79e7b8" + }, + { + "name": "ons.age.50_60@E14001528", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b0866fc7786d70acac23de" + }, + { + "name": "ons.age.50_60@E14001529", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f30acb45cb0dccef1549da5" + }, + { + "name": "ons.age.50_60@E14001530", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13250.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc57dd1801abf48d4bc59972" + }, + { + "name": "ons.age.50_60@E14001531", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0d6d62bf6609d1fbbfef7b7" + }, + { + "name": "ons.age.50_60@E14001532", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0948e86e28ed9bfdd275a33" + }, + { + "name": "ons.age.50_60@E14001533", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa6b0f92b800a26b3d85df8" + }, + { + "name": "ons.age.50_60@E14001534", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8aad0451dac1a7cb1cc2558" + }, + { + "name": "ons.age.50_60@E14001535", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05b596b35ed60373eddf8d5" + }, + { + "name": "ons.age.50_60@E14001536", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89059fca708dc12090484b88" + }, + { + "name": "ons.age.50_60@E14001537", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15294.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_deaf8d9a7325f29fc37d039f" + }, + { + "name": "ons.age.50_60@E14001538", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea0b7287a82397a734aa4aa" + }, + { + "name": "ons.age.50_60@E14001539", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6b3f77f5923f63a6e95485f" + }, + { + "name": "ons.age.50_60@E14001540", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c8aecba2ae368c75673101b" + }, + { + "name": "ons.age.50_60@E14001541", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9452644eb375d8b6d87d7f0a" + }, + { + "name": "ons.age.50_60@E14001542", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13286.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48e12c03d06e68215284b63f" + }, + { + "name": "ons.age.50_60@E14001543", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f540f5e4ba39d7119d32bca8" + }, + { + "name": "ons.age.50_60@E14001544", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba9e0665f9b11ac081eea62b" + }, + { + "name": "ons.age.50_60@E14001545", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3b43245b4c3caede3750d01" + }, + { + "name": "ons.age.50_60@E14001546", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3e41f47ed5fc61543bbf5fb" + }, + { + "name": "ons.age.50_60@E14001547", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d03f289be04b4a4e080b8d7c" + }, + { + "name": "ons.age.50_60@E14001548", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1d27bcb66dbd82c37c9a331" + }, + { + "name": "ons.age.50_60@E14001549", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72c6003d66a66f75d73bb59a" + }, + { + "name": "ons.age.50_60@E14001550", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f46316d289993fbe8bb14e18" + }, + { + "name": "ons.age.50_60@E14001551", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a5bcd4ebfd94215e8fc73f" + }, + { + "name": "ons.age.50_60@E14001552", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b483312e0dad08f8b28cdceb" + }, + { + "name": "ons.age.50_60@E14001553", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_412ea4a84b0fc8e61bf22273" + }, + { + "name": "ons.age.50_60@E14001554", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e65ad2f440f73806a6a50f63" + }, + { + "name": "ons.age.50_60@E14001555", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9fdecd4872a1d8b44f775b1" + }, + { + "name": "ons.age.50_60@E14001556", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd95fe5018a5444c3c51763" + }, + { + "name": "ons.age.50_60@E14001557", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff2e24257e9e380c59407c99" + }, + { + "name": "ons.age.50_60@E14001558", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa5ae360a434c99506d0e0c4" + }, + { + "name": "ons.age.50_60@E14001559", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9261630c5305712616f62e" + }, + { + "name": "ons.age.50_60@E14001560", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80d8763663ee99847baa4078" + }, + { + "name": "ons.age.50_60@E14001561", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edbc20eaf4d63547cd1f1b73" + }, + { + "name": "ons.age.50_60@E14001562", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_679b0e277a87f4b5704ccd1f" + }, + { + "name": "ons.age.50_60@E14001563", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14114.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87f1f032186b8116bcba2420" + }, + { + "name": "ons.age.50_60@E14001564", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be44a3376916d6b60d0df891" + }, + { + "name": "ons.age.50_60@E14001565", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15083.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a9539497d6a6a69b279d541" + }, + { + "name": "ons.age.50_60@E14001566", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c707876a76308ac100e1a9c" + }, + { + "name": "ons.age.50_60@E14001567", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e730d240ad53a0017f26e30d" + }, + { + "name": "ons.age.50_60@E14001568", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eccd033f2c34c4357715648e" + }, + { + "name": "ons.age.50_60@E14001569", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d730d9eeb4abfef18a0b696b" + }, + { + "name": "ons.age.50_60@E14001570", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db92b4f8999a8a63cb0bc7d3" + }, + { + "name": "ons.age.50_60@E14001571", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f6fc0cc5e3712f966d67e29" + }, + { + "name": "ons.age.50_60@E14001572", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb77a5c4ace84148582efb23" + }, + { + "name": "ons.age.50_60@E14001573", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fae3ff2a6f36b1af8ece082a" + }, + { + "name": "ons.age.50_60@E14001574", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9683d60efc54424960cd57c5" + }, + { + "name": "ons.age.50_60@E14001575", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13446.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa42a03bdc0f7e2d323e7284" + }, + { + "name": "ons.age.50_60@E14001576", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b242c0b511b0d2e0189dfc6f" + }, + { + "name": "ons.age.50_60@E14001577", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99093e805cd9428af8278f7c" + }, + { + "name": "ons.age.50_60@E14001578", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15696.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6c78d8cb392ee17f33349ac" + }, + { + "name": "ons.age.50_60@E14001579", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15174.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73f765f1015aa4db1469b3b1" + }, + { + "name": "ons.age.50_60@E14001580", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fcd3026c91adef45f5ac3c1" + }, + { + "name": "ons.age.50_60@E14001581", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0d173da6c682ba14539d85a" + }, + { + "name": "ons.age.50_60@E14001582", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea7546f40459e81f6b893e0" + }, + { + "name": "ons.age.50_60@E14001583", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b77392ee8d53d5a8928ac416" + }, + { + "name": "ons.age.50_60@E14001584", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae0257804bcd15907b7a651a" + }, + { + "name": "ons.age.50_60@E14001585", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b1403731d31d16409bd21f" + }, + { + "name": "ons.age.50_60@E14001586", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85d325a7e1197ebf6fb274c2" + }, + { + "name": "ons.age.50_60@E14001587", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14636.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9231dfe42694d8192cda0e6" + }, + { + "name": "ons.age.50_60@E14001588", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee8ca21270ca1d644a671fe9" + }, + { + "name": "ons.age.50_60@E14001589", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7436f1060999c5c7ea627fa" + }, + { + "name": "ons.age.50_60@E14001590", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e112cd5b75317ac2dc567d59" + }, + { + "name": "ons.age.50_60@E14001591", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9388573d71dbea2be3a0f0c" + }, + { + "name": "ons.age.50_60@E14001592", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3931f16368b6e3d2a36a723" + }, + { + "name": "ons.age.50_60@E14001593", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14555.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0f55713fa5c231d69f9ed87" + }, + { + "name": "ons.age.50_60@E14001594", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e4100bafcfd2df93e6bb189" + }, + { + "name": "ons.age.50_60@E14001595", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c226c29a6310934b56210d22" + }, + { + "name": "ons.age.50_60@E14001596", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7af7f3d5ffe65a8afaaa98b" + }, + { + "name": "ons.age.50_60@E14001597", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdedcb2e8a5e202a5d621500" + }, + { + "name": "ons.age.50_60@E14001598", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64f8a1797fb076d81e2e012" + }, + { + "name": "ons.age.50_60@E14001599", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_caabd5acb3f9b5833e3ab63d" + }, + { + "name": "ons.age.50_60@E14001600", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d25663db4a033739288a52" + }, + { + "name": "ons.age.50_60@E14001601", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de0b90e62aa66d56310b94f7" + }, + { + "name": "ons.age.50_60@E14001602", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5311ed58a924c0a705232f" + }, + { + "name": "ons.age.50_60@E14001603", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aefd0ca82fef4e81565eaf45" + }, + { + "name": "ons.age.50_60@E14001604", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74c4cb99b3a1779c17ee2634" + }, + { + "name": "ons.age.50_60@E14001605", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b72ec39f0270648a68ab8184" + }, + { + "name": "ons.age.50_60@N05000001", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8c626b74cca89bdf5378c8" + }, + { + "name": "ons.age.50_60@N05000002", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13391.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcd7670e3c794cd62e4d94e7" + }, + { + "name": "ons.age.50_60@N05000003", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12992.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_351f8e0424db2ca1eb4ba027" + }, + { + "name": "ons.age.50_60@N05000004", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eb46a08512532b8b6b69723" + }, + { + "name": "ons.age.50_60@N05000005", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14656.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7280432c52f58de83d29c409" + }, + { + "name": "ons.age.50_60@N05000006", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de345a139869355b94700c26" + }, + { + "name": "ons.age.50_60@N05000007", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_19492728279196c3469e0498" + }, + { + "name": "ons.age.50_60@N05000008", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12942.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aec710ff1dcb16c2e0943813" + }, + { + "name": "ons.age.50_60@N05000009", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_866647c22a311cce9856de48" + }, + { + "name": "ons.age.50_60@N05000010", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdaddb3ccbd4ce51158bc4fd" + }, + { + "name": "ons.age.50_60@N05000011", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baacb9e622da6cbd5a3eaa62" + }, + { + "name": "ons.age.50_60@N05000012", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfea06dc6d57d77dcb0449f6" + }, + { + "name": "ons.age.50_60@N05000013", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1b7cd21df7e44248e32cf68" + }, + { + "name": "ons.age.50_60@N05000014", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da2b0d0e407223ef77be4534" + }, + { + "name": "ons.age.50_60@N05000015", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc661836449ad0b5e9efa18b" + }, + { + "name": "ons.age.50_60@N05000016", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14337.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70b49f1b7cff62d68ee266d4" + }, + { + "name": "ons.age.50_60@N05000017", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_511ea4a19c3f7662442529b8" + }, + { + "name": "ons.age.50_60@N05000018", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13793.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e74ca2cc5d2e93882c4acbda" + }, + { + "name": "ons.age.50_60@S14000021", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8342618b65ca552a72b496" + }, + { + "name": "ons.age.50_60@S14000027", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 4201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8dfe092c9694d9b7555c782" + }, + { + "name": "ons.age.50_60@S14000045", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9deff4b286486c959817aec" + }, + { + "name": "ons.age.50_60@S14000048", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af6c02eb085bfef45d53f9f4" + }, + { + "name": "ons.age.50_60@S14000051", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed9d77fb6b67ea5070e18c56" + }, + { + "name": "ons.age.50_60@S14000060", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd5026961bdf641d5cce80a6" + }, + { + "name": "ons.age.50_60@S14000061", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc625a9bc2d11441d8756f6" + }, + { + "name": "ons.age.50_60@S14000062", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e84f1abdba3774653baabeb2" + }, + { + "name": "ons.age.50_60@S14000063", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee91de911bcdbcb931d2e351" + }, + { + "name": "ons.age.50_60@S14000064", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f12f466c6f85ee5fff8916aa" + }, + { + "name": "ons.age.50_60@S14000065", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb8b0929fc558e1d91ae4303" + }, + { + "name": "ons.age.50_60@S14000066", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5f63d8285ca5876c9e8c5ab" + }, + { + "name": "ons.age.50_60@S14000067", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b22dd5d2ce9652aedebb3ac3" + }, + { + "name": "ons.age.50_60@S14000068", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0da722c8f3cfa95c17896a4" + }, + { + "name": "ons.age.50_60@S14000069", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecba0c20fbaffc9457c9abe0" + }, + { + "name": "ons.age.50_60@S14000070", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf03288818526c4b76a453d7" + }, + { + "name": "ons.age.50_60@S14000071", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e855367a9ff8ff5e5a2ccd8e" + }, + { + "name": "ons.age.50_60@S14000072", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13332.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be757a082b33cf649ea80b3b" + }, + { + "name": "ons.age.50_60@S14000073", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc4b9cae38d41c176f4d963a" + }, + { + "name": "ons.age.50_60@S14000074", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e2f13259726c953a5f5555" + }, + { + "name": "ons.age.50_60@S14000075", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edab96a305f6d8dc72e6a9a4" + }, + { + "name": "ons.age.50_60@S14000076", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa7d3202ee6d8ca051c81d19" + }, + { + "name": "ons.age.50_60@S14000077", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b1f5fcc9b5d551c2b24a8e" + }, + { + "name": "ons.age.50_60@S14000078", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13010.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83de9a8973477538c2783ef" + }, + { + "name": "ons.age.50_60@S14000079", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfc150f682de596d60b7a991" + }, + { + "name": "ons.age.50_60@S14000080", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dadb4ed1948cfc51775fce8d" + }, + { + "name": "ons.age.50_60@S14000081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6203b918177e8ba73f2b3b9" + }, + { + "name": "ons.age.50_60@S14000082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b69b21dc1b8f6dc787dc0807" + }, + { + "name": "ons.age.50_60@S14000083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faf60195c9f75f3493604d2b" + }, + { + "name": "ons.age.50_60@S14000084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11961.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e077825d0321d9e098bd197d" + }, + { + "name": "ons.age.50_60@S14000085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e69262ae63c8e17ade886d08" + }, + { + "name": "ons.age.50_60@S14000086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f38f6834ae534137a5f01a19" + }, + { + "name": "ons.age.50_60@S14000087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f68f6ceb9441d06d7a105a30" + }, + { + "name": "ons.age.50_60@S14000088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8a243aac6197d6c4743b4f1" + }, + { + "name": "ons.age.50_60@S14000089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b99d07269aeef19278a65a" + }, + { + "name": "ons.age.50_60@S14000090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5fd2e98fe6a636a98f20ac5" + }, + { + "name": "ons.age.50_60@S14000091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13995.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0b5d3ea9bf4046a5a7bf444" + }, + { + "name": "ons.age.50_60@S14000092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9b89769d22a124564b58120" + }, + { + "name": "ons.age.50_60@S14000093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe5e286bf264e376c283fb90" + }, + { + "name": "ons.age.50_60@S14000094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8ac54fee897d9763f9d95d8" + }, + { + "name": "ons.age.50_60@S14000095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15772.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ed96995f72e3d7c3520f21" + }, + { + "name": "ons.age.50_60@S14000096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_deb662ea1f1a89b9261a9573" + }, + { + "name": "ons.age.50_60@S14000097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7859594cfbcd307c3196857" + }, + { + "name": "ons.age.50_60@S14000098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4a54408b881ed7dab43dbe5" + }, + { + "name": "ons.age.50_60@S14000099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f892a02e3441b6956dfe60fc" + }, + { + "name": "ons.age.50_60@S14000100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb26cea6dc0ff30416f42b0a" + }, + { + "name": "ons.age.50_60@S14000101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b68af38594a456d9e38247" + }, + { + "name": "ons.age.50_60@S14000102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f375bf13a81641a890dfd3" + }, + { + "name": "ons.age.50_60@S14000103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14845.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7c6043a946795c15895f717" + }, + { + "name": "ons.age.50_60@S14000104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe630dc23ec5e1c45ae192ae" + }, + { + "name": "ons.age.50_60@S14000105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d29c72bcd152450c7e0a0c40" + }, + { + "name": "ons.age.50_60@S14000106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f14e0f0e8c617309bf052de0" + }, + { + "name": "ons.age.50_60@S14000107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee6eb83bf73c9b580ec68ae" + }, + { + "name": "ons.age.50_60@S14000108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e000857ab7492ef6d3471a" + }, + { + "name": "ons.age.50_60@S14000109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f55eb155112e1953085e01fc" + }, + { + "name": "ons.age.50_60@S14000110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14584.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec5889ad4743133f32aed796" + }, + { + "name": "ons.age.50_60@S14000111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1e70e16dd2421450cb3109b" + }, + { + "name": "ons.age.50_60@W07000081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abac26648d805c9160748f0a" + }, + { + "name": "ons.age.50_60@W07000082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daab47e688760db8547b6735" + }, + { + "name": "ons.age.50_60@W07000083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13088.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2be1de0f9b6a35bd30b1651" + }, + { + "name": "ons.age.50_60@W07000084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13615.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63443935d688f7e5007c8146" + }, + { + "name": "ons.age.50_60@W07000085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13367.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d822044a6262f6a5b4fcd1ef" + }, + { + "name": "ons.age.50_60@W07000086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d33a7e219d643e6a90378060" + }, + { + "name": "ons.age.50_60@W07000087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94359c1a097037f54225b1c5" + }, + { + "name": "ons.age.50_60@W07000088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ee453f5fbe17b4d194987c" + }, + { + "name": "ons.age.50_60@W07000089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57cc7d15f9adbed39702283c" + }, + { + "name": "ons.age.50_60@W07000090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e683b8d6f81ffe2b92b713c5" + }, + { + "name": "ons.age.50_60@W07000091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89c268fdddd4b45d4b507fd7" + }, + { + "name": "ons.age.50_60@W07000092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc551d07d2b14cf298cc4de9" + }, + { + "name": "ons.age.50_60@W07000093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c999d9c1d402a804c6766065" + }, + { + "name": "ons.age.50_60@W07000094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14457.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4aba52f134c1af83b317444" + }, + { + "name": "ons.age.50_60@W07000095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b4045e760f2176c206613fa" + }, + { + "name": "ons.age.50_60@W07000096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bef5a2cdb53753fbb4019c46" + }, + { + "name": "ons.age.50_60@W07000097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dc7d9267dca0f3ddc149120" + }, + { + "name": "ons.age.50_60@W07000098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceff83e762cda99189b673d3" + }, + { + "name": "ons.age.50_60@W07000099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c335126bc5e026c7ff7f4476" + }, + { + "name": "ons.age.50_60@W07000100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3d99e5cb016322a0916b0b9" + }, + { + "name": "ons.age.50_60@W07000101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_854f6365a654f6f4b9277c45" + }, + { + "name": "ons.age.50_60@W07000102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c47c0730f5beee82970d2ec" + }, + { + "name": "ons.age.50_60@W07000103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18405d793e3195ced5bd16ac" + }, + { + "name": "ons.age.50_60@W07000104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a37b992283bb6cf607a5f960" + }, + { + "name": "ons.age.50_60@W07000105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ad21cc0bfb3c91961c58d69" + }, + { + "name": "ons.age.50_60@W07000106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f99f2c87079a75bb7fa5003" + }, + { + "name": "ons.age.50_60@W07000107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1941638243ebde989554e1b8" + }, + { + "name": "ons.age.50_60@W07000108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3c9a12a544b4d04e40ec06e" + }, + { + "name": "ons.age.50_60@W07000109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ee357de408a5a5db72fdc3d" + }, + { + "name": "ons.age.50_60@W07000110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d91e22fe5e87188c0b20417a" + }, + { + "name": "ons.age.50_60@W07000111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_275e00da5bb970786ad1e8e7" + }, + { + "name": "ons.age.50_60@W07000112", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6157f1d7edde7095817db17a" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.50_60@E06000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b9e43fffe2ccac5aefde6b6" + }, + { + "name": "ons.age.50_60@E06000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a691761c661c8b74f863ef81" + }, + { + "name": "ons.age.50_60@E06000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57251378ec3e8cff759fd8b" + }, + { + "name": "ons.age.50_60@E06000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d96455bc0c43d9c606123216" + }, + { + "name": "ons.age.50_60@E06000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15378.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59dd550a56750f25b0d11507" + }, + { + "name": "ons.age.50_60@E06000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f5d45c98bc6f543eb07ee82" + }, + { + "name": "ons.age.50_60@E06000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee638631182c75e8de0cf4b3" + }, + { + "name": "ons.age.50_60@E06000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71885e71e8aabb25387aaa59" + }, + { + "name": "ons.age.50_60@E06000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8934f0f72669681c4fec3e6c" + }, + { + "name": "ons.age.50_60@E06000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_661ed36f3a91326eef0f9bc9" + }, + { + "name": "ons.age.50_60@E06000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b306e2bd70968b01026cc5cb" + }, + { + "name": "ons.age.50_60@E06000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cea493fce510e6ee3a5c2214" + }, + { + "name": "ons.age.50_60@E06000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d34805d2c6c6f3933bb88944" + }, + { + "name": "ons.age.50_60@E06000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a241fa16e27b14680ac6ab4" + }, + { + "name": "ons.age.50_60@E06000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c094a89c3d40bfcc0c6d6507" + }, + { + "name": "ons.age.50_60@E06000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c269245525cf7113e9cb5c1c" + }, + { + "name": "ons.age.50_60@E06000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba3aeaa08cfa1eae8494e820" + }, + { + "name": "ons.age.50_60@E06000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb82173c08003a457f9af5d8" + }, + { + "name": "ons.age.50_60@E06000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94c853c5ad2cea2d7f877fd6" + }, + { + "name": "ons.age.50_60@E06000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_27baa1778b7eeb6a6b2df7a9" + }, + { + "name": "ons.age.50_60@E06000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fb9706f4137855d501d5ad6" + }, + { + "name": "ons.age.50_60@E06000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf4906b0ddece413a413833f" + }, + { + "name": "ons.age.50_60@E06000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8a9bfbd8fc0c45907cb826d" + }, + { + "name": "ons.age.50_60@E06000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d165913f07bbee3f4c1bfd8a" + }, + { + "name": "ons.age.50_60@E06000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d366fcd539555cfabbd31df3" + }, + { + "name": "ons.age.50_60@E06000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9016a84cf6dbee2932e8fe3b" + }, + { + "name": "ons.age.50_60@E06000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b84f62a8aea57ead9a58fe46" + }, + { + "name": "ons.age.50_60@E06000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edbc5c148969a0aaa20ea5f1" + }, + { + "name": "ons.age.50_60@E06000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa0643043fd46650961e1b2" + }, + { + "name": "ons.age.50_60@E06000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3e3c1abb7fc8d82f218a33e" + }, + { + "name": "ons.age.50_60@E06000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f2f089232f87d009b8ac0cf" + }, + { + "name": "ons.age.50_60@E06000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22456.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e58c5757fe0fcd669d4a2640" + }, + { + "name": "ons.age.50_60@E06000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abebf931be838fc04baa35cb" + }, + { + "name": "ons.age.50_60@E06000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8eaee18d554dae5e9f00190" + }, + { + "name": "ons.age.50_60@E06000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4eb7a49fba45f56068545608" + }, + { + "name": "ons.age.50_60@E06000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca59a6faa8fb6209d5b76fc5" + }, + { + "name": "ons.age.50_60@E06000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18790.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f382b7e36eafb46c430da47" + }, + { + "name": "ons.age.50_60@E06000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d29e54adc5e28fd6e4763a56" + }, + { + "name": "ons.age.50_60@E06000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec960d3c46a5f3ed259b25ba" + }, + { + "name": "ons.age.50_60@E06000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c69d6f876af369dc40ff62" + }, + { + "name": "ons.age.50_60@E06000043", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40485.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ba021833bc5be18e605811b" + }, + { + "name": "ons.age.50_60@E06000044", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e2d14bd4c61a54507bb545" + }, + { + "name": "ons.age.50_60@E06000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdffcca76a92986120bfb884" + }, + { + "name": "ons.age.50_60@E06000046", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20293.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48586f35fff3d97f9bfe1507" + }, + { + "name": "ons.age.50_60@E06000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d21a0dba25920fa6b437e2" + }, + { + "name": "ons.age.50_60@E06000049", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2dc7417a99fd78d63e3ca97f" + }, + { + "name": "ons.age.50_60@E06000050", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51680.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a24f72b7e7cf75303a0a79b9" + }, + { + "name": "ons.age.50_60@E06000051", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa677901ecd138b0e97129b6" + }, + { + "name": "ons.age.50_60@E06000052", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_17e932a63cf4c5e3f9255817" + }, + { + "name": "ons.age.50_60@E06000053", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 321.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51aa2af01af104020aa904e4" + }, + { + "name": "ons.age.50_60@E06000054", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4df6faecd0440b6a7925fef" + }, + { + "name": "ons.age.50_60@E06000055", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3468c191ca70edb0fb6261bb" + }, + { + "name": "ons.age.50_60@E06000056", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b82336206d3b92cc2e68e48a" + }, + { + "name": "ons.age.50_60@E06000057", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7525180a9578927803e13a6b" + }, + { + "name": "ons.age.50_60@E06000058", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94ed1cf20e171df42f12dce4" + }, + { + "name": "ons.age.50_60@E06000059", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ce5df5bd0cc11ef4a70c81" + }, + { + "name": "ons.age.50_60@E06000060", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79884.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6176fedb971cf8475f1515f" + }, + { + "name": "ons.age.50_60@E06000061", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_856876de77c0e4950f5d0dd1" + }, + { + "name": "ons.age.50_60@E06000062", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7530dfce7528246429c899d" + }, + { + "name": "ons.age.50_60@E06000063", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40671.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7edac1732a540278ae1fc378" + }, + { + "name": "ons.age.50_60@E06000064", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcc3a823aa245f6ea0041f50" + }, + { + "name": "ons.age.50_60@E06000065", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 93537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc545255d7f87974bee461d6" + }, + { + "name": "ons.age.50_60@E06000066", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 82834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0996020d4342b1424dae5b02" + }, + { + "name": "ons.age.50_60@E07000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e214ccb869e806aebc918c6" + }, + { + "name": "ons.age.50_60@E07000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13140.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6fd2e3c55b44ccbf3d7b50c" + }, + { + "name": "ons.age.50_60@E07000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f29f6348b2cf1b62e642c450" + }, + { + "name": "ons.age.50_60@E07000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8e4cc66592b50c70d30805" + }, + { + "name": "ons.age.50_60@E07000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b91ee52f50f41f73a91b06c" + }, + { + "name": "ons.age.50_60@E07000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19699.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98fa9d1fbb31b424f38ccb86" + }, + { + "name": "ons.age.50_60@E07000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b911a6dd4aa99a82512e294a" + }, + { + "name": "ons.age.50_60@E07000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebe921ac2ecf190f76b0d034" + }, + { + "name": "ons.age.50_60@E07000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52fe80a8ef1c7e126a63effb" + }, + { + "name": "ons.age.50_60@E07000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6839c903d868178aee8dad91" + }, + { + "name": "ons.age.50_60@E07000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4563aaa59ebef5aa51af727" + }, + { + "name": "ons.age.50_60@E07000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2d247563a91425375bd502e" + }, + { + "name": "ons.age.50_60@E07000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d960dc96dabead9e3889a7af" + }, + { + "name": "ons.age.50_60@E07000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e86b643fc635c46d734a5a11" + }, + { + "name": "ons.age.50_60@E07000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a95b080698da29db5e4090a5" + }, + { + "name": "ons.age.50_60@E07000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0ff816c7614008717c99a6b" + }, + { + "name": "ons.age.50_60@E07000043", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14469.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fbdcbe7229a4ce9ba170961" + }, + { + "name": "ons.age.50_60@E07000044", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed311f07493bd98b495c7517" + }, + { + "name": "ons.age.50_60@E07000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c9ef57a51b27e1b4ee0d586" + }, + { + "name": "ons.age.50_60@E07000046", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0dd83c3f2bd66e7699fc621" + }, + { + "name": "ons.age.50_60@E07000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43cb3ba81a6fc216f454f6e" + }, + { + "name": "ons.age.50_60@E07000061", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4d01a3a41603808bca05b6" + }, + { + "name": "ons.age.50_60@E07000062", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18630c607c364a31739c2fc3" + }, + { + "name": "ons.age.50_60@E07000063", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff334ae47e1238d99f6c68fd" + }, + { + "name": "ons.age.50_60@E07000064", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd15357c0239a3f9b3a47c41" + }, + { + "name": "ons.age.50_60@E07000065", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db3cc048aae4e601f49baea5" + }, + { + "name": "ons.age.50_60@E07000066", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc8d9ab10c4d351b8b5a098a" + }, + { + "name": "ons.age.50_60@E07000067", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dbab2b65ed25882b525f0c3" + }, + { + "name": "ons.age.50_60@E07000068", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ece335b955b82b9e842ba676" + }, + { + "name": "ons.age.50_60@E07000069", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e48b734bbff3ce09aa0b2582" + }, + { + "name": "ons.age.50_60@E07000070", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dff4c197268eb2f1751ce562" + }, + { + "name": "ons.age.50_60@E07000071", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25321.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f321abf7525e33e955749e40" + }, + { + "name": "ons.age.50_60@E07000072", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd14d32221be2e0ba88c3c52" + }, + { + "name": "ons.age.50_60@E07000073", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b8adcd202e3e2e8f8d39d98" + }, + { + "name": "ons.age.50_60@E07000074", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8000c42c20e8ffefecfa437" + }, + { + "name": "ons.age.50_60@E07000075", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a95347def340f433d94cc361" + }, + { + "name": "ons.age.50_60@E07000076", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c94e09357bdd663046e9235b" + }, + { + "name": "ons.age.50_60@E07000077", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eaac45ed6b7a46680a10d75" + }, + { + "name": "ons.age.50_60@E07000078", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6e87543b4dc29a7ab069748" + }, + { + "name": "ons.age.50_60@E07000079", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeed4b6a954119b271cd2a42" + }, + { + "name": "ons.age.50_60@E07000080", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4be7852a7b505303bde0542" + }, + { + "name": "ons.age.50_60@E07000081", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53239c7dd6911eb301cf0a86" + }, + { + "name": "ons.age.50_60@E07000082", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8479f3b9736392e992ea8f11" + }, + { + "name": "ons.age.50_60@E07000083", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ad547d87554b3bd67303a00" + }, + { + "name": "ons.age.50_60@E07000084", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9672ade0ee717865e2f8cdfa" + }, + { + "name": "ons.age.50_60@E07000085", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b827d33a72a2c6658a82df10" + }, + { + "name": "ons.age.50_60@E07000086", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80fc79a8b6390680e0669bf" + }, + { + "name": "ons.age.50_60@E07000087", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c35087728ed96eebfa9e7b75" + }, + { + "name": "ons.age.50_60@E07000088", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11344.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f595ef863756cb32fdc63d0f" + }, + { + "name": "ons.age.50_60@E07000089", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c0311cd938187b521549278" + }, + { + "name": "ons.age.50_60@E07000090", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f973f5643c7ec59f0f4944" + }, + { + "name": "ons.age.50_60@E07000091", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5a1fc68826abf3cec3550af" + }, + { + "name": "ons.age.50_60@E07000092", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9921a29db09c9fbd1447e766" + }, + { + "name": "ons.age.50_60@E07000093", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8999e25ff5945481aaea4ec" + }, + { + "name": "ons.age.50_60@E07000094", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a945bae521e96451622585bb" + }, + { + "name": "ons.age.50_60@E07000095", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4c4546833868dde0a20a167" + }, + { + "name": "ons.age.50_60@E07000096", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bac32190928651abab6ff83" + }, + { + "name": "ons.age.50_60@E07000098", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d617427daf1ec385057c8fbc" + }, + { + "name": "ons.age.50_60@E07000099", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_18c7700eb76d68aee0e62d7e" + }, + { + "name": "ons.age.50_60@E07000102", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aca5787ad10fa9e385a7b6f6" + }, + { + "name": "ons.age.50_60@E07000103", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd0c45e52a2eb3f9f2905466" + }, + { + "name": "ons.age.50_60@E07000105", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b33c6fb077e5ba67b1b32884" + }, + { + "name": "ons.age.50_60@E07000106", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd3b3a46a3f97eaa52fa828" + }, + { + "name": "ons.age.50_60@E07000107", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15116.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_700d4e3ae3e7745146f3fbfa" + }, + { + "name": "ons.age.50_60@E07000108", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d48fbeb579d5d6c13ab0cd8c" + }, + { + "name": "ons.age.50_60@E07000109", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1e2f6c77e909aca81405ee" + }, + { + "name": "ons.age.50_60@E07000110", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25278.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de74d9c10a10291222731b5b" + }, + { + "name": "ons.age.50_60@E07000111", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49de3474b0ca69a9cc08485" + }, + { + "name": "ons.age.50_60@E07000112", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d48460e7506feb6faf48e727" + }, + { + "name": "ons.age.50_60@E07000113", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea7f4e2b0a2e13a3e4388b25" + }, + { + "name": "ons.age.50_60@E07000114", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19083.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2011847a23dde5e77f1421e4" + }, + { + "name": "ons.age.50_60@E07000115", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19291.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1b736853fa367037ca497f8" + }, + { + "name": "ons.age.50_60@E07000116", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e338eacdf13ff499fa316366" + }, + { + "name": "ons.age.50_60@E07000117", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f34196b07f90279c89e12792" + }, + { + "name": "ons.age.50_60@E07000118", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb63cdaa87b9a2c132f84f26" + }, + { + "name": "ons.age.50_60@E07000119", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28aaf5ef205db02e7ec7c240" + }, + { + "name": "ons.age.50_60@E07000120", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bf96b15dceb8476ca214c4c" + }, + { + "name": "ons.age.50_60@E07000121", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc48fa6b47aff34af3f65332" + }, + { + "name": "ons.age.50_60@E07000122", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8d32576125ea1188a65f55d" + }, + { + "name": "ons.age.50_60@E07000123", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d67cd1a290d6ebc0b5fd6c72" + }, + { + "name": "ons.age.50_60@E07000124", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dbac841821c10a6de01f494" + }, + { + "name": "ons.age.50_60@E07000125", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6954cc34512e02b726cecb8" + }, + { + "name": "ons.age.50_60@E07000126", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82844ac196c38b1739657f25" + }, + { + "name": "ons.age.50_60@E07000127", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c42ab6088309642c23dc801c" + }, + { + "name": "ons.age.50_60@E07000128", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9834c8f9afde40aaa98b1e9" + }, + { + "name": "ons.age.50_60@E07000129", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de830a83fc9023616a79ffe4" + }, + { + "name": "ons.age.50_60@E07000130", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c09cd9a76fde242a9d559db0" + }, + { + "name": "ons.age.50_60@E07000131", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8174a132633237b67eb6d1bf" + }, + { + "name": "ons.age.50_60@E07000132", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91c4d2a14111dc570738bca7" + }, + { + "name": "ons.age.50_60@E07000133", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a1ae1e11199cbd97219fe9e" + }, + { + "name": "ons.age.50_60@E07000134", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d41801952b0cfeea371af09" + }, + { + "name": "ons.age.50_60@E07000135", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbfbd219b4f36fdc67c0cef2" + }, + { + "name": "ons.age.50_60@E07000136", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9880.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2d11817035fe01ed6fcad9e" + }, + { + "name": "ons.age.50_60@E07000137", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c3a2e4ac46630a455df96fe" + }, + { + "name": "ons.age.50_60@E07000138", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_054d322e2b0ce71a6b40963e" + }, + { + "name": "ons.age.50_60@E07000139", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea3d22244ca75c18b6d7f05c" + }, + { + "name": "ons.age.50_60@E07000140", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d4386e6d98b0528b2b5d0f9" + }, + { + "name": "ons.age.50_60@E07000141", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd3dc03d09220a366daefa7c" + }, + { + "name": "ons.age.50_60@E07000142", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_763ab7c81410ebe34a7b01ca" + }, + { + "name": "ons.age.50_60@E07000143", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f48c5b207af6b207bdb01434" + }, + { + "name": "ons.age.50_60@E07000144", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7c37bf9bc891bd4137a63d9" + }, + { + "name": "ons.age.50_60@E07000145", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14136.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7502550ab7f7ef81713ebc00" + }, + { + "name": "ons.age.50_60@E07000146", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f345dda100b6af23bdf5abfe" + }, + { + "name": "ons.age.50_60@E07000147", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_424960c2b3c79928584a92fc" + }, + { + "name": "ons.age.50_60@E07000148", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15828.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af0cbf4879e47eda570cfe22" + }, + { + "name": "ons.age.50_60@E07000149", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20802.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_544c71e88b2dd0f698d5ed14" + }, + { + "name": "ons.age.50_60@E07000170", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd25204dd746c78870fad11d" + }, + { + "name": "ons.age.50_60@E07000171", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dac890209f9b2dc70e5b079a" + }, + { + "name": "ons.age.50_60@E07000172", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14981.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89fd8a65024cf5276fcc5e89" + }, + { + "name": "ons.age.50_60@E07000173", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a78692e14e51ac4a9e4cef" + }, + { + "name": "ons.age.50_60@E07000174", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26423501f9f4856f552d9e9" + }, + { + "name": "ons.age.50_60@E07000175", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_22d2497d665fa4b5c6e62327" + }, + { + "name": "ons.age.50_60@E07000176", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77a58830efa10c6b58bd6911" + }, + { + "name": "ons.age.50_60@E07000177", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6fe6a74f4234b35573f2cad" + }, + { + "name": "ons.age.50_60@E07000178", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d002c83d09cdec44cf2b353" + }, + { + "name": "ons.age.50_60@E07000179", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab5820b16407f5346bde8318" + }, + { + "name": "ons.age.50_60@E07000180", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19409.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c4209cd7712a8b9e14f3503" + }, + { + "name": "ons.age.50_60@E07000181", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e43cd6ee592d32af2fb9b1fd" + }, + { + "name": "ons.age.50_60@E07000192", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e86725a5c5c7ff645c6b512f" + }, + { + "name": "ons.age.50_60@E07000193", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_07b7b9ba4960976cdcec548f" + }, + { + "name": "ons.age.50_60@E07000194", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a74d9f3534d8be7e3b14745" + }, + { + "name": "ons.age.50_60@E07000195", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6058ca0c70edc908c465227" + }, + { + "name": "ons.age.50_60@E07000196", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0872ebad69e96c85f451907" + }, + { + "name": "ons.age.50_60@E07000197", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47bebb92be089a2fa48d421" + }, + { + "name": "ons.age.50_60@E07000198", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e15775696147733d56edce42" + }, + { + "name": "ons.age.50_60@E07000199", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a092126b4ce626b180496a54" + }, + { + "name": "ons.age.50_60@E07000200", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4295fabf1377a8c6da3a4e0" + }, + { + "name": "ons.age.50_60@E07000202", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af6bda7beeb5ec16f33276db" + }, + { + "name": "ons.age.50_60@E07000203", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6f85c4a9e7e3fd3654a80b1" + }, + { + "name": "ons.age.50_60@E07000207", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec17ad0f27de91883512f3b" + }, + { + "name": "ons.age.50_60@E07000208", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3a211a249f34ad518a4f9ac" + }, + { + "name": "ons.age.50_60@E07000209", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b928bc2a12cc6e34df0a60" + }, + { + "name": "ons.age.50_60@E07000210", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9452c35ee0982ff9e683300" + }, + { + "name": "ons.age.50_60@E07000211", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21183.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_339816686005c293cad88fa9" + }, + { + "name": "ons.age.50_60@E07000212", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa8912775c5a0a04a54e58b0" + }, + { + "name": "ons.age.50_60@E07000213", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_795fd762931ae43cdacccf51" + }, + { + "name": "ons.age.50_60@E07000214", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13529.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be8869b5b4528fe03fd04bce" + }, + { + "name": "ons.age.50_60@E07000215", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56bc9ace93a1293a03d97cd4" + }, + { + "name": "ons.age.50_60@E07000216", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d49f35cab931679c6d616e4b" + }, + { + "name": "ons.age.50_60@E07000217", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc5c1c9240aaca1eb267c78e" + }, + { + "name": "ons.age.50_60@E07000218", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a2075dcd7c775706ec548d3" + }, + { + "name": "ons.age.50_60@E07000219", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7655ee667bfbd776feb34b5" + }, + { + "name": "ons.age.50_60@E07000220", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8098e59071eb6e625f745f" + }, + { + "name": "ons.age.50_60@E07000221", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65b4671f1c4fcf66b8a02986" + }, + { + "name": "ons.age.50_60@E07000222", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b710ca872791b51b17651047" + }, + { + "name": "ons.age.50_60@E07000223", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d16cf66f55896ab420108bbc" + }, + { + "name": "ons.age.50_60@E07000224", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40ae395d903905720ba507bc" + }, + { + "name": "ons.age.50_60@E07000225", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17296.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6fd2a5d7ee3b94a54a34e80" + }, + { + "name": "ons.age.50_60@E07000226", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e2c4abb359b5d729a4f828" + }, + { + "name": "ons.age.50_60@E07000227", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f40c15151dec15cb69de7eaf" + }, + { + "name": "ons.age.50_60@E07000228", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_290868d65bb9eb0ca3dc44c4" + }, + { + "name": "ons.age.50_60@E07000229", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16196.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b045cc3af345d677c8f5ca10" + }, + { + "name": "ons.age.50_60@E07000234", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb003ddc120faec8fb8ea622" + }, + { + "name": "ons.age.50_60@E07000235", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2658e69ae0cfbcef3070f929" + }, + { + "name": "ons.age.50_60@E07000236", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e52ef034268b0eaaedbb9c52" + }, + { + "name": "ons.age.50_60@E07000237", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f2cd241fdb41c31013a764c" + }, + { + "name": "ons.age.50_60@E07000238", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bafec4c06f0fada802cc366f" + }, + { + "name": "ons.age.50_60@E07000239", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15025.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56e7ccc06c02511ff210df8c" + }, + { + "name": "ons.age.50_60@E07000240", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b871b4c2bf2400adbe612b43" + }, + { + "name": "ons.age.50_60@E07000241", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be73de36d0d8fb89605e12e8" + }, + { + "name": "ons.age.50_60@E07000242", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da292e816fca9af3c4e73e5e" + }, + { + "name": "ons.age.50_60@E07000243", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef7fbf81496fcd9e080379e" + }, + { + "name": "ons.age.50_60@E07000244", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b02a11af116f9012c80b9a35" + }, + { + "name": "ons.age.50_60@E07000245", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24393.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee5b76814cce092ae634fa43" + }, + { + "name": "ons.age.50_60@E08000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef147831bf058dfcc665e54f" + }, + { + "name": "ons.age.50_60@E08000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6123df776019773d125ee5df" + }, + { + "name": "ons.age.50_60@E08000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d57ed63456b3ce4778ac5617" + }, + { + "name": "ons.age.50_60@E08000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb30f9f3fbf864f5661de8d" + }, + { + "name": "ons.age.50_60@E08000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29161.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_35143445e0e335f8941154a2" + }, + { + "name": "ons.age.50_60@E08000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_883ede873ab9c6d55cc3f5e2" + }, + { + "name": "ons.age.50_60@E08000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4927d54617b04f6db5bd051" + }, + { + "name": "ons.age.50_60@E08000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3c3501dd02813dd516125ee" + }, + { + "name": "ons.age.50_60@E08000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e48e1e502feefa898ea6c3a1" + }, + { + "name": "ons.age.50_60@E08000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e372fecc3293dc8afc1c7564" + }, + { + "name": "ons.age.50_60@E08000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c722ecf05f82ae5f623e0a4" + }, + { + "name": "ons.age.50_60@E08000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b955a9c3e90e53acf75727de" + }, + { + "name": "ons.age.50_60@E08000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b48a6bc5a0c1200dfe3aba87" + }, + { + "name": "ons.age.50_60@E08000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6cd4b5b21adfc5def99cebc" + }, + { + "name": "ons.age.50_60@E08000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d000def520030065cf3edf7" + }, + { + "name": "ons.age.50_60@E08000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b0ee58690e5a8c0f484e7f2" + }, + { + "name": "ons.age.50_60@E08000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e68d345a1b194a43710f9458" + }, + { + "name": "ons.age.50_60@E08000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69418bf6303058630c3b188f" + }, + { + "name": "ons.age.50_60@E08000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 68628.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b49ea24fc0a5e7d6a36e9078" + }, + { + "name": "ons.age.50_60@E08000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32875.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72aa26fac1b45afbe8870bd5" + }, + { + "name": "ons.age.50_60@E08000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93a207688052bdc5e0ebaffa" + }, + { + "name": "ons.age.50_60@E08000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a487c9abf0ff75f963f11c3" + }, + { + "name": "ons.age.50_60@E08000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1717ca7e0af8492d07c5ccd" + }, + { + "name": "ons.age.50_60@E08000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 131011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec1bf24bd973a3da206b110" + }, + { + "name": "ons.age.50_60@E08000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40456.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3f9e710b13b2de29189d9c7" + }, + { + "name": "ons.age.50_60@E08000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3256010853d491f3bb0dd39" + }, + { + "name": "ons.age.50_60@E08000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_25494b438d08b0972f7e956d" + }, + { + "name": "ons.age.50_60@E08000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea5f320c84cac4e535ae6d9" + }, + { + "name": "ons.age.50_60@E08000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75041f0dddfdcba2be8050f8" + }, + { + "name": "ons.age.50_60@E08000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c385dfadb105691b571793c8" + }, + { + "name": "ons.age.50_60@E08000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 66773.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7580f1039fa8c7669704c5c" + }, + { + "name": "ons.age.50_60@E08000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0b0b5e6ec9db3d78a27ee79" + }, + { + "name": "ons.age.50_60@E08000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 59382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3a9c710bd66cdd4da250620" + }, + { + "name": "ons.age.50_60@E08000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 97616.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f648c5922abc02535be3de64" + }, + { + "name": "ons.age.50_60@E08000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 50718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d34e03e75deabc628b032c60" + }, + { + "name": "ons.age.50_60@E08000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26629.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b8310332eec3e635eb59c89" + }, + { + "name": "ons.age.50_60@E09000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1403.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c211ccefef02ebcd1fc69728" + }, + { + "name": "ons.age.50_60@E09000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c89d855b259eeda7f32956" + }, + { + "name": "ons.age.50_60@E09000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28dd2ef24711d1fcac8e6e04" + }, + { + "name": "ons.age.50_60@E09000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41a6330f776bfd034e3e5a31" + }, + { + "name": "ons.age.50_60@E09000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51866f53576f48e7c0fb6450" + }, + { + "name": "ons.age.50_60@E09000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cddea252b5a5910cf435c194" + }, + { + "name": "ons.age.50_60@E09000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4600a128e1c39921440e5ff" + }, + { + "name": "ons.age.50_60@E09000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51588.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c72c3e9cf5df885ef4aa3f10" + }, + { + "name": "ons.age.50_60@E09000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d593cef2b484b374ef459f81" + }, + { + "name": "ons.age.50_60@E09000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_866aa2746064b6e79605cbec" + }, + { + "name": "ons.age.50_60@E09000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f794815ec3bf183e0fcdcbd7" + }, + { + "name": "ons.age.50_60@E09000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6765159b346bdb9c9d678e9" + }, + { + "name": "ons.age.50_60@E09000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbf4827b547417ddf67fc446" + }, + { + "name": "ons.age.50_60@E09000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8444dbeb60f1c05ec113a4f8" + }, + { + "name": "ons.age.50_60@E09000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f64e61d2186f24dd4dbe562" + }, + { + "name": "ons.age.50_60@E09000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33512.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0a8c05bf7952cc15f51e7d8" + }, + { + "name": "ons.age.50_60@E09000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38795.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d99442814826ed40ea03b48" + }, + { + "name": "ons.age.50_60@E09000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5838a1fc1e15e9a76e747cd0" + }, + { + "name": "ons.age.50_60@E09000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b340cf24d00df45d0156ddee" + }, + { + "name": "ons.age.50_60@E09000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd54cd7da11a96103fd622b4" + }, + { + "name": "ons.age.50_60@E09000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f487fea0e301e4c748d5dbc9" + }, + { + "name": "ons.age.50_60@E09000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38009.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0752320823fc49e930850e9" + }, + { + "name": "ons.age.50_60@E09000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45ea8dda04d172f5b3482841" + }, + { + "name": "ons.age.50_60@E09000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e20729dc243f17a30477cf1" + }, + { + "name": "ons.age.50_60@E09000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9c7e7d482f51a3ce0be3a88" + }, + { + "name": "ons.age.50_60@E09000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea61c197e8c5367719526d37" + }, + { + "name": "ons.age.50_60@E09000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a88eed74467981ab04f28d85" + }, + { + "name": "ons.age.50_60@E09000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff675f7af28367e6e78ef298" + }, + { + "name": "ons.age.50_60@E09000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c98445a4e4b2e7e349ecdd2" + }, + { + "name": "ons.age.50_60@E09000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0761b0bb4b1341b8a4a2dbf" + }, + { + "name": "ons.age.50_60@E09000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33805.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_719840d098343d2ea3a9c4ba" + }, + { + "name": "ons.age.50_60@E09000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36238.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce669235e3507cd9d8437b48" + }, + { + "name": "ons.age.50_60@E09000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca30abfa7660c3e998393c8e" + }, + { + "name": "ons.age.50_60@N09000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb2343c0ec9059e41a7a53aa" + }, + { + "name": "ons.age.50_60@N09000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d6739bdc8df5780e3fc4b6c" + }, + { + "name": "ons.age.50_60@N09000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7397fbb199892530f7f3200" + }, + { + "name": "ons.age.50_60@N09000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7936394d9debbd0a95a340ad" + }, + { + "name": "ons.age.50_60@N09000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70ce38ae4deed811708d12a0" + }, + { + "name": "ons.age.50_60@N09000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83fb477255578c70c3de776c" + }, + { + "name": "ons.age.50_60@N09000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f44378b3529e616e352e24b0" + }, + { + "name": "ons.age.50_60@N09000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f020557ae629b4f8ed261b77" + }, + { + "name": "ons.age.50_60@N09000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_851c145085e008ff561dab60" + }, + { + "name": "ons.age.50_60@N09000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6391be84c6bd1f87593d137a" + }, + { + "name": "ons.age.50_60@N09000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23177.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c48dcf3587f42a4eb365769d" + }, + { + "name": "ons.age.50_60@S12000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8001.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60af91854cf9c63949c62183" + }, + { + "name": "ons.age.50_60@S12000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75a34f81988f9d5bbad9085b" + }, + { + "name": "ons.age.50_60@S12000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d446484cb6e032091a05fe6" + }, + { + "name": "ons.age.50_60@S12000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c68b18717c197a0d2fd80dfa" + }, + { + "name": "ons.age.50_60@S12000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13446.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c026dd9396bb1a4daf06cb64" + }, + { + "name": "ons.age.50_60@S12000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_befa6c4f359eaadc20053aea" + }, + { + "name": "ons.age.50_60@S12000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebfaee388d8b7f2fb5fb49f4" + }, + { + "name": "ons.age.50_60@S12000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3da924835ff9af1c9768fc0" + }, + { + "name": "ons.age.50_60@S12000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_958bd9d4d19cb1b9b65ab123" + }, + { + "name": "ons.age.50_60@S12000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cf1f6a677f3f51501e5a5e8" + }, + { + "name": "ons.age.50_60@S12000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9eace22bcf880524d959137" + }, + { + "name": "ons.age.50_60@S12000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20160.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd52cd4d9d06f01a323b6cb1" + }, + { + "name": "ons.age.50_60@S12000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb06898bf59c762f459483a6" + }, + { + "name": "ons.age.50_60@S12000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4c0912ac3e3073728185fac" + }, + { + "name": "ons.age.50_60@S12000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3308.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40f355421023cfb08a12ab76" + }, + { + "name": "ons.age.50_60@S12000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16502.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c628680b945475245928fc" + }, + { + "name": "ons.age.50_60@S12000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1cf0b45fa5165caa2c0b0b3" + }, + { + "name": "ons.age.50_60@S12000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_552054d1d48642534f1f41b1" + }, + { + "name": "ons.age.50_60@S12000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9cdb033cc1cc6e14cc97372" + }, + { + "name": "ons.age.50_60@S12000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40107.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e762c34a4cd53ab9e4562d44" + }, + { + "name": "ons.age.50_60@S12000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea926314c99ac93aef9770a9" + }, + { + "name": "ons.age.50_60@S12000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61354.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd7db71746d894aa7abc6e8c" + }, + { + "name": "ons.age.50_60@S12000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74ce3d51c3a8b8775443aa67" + }, + { + "name": "ons.age.50_60@S12000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0b1d3ba55922788756ca95d" + }, + { + "name": "ons.age.50_60@S12000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27680.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92a2bd5a845a4b899307ac6f" + }, + { + "name": "ons.age.50_60@S12000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baf1074f5a246f8fc3d92ac6" + }, + { + "name": "ons.age.50_60@S12000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c4071bc0cb4a19831343451" + }, + { + "name": "ons.age.50_60@S12000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e117a0c151187e410a01ce65" + }, + { + "name": "ons.age.50_60@S12000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53315.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f209a7f8e6438e4391fa02e3" + }, + { + "name": "ons.age.50_60@S12000048", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d93ef66fb1a6ec82100da8e" + }, + { + "name": "ons.age.50_60@S12000049", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 75537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f515ca204764cf30545bebb4" + }, + { + "name": "ons.age.50_60@S12000050", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_959dbed5482ea3f3f2e7541a" + }, + { + "name": "ons.age.50_60@W06000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eef4e1af2ac962e6b0229980" + }, + { + "name": "ons.age.50_60@W06000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16638.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26358715ac6e7405b0d1bcc" + }, + { + "name": "ons.age.50_60@W06000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_26b7f3b346e279cf4b5c9e49" + }, + { + "name": "ons.age.50_60@W06000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b51d7cd96ec93ccf45a04544" + }, + { + "name": "ons.age.50_60@W06000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd13cb94a68ed6dca7918ae4" + }, + { + "name": "ons.age.50_60@W06000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_847897cd32f98cdbb023199b" + }, + { + "name": "ons.age.50_60@W06000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a40948afe55efe8b833f01c8" + }, + { + "name": "ons.age.50_60@W06000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8008052f54e0859779ac85d7" + }, + { + "name": "ons.age.50_60@W06000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee4330d69f328630fa3561a6" + }, + { + "name": "ons.age.50_60@W06000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8dd1fd59928636aa6f78ba" + }, + { + "name": "ons.age.50_60@W06000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b900bc2ae4ee86e47a8f842f" + }, + { + "name": "ons.age.50_60@W06000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6eb9b33634be1a399e8bc8" + }, + { + "name": "ons.age.50_60@W06000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83c619b8529d2d42fc19c7f8" + }, + { + "name": "ons.age.50_60@W06000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8beed62060b05c7b1b3ac3a" + }, + { + "name": "ons.age.50_60@W06000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b8d5d14635770088557ab17" + }, + { + "name": "ons.age.50_60@W06000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c97f44e56374acf86bf93e0c" + }, + { + "name": "ons.age.50_60@W06000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f64f9a0087b13661f52dba0b" + }, + { + "name": "ons.age.50_60@W06000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71e34bca0f9ffd4ec3026d6b" + }, + { + "name": "ons.age.50_60@W06000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eab9a628a0587de0b19f834a" + }, + { + "name": "ons.age.50_60@W06000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_574624d3ac33679159d86d76" + }, + { + "name": "ons.age.50_60@W06000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fea693083263c7f01ca7ba9d" + }, + { + "name": "ons.age.50_60@W06000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8b4bdecf6285936d7bf991c" + } + ] + } + } + }, + "ons.age.60_70": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.60_70@E14001063", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d372e72e8e4d0e34f40f352d" + }, + { + "name": "ons.age.60_70@E14001064", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff6e8f462311e74cfea4fa04" + }, + { + "name": "ons.age.60_70@E14001065", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f6f6c31528d4b6331cb7e9b" + }, + { + "name": "ons.age.60_70@E14001066", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daf13cca67c6134e5ed87ce7" + }, + { + "name": "ons.age.60_70@E14001067", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15356.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_895681262eb3776cc9756277" + }, + { + "name": "ons.age.60_70@E14001068", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6709610952544529d92e62a7" + }, + { + "name": "ons.age.60_70@E14001069", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11447.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b497255dace5e6dfb1200303" + }, + { + "name": "ons.age.60_70@E14001070", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f3718bcf93f1b1fc06171d" + }, + { + "name": "ons.age.60_70@E14001071", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fc7e9f0a0ef825056a5c182" + }, + { + "name": "ons.age.60_70@E14001072", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd77febc31e7fb4fcb48263" + }, + { + "name": "ons.age.60_70@E14001073", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f57f9ab9ae701171c6e42d4" + }, + { + "name": "ons.age.60_70@E14001074", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74ea71fa03183ce4cd595e41" + }, + { + "name": "ons.age.60_70@E14001075", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c3e9394c88afb4714c466f4" + }, + { + "name": "ons.age.60_70@E14001076", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13596.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fd5def28edd909bbeba3310" + }, + { + "name": "ons.age.60_70@E14001077", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_687ceb8ddc3e6a32393dc612" + }, + { + "name": "ons.age.60_70@E14001078", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aff25c3f1dfea6ba26b9415b" + }, + { + "name": "ons.age.60_70@E14001079", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14159.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa6cd92486e83b92e4ad8e1" + }, + { + "name": "ons.age.60_70@E14001080", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ea9eb5c3d48d493b4030f09" + }, + { + "name": "ons.age.60_70@E14001081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27c1f60809209b8b5a5663c" + }, + { + "name": "ons.age.60_70@E14001082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a863ef0f0ec230fecafd41aa" + }, + { + "name": "ons.age.60_70@E14001083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11214.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_957e337138a9ed5a1df9698d" + }, + { + "name": "ons.age.60_70@E14001084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e9bdaae816f87532229505" + }, + { + "name": "ons.age.60_70@E14001085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3dc5a82d785b9d9841ba7b8" + }, + { + "name": "ons.age.60_70@E14001086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa9fc01400e25dff018e96db" + }, + { + "name": "ons.age.60_70@E14001087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41a9d4c128681ad89dbdf38a" + }, + { + "name": "ons.age.60_70@E14001088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5437354dcce818d537c5985" + }, + { + "name": "ons.age.60_70@E14001089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8abd530230d1d944f90f9a37" + }, + { + "name": "ons.age.60_70@E14001090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12097.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef6c15c0f63be6986e0fc018" + }, + { + "name": "ons.age.60_70@E14001091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93903dec676dd142acf1b480" + }, + { + "name": "ons.age.60_70@E14001092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9572.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7d89b3e5c856b1cf3b1dac7" + }, + { + "name": "ons.age.60_70@E14001093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e054dfc2337fbfba2a975b6" + }, + { + "name": "ons.age.60_70@E14001094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8891b065ad6c3d0d8f8f9d2c" + }, + { + "name": "ons.age.60_70@E14001095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f07637d6c55c3106aec5d641" + }, + { + "name": "ons.age.60_70@E14001096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7386d9198c7b48e6e46cf3bd" + }, + { + "name": "ons.age.60_70@E14001097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11079.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1aae83853c36641f2940dfc" + }, + { + "name": "ons.age.60_70@E14001098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39275d721afb58638b9d639" + }, + { + "name": "ons.age.60_70@E14001099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de301d5ef89e2dbed06fd848" + }, + { + "name": "ons.age.60_70@E14001100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9437fcbce4317d4cfd9ae90" + }, + { + "name": "ons.age.60_70@E14001101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a57927437b0626080cb4f21" + }, + { + "name": "ons.age.60_70@E14001102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10265.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efa4c77ea0fcbeb43c390913" + }, + { + "name": "ons.age.60_70@E14001103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10760.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc57a5a2e56f0e718277d1dd" + }, + { + "name": "ons.age.60_70@E14001104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b48a9ffd6c83d679415558f" + }, + { + "name": "ons.age.60_70@E14001105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0337b6f3b894d6f5ff6916a" + }, + { + "name": "ons.age.60_70@E14001106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0d89ed953128e39d1dbac05" + }, + { + "name": "ons.age.60_70@E14001107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8c46f6d8e2423e3fca11c0d" + }, + { + "name": "ons.age.60_70@E14001108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c8c7a9b885f1c834de8431" + }, + { + "name": "ons.age.60_70@E14001109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e51598b2266c94de1d12eb" + }, + { + "name": "ons.age.60_70@E14001110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b66ed108d41fa82ffb40c574" + }, + { + "name": "ons.age.60_70@E14001111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efcfb74f2937b8b041aca9f7" + }, + { + "name": "ons.age.60_70@E14001112", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68e08eecc2cde37880ba8210" + }, + { + "name": "ons.age.60_70@E14001113", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13404.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd1c22fc801fd2a4bc8e433" + }, + { + "name": "ons.age.60_70@E14001114", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6ea9965bde0c277a0e7c530" + }, + { + "name": "ons.age.60_70@E14001115", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8be3cdded3ffb995ed69eb5" + }, + { + "name": "ons.age.60_70@E14001116", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d964a202198183821f7d8596" + }, + { + "name": "ons.age.60_70@E14001117", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b910a7c85cb42650f37cc87" + }, + { + "name": "ons.age.60_70@E14001118", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9da415dfdbf15f87712ae829" + }, + { + "name": "ons.age.60_70@E14001119", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3c44d923ef24031220d51c1" + }, + { + "name": "ons.age.60_70@E14001120", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2be892a0891ec91f07b5e2c7" + }, + { + "name": "ons.age.60_70@E14001121", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2a710f5dc6bee8a9619090b" + }, + { + "name": "ons.age.60_70@E14001122", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e4c77c785a2ec17f7360f0f" + }, + { + "name": "ons.age.60_70@E14001123", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12374.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd959024ebc4221df092af31" + }, + { + "name": "ons.age.60_70@E14001124", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3967cb08042d91945b2de08" + }, + { + "name": "ons.age.60_70@E14001125", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8a25f1b90512b211800e9f4" + }, + { + "name": "ons.age.60_70@E14001126", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8709a347cb62553339e6fc1" + }, + { + "name": "ons.age.60_70@E14001127", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15568.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2f318c247bef9c82c181c36" + }, + { + "name": "ons.age.60_70@E14001128", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bbe418f6bf1ddd3b905a85c" + }, + { + "name": "ons.age.60_70@E14001129", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4008e5e78cef60265f20b04" + }, + { + "name": "ons.age.60_70@E14001130", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0d3ff34a934599db189612b" + }, + { + "name": "ons.age.60_70@E14001131", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f79ef284b32475eb071a45f3" + }, + { + "name": "ons.age.60_70@E14001132", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9021.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_341e736b806354a8e08e35ef" + }, + { + "name": "ons.age.60_70@E14001133", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdcbf177a1590b6eec7fba98" + }, + { + "name": "ons.age.60_70@E14001134", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df2e5d711293a18d1961d92f" + }, + { + "name": "ons.age.60_70@E14001135", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_14f16f4ea4c5cfac28ad7f52" + }, + { + "name": "ons.age.60_70@E14001136", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed2b8fe4254c74b52907c18f" + }, + { + "name": "ons.age.60_70@E14001137", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7dbd2372e4c28d523e9259c" + }, + { + "name": "ons.age.60_70@E14001138", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a0810cd6fc627b348247734" + }, + { + "name": "ons.age.60_70@E14001139", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_303407634f557cb01b19b759" + }, + { + "name": "ons.age.60_70@E14001140", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11304.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_658d75abe8d4b0dc899065fc" + }, + { + "name": "ons.age.60_70@E14001141", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c7c90b79f34364747616adc" + }, + { + "name": "ons.age.60_70@E14001142", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12426.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b580e15b8d7d28b4fa4aa3da" + }, + { + "name": "ons.age.60_70@E14001143", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45a5ba64bea04a7e497fc86a" + }, + { + "name": "ons.age.60_70@E14001144", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cb558ad28411d4e0e752898" + }, + { + "name": "ons.age.60_70@E14001145", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37843ad14fd09102e29141a5" + }, + { + "name": "ons.age.60_70@E14001146", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8750d6e22088a0eb908012b5" + }, + { + "name": "ons.age.60_70@E14001147", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7b65b8ec24abccf2dde7bde" + }, + { + "name": "ons.age.60_70@E14001148", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_989c2a831de8798638ff8b46" + }, + { + "name": "ons.age.60_70@E14001149", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8669.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb812f19571b53ce8b7f6ee" + }, + { + "name": "ons.age.60_70@E14001150", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54222ab201246588ad27fd1" + }, + { + "name": "ons.age.60_70@E14001151", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b20d9327f60bd094b3a6a40" + }, + { + "name": "ons.age.60_70@E14001152", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa0ead562e82cc76d23b9b63" + }, + { + "name": "ons.age.60_70@E14001153", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb7418b5a4355603d5c42b0c" + }, + { + "name": "ons.age.60_70@E14001154", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_558ede98c9a4efa17e0c128b" + }, + { + "name": "ons.age.60_70@E14001155", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14566.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e332d08c2fabed56be5eb7f4" + }, + { + "name": "ons.age.60_70@E14001156", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f666cff4fa1cb0444c50cc2a" + }, + { + "name": "ons.age.60_70@E14001157", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc6e38ebdf84c9181ed35958" + }, + { + "name": "ons.age.60_70@E14001158", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e00f76a1226ed103aa431fba" + }, + { + "name": "ons.age.60_70@E14001159", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd2fa862bbf9414490ccabec" + }, + { + "name": "ons.age.60_70@E14001160", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e98fff0d235c01dec15f5b87" + }, + { + "name": "ons.age.60_70@E14001161", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11146.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98ff691d54e01ba40f88f760" + }, + { + "name": "ons.age.60_70@E14001162", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c968ead6494af246707b8d7b" + }, + { + "name": "ons.age.60_70@E14001163", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11651.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af5d2e9d18cebbb973cabf87" + }, + { + "name": "ons.age.60_70@E14001164", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43726fefcd295b84472a6985" + }, + { + "name": "ons.age.60_70@E14001165", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12461.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9373ca8bd6cf06c29cf72021" + }, + { + "name": "ons.age.60_70@E14001166", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2d36bfee229372ddc7ba5f4" + }, + { + "name": "ons.age.60_70@E14001167", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2da29d71101f82c2556efb0" + }, + { + "name": "ons.age.60_70@E14001168", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0fc9529e41e23372851becf" + }, + { + "name": "ons.age.60_70@E14001169", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_54c6298ad8c5ba335750c6a4" + }, + { + "name": "ons.age.60_70@E14001170", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7dcfe8c244e9f245ddedd62" + }, + { + "name": "ons.age.60_70@E14001171", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13148.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76b7e769f4a7a99749ffd486" + }, + { + "name": "ons.age.60_70@E14001172", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c3d6e1aaa7cf31e3d23fbba" + }, + { + "name": "ons.age.60_70@E14001173", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11720.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7725743f726bc54c10b20d1f" + }, + { + "name": "ons.age.60_70@E14001174", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90201de2608dee79f83f1085" + }, + { + "name": "ons.age.60_70@E14001175", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3275168339fd0ae86812485" + }, + { + "name": "ons.age.60_70@E14001176", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4213bd49c00a20745c3d17e1" + }, + { + "name": "ons.age.60_70@E14001177", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f513523639563426cab9941" + }, + { + "name": "ons.age.60_70@E14001178", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12430.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb79dd153883020b43805c3c" + }, + { + "name": "ons.age.60_70@E14001179", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d2adb5c297972ca9c97233" + }, + { + "name": "ons.age.60_70@E14001180", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10918.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd64f3ff79a420ed02b20e84" + }, + { + "name": "ons.age.60_70@E14001181", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1542fc3f9739f70d3f3b810" + }, + { + "name": "ons.age.60_70@E14001182", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10055.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6a9b48728e36fe7205efc1a" + }, + { + "name": "ons.age.60_70@E14001183", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b0679d21841b40e2535377d" + }, + { + "name": "ons.age.60_70@E14001184", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fce6618e5274bf29f66aede" + }, + { + "name": "ons.age.60_70@E14001185", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef0a6f3e0974e4238bef153e" + }, + { + "name": "ons.age.60_70@E14001186", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a8b191873d6f44533c9fd89" + }, + { + "name": "ons.age.60_70@E14001187", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11079.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdd3e716dbfb89785623e03" + }, + { + "name": "ons.age.60_70@E14001188", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc2cea292b3471aedc4d5579" + }, + { + "name": "ons.age.60_70@E14001189", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9163889d4e7a6b36f65fc46f" + }, + { + "name": "ons.age.60_70@E14001190", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c89196d779753ca6441dd80e" + }, + { + "name": "ons.age.60_70@E14001191", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd562707ef591a6a2b88a5cb" + }, + { + "name": "ons.age.60_70@E14001192", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0b0202122f4595720d01345" + }, + { + "name": "ons.age.60_70@E14001193", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa4f8de6a4fb841bce3f270d" + }, + { + "name": "ons.age.60_70@E14001194", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c54209db42e66ab3a8f11c46" + }, + { + "name": "ons.age.60_70@E14001195", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95a120359abed83dc9301703" + }, + { + "name": "ons.age.60_70@E14001196", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c5f7379e371e631b4c5c745" + }, + { + "name": "ons.age.60_70@E14001197", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11929.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d491337887165e0f3694bf9" + }, + { + "name": "ons.age.60_70@E14001198", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91bf17ab58551031bc88a126" + }, + { + "name": "ons.age.60_70@E14001199", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_939717b3ab8fd81ca766b04a" + }, + { + "name": "ons.age.60_70@E14001200", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d18479c76330625bc9757d1d" + }, + { + "name": "ons.age.60_70@E14001201", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12273.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca30d5b593a2b45b9962288" + }, + { + "name": "ons.age.60_70@E14001202", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a9e2c97368af9d5a40b5968" + }, + { + "name": "ons.age.60_70@E14001203", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cb12f7ed0099fb0216eaa42" + }, + { + "name": "ons.age.60_70@E14001204", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5171bfabc7fe0bd395aa8226" + }, + { + "name": "ons.age.60_70@E14001205", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9785.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83e4f55a9b007ece2d6b4f3" + }, + { + "name": "ons.age.60_70@E14001206", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74e5bffc0fd8e7df71bc5dd7" + }, + { + "name": "ons.age.60_70@E14001207", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7fa32c9664f8b995f4334d8" + }, + { + "name": "ons.age.60_70@E14001208", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a410f0ce078a2b687171d374" + }, + { + "name": "ons.age.60_70@E14001209", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_775d761807a23bdf61256d2a" + }, + { + "name": "ons.age.60_70@E14001210", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef7fbf31778e04f5af27b379" + }, + { + "name": "ons.age.60_70@E14001211", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19af9efb2f0f7b176b9f981" + }, + { + "name": "ons.age.60_70@E14001212", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0368e1455c5818d9d4b6a9d" + }, + { + "name": "ons.age.60_70@E14001213", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1aab1c76605c9908dbd610d" + }, + { + "name": "ons.age.60_70@E14001214", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13087.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec34baaf4df53a420cb7e3cb" + }, + { + "name": "ons.age.60_70@E14001215", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf3409d26723b23e9324ab7a" + }, + { + "name": "ons.age.60_70@E14001216", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dae9df87cab70951339f9186" + }, + { + "name": "ons.age.60_70@E14001217", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5971af6f2df20b910d985ff8" + }, + { + "name": "ons.age.60_70@E14001218", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12094.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f5f0c7a16a8e2b0bf47d80" + }, + { + "name": "ons.age.60_70@E14001219", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_368be6d459fe77156a8d9e8b" + }, + { + "name": "ons.age.60_70@E14001220", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c948d9e8b48f15336d4698cb" + }, + { + "name": "ons.age.60_70@E14001221", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_983d2e9f828d98e7755647ff" + }, + { + "name": "ons.age.60_70@E14001222", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef83cccbce29b0597999e3dd" + }, + { + "name": "ons.age.60_70@E14001223", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc94cf2c82da02fcf39ff67a" + }, + { + "name": "ons.age.60_70@E14001224", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_714f9130548437d15c8deddf" + }, + { + "name": "ons.age.60_70@E14001225", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2108539be09eb281f59a061" + }, + { + "name": "ons.age.60_70@E14001226", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_657a0ea09de9bdc65e578c74" + }, + { + "name": "ons.age.60_70@E14001227", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6d25ece0921a6007585a2a9" + }, + { + "name": "ons.age.60_70@E14001228", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f34ab198635f89c9d4f99424" + }, + { + "name": "ons.age.60_70@E14001229", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_380bb4f6b1683737f7dcbff2" + }, + { + "name": "ons.age.60_70@E14001230", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a336ce04afd4fafbd166f700" + }, + { + "name": "ons.age.60_70@E14001231", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8323d02edc4143cd2d63255a" + }, + { + "name": "ons.age.60_70@E14001232", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d64316c84c68ffd67b70597e" + }, + { + "name": "ons.age.60_70@E14001233", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3ffb9d66677a306fa2530a9" + }, + { + "name": "ons.age.60_70@E14001234", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20acc970d88989a0da482d6" + }, + { + "name": "ons.age.60_70@E14001235", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c2a6702062bf8e60473656c" + }, + { + "name": "ons.age.60_70@E14001236", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8a5afc1db29fe92303af6d9" + }, + { + "name": "ons.age.60_70@E14001237", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_beb909100a1e9feaf12610c7" + }, + { + "name": "ons.age.60_70@E14001238", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80a43327cf109267993205d5" + }, + { + "name": "ons.age.60_70@E14001239", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5da55a1eebd6a320a5e0511e" + }, + { + "name": "ons.age.60_70@E14001240", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d553b4dffd0671aa5aa5a15c" + }, + { + "name": "ons.age.60_70@E14001241", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6fc029e428513f8c66b1e3c" + }, + { + "name": "ons.age.60_70@E14001242", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb703f89077c7a817474f690" + }, + { + "name": "ons.age.60_70@E14001243", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_499aa9036454cf7ee73803d4" + }, + { + "name": "ons.age.60_70@E14001244", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f31abf3fc2202aa74dc8b05a" + }, + { + "name": "ons.age.60_70@E14001245", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d899f05d77f9477229694f3d" + }, + { + "name": "ons.age.60_70@E14001246", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11384.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f7debd58ddca75f9f4d37c0" + }, + { + "name": "ons.age.60_70@E14001247", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad4bd630fea26c75b473186c" + }, + { + "name": "ons.age.60_70@E14001248", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf853b9cc90ee087505ecc27" + }, + { + "name": "ons.age.60_70@E14001249", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae19d7e63dcb0efa1be2bcf5" + }, + { + "name": "ons.age.60_70@E14001250", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a873b93b1202f1eeded0e70c" + }, + { + "name": "ons.age.60_70@E14001251", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47a36978b8e6c53ad8737609" + }, + { + "name": "ons.age.60_70@E14001252", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_907e19f8d03901673d584ee6" + }, + { + "name": "ons.age.60_70@E14001253", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ebc5149025763006f93a87" + }, + { + "name": "ons.age.60_70@E14001254", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_412f798f9eea8f58d333f3ab" + }, + { + "name": "ons.age.60_70@E14001255", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8db448481626857f5aa5c36" + }, + { + "name": "ons.age.60_70@E14001256", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1d22018f99b093b7184192f" + }, + { + "name": "ons.age.60_70@E14001257", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a42069ff1a3127fc9568fa" + }, + { + "name": "ons.age.60_70@E14001258", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_caf14ec0d7da6d8e7017b8e4" + }, + { + "name": "ons.age.60_70@E14001259", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9130.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50205b7d05bd3595ba39d50" + }, + { + "name": "ons.age.60_70@E14001260", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b959d3b8ac9fcb5103e2a4c9" + }, + { + "name": "ons.age.60_70@E14001261", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae61a5cfaddbe9e72483bdc4" + }, + { + "name": "ons.age.60_70@E14001262", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f4c0e37b471a70662286df2" + }, + { + "name": "ons.age.60_70@E14001263", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d53da07963abba6ea6f8c3be" + }, + { + "name": "ons.age.60_70@E14001264", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f5a74b6f04f5992c628831a" + }, + { + "name": "ons.age.60_70@E14001265", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_585dde9bd7d2f02570db80ce" + }, + { + "name": "ons.age.60_70@E14001266", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b9caf3381a5c1ad8bf06638" + }, + { + "name": "ons.age.60_70@E14001267", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a724afd92c8362960be87f5" + }, + { + "name": "ons.age.60_70@E14001268", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_402a144b726637d6f934998f" + }, + { + "name": "ons.age.60_70@E14001269", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4821796284296e2d9ab5f7" + }, + { + "name": "ons.age.60_70@E14001270", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74d3124ba5e6eafac030701f" + }, + { + "name": "ons.age.60_70@E14001271", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11215.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_718e987938fac88e4ee446a9" + }, + { + "name": "ons.age.60_70@E14001272", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb6bd1a2a3a1084a60b795af" + }, + { + "name": "ons.age.60_70@E14001273", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9516d0c9f1bea0610dcd0dde" + }, + { + "name": "ons.age.60_70@E14001274", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d04cc348655fc1314d533bfe" + }, + { + "name": "ons.age.60_70@E14001275", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13399.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40868b3b0df2c59b1f368b66" + }, + { + "name": "ons.age.60_70@E14001276", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_25684c0a7594ba7ea622cf34" + }, + { + "name": "ons.age.60_70@E14001277", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5477b5b8c3c114ded89a5c" + }, + { + "name": "ons.age.60_70@E14001278", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7792d05751eba90b957c68d" + }, + { + "name": "ons.age.60_70@E14001279", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_959c24285f1dc7bef54a0150" + }, + { + "name": "ons.age.60_70@E14001280", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5461174d52472c317e0b7de" + }, + { + "name": "ons.age.60_70@E14001281", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_32e8531ee0a1505763e3f224" + }, + { + "name": "ons.age.60_70@E14001282", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf5d380dfca9c8b122f1166b" + }, + { + "name": "ons.age.60_70@E14001283", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53314c8afcc15db7e95245c4" + }, + { + "name": "ons.age.60_70@E14001284", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11929.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4a63467edee266be318f9f2" + }, + { + "name": "ons.age.60_70@E14001285", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd78fa7b86e5c44b32e5a0aa" + }, + { + "name": "ons.age.60_70@E14001286", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_410d806e28a13de2e03472fd" + }, + { + "name": "ons.age.60_70@E14001287", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e878b1dd292213af9f95408f" + }, + { + "name": "ons.age.60_70@E14001288", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ff57dceb1a418e0d72be73f" + }, + { + "name": "ons.age.60_70@E14001289", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c14b2c53a3a770ae99cd07ba" + }, + { + "name": "ons.age.60_70@E14001290", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d266352444460c75159c5c82" + }, + { + "name": "ons.age.60_70@E14001291", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e18cdff6e810e747c675c95c" + }, + { + "name": "ons.age.60_70@E14001292", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a8ad9dd1f7d2a9cf15badec" + }, + { + "name": "ons.age.60_70@E14001293", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d06fbcb1c67029ea947735b" + }, + { + "name": "ons.age.60_70@E14001294", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee59e5b97449ffdb2d023a45" + }, + { + "name": "ons.age.60_70@E14001295", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_827fa16e3ad060e18e3a1b1f" + }, + { + "name": "ons.age.60_70@E14001296", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e116c58d3e00c0c0ce960edd" + }, + { + "name": "ons.age.60_70@E14001297", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11743.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_687e8d158b779bc51958d20e" + }, + { + "name": "ons.age.60_70@E14001298", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13750.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f7d54ac75726c9a0308a546" + }, + { + "name": "ons.age.60_70@E14001299", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10693.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9318ebac260c800c0445ecc2" + }, + { + "name": "ons.age.60_70@E14001300", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10884.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e6dfcf9d3eefbc38c545818" + }, + { + "name": "ons.age.60_70@E14001301", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_450ab03e0ee7bcba06118499" + }, + { + "name": "ons.age.60_70@E14001302", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ca687dacd70e51db6466c9" + }, + { + "name": "ons.age.60_70@E14001303", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc776dbfc28cca53a0443782" + }, + { + "name": "ons.age.60_70@E14001304", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10553.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_713ad076cd6975c3ac54e637" + }, + { + "name": "ons.age.60_70@E14001305", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e81b662848829bc22e2b8a83" + }, + { + "name": "ons.age.60_70@E14001306", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9248.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd59d033dfc17f0071709d22" + }, + { + "name": "ons.age.60_70@E14001307", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cb02f546c838d6eb5a07cfd" + }, + { + "name": "ons.age.60_70@E14001308", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12243.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0f3048e45670d28810ed6d8" + }, + { + "name": "ons.age.60_70@E14001309", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c870d9f1a1d1fb4cdf83aca3" + }, + { + "name": "ons.age.60_70@E14001310", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6bab7fe259ce1bea994bb23" + }, + { + "name": "ons.age.60_70@E14001311", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe89c8986619f59aeb575915" + }, + { + "name": "ons.age.60_70@E14001312", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9fa4860d59198b3621ef34" + }, + { + "name": "ons.age.60_70@E14001313", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64cdabcdea15e8e31beeb9cc" + }, + { + "name": "ons.age.60_70@E14001314", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b78e174a2c4731018df5ca93" + }, + { + "name": "ons.age.60_70@E14001315", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc2aac194d544da40645df6b" + }, + { + "name": "ons.age.60_70@E14001316", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0cc3e8580fb4763a98d93f2" + }, + { + "name": "ons.age.60_70@E14001317", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bfbf6880593bdccc01d1eae" + }, + { + "name": "ons.age.60_70@E14001318", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12242.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b06b0399352867d082935ba7" + }, + { + "name": "ons.age.60_70@E14001319", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5239.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_457baa743363ad8edeaa0b3e" + }, + { + "name": "ons.age.60_70@E14001320", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1e615249eb8fd1d31b3774" + }, + { + "name": "ons.age.60_70@E14001321", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10019.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d930baeb448e90293798e5ea" + }, + { + "name": "ons.age.60_70@E14001322", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a30b11906c86d839c613703" + }, + { + "name": "ons.age.60_70@E14001323", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec8e6ed37ce8a51341d8c72e" + }, + { + "name": "ons.age.60_70@E14001324", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11163.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77e4776a804be1b177969876" + }, + { + "name": "ons.age.60_70@E14001325", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4446e3fd9e8a06bd2fb8282" + }, + { + "name": "ons.age.60_70@E14001326", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb4a1560a8252e7042f43e1" + }, + { + "name": "ons.age.60_70@E14001327", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e92922416b3166a3c47b2b44" + }, + { + "name": "ons.age.60_70@E14001328", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_51d354aa2485a33af287365a" + }, + { + "name": "ons.age.60_70@E14001329", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c2896223844c21b96aeb697" + }, + { + "name": "ons.age.60_70@E14001330", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd046c19cb8cc9685a3adf40" + }, + { + "name": "ons.age.60_70@E14001331", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c85080d25e786960d14cb678" + }, + { + "name": "ons.age.60_70@E14001332", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9010.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c26ae3278a934968ebcf4553" + }, + { + "name": "ons.age.60_70@E14001333", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de7aa9838a8c9b69c3ec368b" + }, + { + "name": "ons.age.60_70@E14001334", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3631c015caed6fb0cf84a7fc" + }, + { + "name": "ons.age.60_70@E14001335", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf743d929022f5c93c0b80ab" + }, + { + "name": "ons.age.60_70@E14001336", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d32cfb67ad39c663849205bb" + }, + { + "name": "ons.age.60_70@E14001337", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eacded444c1eddad99b40f9a" + }, + { + "name": "ons.age.60_70@E14001338", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9888ea7ee03ff8b5ed80724" + }, + { + "name": "ons.age.60_70@E14001339", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9981fb06d984f4786053b87" + }, + { + "name": "ons.age.60_70@E14001340", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f24f76a2e0fe0e2d593792a4" + }, + { + "name": "ons.age.60_70@E14001341", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12366.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63662408e0142ba09787857" + }, + { + "name": "ons.age.60_70@E14001342", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10376.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a4e3329e1449bb3812335f5" + }, + { + "name": "ons.age.60_70@E14001343", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fdb646ec7b79248639e0044" + }, + { + "name": "ons.age.60_70@E14001344", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4899fa6a4c786bde6576859c" + }, + { + "name": "ons.age.60_70@E14001345", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf960d544c5dfc15759af94b" + }, + { + "name": "ons.age.60_70@E14001346", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69fc6f2d08cc5a22192fe7bc" + }, + { + "name": "ons.age.60_70@E14001347", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13274.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f07daf41b049f3d24803e5fb" + }, + { + "name": "ons.age.60_70@E14001348", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d8248a82f05c3c6d58b959" + }, + { + "name": "ons.age.60_70@E14001349", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a992b9911fa072e64b55c2ef" + }, + { + "name": "ons.age.60_70@E14001350", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12223.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceba1dfb98e1d0b01c94f64b" + }, + { + "name": "ons.age.60_70@E14001351", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d7597ae6592e73e5db087e" + }, + { + "name": "ons.age.60_70@E14001352", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7baae6bc9d40ccb551c3d62" + }, + { + "name": "ons.age.60_70@E14001353", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe1b35f9f02c453bad8adabd" + }, + { + "name": "ons.age.60_70@E14001354", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4198bd044197ff348fa215a" + }, + { + "name": "ons.age.60_70@E14001355", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f605d2150878042c6fd1d78a" + }, + { + "name": "ons.age.60_70@E14001356", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a69ca0310b49c363b2cc5de0" + }, + { + "name": "ons.age.60_70@E14001357", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13142.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d1ef4a7189babf1e7d8c2da" + }, + { + "name": "ons.age.60_70@E14001358", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7d63c5a852392d65a1ba2eb" + }, + { + "name": "ons.age.60_70@E14001359", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12090.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e78446a9fd8209668b075ac" + }, + { + "name": "ons.age.60_70@E14001360", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec1cbab098b80a1a82bc7ea9" + }, + { + "name": "ons.age.60_70@E14001361", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5008c0c653672a68d1ae3040" + }, + { + "name": "ons.age.60_70@E14001362", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7743f9b0050f93ced2e2231" + }, + { + "name": "ons.age.60_70@E14001363", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa7158e5caf0956f76faeea" + }, + { + "name": "ons.age.60_70@E14001364", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c72ade2a455a05ceffd564" + }, + { + "name": "ons.age.60_70@E14001365", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13950.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9357cfa996a2430e8a936f1" + }, + { + "name": "ons.age.60_70@E14001366", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_768e2aa137ab0d3f051802a6" + }, + { + "name": "ons.age.60_70@E14001367", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4846716653019ed7e42820fa" + }, + { + "name": "ons.age.60_70@E14001368", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13038.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e474cbc526b55bc63b2a193" + }, + { + "name": "ons.age.60_70@E14001369", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c01b5794761355f7cdb1812" + }, + { + "name": "ons.age.60_70@E14001370", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9b07254bf0a34fa1cda72a8" + }, + { + "name": "ons.age.60_70@E14001371", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11718.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2edf87a9083e655937c3b16c" + }, + { + "name": "ons.age.60_70@E14001372", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d24e5f4da859167870fd03a9" + }, + { + "name": "ons.age.60_70@E14001373", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13261.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d18d6ae9b5e2196c61ecd33f" + }, + { + "name": "ons.age.60_70@E14001374", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69cfcae069c5ce74843394d3" + }, + { + "name": "ons.age.60_70@E14001375", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fafb085fc67359a88f59542c" + }, + { + "name": "ons.age.60_70@E14001376", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efb97410a5c99362127f4dc6" + }, + { + "name": "ons.age.60_70@E14001377", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12619.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebc6c573a10042434ebb398c" + }, + { + "name": "ons.age.60_70@E14001378", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12652.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b4d551c94a60917104e809" + }, + { + "name": "ons.age.60_70@E14001379", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baf55f1eecfcf7c1bfe4a590" + }, + { + "name": "ons.age.60_70@E14001380", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bb832afb84c55d9c6288c02" + }, + { + "name": "ons.age.60_70@E14001381", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14024.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b60343d9718042d62fc5a9dd" + }, + { + "name": "ons.age.60_70@E14001382", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12844.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f8907367f9c32c914998ae" + }, + { + "name": "ons.age.60_70@E14001383", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_825a895a69748affbb1ffd0e" + }, + { + "name": "ons.age.60_70@E14001384", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef1ef35934d9b2f0cc1e5b43" + }, + { + "name": "ons.age.60_70@E14001385", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3a9e34d8ab2a30ae79998db" + }, + { + "name": "ons.age.60_70@E14001386", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9faaeb11d633a9500441255" + }, + { + "name": "ons.age.60_70@E14001387", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d64628fb38743e781c254e8c" + }, + { + "name": "ons.age.60_70@E14001388", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5ae2b746b026f41d17a6edc" + }, + { + "name": "ons.age.60_70@E14001389", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13313.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be0c670875d6c499b7d34bad" + }, + { + "name": "ons.age.60_70@E14001390", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_792c0ddb8f09b346b44c19d8" + }, + { + "name": "ons.age.60_70@E14001391", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a63527acb4bf40b6f75a1ccb" + }, + { + "name": "ons.age.60_70@E14001392", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de5e9d9d219f4dbcbb18b7c2" + }, + { + "name": "ons.age.60_70@E14001393", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8ed9b56c531a903952192b2" + }, + { + "name": "ons.age.60_70@E14001394", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a8c64fa8ad7c7684d52d168" + }, + { + "name": "ons.age.60_70@E14001395", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99f785051132e6cd73437fb7" + }, + { + "name": "ons.age.60_70@E14001396", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3efe7968d0cff17cc3faa0c" + }, + { + "name": "ons.age.60_70@E14001397", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab617cb1a4f38ca798966ac1" + }, + { + "name": "ons.age.60_70@E14001398", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab6850c58a9fdaa0edfc845" + }, + { + "name": "ons.age.60_70@E14001399", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12224.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86230ee7f5647887b84dbc8c" + }, + { + "name": "ons.age.60_70@E14001400", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8c4b700a64a393783629bbe" + }, + { + "name": "ons.age.60_70@E14001401", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf1de066e09031f98fba21f6" + }, + { + "name": "ons.age.60_70@E14001402", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a5071a8a7666a95900f6c39" + }, + { + "name": "ons.age.60_70@E14001403", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef37b16478b8e61d1c646ba7" + }, + { + "name": "ons.age.60_70@E14001404", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba6f998b2e4ece97729504b5" + }, + { + "name": "ons.age.60_70@E14001405", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de9060edd481e141eabd0bae" + }, + { + "name": "ons.age.60_70@E14001406", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66631d893c4e5602db8947d" + }, + { + "name": "ons.age.60_70@E14001407", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11196.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daed7bffa9ece283d336c18a" + }, + { + "name": "ons.age.60_70@E14001408", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11279.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4af8bb110034a1d57065c7cf" + }, + { + "name": "ons.age.60_70@E14001409", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0602880585545320d65488d" + }, + { + "name": "ons.age.60_70@E14001410", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_22a296cedc98f6330afd1f62" + }, + { + "name": "ons.age.60_70@E14001411", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ff02fa708e73bfc397cdb7d" + }, + { + "name": "ons.age.60_70@E14001412", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa33bdcb6aa0b00734201f47" + }, + { + "name": "ons.age.60_70@E14001413", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc2f0f9b7a16e50ce7a0851c" + }, + { + "name": "ons.age.60_70@E14001414", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed918f0b5b89f23535281b44" + }, + { + "name": "ons.age.60_70@E14001415", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11425.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e58df4313714c578b452f1c" + }, + { + "name": "ons.age.60_70@E14001416", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10599.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5887d9055a1ab0f23cbe696" + }, + { + "name": "ons.age.60_70@E14001417", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1a390bfb89da38c05d72213" + }, + { + "name": "ons.age.60_70@E14001418", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e6baee89de68343a0b67d0" + }, + { + "name": "ons.age.60_70@E14001419", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19ee326dad5edf0bb18564d" + }, + { + "name": "ons.age.60_70@E14001420", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1f1f09952e0edae37b1fbd6" + }, + { + "name": "ons.age.60_70@E14001421", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb1b44e097c9b95909918c24" + }, + { + "name": "ons.age.60_70@E14001422", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcdade8a111a33b7bade5cea" + }, + { + "name": "ons.age.60_70@E14001423", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbab81057be4d2a92d2d85eb" + }, + { + "name": "ons.age.60_70@E14001424", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa8838513249c0e4658b614" + }, + { + "name": "ons.age.60_70@E14001425", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa2e36d96adb149947a8b579" + }, + { + "name": "ons.age.60_70@E14001426", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a659134ab1fdbcb16e34f4b0" + }, + { + "name": "ons.age.60_70@E14001427", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e22811f4ac08aeacee59d96a" + }, + { + "name": "ons.age.60_70@E14001428", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11891.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b269df0d8a19d504dc8722ec" + }, + { + "name": "ons.age.60_70@E14001429", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee344a1f8154868034286256" + }, + { + "name": "ons.age.60_70@E14001430", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e306f54fad1ede2160bc8e42" + }, + { + "name": "ons.age.60_70@E14001431", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aba6648429d6937c971986a9" + }, + { + "name": "ons.age.60_70@E14001432", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5867d6a0fbb2793bb2e77a4" + }, + { + "name": "ons.age.60_70@E14001433", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11337.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccef6954b3409e5be07884ff" + }, + { + "name": "ons.age.60_70@E14001434", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e531b7f4b3cb60c9995f177a" + }, + { + "name": "ons.age.60_70@E14001435", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6691dc39329cf1a3a59dc97e" + }, + { + "name": "ons.age.60_70@E14001436", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11984.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_959bd2c37eea2869c42cd0b3" + }, + { + "name": "ons.age.60_70@E14001437", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4b2de5b078582613f53dc6b" + }, + { + "name": "ons.age.60_70@E14001438", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9028.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fa22262f884f065971a99b" + }, + { + "name": "ons.age.60_70@E14001439", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11484.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_982f8a25ce3f7ecb101f20db" + }, + { + "name": "ons.age.60_70@E14001440", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13260.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de7082d5dd7d07d5cff1f853" + }, + { + "name": "ons.age.60_70@E14001441", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11599.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_570a25e594e5ba9e1d808250" + }, + { + "name": "ons.age.60_70@E14001442", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93dc94539323bf304cb8066b" + }, + { + "name": "ons.age.60_70@E14001443", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a08e0562b9306cc45a0369b7" + }, + { + "name": "ons.age.60_70@E14001444", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14620.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8382529d8a54117363ee270b" + }, + { + "name": "ons.age.60_70@E14001445", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3309d59d6ef1f7e440bd834" + }, + { + "name": "ons.age.60_70@E14001446", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83cf10132f184ba3c818223a" + }, + { + "name": "ons.age.60_70@E14001447", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd77c70dd542e07b0abe1158" + }, + { + "name": "ons.age.60_70@E14001448", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70e4a989e7ac30d0c2ddf99" + }, + { + "name": "ons.age.60_70@E14001449", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12496.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed2f78bfcb2b04029a637b3f" + }, + { + "name": "ons.age.60_70@E14001450", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12732.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99b15a3274152b22c9c4b9b7" + }, + { + "name": "ons.age.60_70@E14001451", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_983f2268004b6ae31fb898c0" + }, + { + "name": "ons.age.60_70@E14001452", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12279.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c07a798149af49fc8b677346" + }, + { + "name": "ons.age.60_70@E14001453", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc8998328e34f54e36ec864" + }, + { + "name": "ons.age.60_70@E14001454", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11423.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_993ae319253fd2af790b3e41" + }, + { + "name": "ons.age.60_70@E14001455", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11918.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb205997ba3a8c1977b15861" + }, + { + "name": "ons.age.60_70@E14001456", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa59b31b1c8282bbae15d00" + }, + { + "name": "ons.age.60_70@E14001457", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac8d2c7358c7415c7905dc26" + }, + { + "name": "ons.age.60_70@E14001458", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8836e3bb76fa32da1126651c" + }, + { + "name": "ons.age.60_70@E14001459", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3d6d81c9f92d797c240e0ad" + }, + { + "name": "ons.age.60_70@E14001460", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12782.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df003e1047623b13adc4ca04" + }, + { + "name": "ons.age.60_70@E14001461", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14989.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ed13e3295d3a5b693e901d6" + }, + { + "name": "ons.age.60_70@E14001462", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce36296ede6a71b514ef485a" + }, + { + "name": "ons.age.60_70@E14001463", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e88479d0b113e41b05b9e15c" + }, + { + "name": "ons.age.60_70@E14001464", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb0e6b13abb90705b468a470" + }, + { + "name": "ons.age.60_70@E14001465", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11787.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2472859de402c96779144bc" + }, + { + "name": "ons.age.60_70@E14001466", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10796.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abab3ca42e44503be85c6808" + }, + { + "name": "ons.age.60_70@E14001467", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f91dfeabbfcd95c44ecbb078" + }, + { + "name": "ons.age.60_70@E14001468", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bed7208c095edc6ce66f7cb6" + }, + { + "name": "ons.age.60_70@E14001469", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcdd7dfd79266fc4273809c2" + }, + { + "name": "ons.age.60_70@E14001470", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12067.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3501ec94c9b80d3bdb744fe" + }, + { + "name": "ons.age.60_70@E14001471", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e59ca07251e5bf90682f9ef4" + }, + { + "name": "ons.age.60_70@E14001472", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43a38a82e67b07b89cf091b9" + }, + { + "name": "ons.age.60_70@E14001473", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c90e9c26112aff28481cdd6" + }, + { + "name": "ons.age.60_70@E14001474", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13105.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbda6679fe1d438024cdd38b" + }, + { + "name": "ons.age.60_70@E14001475", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72e23b2f36f843d3a504c6f6" + }, + { + "name": "ons.age.60_70@E14001476", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_861ffb8e730045096d15be41" + }, + { + "name": "ons.age.60_70@E14001477", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10508.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9d93cc5270336491026e919" + }, + { + "name": "ons.age.60_70@E14001478", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5fd90188e1dc7dbb0c86486" + }, + { + "name": "ons.age.60_70@E14001479", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82cc6224318234592368e8a6" + }, + { + "name": "ons.age.60_70@E14001480", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_842d128a703561b3c860dd9e" + }, + { + "name": "ons.age.60_70@E14001481", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f0ef4d31e4d89d4f40946aa" + }, + { + "name": "ons.age.60_70@E14001482", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6180c7b834415f717258cff2" + }, + { + "name": "ons.age.60_70@E14001483", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0ae94e27980e3428d360dae" + }, + { + "name": "ons.age.60_70@E14001484", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe19c22e0125304c441b45d5" + }, + { + "name": "ons.age.60_70@E14001485", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd2a9d21fe2b116218943c68" + }, + { + "name": "ons.age.60_70@E14001486", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb8ded640d43700ef9c8890d" + }, + { + "name": "ons.age.60_70@E14001487", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_768c07b69bc75de48489ff9a" + }, + { + "name": "ons.age.60_70@E14001488", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f2d1dc9db8eae0b43a0e19e" + }, + { + "name": "ons.age.60_70@E14001489", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_677b7b52880078daf7222b6a" + }, + { + "name": "ons.age.60_70@E14001490", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc51d14e322235c8571addfb" + }, + { + "name": "ons.age.60_70@E14001491", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e65ed83acf073afc7da66680" + }, + { + "name": "ons.age.60_70@E14001492", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_790cef92603080b40fe3f502" + }, + { + "name": "ons.age.60_70@E14001493", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a62924ea4ee129d81f9be095" + }, + { + "name": "ons.age.60_70@E14001494", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87e50aea7d106f6318f2921c" + }, + { + "name": "ons.age.60_70@E14001495", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13550.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4bd88d9def80bd53f182917" + }, + { + "name": "ons.age.60_70@E14001496", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eca331c92f6d2b6e5ebc7a33" + }, + { + "name": "ons.age.60_70@E14001497", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14474.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6356c6b65692a8d8b56ee7d" + }, + { + "name": "ons.age.60_70@E14001498", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12539.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea6a502cc5393b44938d46a2" + }, + { + "name": "ons.age.60_70@E14001499", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff09e396f505cea1d7dcb166" + }, + { + "name": "ons.age.60_70@E14001500", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9498.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d16c74536d95670f596a559c" + }, + { + "name": "ons.age.60_70@E14001501", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd87f63ec18e8d5d8020f306" + }, + { + "name": "ons.age.60_70@E14001502", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9858631ba645fd616dc0b8e0" + }, + { + "name": "ons.age.60_70@E14001503", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f7d35293681648c822cb09a" + }, + { + "name": "ons.age.60_70@E14001504", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_692e7123806c900305f0ef4a" + }, + { + "name": "ons.age.60_70@E14001505", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdd87450126d8c3dd932c18" + }, + { + "name": "ons.age.60_70@E14001506", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11478.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f683ae57729812a6ff2e43e9" + }, + { + "name": "ons.age.60_70@E14001507", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9984.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f9505f4874ca244250cbce" + }, + { + "name": "ons.age.60_70@E14001508", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2d08485abba1e4ffc58934d" + }, + { + "name": "ons.age.60_70@E14001509", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12597.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b406db670a7c26367841587b" + }, + { + "name": "ons.age.60_70@E14001510", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24ffa34b8e0135b4ddf10a8a" + }, + { + "name": "ons.age.60_70@E14001511", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a8c18d94faf67d01bca35ce" + }, + { + "name": "ons.age.60_70@E14001512", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_318c70f6b92cc95df43fd552" + }, + { + "name": "ons.age.60_70@E14001513", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c24957f2647f7aa239f000ec" + }, + { + "name": "ons.age.60_70@E14001514", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb3c209541ce4856266b406" + }, + { + "name": "ons.age.60_70@E14001515", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e8dc1fbdf6855ee1114f221" + }, + { + "name": "ons.age.60_70@E14001516", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a483fa7feab23cf182f3bfc6" + }, + { + "name": "ons.age.60_70@E14001517", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a40ca9d9b280107ed5c6297" + }, + { + "name": "ons.age.60_70@E14001518", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12668.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b453725bf9e9559e12507f23" + }, + { + "name": "ons.age.60_70@E14001519", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b7ab11dd3277e247ba1e83e" + }, + { + "name": "ons.age.60_70@E14001520", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_964f35ff115c06931b88a529" + }, + { + "name": "ons.age.60_70@E14001521", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb5f36d815b110e45a8142c" + }, + { + "name": "ons.age.60_70@E14001522", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11921.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd6711c238f1378afd74beca" + }, + { + "name": "ons.age.60_70@E14001523", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13062.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa5622e640736b3df3dc3b11" + }, + { + "name": "ons.age.60_70@E14001524", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11095.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc9f8fd19212952dc61dad24" + }, + { + "name": "ons.age.60_70@E14001525", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8066.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4aa279c00b464dfd8d4ad059" + }, + { + "name": "ons.age.60_70@E14001526", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14401.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa011e00bc6d9a56e8f4b9f0" + }, + { + "name": "ons.age.60_70@E14001527", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10897.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2e36337fa801482951ebd62" + }, + { + "name": "ons.age.60_70@E14001528", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9fe412cb4aad535b8089b0" + }, + { + "name": "ons.age.60_70@E14001529", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cb0529cc4421c287c15006e" + }, + { + "name": "ons.age.60_70@E14001530", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ec9c0fa9afb2abf3bf75c6c" + }, + { + "name": "ons.age.60_70@E14001531", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f978d9e9801d853b2d274af" + }, + { + "name": "ons.age.60_70@E14001532", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8335f3c5e1cfe69a868f4de7" + }, + { + "name": "ons.age.60_70@E14001533", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d693bc673fe82213cb1f1b1e" + }, + { + "name": "ons.age.60_70@E14001534", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10236.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4ccde72672ed22cb160c49e" + }, + { + "name": "ons.age.60_70@E14001535", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_890de13e65bd0d29b3c4d9de" + }, + { + "name": "ons.age.60_70@E14001536", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d8b7a46f343c6a1cea9af47" + }, + { + "name": "ons.age.60_70@E14001537", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9702cbfc84b43ae3476ca82b" + }, + { + "name": "ons.age.60_70@E14001538", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b59521dfc1109c145c2fa2f" + }, + { + "name": "ons.age.60_70@E14001539", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_430a8de7a88fc450492d2283" + }, + { + "name": "ons.age.60_70@E14001540", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_540686c75dc83ed9dd5d4a88" + }, + { + "name": "ons.age.60_70@E14001541", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11514.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88438a62560a35c9bbad16d1" + }, + { + "name": "ons.age.60_70@E14001542", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfb9e3377e34a5663dc856c3" + }, + { + "name": "ons.age.60_70@E14001543", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0852caf03e1535f1f2243bb" + }, + { + "name": "ons.age.60_70@E14001544", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6f14034618b9a94ff3ee1d2" + }, + { + "name": "ons.age.60_70@E14001545", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12734.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b879a60852fc70fe108e6fac" + }, + { + "name": "ons.age.60_70@E14001546", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5148dc73e22e79f3e3e695b" + }, + { + "name": "ons.age.60_70@E14001547", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee533292eee1b3c4950a3431" + }, + { + "name": "ons.age.60_70@E14001548", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fc050ac70832545c1b1f3e1" + }, + { + "name": "ons.age.60_70@E14001549", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_42013d939785671f3bb91bbc" + }, + { + "name": "ons.age.60_70@E14001550", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8495f9567f2b018625d47c4b" + }, + { + "name": "ons.age.60_70@E14001551", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bf9189a31f89d7d90cb2eee" + }, + { + "name": "ons.age.60_70@E14001552", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16100.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58b73c617209e364edb668dc" + }, + { + "name": "ons.age.60_70@E14001553", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bec1e9520ec8f8a5b116c696" + }, + { + "name": "ons.age.60_70@E14001554", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12086.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4e28a61033914a8a9922f59" + }, + { + "name": "ons.age.60_70@E14001555", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d07e2ff38fee8af2cea16f8" + }, + { + "name": "ons.age.60_70@E14001556", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99aa93efa9b237bab9c428e8" + }, + { + "name": "ons.age.60_70@E14001557", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be2bae4366ddab14ee49b379" + }, + { + "name": "ons.age.60_70@E14001558", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99d5e0c64ad9e8e061a3d5fd" + }, + { + "name": "ons.age.60_70@E14001559", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9103.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f352b69daafa9412b0acc770" + }, + { + "name": "ons.age.60_70@E14001560", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b773e4782ba875a117e8e5b" + }, + { + "name": "ons.age.60_70@E14001561", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6195ac4dfa22b3cff08bff32" + }, + { + "name": "ons.age.60_70@E14001562", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f9300085360bd2bd6d23e1" + }, + { + "name": "ons.age.60_70@E14001563", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b942f615c53e004375982f93" + }, + { + "name": "ons.age.60_70@E14001564", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe9e6676524222aa690f8fd8" + }, + { + "name": "ons.age.60_70@E14001565", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffe732e638013f9719c52c43" + }, + { + "name": "ons.age.60_70@E14001566", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10531.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e94d7a905230da029655fe49" + }, + { + "name": "ons.age.60_70@E14001567", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a90d8d1755cef60af129f07" + }, + { + "name": "ons.age.60_70@E14001568", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d92c945b2dce2aca44c9cd72" + }, + { + "name": "ons.age.60_70@E14001569", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5a8c561da3802bababaf4ca" + }, + { + "name": "ons.age.60_70@E14001570", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13849.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92a1a376ec5ec73b0957573c" + }, + { + "name": "ons.age.60_70@E14001571", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c8d8a1c594c097669171f2f" + }, + { + "name": "ons.age.60_70@E14001572", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bab00ead32f5512577617598" + }, + { + "name": "ons.age.60_70@E14001573", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db48f530369b6508393587ca" + }, + { + "name": "ons.age.60_70@E14001574", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d433f6babcdb2ded20ba3034" + }, + { + "name": "ons.age.60_70@E14001575", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a217c22b1bea87135c56e448" + }, + { + "name": "ons.age.60_70@E14001576", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9693d5a79daa75b524b0ee0" + }, + { + "name": "ons.age.60_70@E14001577", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb2a55c0582ed54fdb50c4ad" + }, + { + "name": "ons.age.60_70@E14001578", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2dd2fa294c6480144653731" + }, + { + "name": "ons.age.60_70@E14001579", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15441.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e56390556a7b7489b1a20f6" + }, + { + "name": "ons.age.60_70@E14001580", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed835ef46fdd7ddadbcea079" + }, + { + "name": "ons.age.60_70@E14001581", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76ec466c8648e9f37a730fae" + }, + { + "name": "ons.age.60_70@E14001582", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b79439156bbbe377609d591e" + }, + { + "name": "ons.age.60_70@E14001583", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7110097a5f0efa24dc37ac8" + }, + { + "name": "ons.age.60_70@E14001584", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8b8d5de766603bcb29eb69a" + }, + { + "name": "ons.age.60_70@E14001585", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d08160f85dc3ae08e38a53" + }, + { + "name": "ons.age.60_70@E14001586", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd875481275281665b07dc3d" + }, + { + "name": "ons.age.60_70@E14001587", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1656cd8b8a6e11c480a2c0e" + }, + { + "name": "ons.age.60_70@E14001588", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef2477cb5dfb60099ee2b81b" + }, + { + "name": "ons.age.60_70@E14001589", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca48381f69c7f52c11b4d98f" + }, + { + "name": "ons.age.60_70@E14001590", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2eaba8421a6c828a15f683a" + }, + { + "name": "ons.age.60_70@E14001591", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28b107453d690e86909cda4e" + }, + { + "name": "ons.age.60_70@E14001592", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ed6275a303d9f8eaaba3b6b" + }, + { + "name": "ons.age.60_70@E14001593", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10971.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a186089b9c910aba0c953a61" + }, + { + "name": "ons.age.60_70@E14001594", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0477b699c7660422bf508af" + }, + { + "name": "ons.age.60_70@E14001595", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b117b1fc5eb49a9e80d59a" + }, + { + "name": "ons.age.60_70@E14001596", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1677aa846ea2ed786a03765a" + }, + { + "name": "ons.age.60_70@E14001597", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e80fa3986e309d9ab43dee0f" + }, + { + "name": "ons.age.60_70@E14001598", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d425ca32abf85522b8f778d" + }, + { + "name": "ons.age.60_70@E14001599", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13333.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e091fa0d95a19d1bed86895" + }, + { + "name": "ons.age.60_70@E14001600", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10323.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_290d50be1a7cffe314e800be" + }, + { + "name": "ons.age.60_70@E14001601", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f1b7cc3e503a97980b75788" + }, + { + "name": "ons.age.60_70@E14001602", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11155.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56e4a9705fdbc160589a8ec" + }, + { + "name": "ons.age.60_70@E14001603", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13820.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9037202b594fb25199e4a95c" + }, + { + "name": "ons.age.60_70@E14001604", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0821fb5b2601499a55ac851" + }, + { + "name": "ons.age.60_70@E14001605", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63fb793690e179b7bc256c66" + }, + { + "name": "ons.age.60_70@N05000001", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11394.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b39df6480e445b74dcd65597" + }, + { + "name": "ons.age.60_70@N05000002", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12104.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f9a99a5abdc3bf605dfbfd6" + }, + { + "name": "ons.age.60_70@N05000003", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12404.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cb9f4af5f671464607d20bc" + }, + { + "name": "ons.age.60_70@N05000004", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb1900e7f7b3f25c4baf84ff" + }, + { + "name": "ons.age.60_70@N05000005", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65cb1cf62ef9ccbb2ff63a62" + }, + { + "name": "ons.age.60_70@N05000006", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13005.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92ff378a609dbc145ae8aedd" + }, + { + "name": "ons.age.60_70@N05000007", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64f55104a4a160f5ac3b1d5b" + }, + { + "name": "ons.age.60_70@N05000008", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91577bc6d233db6dedb9334d" + }, + { + "name": "ons.age.60_70@N05000009", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12827.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fefa5a9da014843646af95f3" + }, + { + "name": "ons.age.60_70@N05000010", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce2cc43709481d51fac28a93" + }, + { + "name": "ons.age.60_70@N05000011", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3620d42c7f90e0f362eca64e" + }, + { + "name": "ons.age.60_70@N05000012", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12698.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6241cde7ac056908d8ed691" + }, + { + "name": "ons.age.60_70@N05000013", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85812d1c79e24aa91fa7600" + }, + { + "name": "ons.age.60_70@N05000014", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c7bb06c546bf492c8eac68d" + }, + { + "name": "ons.age.60_70@N05000015", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82fe723d30831d08ddb75449" + }, + { + "name": "ons.age.60_70@N05000016", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1029ff5b85d5e4c3e29e838" + }, + { + "name": "ons.age.60_70@N05000017", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e6739e0b2cfe1d7bffdda6e" + }, + { + "name": "ons.age.60_70@N05000018", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11730.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdd3f90ef2d9aca471872f4b" + }, + { + "name": "ons.age.60_70@S14000021", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12794.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df89dd2d0d59505f9e784bbe" + }, + { + "name": "ons.age.60_70@S14000027", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 4186.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1ca50414612cfc2882d354d" + }, + { + "name": "ons.age.60_70@S14000045", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f72e47daa2a6f70e50a3f1b6" + }, + { + "name": "ons.age.60_70@S14000048", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14497.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e753e1d189b36cc4cd480b04" + }, + { + "name": "ons.age.60_70@S14000051", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97c13171d201ac21cf373c5" + }, + { + "name": "ons.age.60_70@S14000060", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d761fe53197e327ae20d5bc7" + }, + { + "name": "ons.age.60_70@S14000061", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de90b1e49f8c29213880cee9" + }, + { + "name": "ons.age.60_70@S14000062", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de16593127d9ca6693541cdf" + }, + { + "name": "ons.age.60_70@S14000063", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e30abc58c469c30c103ef97d" + }, + { + "name": "ons.age.60_70@S14000064", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee2c647c043ffefcdde65800" + }, + { + "name": "ons.age.60_70@S14000065", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed2980c6107ab6732837c9c" + }, + { + "name": "ons.age.60_70@S14000066", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb85fa0f2161635558626921" + }, + { + "name": "ons.age.60_70@S14000067", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec5687c981b6d2321828f348" + }, + { + "name": "ons.age.60_70@S14000068", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11917.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c6f5297e319ddcebb4efb1" + }, + { + "name": "ons.age.60_70@S14000069", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fffd0c8638445266bac98e4c" + }, + { + "name": "ons.age.60_70@S14000070", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12573.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3a58e5a24490991d15415ea" + }, + { + "name": "ons.age.60_70@S14000071", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12754.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d34231dd96dc08335f982fad" + }, + { + "name": "ons.age.60_70@S14000072", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edfd7587b09adcfa14af2adc" + }, + { + "name": "ons.age.60_70@S14000073", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f88c604a5bbc2747d60ddb2a" + }, + { + "name": "ons.age.60_70@S14000074", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d59151f33a19007f13818d3a" + }, + { + "name": "ons.age.60_70@S14000075", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc4e75ad9db148d77a25e349" + }, + { + "name": "ons.age.60_70@S14000076", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d97769758455df97082098d1" + }, + { + "name": "ons.age.60_70@S14000077", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fafe9ea4ba36d5844d2dd0cb" + }, + { + "name": "ons.age.60_70@S14000078", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebe76576be754c6c17de4557" + }, + { + "name": "ons.age.60_70@S14000079", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb890dac75d51b324199656e" + }, + { + "name": "ons.age.60_70@S14000080", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee47f8560ed76e3d44796316" + }, + { + "name": "ons.age.60_70@S14000081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec1c36c14f884a69ce5ba399" + }, + { + "name": "ons.age.60_70@S14000082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12785.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdaa7e97c22c62002729acad" + }, + { + "name": "ons.age.60_70@S14000083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f590a5a3919cb1681217fa95" + }, + { + "name": "ons.age.60_70@S14000084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11217.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0ec3a59fc6ca9e8b652c490" + }, + { + "name": "ons.age.60_70@S14000085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e600a5a05891374cd54cfaad" + }, + { + "name": "ons.age.60_70@S14000086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5a4926f4ccdee80fbceaea1" + }, + { + "name": "ons.age.60_70@S14000087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe95f0301c026a3df2b508c4" + }, + { + "name": "ons.age.60_70@S14000088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcbab0b7a4ded745c461569d" + }, + { + "name": "ons.age.60_70@S14000089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97054b6b4b779c01c98f2b4" + }, + { + "name": "ons.age.60_70@S14000090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12892.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2b9ad601052fe8db978d45d" + }, + { + "name": "ons.age.60_70@S14000091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12592.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f108d61b71c06f7e9f0373de" + }, + { + "name": "ons.age.60_70@S14000092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be5db3a9b00961362b250b8f" + }, + { + "name": "ons.age.60_70@S14000093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea38813c3ad2bcbc7e26d92e" + }, + { + "name": "ons.age.60_70@S14000094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdfe2dc38c7a848776fb963e" + }, + { + "name": "ons.age.60_70@S14000095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cefd66e4f4dc3e822e4860e1" + }, + { + "name": "ons.age.60_70@S14000096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e43447d840c150978ffc245c" + }, + { + "name": "ons.age.60_70@S14000097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff6d07d1d7c01f2c56e57473" + }, + { + "name": "ons.age.60_70@S14000098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 14727.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5b47512b80ccfcff95e116e" + }, + { + "name": "ons.age.60_70@S14000099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efbf59740f5c947c7e0d16ed" + }, + { + "name": "ons.age.60_70@S14000100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8c0ae702d511a9f78afa7d6" + }, + { + "name": "ons.age.60_70@S14000101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f616528245105bf41f88c769" + }, + { + "name": "ons.age.60_70@S14000102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12795.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ec55b1de049837114a9b3c" + }, + { + "name": "ons.age.60_70@S14000103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13990.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff05fd3aacee3b7f331331b1" + }, + { + "name": "ons.age.60_70@S14000104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f325476119b699da454f890f" + }, + { + "name": "ons.age.60_70@S14000105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f660dc8e69b36664e438d0be" + }, + { + "name": "ons.age.60_70@S14000106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcd5f5b903c69311f810712a" + }, + { + "name": "ons.age.60_70@S14000107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1772208edd16a3e1208dca2" + }, + { + "name": "ons.age.60_70@S14000108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 15439.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c45e3f366bc19016c57bc695" + }, + { + "name": "ons.age.60_70@S14000109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd95324188a039fb49269c92" + }, + { + "name": "ons.age.60_70@S14000110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff104a974370a8606dfd97ea" + }, + { + "name": "ons.age.60_70@S14000111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 13913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe8d2ddbe9f1862eabd698a3" + }, + { + "name": "ons.age.60_70@W07000081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45abcb53c7a6e8c6b0e95bb3" + }, + { + "name": "ons.age.60_70@W07000082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a13b35a064fd71eba1e9ff27" + }, + { + "name": "ons.age.60_70@W07000083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13033.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce4d48c8be8e6880edbdc7fe" + }, + { + "name": "ons.age.60_70@W07000084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dff617c86483f0293bc90af" + }, + { + "name": "ons.age.60_70@W07000085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e2a2575f55d29d71136fc04" + }, + { + "name": "ons.age.60_70@W07000086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8804593bacf38e6d4adc1a05" + }, + { + "name": "ons.age.60_70@W07000087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbba07c8c00f75cc05e8c926" + }, + { + "name": "ons.age.60_70@W07000088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d370a72696d83fd671817f57" + }, + { + "name": "ons.age.60_70@W07000089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6624f258c56f10d0cb9d92b6" + }, + { + "name": "ons.age.60_70@W07000090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc78caa4a928fbaaab640eeb" + }, + { + "name": "ons.age.60_70@W07000091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9046.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62b7c5c6a5efc85a9c1a1e24" + }, + { + "name": "ons.age.60_70@W07000092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9c6b8dcd046cb58ae9ee16a" + }, + { + "name": "ons.age.60_70@W07000093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74f5dffc877f87a989cf9802" + }, + { + "name": "ons.age.60_70@W07000094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d3359fe3d5aaca16be7d3b" + }, + { + "name": "ons.age.60_70@W07000095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7eaf781b518221f7bfd39a5" + }, + { + "name": "ons.age.60_70@W07000096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d99e63a076653c62faa1158b" + }, + { + "name": "ons.age.60_70@W07000097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f53123af0d81ed326c20d9cf" + }, + { + "name": "ons.age.60_70@W07000098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e60caf75378bdb63ecfc15f0" + }, + { + "name": "ons.age.60_70@W07000099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0a3c646ccb7a2fbb8c18c9" + }, + { + "name": "ons.age.60_70@W07000100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15200.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81ef0abe03c39da1316c31d8" + }, + { + "name": "ons.age.60_70@W07000101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a8beb58ec487641da3301de" + }, + { + "name": "ons.age.60_70@W07000102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0f02378463f7fe5c079bdf0" + }, + { + "name": "ons.age.60_70@W07000103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8a465e1c57fdb70c9e9ad69" + }, + { + "name": "ons.age.60_70@W07000104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fa219fbb86cb1901c1ceef7" + }, + { + "name": "ons.age.60_70@W07000105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63844c52bdca0c148672d79e" + }, + { + "name": "ons.age.60_70@W07000106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f18b5ed40987da47ffae74f8" + }, + { + "name": "ons.age.60_70@W07000107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1d831d19422f77047ed0d01" + }, + { + "name": "ons.age.60_70@W07000108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_67bbb7107f557aa6d69437b6" + }, + { + "name": "ons.age.60_70@W07000109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dff06e21bd61166a874ee249" + }, + { + "name": "ons.age.60_70@W07000110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bfb0a1daca614f266fb5f98" + }, + { + "name": "ons.age.60_70@W07000111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12135.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cd617fb06012556a5d5c40e" + }, + { + "name": "ons.age.60_70@W07000112", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c18007c4a1ec1cb60163d83e" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.60_70@E06000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e40b7a0c84b4ab2ef081623" + }, + { + "name": "ons.age.60_70@E06000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17049.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faad722d3a80ddc6d3011c0a" + }, + { + "name": "ons.age.60_70@E06000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf9d2fd38e99d583321b4dce" + }, + { + "name": "ons.age.60_70@E06000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_867b0037ff21dc2cab410540" + }, + { + "name": "ons.age.60_70@E06000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7f64197a035a7ca702c04f3" + }, + { + "name": "ons.age.60_70@E06000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16331.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e8bd057be10834a3361aa7" + }, + { + "name": "ons.age.60_70@E06000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b2cc880e09a8116df30dca2" + }, + { + "name": "ons.age.60_70@E06000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce55e9a330ef7aed7860c3d5" + }, + { + "name": "ons.age.60_70@E06000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d52663d46b2ad7be1013be9c" + }, + { + "name": "ons.age.60_70@E06000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d60ee390a4e0d76724ff979d" + }, + { + "name": "ons.age.60_70@E06000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9255c74176af48b9a63be15f" + }, + { + "name": "ons.age.60_70@E06000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfcfc1b08664e6c7579429fb" + }, + { + "name": "ons.age.60_70@E06000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12d4e525e318ae640464baf" + }, + { + "name": "ons.age.60_70@E06000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22232.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd77da4a9580c53b2fd8f814" + }, + { + "name": "ons.age.60_70@E06000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77acf9f42ab0828e70878d56" + }, + { + "name": "ons.age.60_70@E06000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_720fe10fe4bd268281c9d59a" + }, + { + "name": "ons.age.60_70@E06000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f412ceaebfac07fd57404ff5" + }, + { + "name": "ons.age.60_70@E06000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f78c856920a2ca042ba0bff6" + }, + { + "name": "ons.age.60_70@E06000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8280a95bf2a855b4b35a5c4" + }, + { + "name": "ons.age.60_70@E06000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21491.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f84981b6c04dc2a54276b3b" + }, + { + "name": "ons.age.60_70@E06000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28234.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_882e05987ff8f697727541e5" + }, + { + "name": "ons.age.60_70@E06000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21868.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f856417d12e913f3ab5503d5" + }, + { + "name": "ons.age.60_70@E06000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39122.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2e49add1054f0db4e3954ee" + }, + { + "name": "ons.age.60_70@E06000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99da0c181b5b515b64d4bd76" + }, + { + "name": "ons.age.60_70@E06000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed742f4bde5e863c3a311d4" + }, + { + "name": "ons.age.60_70@E06000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30150.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f98dfd62ecdecb6446eab1ea" + }, + { + "name": "ons.age.60_70@E06000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_78ff5795eefa4c585a3263c3" + }, + { + "name": "ons.age.60_70@E06000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7afe30b9943dbb9ee74a7b2f" + }, + { + "name": "ons.age.60_70@E06000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b61062bd7318e811e095a443" + }, + { + "name": "ons.age.60_70@E06000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0c13bafb0ceaf415f236680" + }, + { + "name": "ons.age.60_70@E06000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80abd08b847fedf75b1baa13" + }, + { + "name": "ons.age.60_70@E06000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e0b05002c1cb96bf141db41" + }, + { + "name": "ons.age.60_70@E06000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fbe05ea89bf731eb22d7b8a" + }, + { + "name": "ons.age.60_70@E06000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d8e51940470644143109875" + }, + { + "name": "ons.age.60_70@E06000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20084.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b98fba194d3ef26b93955eb6" + }, + { + "name": "ons.age.60_70@E06000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b5e38b18ea48c6aed58d7f" + }, + { + "name": "ons.age.60_70@E06000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12330.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31cc756547c15f890cb02aed" + }, + { + "name": "ons.age.60_70@E06000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17666.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef8466b4ab18de6602eae3c9" + }, + { + "name": "ons.age.60_70@E06000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a5acfd17ce12909debe1d8c" + }, + { + "name": "ons.age.60_70@E06000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccd55c2d2e5ede20a2e9688a" + }, + { + "name": "ons.age.60_70@E06000043", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3cd0af4da10d1691bf386be" + }, + { + "name": "ons.age.60_70@E06000044", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb48b19fbaeeecc41c31d24" + }, + { + "name": "ons.age.60_70@E06000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba20b91db6a1ecf6191bd3ae" + }, + { + "name": "ons.age.60_70@E06000046", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22132.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d038edaf18d9ce22ab9e5630" + }, + { + "name": "ons.age.60_70@E06000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63f2230ea0271105d87d0fd7" + }, + { + "name": "ons.age.60_70@E06000049", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec14e7df892f31501edfd7cc" + }, + { + "name": "ons.age.60_70@E06000050", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58bae956d1d05cd600582970" + }, + { + "name": "ons.age.60_70@E06000051", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4eddda0ed25abe87cea2011" + }, + { + "name": "ons.age.60_70@E06000052", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 83282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba07eae739f802e1a28d2e4" + }, + { + "name": "ons.age.60_70@E06000053", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_435336bb67fc61c18d15fcea" + }, + { + "name": "ons.age.60_70@E06000054", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3be6c59db939d5ceeffa7a74" + }, + { + "name": "ons.age.60_70@E06000055", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20254.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea4f001deaf862fb6c68b1a" + }, + { + "name": "ons.age.60_70@E06000056", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35562.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc5149a3f960362d11df3b0d" + }, + { + "name": "ons.age.60_70@E06000057", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_707682e1a30c8767352502f2" + }, + { + "name": "ons.age.60_70@E06000058", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5ef4e84208459a2fc19acea" + }, + { + "name": "ons.age.60_70@E06000059", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 61045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81a394a9304ef58eb7f54cea" + }, + { + "name": "ons.age.60_70@E06000060", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 65272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2dc00be91e0ec3bcc312457" + }, + { + "name": "ons.age.60_70@E06000061", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41575.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb5ff00855358d0fe7703b7" + }, + { + "name": "ons.age.60_70@E06000062", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 47255.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b6c3e6f5d386b4f5839370" + }, + { + "name": "ons.age.60_70@E06000063", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40178.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc186d49da6ff3b7a0f48f3a" + }, + { + "name": "ons.age.60_70@E06000064", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34633.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39127eafa21226813951cffa" + }, + { + "name": "ons.age.60_70@E06000065", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 94075.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2149be418696b62c845c962" + }, + { + "name": "ons.age.60_70@E06000066", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 80443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4a9067f00ab2212a6b67b71" + }, + { + "name": "ons.age.60_70@E07000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10618.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc8e92d03b32cd67848665cf" + }, + { + "name": "ons.age.60_70@E07000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9b99640e7a07225a5a03e90" + }, + { + "name": "ons.age.60_70@E07000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13781.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee387a19cd7197d090bfb68" + }, + { + "name": "ons.age.60_70@E07000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9da91c6b027968e3fb99a77" + }, + { + "name": "ons.age.60_70@E07000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83ae63bf8c2efabde1eeea00" + }, + { + "name": "ons.age.60_70@E07000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17380.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5d2f93e14376bd3398ef883" + }, + { + "name": "ons.age.60_70@E07000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4eded0711a8ffe2d13379f4" + }, + { + "name": "ons.age.60_70@E07000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9b2e0872d67bfbeca36a98" + }, + { + "name": "ons.age.60_70@E07000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d34ebc081dc8fbbf43266b2" + }, + { + "name": "ons.age.60_70@E07000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14116.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_beb91a99ec7a72a442ec68b4" + }, + { + "name": "ons.age.60_70@E07000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13335.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2b7479045581c607bf559bd" + }, + { + "name": "ons.age.60_70@E07000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e578bacb5fee1ac77cb66a69" + }, + { + "name": "ons.age.60_70@E07000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92090396d882c6e385a8dce5" + }, + { + "name": "ons.age.60_70@E07000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22640.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74b761050b40e09ed85fa364" + }, + { + "name": "ons.age.60_70@E07000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2aaaedac2f78663e5b0f4e3" + }, + { + "name": "ons.age.60_70@E07000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7501b419ac6eefcb9c34e86" + }, + { + "name": "ons.age.60_70@E07000043", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e19710441d4c9ab8ec7842" + }, + { + "name": "ons.age.60_70@E07000044", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81d247f97cc2e0a23977a95b" + }, + { + "name": "ons.age.60_70@E07000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20744.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9249bffff2b9054d6c36da07" + }, + { + "name": "ons.age.60_70@E07000046", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11386.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1cdee8b16ebe0c07be89faf" + }, + { + "name": "ons.age.60_70@E07000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9764.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8d22131c153155ceef290e2" + }, + { + "name": "ons.age.60_70@E07000061", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5e6f982789caab70f6a2e37" + }, + { + "name": "ons.age.60_70@E07000062", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ed1a665ec94557fe326d859" + }, + { + "name": "ons.age.60_70@E07000063", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d07bf5e12cbea997f27abde3" + }, + { + "name": "ons.age.60_70@E07000064", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14987.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6441a5d24c5cb8d4bda10734" + }, + { + "name": "ons.age.60_70@E07000065", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a3622561080f3b919a59063" + }, + { + "name": "ons.age.60_70@E07000066", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f988ecb901ddc27dd2f78216" + }, + { + "name": "ons.age.60_70@E07000067", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8c7237fa370f1049eab9051" + }, + { + "name": "ons.age.60_70@E07000068", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f01f9d3ef410feab86609cef" + }, + { + "name": "ons.age.60_70@E07000069", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5397f3e448c8fb50875a0e7" + }, + { + "name": "ons.age.60_70@E07000070", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20315.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81190a3a4eb0fc5c96f4cffb" + }, + { + "name": "ons.age.60_70@E07000071", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef6f4c70a52762ebe133c11" + }, + { + "name": "ons.age.60_70@E07000072", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eebd4c48bf005eccebc2d582" + }, + { + "name": "ons.age.60_70@E07000073", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a47080ac8b09c7eb41e97939" + }, + { + "name": "ons.age.60_70@E07000074", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9782.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_999290ba25e49189811c0c50" + }, + { + "name": "ons.age.60_70@E07000075", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7da6d4e2ce50babae878b0a" + }, + { + "name": "ons.age.60_70@E07000076", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e96fdccd546aef69f421549" + }, + { + "name": "ons.age.60_70@E07000077", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_56b2c9f08ff26fec7271f512" + }, + { + "name": "ons.age.60_70@E07000078", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27b9fbcb4dfe25ecedaf887" + }, + { + "name": "ons.age.60_70@E07000079", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13513.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92760a98f77b9339d8d8fc5a" + }, + { + "name": "ons.age.60_70@E07000080", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0451fcb9bf131f7ed2b2a9f" + }, + { + "name": "ons.age.60_70@E07000081", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea6c2af39625ac2f82fcdc1a" + }, + { + "name": "ons.age.60_70@E07000082", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17185.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ccf5de670a0653abef0ae09" + }, + { + "name": "ons.age.60_70@E07000083", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12490.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f99550d47e9d7f9592833f6e" + }, + { + "name": "ons.age.60_70@E07000084", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e475b21764c7becac5ff137d" + }, + { + "name": "ons.age.60_70@E07000085", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc90a9e310210ed1a8217157" + }, + { + "name": "ons.age.60_70@E07000086", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0647295d9a4daaf911a2f8c" + }, + { + "name": "ons.age.60_70@E07000087", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75b565dbfbaa71a1e203deb4" + }, + { + "name": "ons.age.60_70@E07000088", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75f98ad363a57f9c442dd9ee" + }, + { + "name": "ons.age.60_70@E07000089", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11719.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5531ff30e815736002e70800" + }, + { + "name": "ons.age.60_70@E07000090", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1610a17009192bcb8722ad2" + }, + { + "name": "ons.age.60_70@E07000091", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abcbb0517f7735ef6a1f7bf7" + }, + { + "name": "ons.age.60_70@E07000092", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10036.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9db263c680e73e1a3186108e" + }, + { + "name": "ons.age.60_70@E07000093", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7fa919e88bff3a347f3793b" + }, + { + "name": "ons.age.60_70@E07000094", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c39dbe594e0c95bd8d50db4" + }, + { + "name": "ons.age.60_70@E07000095", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b018d74ec52ee194ee209ec" + }, + { + "name": "ons.age.60_70@E07000096", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75497225088a652ff1b368f4" + }, + { + "name": "ons.age.60_70@E07000098", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1e0e49ce6f45517000864a6" + }, + { + "name": "ons.age.60_70@E07000099", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99ab983a1be0cdaadcbeffc1" + }, + { + "name": "ons.age.60_70@E07000102", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10742.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f48f73ff4d9941c250c7abc4" + }, + { + "name": "ons.age.60_70@E07000103", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8922.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fd35f1411980da7c6480bd5" + }, + { + "name": "ons.age.60_70@E07000105", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f70fc09c70421e9effee8c73" + }, + { + "name": "ons.age.60_70@E07000106", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f451f75191b2ebd63815ef4d" + }, + { + "name": "ons.age.60_70@E07000107", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ff6132c755f27d287a93403" + }, + { + "name": "ons.age.60_70@E07000108", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_408d7ed84086fa39236fb4eb" + }, + { + "name": "ons.age.60_70@E07000109", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c6d05beb720562603d3dddd" + }, + { + "name": "ons.age.60_70@E07000110", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5ab437eab04582876b5f66" + }, + { + "name": "ons.age.60_70@E07000111", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9466d31ea1b0230728da770" + }, + { + "name": "ons.age.60_70@E07000112", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8b0ee14f64f8352e916809c" + }, + { + "name": "ons.age.60_70@E07000113", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9de04221b26265385b71c147" + }, + { + "name": "ons.age.60_70@E07000114", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5318cdceb51889a26609b4b" + }, + { + "name": "ons.age.60_70@E07000115", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2db640c0fa33810ff8f639d" + }, + { + "name": "ons.age.60_70@E07000116", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f19dff5741061227338536c4" + }, + { + "name": "ons.age.60_70@E07000117", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6552642c6fec37df02a76b14" + }, + { + "name": "ons.age.60_70@E07000118", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5acb54b4d56a5ed53e05179a" + }, + { + "name": "ons.age.60_70@E07000119", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af401ed177ecf0c227a309f8" + }, + { + "name": "ons.age.60_70@E07000120", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9405.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be8d7ae24cdaafe926b8f2d4" + }, + { + "name": "ons.age.60_70@E07000121", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d4e65c660cde733feabc963" + }, + { + "name": "ons.age.60_70@E07000122", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11063.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ed40567a43b8ab69b97c778" + }, + { + "name": "ons.age.60_70@E07000123", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4f1bfc892e03502ac1c4ddb" + }, + { + "name": "ons.age.60_70@E07000124", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccc846b6e7d70aa9c30f7b73" + }, + { + "name": "ons.age.60_70@E07000125", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8805.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8afaf2d717e8a3b6fae7baab" + }, + { + "name": "ons.age.60_70@E07000126", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14738.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93de9692b98775563d786e9b" + }, + { + "name": "ons.age.60_70@E07000127", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edc9db1fc78a97da645c7de8" + }, + { + "name": "ons.age.60_70@E07000128", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ab917a9ee9e9f2ba1941e3" + }, + { + "name": "ons.age.60_70@E07000129", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_15c021db4ce3e1154be8ec30" + }, + { + "name": "ons.age.60_70@E07000130", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_587ac33abada5eecbc3c9baf" + }, + { + "name": "ons.age.60_70@E07000131", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c833a63841e1ff7fe4784156" + }, + { + "name": "ons.age.60_70@E07000132", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a0e9be1a7731227705915c2" + }, + { + "name": "ons.age.60_70@E07000133", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_67b0a280a3b7d58ef5e10080" + }, + { + "name": "ons.age.60_70@E07000134", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18b53042ee6ee6799eeee2f" + }, + { + "name": "ons.age.60_70@E07000135", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6916.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c72d7e305d70e1b8531bdea4" + }, + { + "name": "ons.age.60_70@E07000136", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8829.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b4b227a6d363bca39dfd919" + }, + { + "name": "ons.age.60_70@E07000137", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86455d5524553897bbd42769" + }, + { + "name": "ons.age.60_70@E07000138", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3e5fdf2b2da28f0387b741a" + }, + { + "name": "ons.age.60_70@E07000139", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4045e40946505d6bcb14bba6" + }, + { + "name": "ons.age.60_70@E07000140", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13371.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69eb964381959d35fbfcb162" + }, + { + "name": "ons.age.60_70@E07000141", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46939fbebb8e7c1861fb3645" + }, + { + "name": "ons.age.60_70@E07000142", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14605.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa808743eabf4fe11eca1e83" + }, + { + "name": "ons.age.60_70@E07000143", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e176e12bf071016f1b757431" + }, + { + "name": "ons.age.60_70@E07000144", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb50b7860b198f71635b57f8" + }, + { + "name": "ons.age.60_70@E07000145", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3ed0703742b173cfc3b19f4" + }, + { + "name": "ons.age.60_70@E07000146", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2535b1c153b7d73843d1613" + }, + { + "name": "ons.age.60_70@E07000147", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c7bea08e14a514cf939e19d" + }, + { + "name": "ons.age.60_70@E07000148", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcc65f09d97cef07b0997a3e" + }, + { + "name": "ons.age.60_70@E07000149", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff36478ca3042f26ea35ab0b" + }, + { + "name": "ons.age.60_70@E07000170", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15443.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d17cd800b4e7c9a12d3f1cc" + }, + { + "name": "ons.age.60_70@E07000171", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16473.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f82eb5aab758bd1ab51f5ea9" + }, + { + "name": "ons.age.60_70@E07000172", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5421f03f23941067aaef3b7" + }, + { + "name": "ons.age.60_70@E07000173", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f41c820bc624667f2ab591c" + }, + { + "name": "ons.age.60_70@E07000174", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c009247ff0cb0e9a087e00d" + }, + { + "name": "ons.age.60_70@E07000175", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3486ba8d5de7b6bd1d80a72" + }, + { + "name": "ons.age.60_70@E07000176", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15173.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7fba4813ff9c019689de5ff" + }, + { + "name": "ons.age.60_70@E07000177", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93320da668208551d5e20638" + }, + { + "name": "ons.age.60_70@E07000178", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c10fb62974cfd19f9bff667a" + }, + { + "name": "ons.age.60_70@E07000179", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_752031e273dab227cf36dac3" + }, + { + "name": "ons.age.60_70@E07000180", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16766.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3c83b92404ea4fd8f4dad54" + }, + { + "name": "ons.age.60_70@E07000181", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1d1c53c9e4207c182d7344e" + }, + { + "name": "ons.age.60_70@E07000192", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b17f1512864b24906758b77e" + }, + { + "name": "ons.age.60_70@E07000193", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f1529ba97877c70547031a" + }, + { + "name": "ons.age.60_70@E07000194", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14016.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5408f8d1a1286b8216d3ba0d" + }, + { + "name": "ons.age.60_70@E07000195", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15772.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a81438f329247f9bcb51345e" + }, + { + "name": "ons.age.60_70@E07000196", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16082.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf3b7a1fd2f6e5f9076bf586" + }, + { + "name": "ons.age.60_70@E07000197", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18302.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3215ffb5b95b681cde0b2f8" + }, + { + "name": "ons.age.60_70@E07000198", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f7276913b9232efcb059e13" + }, + { + "name": "ons.age.60_70@E07000199", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd7b2b295b1f936f79054bfb" + }, + { + "name": "ons.age.60_70@E07000200", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13534.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_959f0688ce4ef2c1425447f8" + }, + { + "name": "ons.age.60_70@E07000202", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14258.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a13a913848fe200f5c94eb0" + }, + { + "name": "ons.age.60_70@E07000203", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15716.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6baf57455ac85cf5e2b785c" + }, + { + "name": "ons.age.60_70@E07000207", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15107.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90f7c6a883d71a12f6759db3" + }, + { + "name": "ons.age.60_70@E07000208", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dde5eb4049946f7c10202c66" + }, + { + "name": "ons.age.60_70@E07000209", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15497.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edc7949055f61985cff75300" + }, + { + "name": "ons.age.60_70@E07000210", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdf41331265d7c95ec9ab265" + }, + { + "name": "ons.age.60_70@E07000211", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eedc1f1163803ec7e7165ecc" + }, + { + "name": "ons.age.60_70@E07000212", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc58f994dc4b8530d40bc336" + }, + { + "name": "ons.age.60_70@E07000213", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11428.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de5daea7c9e49c18122dfb8" + }, + { + "name": "ons.age.60_70@E07000214", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10912.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8a19a57ce26aa7f62442512" + }, + { + "name": "ons.age.60_70@E07000215", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac97ba855b5b7a8fb2185be2" + }, + { + "name": "ons.age.60_70@E07000216", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15530.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d5cac4260ca715d77e20aa" + }, + { + "name": "ons.age.60_70@E07000217", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5863e675067277959322a41" + }, + { + "name": "ons.age.60_70@E07000218", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d937d61d4ae9a2955349e835" + }, + { + "name": "ons.age.60_70@E07000219", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baf7710946c64068e511d4fc" + }, + { + "name": "ons.age.60_70@E07000220", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50ad0279635f684f9f651818" + }, + { + "name": "ons.age.60_70@E07000221", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20060.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d375562ac1ba23920ba9359e" + }, + { + "name": "ons.age.60_70@E07000222", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16304.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d8039a4a1bf8115bd71e86a" + }, + { + "name": "ons.age.60_70@E07000223", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca44206993622091dc1e043b" + }, + { + "name": "ons.age.60_70@E07000224", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24005.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f69df9994ddad0b3028b4ead" + }, + { + "name": "ons.age.60_70@E07000225", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8735df8cfd0fbd9f19519f42" + }, + { + "name": "ons.age.60_70@E07000226", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76f1cf9772bb8ae864e99c47" + }, + { + "name": "ons.age.60_70@E07000227", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6e64212b2bbbbe5ac2e4664" + }, + { + "name": "ons.age.60_70@E07000228", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b33418e48ec84451c156f7" + }, + { + "name": "ons.age.60_70@E07000229", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfb8611aa1c279263f800a55" + }, + { + "name": "ons.age.60_70@E07000234", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93ef93c12ce5a0bcaf9652ce" + }, + { + "name": "ons.age.60_70@E07000235", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12543.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edbe5dd2c259c31cec308a70" + }, + { + "name": "ons.age.60_70@E07000236", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eab1b322a28254f9378659d8" + }, + { + "name": "ons.age.60_70@E07000237", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa11bf90ee98fe37e8775476" + }, + { + "name": "ons.age.60_70@E07000238", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19133.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97a1ccb51bedc894f57bcc57" + }, + { + "name": "ons.age.60_70@E07000239", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e3aff64330212070664719" + }, + { + "name": "ons.age.60_70@E07000240", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6762d09d5d8be1e39bc879ad" + }, + { + "name": "ons.age.60_70@E07000241", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12420.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d603d1c2bbc1cff8b2b1a60e" + }, + { + "name": "ons.age.60_70@E07000242", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0d43194c4953410a75e263e" + }, + { + "name": "ons.age.60_70@E07000243", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_def514e6720f85abd7f8f7c8" + }, + { + "name": "ons.age.60_70@E07000244", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a167af9a82ace855090cd754" + }, + { + "name": "ons.age.60_70@E07000245", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_45533e1883e1ee2d9df39b88" + }, + { + "name": "ons.age.60_70@E08000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9acb27caac8fe2fd11cd2c5" + }, + { + "name": "ons.age.60_70@E08000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f812ff9652d33bdab943b393" + }, + { + "name": "ons.age.60_70@E08000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e29ffb21f157ce682044e4f0" + }, + { + "name": "ons.age.60_70@E08000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e3ffdd955362012677fb8e" + }, + { + "name": "ons.age.60_70@E08000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7de861973672be7aeb51f20" + }, + { + "name": "ons.age.60_70@E08000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24098.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92a29b7c5fdb68d657250b1a" + }, + { + "name": "ons.age.60_70@E08000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7174087d2d4ffff64419060" + }, + { + "name": "ons.age.60_70@E08000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d493bcd5f3103e1e76af9bcd" + }, + { + "name": "ons.age.60_70@E08000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e496a820c18ccfc3c3d577a4" + }, + { + "name": "ons.age.60_70@E08000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39679.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb62b597682a426cf7114bdc" + }, + { + "name": "ons.age.60_70@E08000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20590.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1ab0b9f84b5c847f5438b61" + }, + { + "name": "ons.age.60_70@E08000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53177.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3337706d81bc7c61babda340" + }, + { + "name": "ons.age.60_70@E08000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06859e755ed669db8f92f7a" + }, + { + "name": "ons.age.60_70@E08000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39779.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7bf56a36adb0e6e908539c0" + }, + { + "name": "ons.age.60_70@E08000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d1a9ecae378da2dd1814fb0" + }, + { + "name": "ons.age.60_70@E08000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71b94026393f0581963452cd" + }, + { + "name": "ons.age.60_70@E08000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faa9580432f95b9b2cd242f9" + }, + { + "name": "ons.age.60_70@E08000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32479.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dc3389537e243aa774e8189" + }, + { + "name": "ons.age.60_70@E08000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 57765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbce0599c929045ae403ae25" + }, + { + "name": "ons.age.60_70@E08000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1804bd419570e68305e9594" + }, + { + "name": "ons.age.60_70@E08000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_602def7cfc603a0d1510c68e" + }, + { + "name": "ons.age.60_70@E08000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20435.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c31f94d5b51683f22d143cd0" + }, + { + "name": "ons.age.60_70@E08000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36950.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d81fc8c717364a4c98d4391" + }, + { + "name": "ons.age.60_70@E08000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 100385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85d7d05582ee705184077874" + }, + { + "name": "ons.age.60_70@E08000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a8bc4733c610cc8015ca66" + }, + { + "name": "ons.age.60_70@E08000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37466.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9beca2d788f2215b1fcdf853" + }, + { + "name": "ons.age.60_70@E08000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33345.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c58a8d1c0d23e005ea44f24" + }, + { + "name": "ons.age.60_70@E08000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6ce8494315ef7b80eb1c9aa" + }, + { + "name": "ons.age.60_70@E08000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30347.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_859f1f3332cb8cfac92636b3" + }, + { + "name": "ons.age.60_70@E08000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbd478489895201ac85127e7" + }, + { + "name": "ons.age.60_70@E08000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd64d6519cb9778dce0e193" + }, + { + "name": "ons.age.60_70@E08000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c74235385d196ed838112207" + }, + { + "name": "ons.age.60_70@E08000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48807.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af3f3ba944df12c2fef681cd" + }, + { + "name": "ons.age.60_70@E08000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 79373.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baa729dbbbe88422e3bbcbb4" + }, + { + "name": "ons.age.60_70@E08000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43073.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6048aca02dd0f260c7dbe73" + }, + { + "name": "ons.age.60_70@E08000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edd210662b51a5a0d29cc3c0" + }, + { + "name": "ons.age.60_70@E09000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1009.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2869646546465917b37dfdc" + }, + { + "name": "ons.age.60_70@E09000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16309.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_44c3421549c5bec7e0e45539" + }, + { + "name": "ons.age.60_70@E09000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c872914c4935e7caf789615e" + }, + { + "name": "ons.age.60_70@E09000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26497.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_725299fcb88e91adf0730371" + }, + { + "name": "ons.age.60_70@E09000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4faf4dcd312977658374794a" + }, + { + "name": "ons.age.60_70@E09000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35681.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b7e41fb645ad366fd99c17a" + }, + { + "name": "ons.age.60_70@E09000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c2cdb770e641cfb76d97b3" + }, + { + "name": "ons.age.60_70@E09000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40164.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ed774086e6fc98126c8a594" + }, + { + "name": "ons.age.60_70@E09000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34637.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4374820bb78e8b5eae92ee79" + }, + { + "name": "ons.age.60_70@E09000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33009.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8961ff31a769442033f8d26a" + }, + { + "name": "ons.age.60_70@E09000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7460eac50ef723bc4d1fd69" + }, + { + "name": "ons.age.60_70@E09000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19896.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84e6fac957601bdbb3698c63" + }, + { + "name": "ons.age.60_70@E09000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15267.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3cef8c3eaf0a414f10fac97" + }, + { + "name": "ons.age.60_70@E09000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23691.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff3a879c0509b7e965cb3190" + }, + { + "name": "ons.age.60_70@E09000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d9700a2e3eb2316f47fa9f" + }, + { + "name": "ons.age.60_70@E09000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e81a35752e8033d2f8833804" + }, + { + "name": "ons.age.60_70@E09000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7f328d9c60cb0030735cc96" + }, + { + "name": "ons.age.60_70@E09000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f341d48a4519e360fe7451d3" + }, + { + "name": "ons.age.60_70@E09000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17511.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_64dff7170619e87668805113" + }, + { + "name": "ons.age.60_70@E09000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16172.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd143f3dc81045d09f2a590" + }, + { + "name": "ons.age.60_70@E09000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f4b0bfd47861eebc1fed3af" + }, + { + "name": "ons.age.60_70@E09000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5938f32bfba308884127a75d" + }, + { + "name": "ons.age.60_70@E09000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26578.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfc395588ff5cd12a8be05b3" + }, + { + "name": "ons.age.60_70@E09000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19980.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fc5ad2e168051c5ea8c774c" + }, + { + "name": "ons.age.60_70@E09000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24627.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48e29019fcd098e3ff83e4c8" + }, + { + "name": "ons.age.60_70@E09000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_549f0e3adc577930bb666278" + }, + { + "name": "ons.age.60_70@E09000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_77fb55f56e2c69c49429b0f9" + }, + { + "name": "ons.age.60_70@E09000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25813.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_50589f6b2dbd916544b63645" + }, + { + "name": "ons.age.60_70@E09000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20864.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb7ee1fbd60b252a478dd8d0" + }, + { + "name": "ons.age.60_70@E09000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16928.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbba62565bb2205fe72e486d" + }, + { + "name": "ons.age.60_70@E09000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef8e4fed384b34920a8c272d" + }, + { + "name": "ons.age.60_70@E09000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24040.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffc25d4229c1bf1231ad57c9" + }, + { + "name": "ons.age.60_70@E09000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bd910fb4ac63c4c97b4c58e" + }, + { + "name": "ons.age.60_70@N09000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_36688f1535b9979078b672f4" + }, + { + "name": "ons.age.60_70@N09000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6bf64baaf7fce35728a08ef" + }, + { + "name": "ons.age.60_70@N09000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63cb320b617ad420bf660027" + }, + { + "name": "ons.age.60_70@N09000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18071.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd6d82cf0be18a9b9c85bb73" + }, + { + "name": "ons.age.60_70@N09000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7dbbe3ba86b819160a4d82f" + }, + { + "name": "ons.age.60_70@N09000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14521.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1cbc0a2a069dcbbaa820bb8" + }, + { + "name": "ons.age.60_70@N09000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_672e050ba5e7b0955ed0c403" + }, + { + "name": "ons.age.60_70@N09000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d985bfe111d9a0551957ba3" + }, + { + "name": "ons.age.60_70@N09000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e883086867b48ed23bef7c76" + }, + { + "name": "ons.age.60_70@N09000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66fc5d580d2076877431ef2f" + }, + { + "name": "ons.age.60_70@N09000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed9132632032bdaefec47fb6" + }, + { + "name": "ons.age.60_70@S12000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52a2ec1c1b5651ff96cd7cc0" + }, + { + "name": "ons.age.60_70@S12000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac304141cab3dcd996af414" + }, + { + "name": "ons.age.60_70@S12000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3bfc9d2b6de9e710c927545" + }, + { + "name": "ons.age.60_70@S12000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f25c8b5b8f155fc758bdd2c" + }, + { + "name": "ons.age.60_70@S12000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64c7ccad347dcfd1272e1ee" + }, + { + "name": "ons.age.60_70@S12000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4198.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a69eeb419612ab4b5d292f9e" + }, + { + "name": "ons.age.60_70@S12000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20963.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_deed2d51c2588c464fc5c6da" + }, + { + "name": "ons.age.60_70@S12000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa6f5b329f6ba94e40988885" + }, + { + "name": "ons.age.60_70@S12000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3bcb126ad622ade1be57b4a" + }, + { + "name": "ons.age.60_70@S12000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b48faa7cce94884fb32773fc" + }, + { + "name": "ons.age.60_70@S12000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13657.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69343786e5a677fe0ee1c370" + }, + { + "name": "ons.age.60_70@S12000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20462.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68103066f84e995509b2af55" + }, + { + "name": "ons.age.60_70@S12000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddda07a4dfcb6e49cb4dae2c" + }, + { + "name": "ons.age.60_70@S12000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7e1cc4a7f5e16510f3bdbb1" + }, + { + "name": "ons.age.60_70@S12000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3077.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f68dc5e26cbc51ced6843537" + }, + { + "name": "ons.age.60_70@S12000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17775.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3de989052d49558a9b5631e" + }, + { + "name": "ons.age.60_70@S12000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46031.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_223b898ee1a0908cecee1ad2" + }, + { + "name": "ons.age.60_70@S12000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ff6f5ec87a56dc095bb23d1" + }, + { + "name": "ons.age.60_70@S12000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa3b0b324eac0dc4a72a3f32" + }, + { + "name": "ons.age.60_70@S12000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36672.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ee5f2c82bf695d72e372618" + }, + { + "name": "ons.age.60_70@S12000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d53257c09f3f7b7301e93a21" + }, + { + "name": "ons.age.60_70@S12000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 53377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3cdb1f570f020e5d88ed363" + }, + { + "name": "ons.age.60_70@S12000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43162261288c9ef48e734ee2" + }, + { + "name": "ons.age.60_70@S12000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9296d8d5c2271a8ab01b30" + }, + { + "name": "ons.age.60_70@S12000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63ad6c2cdf10ec88c1adc5ac" + }, + { + "name": "ons.age.60_70@S12000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be5a04208ca7b26ee8b0792f" + }, + { + "name": "ons.age.60_70@S12000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d4f50e5a528e530da2b3a88" + }, + { + "name": "ons.age.60_70@S12000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15596.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d141837e5a0152f4e3a684a" + }, + { + "name": "ons.age.60_70@S12000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 50995.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b08a9080632a61e53f4ed7f1" + }, + { + "name": "ons.age.60_70@S12000048", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22494.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e89127a0f4cf39c081ea6e1f" + }, + { + "name": "ons.age.60_70@S12000049", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69110.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6a1ba2082d141a249d64f22" + }, + { + "name": "ons.age.60_70@S12000050", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44040.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_31614eae45ae4d614d8ce5ca" + }, + { + "name": "ons.age.60_70@W06000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10486.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5ba3baf7d4470f8b89ae765" + }, + { + "name": "ons.age.60_70@W06000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16295.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cda022d44feb7d3afe359c59" + }, + { + "name": "ons.age.60_70@W06000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0a920f3807d385c3adddeff" + }, + { + "name": "ons.age.60_70@W06000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_637ebf1e4c136a3b7afa3aac" + }, + { + "name": "ons.age.60_70@W06000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eedf17cbe0a96e812995ec8a" + }, + { + "name": "ons.age.60_70@W06000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85e2a282f5f4020e2563aa4e" + }, + { + "name": "ons.age.60_70@W06000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e9137b7c80a316522ec6a02" + }, + { + "name": "ons.age.60_70@W06000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94b2d2021d8457593dff8a21" + }, + { + "name": "ons.age.60_70@W06000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0d75145340cdb3f04563570" + }, + { + "name": "ons.age.60_70@W06000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8833b1b1b9c4da51257e745" + }, + { + "name": "ons.age.60_70@W06000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d30f17af90c67e5419774a59" + }, + { + "name": "ons.age.60_70@W06000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af842f5190ca532d4b659050" + }, + { + "name": "ons.age.60_70@W06000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17708.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_844cfd4e18caf58c95ab8c10" + }, + { + "name": "ons.age.60_70@W06000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_895a7d226238bd351bd5cb78" + }, + { + "name": "ons.age.60_70@W06000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28955.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e828f60b34a08e9b11906f" + }, + { + "name": "ons.age.60_70@W06000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0f0733ff57e9ab1876f8d4b" + }, + { + "name": "ons.age.60_70@W06000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6008cad35379ecc7d55e95e" + }, + { + "name": "ons.age.60_70@W06000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8dd9d72da99d9a038e5adcf" + }, + { + "name": "ons.age.60_70@W06000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0de865e2153b60f2e01cb44" + }, + { + "name": "ons.age.60_70@W06000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cc16b865ccecbb4d6935b52" + }, + { + "name": "ons.age.60_70@W06000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfcd9cd1122a328d3b30e7c7" + }, + { + "name": "ons.age.60_70@W06000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe6b25a4c7234ed1f835b418" + } + ] + } + } + }, + "ons.age.70_80": { + "status": "active", + "geography_levels": { + "constituency": { + "status": "active", + "candidate_count": 650, + "candidates": [ + { + "name": "ons.age.70_80@E14001063", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9326.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de2f29a819fb6244bec0cfa9" + }, + { + "name": "ons.age.70_80@E14001064", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf8974418e1dc49eab0b533e" + }, + { + "name": "ons.age.70_80@E14001065", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f57bd831c712e2ec335cc657" + }, + { + "name": "ons.age.70_80@E14001066", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9940.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a47037936b15dff8f793f08" + }, + { + "name": "ons.age.70_80@E14001067", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3fc003dd8e2392f59e1747e" + }, + { + "name": "ons.age.70_80@E14001068", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9222.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc86e41a3fa673a65921168e" + }, + { + "name": "ons.age.70_80@E14001069", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9152.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abb125225c540bab1b005011" + }, + { + "name": "ons.age.70_80@E14001070", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90a2ccb243b526c0a93cfd03" + }, + { + "name": "ons.age.70_80@E14001071", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8381.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab26ce2db46f2df543844883" + }, + { + "name": "ons.age.70_80@E14001072", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9710.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4628eb02c52aab77205d4b6" + }, + { + "name": "ons.age.70_80@E14001073", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d5fb46e2ebfe213457c5388" + }, + { + "name": "ons.age.70_80@E14001074", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9687.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e083eba7c5aa2bbde8599dab" + }, + { + "name": "ons.age.70_80@E14001075", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9382.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_835e2a7830a74f53903070a8" + }, + { + "name": "ons.age.70_80@E14001076", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10890.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52a887e11eab1badda3e75bc" + }, + { + "name": "ons.age.70_80@E14001077", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8233.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_91b99d8b01a05a5260d457ab" + }, + { + "name": "ons.age.70_80@E14001078", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d340446fbc8eb013688e7ad9" + }, + { + "name": "ons.age.70_80@E14001079", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11097.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2c81d7d2d69f8354a29d63c" + }, + { + "name": "ons.age.70_80@E14001080", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8141.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb1663f158ebef091b814cb8" + }, + { + "name": "ons.age.70_80@E14001081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4416.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a96449d659a1b4cf870ec97" + }, + { + "name": "ons.age.70_80@E14001082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_12fd781dd7f66efb23181913" + }, + { + "name": "ons.age.70_80@E14001083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7805c646795bc9f425d75df3" + }, + { + "name": "ons.age.70_80@E14001084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfa8286874ad1e64d04245d2" + }, + { + "name": "ons.age.70_80@E14001085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cea626062036a9748b71596" + }, + { + "name": "ons.age.70_80@E14001086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3505.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2dedd96b9a1d10ab3914381" + }, + { + "name": "ons.age.70_80@E14001087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37593682e0dd8efa23d91c83" + }, + { + "name": "ons.age.70_80@E14001088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13838.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf643a93c2ef81a9041f5a28" + }, + { + "name": "ons.age.70_80@E14001089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e785af97f4307eb5313d628" + }, + { + "name": "ons.age.70_80@E14001090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a10f2a8bfb7e5bd89f95dccc" + }, + { + "name": "ons.age.70_80@E14001091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8f48bb596813b28d40d5a7f" + }, + { + "name": "ons.age.70_80@E14001092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baf773a9db7ff8cfeaab48b5" + }, + { + "name": "ons.age.70_80@E14001093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7604.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d2df7cc86043e035d60b416" + }, + { + "name": "ons.age.70_80@E14001094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6327.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6d24fd090295bd4caa20095" + }, + { + "name": "ons.age.70_80@E14001095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6956.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e75d09bb7b9de13d098e18c8" + }, + { + "name": "ons.age.70_80@E14001096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3665.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5e0d77ed717dc4189882464" + }, + { + "name": "ons.age.70_80@E14001097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6626b201b559718ec351c939" + }, + { + "name": "ons.age.70_80@E14001098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5809.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a6af2849b5b2b46493ae26" + }, + { + "name": "ons.age.70_80@E14001099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6792.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc70a29f4ef1f5ceb30c7140" + }, + { + "name": "ons.age.70_80@E14001100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea55a63ab6dc1686655542cd" + }, + { + "name": "ons.age.70_80@E14001101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68b40d539009d4f83f816794" + }, + { + "name": "ons.age.70_80@E14001102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6936.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a297d7b56f30d4af6a668e8" + }, + { + "name": "ons.age.70_80@E14001103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_359887c30fae34b483aecdca" + }, + { + "name": "ons.age.70_80@E14001104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12222.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1babbdea42fddd11149ee38" + }, + { + "name": "ons.age.70_80@E14001105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_57494857de617e78a54fd9a8" + }, + { + "name": "ons.age.70_80@E14001106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9533.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_911f2ac87e9c669ad0c74e0f" + }, + { + "name": "ons.age.70_80@E14001107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10873.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5bd05696868b2e030cda891" + }, + { + "name": "ons.age.70_80@E14001108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e7a5d19986bf50c248f2b1b" + }, + { + "name": "ons.age.70_80@E14001109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f843886da7b344baee58d562" + }, + { + "name": "ons.age.70_80@E14001110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3cf133bc1f3257394bc14ea" + }, + { + "name": "ons.age.70_80@E14001111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7731.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd8f7c8ba5727086735ee1b1" + }, + { + "name": "ons.age.70_80@E14001112", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7636cf17c2c9e8941a110da2" + }, + { + "name": "ons.age.70_80@E14001113", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8225.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_96e4d9b1cc572fc71f6739e7" + }, + { + "name": "ons.age.70_80@E14001114", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ead0588593d577b69a7a11d" + }, + { + "name": "ons.age.70_80@E14001115", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec44ba39a42ac6267306310d" + }, + { + "name": "ons.age.70_80@E14001116", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8777.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb380c8ae6362919c8398eb1" + }, + { + "name": "ons.age.70_80@E14001117", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1a9f0e09da6c11c36fbb02b" + }, + { + "name": "ons.age.70_80@E14001118", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbf8412320854d22f51fbbc2" + }, + { + "name": "ons.age.70_80@E14001119", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2fb493f93361e14656bad65" + }, + { + "name": "ons.age.70_80@E14001120", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b03fd8c3be10d08493514c96" + }, + { + "name": "ons.age.70_80@E14001121", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10712.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9bec01d34e713e2693137e0" + }, + { + "name": "ons.age.70_80@E14001122", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6791.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa0ff052da2111030565678f" + }, + { + "name": "ons.age.70_80@E14001123", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7541.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_347c490f6b7558f26553a734" + }, + { + "name": "ons.age.70_80@E14001124", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eaf878cfb10b0e5ee82b530" + }, + { + "name": "ons.age.70_80@E14001125", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9299.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c7f4b31c07a0fead253501" + }, + { + "name": "ons.age.70_80@E14001126", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10991.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ac30e4978170d855c92e8bb" + }, + { + "name": "ons.age.70_80@E14001127", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14006.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_79a097ba7fe159f2b3fa631b" + }, + { + "name": "ons.age.70_80@E14001128", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99e13166a3e887aff16b22db" + }, + { + "name": "ons.age.70_80@E14001129", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7924.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed8f48cf3e2b90d923d8b273" + }, + { + "name": "ons.age.70_80@E14001130", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d113ef2bff059a10d146380d" + }, + { + "name": "ons.age.70_80@E14001131", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3695.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75fb8d5c4088df87ea2c5ad6" + }, + { + "name": "ons.age.70_80@E14001132", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef33cdb786f50e7b11547378" + }, + { + "name": "ons.age.70_80@E14001133", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6886.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c6f4ce49eb5cd2130338535" + }, + { + "name": "ons.age.70_80@E14001134", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aad503e9b5f36f87813e2432" + }, + { + "name": "ons.age.70_80@E14001135", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6436.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cc4e3a4f93e03b7b427cc79" + }, + { + "name": "ons.age.70_80@E14001136", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12470.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33f0ae071850f6f621901bf5" + }, + { + "name": "ons.age.70_80@E14001137", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7cf8dcbe07dd159df05358b" + }, + { + "name": "ons.age.70_80@E14001138", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10545.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_889d416aab1bfd64474bdee1" + }, + { + "name": "ons.age.70_80@E14001139", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f51ce1c422eb9fd81cb762d3" + }, + { + "name": "ons.age.70_80@E14001140", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_893974b7927f40eeb62ae93f" + }, + { + "name": "ons.age.70_80@E14001141", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8950.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c01ddb92f6d613ed05d35711" + }, + { + "name": "ons.age.70_80@E14001142", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9684.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d85a7082522768b784f30a7" + }, + { + "name": "ons.age.70_80@E14001143", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9741.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87281e9b0f075fd2992683e4" + }, + { + "name": "ons.age.70_80@E14001144", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e73f31399c2ac692c9621d5e" + }, + { + "name": "ons.age.70_80@E14001145", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_20b9006f48bfda538adde8b4" + }, + { + "name": "ons.age.70_80@E14001146", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1fccf5b5aa972b069125ed6" + }, + { + "name": "ons.age.70_80@E14001147", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5504928d020e8f13d9b3716" + }, + { + "name": "ons.age.70_80@E14001148", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11341.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2b2eddee98b30c1345f79c0" + }, + { + "name": "ons.age.70_80@E14001149", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba2137f10790dd1793ad8da" + }, + { + "name": "ons.age.70_80@E14001150", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9557.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a09a1abfa1b2edc6009e6c4" + }, + { + "name": "ons.age.70_80@E14001151", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_41b88c150752d31bad074215" + }, + { + "name": "ons.age.70_80@E14001152", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc195e1c4d1a01e91ff34a92" + }, + { + "name": "ons.age.70_80@E14001153", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b40e8a0f4bc5a2391dc46dc" + }, + { + "name": "ons.age.70_80@E14001154", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89fa5cf079c2ec8f5c37dfb8" + }, + { + "name": "ons.age.70_80@E14001155", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6ee41fe6d153b90d0554c82" + }, + { + "name": "ons.age.70_80@E14001156", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac055d498d374213d6036a34" + }, + { + "name": "ons.age.70_80@E14001157", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4f01468d0eaacd583346639" + }, + { + "name": "ons.age.70_80@E14001158", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9857.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4144abdb20d8d9dc10a6acb8" + }, + { + "name": "ons.age.70_80@E14001159", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e01499c956fbc2f14e6325e2" + }, + { + "name": "ons.age.70_80@E14001160", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a96a986ae270b95069dc58d" + }, + { + "name": "ons.age.70_80@E14001161", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_24cd2a18bbb6cb3ed4913b3d" + }, + { + "name": "ons.age.70_80@E14001162", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5715e5b8e38157992cb97d91" + }, + { + "name": "ons.age.70_80@E14001163", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9391.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_355f758f5630f3200553d2b8" + }, + { + "name": "ons.age.70_80@E14001164", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11349.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca8e7bbe496ed74f7ac646ae" + }, + { + "name": "ons.age.70_80@E14001165", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_82d0aad8b5a881c591545cb0" + }, + { + "name": "ons.age.70_80@E14001166", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13257.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_725e793426a3a55f7fe8fc37" + }, + { + "name": "ons.age.70_80@E14001167", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7824.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d640811b47e81e58d019fe75" + }, + { + "name": "ons.age.70_80@E14001168", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9510.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_58f789f4c8497429d0eecaba" + }, + { + "name": "ons.age.70_80@E14001169", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d42e1526c03462b1bf425b04" + }, + { + "name": "ons.age.70_80@E14001170", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea199933b83e481da61b477b" + }, + { + "name": "ons.age.70_80@E14001171", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_907e8fa1b1185d62eed147d8" + }, + { + "name": "ons.age.70_80@E14001172", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7472.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b263e249683bbca5a570048" + }, + { + "name": "ons.age.70_80@E14001173", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9751.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75c2aa52ce85aaddf3d8fe70" + }, + { + "name": "ons.age.70_80@E14001174", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ce86ab6633d518038a6ceed" + }, + { + "name": "ons.age.70_80@E14001175", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa43ea309b94e1b78fc4d4f4" + }, + { + "name": "ons.age.70_80@E14001176", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7663.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7cb781cf6d8e3568a20abaf" + }, + { + "name": "ons.age.70_80@E14001177", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9576.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2aec90e95afedda3b6fdd2ca" + }, + { + "name": "ons.age.70_80@E14001178", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ed9397b0c867159fbcac69e" + }, + { + "name": "ons.age.70_80@E14001179", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccb65cd6f078c9f5942ebbbb" + }, + { + "name": "ons.age.70_80@E14001180", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1ce2c04736da4a22a2c45d5" + }, + { + "name": "ons.age.70_80@E14001181", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d91265b5baf4170d434ce1f7" + }, + { + "name": "ons.age.70_80@E14001182", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7205.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7abbb2a8f4425d9743198ab" + }, + { + "name": "ons.age.70_80@E14001183", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11089.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d4d4f916867c8f950eb0de5" + }, + { + "name": "ons.age.70_80@E14001184", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e4159eb1bdfdccc8fa0a292" + }, + { + "name": "ons.age.70_80@E14001185", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9958.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_793f12fa5ce6ea859fa5bc2e" + }, + { + "name": "ons.age.70_80@E14001186", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7798.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba5dbee4a9e4a4884b7f8c49" + }, + { + "name": "ons.age.70_80@E14001187", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8388.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_baeb2915a34352d6b6a2e96c" + }, + { + "name": "ons.age.70_80@E14001188", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73a2876ea795d940122adb92" + }, + { + "name": "ons.age.70_80@E14001189", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6594.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4110f1999f8a8c6d9384607" + }, + { + "name": "ons.age.70_80@E14001190", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ff05ab7be6e7e3126af665a" + }, + { + "name": "ons.age.70_80@E14001191", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb436c26233375286aff8087" + }, + { + "name": "ons.age.70_80@E14001192", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11271.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95fbf1cf1f3e6dff41c49bb0" + }, + { + "name": "ons.age.70_80@E14001193", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8276.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b0a4995524bf1a94997f5e" + }, + { + "name": "ons.age.70_80@E14001194", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7354.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f4581e660c2994a5d33f445" + }, + { + "name": "ons.age.70_80@E14001195", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_67209b911d05676eb7d85f0d" + }, + { + "name": "ons.age.70_80@E14001196", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6558.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb85078ff762332fbd22ebe7" + }, + { + "name": "ons.age.70_80@E14001197", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d02877774ab88c7bf2953ab6" + }, + { + "name": "ons.age.70_80@E14001198", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0dd66d6a17efc9c7c049384" + }, + { + "name": "ons.age.70_80@E14001199", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d88e4748435189c760b0ff0e" + }, + { + "name": "ons.age.70_80@E14001200", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9204.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db0da101bf41fe26eecf0b2e" + }, + { + "name": "ons.age.70_80@E14001201", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1d5f389cec3d46897ac85db" + }, + { + "name": "ons.age.70_80@E14001202", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11908.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4664786c57977d0b3ad23ef3" + }, + { + "name": "ons.age.70_80@E14001203", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12109.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2074e78639218c8df0bf366c" + }, + { + "name": "ons.age.70_80@E14001204", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7935.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_980252cd87b7a3c46bb62fb2" + }, + { + "name": "ons.age.70_80@E14001205", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4972.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93e2218d56adbe4cb217d310" + }, + { + "name": "ons.age.70_80@E14001206", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7391f78a8746410244a82fcb" + }, + { + "name": "ons.age.70_80@E14001207", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7146.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b739eeb3dcfc2d1b51258e98" + }, + { + "name": "ons.age.70_80@E14001208", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fc3f6b43a394fd2a2a69b72" + }, + { + "name": "ons.age.70_80@E14001209", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e77894d456a191e67f809389" + }, + { + "name": "ons.age.70_80@E14001210", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_edfa1d9e2e1f358788e5be9e" + }, + { + "name": "ons.age.70_80@E14001211", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_04736337a4dee00f0d27ec6f" + }, + { + "name": "ons.age.70_80@E14001212", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f29b612f7d3ec9776c3bf3cc" + }, + { + "name": "ons.age.70_80@E14001213", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f886f4dc3398634791d266aa" + }, + { + "name": "ons.age.70_80@E14001214", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10747.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a365202d80fe0114a0eaecf1" + }, + { + "name": "ons.age.70_80@E14001215", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef6631567543d3588e04bd9b" + }, + { + "name": "ons.age.70_80@E14001216", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11264.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dab2152a61ac88f80b4a192f" + }, + { + "name": "ons.age.70_80@E14001217", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e36a4a72c75374f2a8710ff9" + }, + { + "name": "ons.age.70_80@E14001218", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10492.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3526210f595f4a0b8dde59d" + }, + { + "name": "ons.age.70_80@E14001219", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11771.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d661815e59aecb78b8722803" + }, + { + "name": "ons.age.70_80@E14001220", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9018.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6607e0cf175230e3ca76acc" + }, + { + "name": "ons.age.70_80@E14001221", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_15bc196dc37ee7ca99fd83a3" + }, + { + "name": "ons.age.70_80@E14001222", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c420a477f878ac1216afe0" + }, + { + "name": "ons.age.70_80@E14001223", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7811.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e0f7d1b1b708cac7483410b" + }, + { + "name": "ons.age.70_80@E14001224", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10822.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfda1acde8870bca62454e6f" + }, + { + "name": "ons.age.70_80@E14001225", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ef1a68be0f40cf1e0b4916c" + }, + { + "name": "ons.age.70_80@E14001226", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_29def0eaa361d8e2e5b7daf5" + }, + { + "name": "ons.age.70_80@E14001227", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_38abb8b409da7fdc1d4d5b08" + }, + { + "name": "ons.age.70_80@E14001228", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e8e745a34350ac480f5f75e" + }, + { + "name": "ons.age.70_80@E14001229", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64cfe7d768e8d78f468a143" + }, + { + "name": "ons.age.70_80@E14001230", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8229.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0e454e3aa5c71419a41c59b" + }, + { + "name": "ons.age.70_80@E14001231", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9da05f026b8d6ae8347310ea" + }, + { + "name": "ons.age.70_80@E14001232", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b80208044c5e5d9391e7c79" + }, + { + "name": "ons.age.70_80@E14001233", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11332.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf0a135c6c353f22aa2e454d" + }, + { + "name": "ons.age.70_80@E14001234", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3927c18ff966b456750b68be" + }, + { + "name": "ons.age.70_80@E14001235", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebfdae81630ddfbcbbfc26a9" + }, + { + "name": "ons.age.70_80@E14001236", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7121.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_963722674d15088338ba02d9" + }, + { + "name": "ons.age.70_80@E14001237", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6951.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb509c680a040e5a75de99ce" + }, + { + "name": "ons.age.70_80@E14001238", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bef95ac33e480d5cf86a0e9e" + }, + { + "name": "ons.age.70_80@E14001239", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_901da92cef5e93fc7e66ccb0" + }, + { + "name": "ons.age.70_80@E14001240", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e9ade2c1ce5882173284afe" + }, + { + "name": "ons.age.70_80@E14001241", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d36ba90bfea7da05f0cd8a7e" + }, + { + "name": "ons.age.70_80@E14001242", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d78e45c414bf85b6d949fdfc" + }, + { + "name": "ons.age.70_80@E14001243", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_868de3c9e7d6ce5758a44d77" + }, + { + "name": "ons.age.70_80@E14001244", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be6c76fd87084588c96a2214" + }, + { + "name": "ons.age.70_80@E14001245", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f32ed7737f7d53d0d9bf361c" + }, + { + "name": "ons.age.70_80@E14001246", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_370c0af9950ff3b74f841a03" + }, + { + "name": "ons.age.70_80@E14001247", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12129.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e77508be52e4b0d5152af36" + }, + { + "name": "ons.age.70_80@E14001248", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc369a017879139c3c2094ae" + }, + { + "name": "ons.age.70_80@E14001249", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9866.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe86d484aadcf084e137bbd" + }, + { + "name": "ons.age.70_80@E14001250", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e0a6fedc6267c0f01ddaec0" + }, + { + "name": "ons.age.70_80@E14001251", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b294b4fab831ea56e4f61702" + }, + { + "name": "ons.age.70_80@E14001252", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72626335e2464032b93f9f0" + }, + { + "name": "ons.age.70_80@E14001253", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a48f9114ea41fa2ec0e3a977" + }, + { + "name": "ons.age.70_80@E14001254", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ffc457d92a9ac1044c38abb" + }, + { + "name": "ons.age.70_80@E14001255", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9711.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87cec66509b66cb44a2d3f1f" + }, + { + "name": "ons.age.70_80@E14001256", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11783.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c190b50a2fe34f2a051122" + }, + { + "name": "ons.age.70_80@E14001257", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb6a55bdb306c129f9fc7994" + }, + { + "name": "ons.age.70_80@E14001258", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7635.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c813f39818f5aafa2629e65" + }, + { + "name": "ons.age.70_80@E14001259", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4549.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2a83ce41db9bf0c60244544" + }, + { + "name": "ons.age.70_80@E14001260", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4026.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c32bb40d8bbecb0b0a243f" + }, + { + "name": "ons.age.70_80@E14001261", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8606.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba48ea60d396f2aeb7fc4081" + }, + { + "name": "ons.age.70_80@E14001262", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f14177e04709171c45be62d" + }, + { + "name": "ons.age.70_80@E14001263", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9851.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_827d58009cbd00a204271a88" + }, + { + "name": "ons.age.70_80@E14001264", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca7718e5dcfa163e600af4a7" + }, + { + "name": "ons.age.70_80@E14001265", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7332.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb9f252e0631269ecefdac0a" + }, + { + "name": "ons.age.70_80@E14001266", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02098f1f1a8e7568164e9d9" + }, + { + "name": "ons.age.70_80@E14001267", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7966.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce31c51ff315cce0fc6e3eb" + }, + { + "name": "ons.age.70_80@E14001268", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89155191ca7ea839d1ddb9cb" + }, + { + "name": "ons.age.70_80@E14001269", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce134ebaeab1396bc3b66dab" + }, + { + "name": "ons.age.70_80@E14001270", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8968.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5585f9f9150511297e8e40a3" + }, + { + "name": "ons.age.70_80@E14001271", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7056.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d39891650017116237b334c" + }, + { + "name": "ons.age.70_80@E14001272", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9020.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c03390dbd31510940eecf3e" + }, + { + "name": "ons.age.70_80@E14001273", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11983.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6934d377c696ef052a1dab24" + }, + { + "name": "ons.age.70_80@E14001274", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57d4889a9a3b88afb25e17a" + }, + { + "name": "ons.age.70_80@E14001275", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da82782aca2de07e38295114" + }, + { + "name": "ons.age.70_80@E14001276", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e294ec3b4e227630ea3ea17" + }, + { + "name": "ons.age.70_80@E14001277", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cd61b5fb72f0d94b1fceb23" + }, + { + "name": "ons.age.70_80@E14001278", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93aec8c79ccdce047fb4bb4e" + }, + { + "name": "ons.age.70_80@E14001279", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7003.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d0af3f6590a7484ede0a0bc" + }, + { + "name": "ons.age.70_80@E14001280", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec9406d36cc8697010ac717a" + }, + { + "name": "ons.age.70_80@E14001281", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf4b79951bfdfc40b6f2bff6" + }, + { + "name": "ons.age.70_80@E14001282", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13392.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebcaeb182aeb0c5d62ac4964" + }, + { + "name": "ons.age.70_80@E14001283", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8616.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c2a85d4de8372743be28b48" + }, + { + "name": "ons.age.70_80@E14001284", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9068.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de19804ed544a8fb997c6223" + }, + { + "name": "ons.age.70_80@E14001285", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0bee3cf9262aa6a7af6db1c" + }, + { + "name": "ons.age.70_80@E14001286", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8729.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4f2d52ee42f501b25742106" + }, + { + "name": "ons.age.70_80@E14001287", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_403970cba9721c1ab5b1e84f" + }, + { + "name": "ons.age.70_80@E14001288", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10899.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a88e3da88990715764c3a6" + }, + { + "name": "ons.age.70_80@E14001289", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f01dabd29ab1d441c87e3f15" + }, + { + "name": "ons.age.70_80@E14001290", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5385.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b78a954e7dbb2661cc22d00" + }, + { + "name": "ons.age.70_80@E14001291", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13993.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aae952e7928a6bf600e6ed1" + }, + { + "name": "ons.age.70_80@E14001292", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9526.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_54461c4c2d8c74224dfa6969" + }, + { + "name": "ons.age.70_80@E14001293", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6308.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee15a2f79eadaa99ee0dea81" + }, + { + "name": "ons.age.70_80@E14001294", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9943.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbe851caf917ae1960f01073" + }, + { + "name": "ons.age.70_80@E14001295", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbfa7660bfcfc07c50268878" + }, + { + "name": "ons.age.70_80@E14001296", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fc79e78762ba1783dce19a5" + }, + { + "name": "ons.age.70_80@E14001297", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8481.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6556296913d77df98a1093f" + }, + { + "name": "ons.age.70_80@E14001298", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_987dde5e5856b61fd493fd62" + }, + { + "name": "ons.age.70_80@E14001299", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8251.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c614b457a6901dbbc4bbaea" + }, + { + "name": "ons.age.70_80@E14001300", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7131.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c047290d1dc0716bcad042cd" + }, + { + "name": "ons.age.70_80@E14001301", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2fc2a9e07dd688d49972553" + }, + { + "name": "ons.age.70_80@E14001302", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8485.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b20d8b53e821e00aa7f6e815" + }, + { + "name": "ons.age.70_80@E14001303", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6793a4c40719842f123d9d57" + }, + { + "name": "ons.age.70_80@E14001304", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9585.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea5eb059b8afd5819df2faf7" + }, + { + "name": "ons.age.70_80@E14001305", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d783ae9524d17802151a18de" + }, + { + "name": "ons.age.70_80@E14001306", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c0fcfc15300b0bd7ca5b1f3" + }, + { + "name": "ons.age.70_80@E14001307", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_770fbca850464305bb3c5893" + }, + { + "name": "ons.age.70_80@E14001308", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad2b855859696605bb29430" + }, + { + "name": "ons.age.70_80@E14001309", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_834a074108bce84101c8bdd8" + }, + { + "name": "ons.age.70_80@E14001310", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8253.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b56e3f1efc51f631638dfe" + }, + { + "name": "ons.age.70_80@E14001311", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10097.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa279f47a27a53bb7b9cef0" + }, + { + "name": "ons.age.70_80@E14001312", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7607.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc5502dbb632b54de1a3131" + }, + { + "name": "ons.age.70_80@E14001313", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8541.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d556dd794692ba7dfa55c3e" + }, + { + "name": "ons.age.70_80@E14001314", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6ea99345820ba7ee4db6e56" + }, + { + "name": "ons.age.70_80@E14001315", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efdef6ce3637fd25c7ea7745" + }, + { + "name": "ons.age.70_80@E14001316", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72f738408ee7ce0c9bdbf6f" + }, + { + "name": "ons.age.70_80@E14001317", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7480.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf48abeaf29243ad1e104136" + }, + { + "name": "ons.age.70_80@E14001318", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9858bafcf13e23be0f2adfb3" + }, + { + "name": "ons.age.70_80@E14001319", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3524.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce881d4249f46cbd839a1eae" + }, + { + "name": "ons.age.70_80@E14001320", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_247f9cd157a6b3a2418e1dc1" + }, + { + "name": "ons.age.70_80@E14001321", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7546.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_913c1a4d305304230a786b78" + }, + { + "name": "ons.age.70_80@E14001322", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2b440b1e5a7e4e4153b9247" + }, + { + "name": "ons.age.70_80@E14001323", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5898.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee77ba444305e2bea419d587" + }, + { + "name": "ons.age.70_80@E14001324", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_94c1ae7e1f9b696fdecda626" + }, + { + "name": "ons.age.70_80@E14001325", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3d0e1c051e547978d3eaffd" + }, + { + "name": "ons.age.70_80@E14001326", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ea918d46a3a93f4b87d3aae" + }, + { + "name": "ons.age.70_80@E14001327", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5658.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_49f6bcf47cbb5a9698802488" + }, + { + "name": "ons.age.70_80@E14001328", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6871.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_654794cdfc86e297de15e970" + }, + { + "name": "ons.age.70_80@E14001329", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10078.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_608b5e4733df76758a98b35e" + }, + { + "name": "ons.age.70_80@E14001330", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12810.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85f8770f5b74c79028d6a0f2" + }, + { + "name": "ons.age.70_80@E14001331", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cebce08b484823c6fa70ffd" + }, + { + "name": "ons.age.70_80@E14001332", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3906.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c26c74dc3c8700fbafd921d0" + }, + { + "name": "ons.age.70_80@E14001333", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7116fc166afc3b3556edf97" + }, + { + "name": "ons.age.70_80@E14001334", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bfbd142cfe44e6d8880627a" + }, + { + "name": "ons.age.70_80@E14001335", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa576630fc875841cb12511" + }, + { + "name": "ons.age.70_80@E14001336", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8499.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fddf85e3eccd9559191e55ba" + }, + { + "name": "ons.age.70_80@E14001337", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8887.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90958165bc5b7faed15b92d3" + }, + { + "name": "ons.age.70_80@E14001338", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b985bbbb124d8c2a823f7d86" + }, + { + "name": "ons.age.70_80@E14001339", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7664.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fd5bc1c4b1070d195ce266b" + }, + { + "name": "ons.age.70_80@E14001340", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3b5cb6756a9bd42d478908f" + }, + { + "name": "ons.age.70_80@E14001341", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b51ea21397bb268b29e501" + }, + { + "name": "ons.age.70_80@E14001342", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8572.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd4850f166d8027138514a9f" + }, + { + "name": "ons.age.70_80@E14001343", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14678.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77967ed2d792319bc9d2a3c" + }, + { + "name": "ons.age.70_80@E14001344", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_92ac74cf2702318515e0e775" + }, + { + "name": "ons.age.70_80@E14001345", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efd0b93b4cb4acd62774e2f1" + }, + { + "name": "ons.age.70_80@E14001346", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_537e19ae20c54079eec51bc9" + }, + { + "name": "ons.age.70_80@E14001347", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11226.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99c7507baf24f94fed8efa92" + }, + { + "name": "ons.age.70_80@E14001348", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9015.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5abb0e8ed46febdefdb992c" + }, + { + "name": "ons.age.70_80@E14001349", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8867.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_06def3b4e0088e83f5010b4d" + }, + { + "name": "ons.age.70_80@E14001350", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10593.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df5155f2f3124c63bdff9bc7" + }, + { + "name": "ons.age.70_80@E14001351", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12145.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f0c6473c03d022de5bbd7ca" + }, + { + "name": "ons.age.70_80@E14001352", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eece221d8983f44797b4923d" + }, + { + "name": "ons.age.70_80@E14001353", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_55d90670665f861258773593" + }, + { + "name": "ons.age.70_80@E14001354", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8db156bea1ef8bb41ab402c" + }, + { + "name": "ons.age.70_80@E14001355", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eee36413a0543a481e07375d" + }, + { + "name": "ons.age.70_80@E14001356", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11346.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_06c95c98952793320e965acb" + }, + { + "name": "ons.age.70_80@E14001357", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6b90b206277ccafdd81a2ed" + }, + { + "name": "ons.age.70_80@E14001358", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb98cd9939aa14e90c9a3e35" + }, + { + "name": "ons.age.70_80@E14001359", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b19868afcf2433d53ecb8a" + }, + { + "name": "ons.age.70_80@E14001360", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5cfe5c579fe45b13709a088" + }, + { + "name": "ons.age.70_80@E14001361", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6567d65c16b50832ad869d4" + }, + { + "name": "ons.age.70_80@E14001362", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd475a9fd7db4422c36c0d26" + }, + { + "name": "ons.age.70_80@E14001363", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12559.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d462147f0074d18a3e7ce3a" + }, + { + "name": "ons.age.70_80@E14001364", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10117.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5f66bdad621ee9e1c48083c" + }, + { + "name": "ons.age.70_80@E14001365", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12516.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_83dc561072d5a4dba84b78e2" + }, + { + "name": "ons.age.70_80@E14001366", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9297.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cb8386d213b031395120fe1" + }, + { + "name": "ons.age.70_80@E14001367", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7772.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e62d99222424bf6d877f7395" + }, + { + "name": "ons.age.70_80@E14001368", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10617.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdffac6ca4f8f448a3d40714" + }, + { + "name": "ons.age.70_80@E14001369", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bf4d2edb8669a3432c81e47" + }, + { + "name": "ons.age.70_80@E14001370", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9069.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8826277385dd66b43f893cb9" + }, + { + "name": "ons.age.70_80@E14001371", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6817.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f81f1eb76611d2dfc9391b63" + }, + { + "name": "ons.age.70_80@E14001372", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd7bb5e7740e8cf8f6887ecc" + }, + { + "name": "ons.age.70_80@E14001373", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfdf521d731052582714bace" + }, + { + "name": "ons.age.70_80@E14001374", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_477f0fc5880270e9e0da5101" + }, + { + "name": "ons.age.70_80@E14001375", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_511a8383644a8ad140e8daac" + }, + { + "name": "ons.age.70_80@E14001376", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9128.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f097f1d3e71eee0d7cc1eba2" + }, + { + "name": "ons.age.70_80@E14001377", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d526f73c0cd57201dc49b502" + }, + { + "name": "ons.age.70_80@E14001378", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec03885b3756e8dcc44656f2" + }, + { + "name": "ons.age.70_80@E14001379", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd4f539aaae0ad454d49abdf" + }, + { + "name": "ons.age.70_80@E14001380", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbb8d413b75cc98d7535f4fe" + }, + { + "name": "ons.age.70_80@E14001381", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12400.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1970554e4cd7bd2de34050" + }, + { + "name": "ons.age.70_80@E14001382", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9af7991da4fbc5deb7c2fa86" + }, + { + "name": "ons.age.70_80@E14001383", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9780.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d816110c4614f6e01b112ded" + }, + { + "name": "ons.age.70_80@E14001384", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea61114082267d9fa72fbd60" + }, + { + "name": "ons.age.70_80@E14001385", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12881.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb55aa3b17f149a556f2d2a0" + }, + { + "name": "ons.age.70_80@E14001386", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10959.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f9a0ec696473a63eb6f6cfb" + }, + { + "name": "ons.age.70_80@E14001387", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12404.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eee34d859e2b77955ff369a9" + }, + { + "name": "ons.age.70_80@E14001388", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12429.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab89385d0830111b3a44bcd" + }, + { + "name": "ons.age.70_80@E14001389", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10383.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff84dadd43ebcbab3324c7c" + }, + { + "name": "ons.age.70_80@E14001390", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11483.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b977288be286c3dedbee2e" + }, + { + "name": "ons.age.70_80@E14001391", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11153.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e5c4700548fc32f835597a1" + }, + { + "name": "ons.age.70_80@E14001392", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c26843f682b8eeec3a44a583" + }, + { + "name": "ons.age.70_80@E14001393", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10162.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59d036aa947c4a22a0da54ab" + }, + { + "name": "ons.age.70_80@E14001394", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10064.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9138ef80adeeb5f867a0663b" + }, + { + "name": "ons.age.70_80@E14001395", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12840.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faf02a5dd51aaede0cf4f59e" + }, + { + "name": "ons.age.70_80@E14001396", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80886edc8a4b032eb3ed2087" + }, + { + "name": "ons.age.70_80@E14001397", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13465.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9c4b0c3ec53cf3eb914001f" + }, + { + "name": "ons.age.70_80@E14001398", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12f0c3b0693966d668ff367" + }, + { + "name": "ons.age.70_80@E14001399", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11439.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_909bbddaf3e2424448c0e963" + }, + { + "name": "ons.age.70_80@E14001400", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a28cf5f04416b831aadb2505" + }, + { + "name": "ons.age.70_80@E14001401", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9206cadc561ca1cf5b4c047" + }, + { + "name": "ons.age.70_80@E14001402", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47abbd9440446727e1d783a" + }, + { + "name": "ons.age.70_80@E14001403", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9052.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f1b5e73d0052f1632a9aeb1" + }, + { + "name": "ons.age.70_80@E14001404", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2759ea65b7f4b546d802988" + }, + { + "name": "ons.age.70_80@E14001405", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b119eb1caa8d70ff72505bf0" + }, + { + "name": "ons.age.70_80@E14001406", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaea3ed507936b9bf6b93fca" + }, + { + "name": "ons.age.70_80@E14001407", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca766f1964c4dc4096267756" + }, + { + "name": "ons.age.70_80@E14001408", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e259374307554771332ce919" + }, + { + "name": "ons.age.70_80@E14001409", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac2b6ea95624980a59d288c1" + }, + { + "name": "ons.age.70_80@E14001410", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5106.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68b479eb1613cdb63ae1619c" + }, + { + "name": "ons.age.70_80@E14001411", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b6a5aab0887230a38edfc78" + }, + { + "name": "ons.age.70_80@E14001412", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6123.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98fd71b02bd4a82a0293e689" + }, + { + "name": "ons.age.70_80@E14001413", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_40f24b9dc1141be92f29f4ee" + }, + { + "name": "ons.age.70_80@E14001414", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb7f41d0b9cb8e5771b8cac8" + }, + { + "name": "ons.age.70_80@E14001415", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8931.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0415e4169492d72a34b30c" + }, + { + "name": "ons.age.70_80@E14001416", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7649.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e485324febdfe6bb0e016914" + }, + { + "name": "ons.age.70_80@E14001417", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c78c6f05f63c8d074deb6371" + }, + { + "name": "ons.age.70_80@E14001418", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10739.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9810d9e91e0ea7fa0784cd53" + }, + { + "name": "ons.age.70_80@E14001419", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f120bf8c128c59f45917b6cd" + }, + { + "name": "ons.age.70_80@E14001420", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8511.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66f5d4e79976b9c2bcc01175" + }, + { + "name": "ons.age.70_80@E14001421", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b164590dc92d05913f7b1fd" + }, + { + "name": "ons.age.70_80@E14001422", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10653.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ae018ae4091c57adde98098" + }, + { + "name": "ons.age.70_80@E14001423", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10956.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8744f662d9137d33da974504" + }, + { + "name": "ons.age.70_80@E14001424", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12655.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a335995078c7edd0ac307cc" + }, + { + "name": "ons.age.70_80@E14001425", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8728.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0ab9ef8e5e2b450b98e682a" + }, + { + "name": "ons.age.70_80@E14001426", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9745.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cafcf89a13706674c1f31220" + }, + { + "name": "ons.age.70_80@E14001427", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7470.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f40ea7ba46ca59fefdbb4ac8" + }, + { + "name": "ons.age.70_80@E14001428", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c85c6fcdbbe7718dcef24c0c" + }, + { + "name": "ons.age.70_80@E14001429", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10570.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_668fb450a33371728c0e02c8" + }, + { + "name": "ons.age.70_80@E14001430", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3bb6bff7e4faf66c784c948" + }, + { + "name": "ons.age.70_80@E14001431", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6197d8fb90e7b474ff05bba2" + }, + { + "name": "ons.age.70_80@E14001432", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6522.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce1721dde47ff6ebe4d57507" + }, + { + "name": "ons.age.70_80@E14001433", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6977.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca7f015d64fc7bb91b459d04" + }, + { + "name": "ons.age.70_80@E14001434", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a2087d96935adb737f93ea" + }, + { + "name": "ons.age.70_80@E14001435", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d435d68c8ea4b059d7aa71af" + }, + { + "name": "ons.age.70_80@E14001436", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8915.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d74e7894b8b5dafde6ffbc14" + }, + { + "name": "ons.age.70_80@E14001437", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10570.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03160721cb63593f70a2529" + }, + { + "name": "ons.age.70_80@E14001438", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5992.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa97d178c9e2c1cd80d4743" + }, + { + "name": "ons.age.70_80@E14001439", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8641.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcf64748ce52ad70154e1f3e" + }, + { + "name": "ons.age.70_80@E14001440", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10143.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fc19e1f6c5f35cfb9194a7" + }, + { + "name": "ons.age.70_80@E14001441", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8418a6a54050e0b42031cdc0" + }, + { + "name": "ons.age.70_80@E14001442", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd55bedba0a672eea1bd1ff2" + }, + { + "name": "ons.age.70_80@E14001443", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da8579726c776a20c24a289e" + }, + { + "name": "ons.age.70_80@E14001444", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea516888b51db79cea12522d" + }, + { + "name": "ons.age.70_80@E14001445", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_46f2831749629c3057bdd394" + }, + { + "name": "ons.age.70_80@E14001446", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf18ccca9d9758f9ae81bfb1" + }, + { + "name": "ons.age.70_80@E14001447", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6fcbcf355ed53fe0c488ec" + }, + { + "name": "ons.age.70_80@E14001448", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd7233977ddf146e89171469" + }, + { + "name": "ons.age.70_80@E14001449", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10969.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de81ec063b42b66e4e9bf692" + }, + { + "name": "ons.age.70_80@E14001450", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c81f1faf11710cd6a02b80b7" + }, + { + "name": "ons.age.70_80@E14001451", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9986.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_19686c525166f87bb6bd37a0" + }, + { + "name": "ons.age.70_80@E14001452", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8914.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6fffb76c4d456a5c85e6273" + }, + { + "name": "ons.age.70_80@E14001453", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9362.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2996778d1f787a4d83ce23e" + }, + { + "name": "ons.age.70_80@E14001454", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9241.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06a7c03412e27ea41b5c97d" + }, + { + "name": "ons.age.70_80@E14001455", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9985.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1c416e48098357e6324e3b9" + }, + { + "name": "ons.age.70_80@E14001456", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8882.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f441af1f17fc6c0a75914aa" + }, + { + "name": "ons.age.70_80@E14001457", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df39c6ffe9e5ba40f6be6939" + }, + { + "name": "ons.age.70_80@E14001458", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b723e2455374511c193af699" + }, + { + "name": "ons.age.70_80@E14001459", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2d83452070e7b6bc0edbe5b" + }, + { + "name": "ons.age.70_80@E14001460", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3ef2ebd18822b003b261572" + }, + { + "name": "ons.age.70_80@E14001461", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12761.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7b4ce22fc44f0427b07be7" + }, + { + "name": "ons.age.70_80@E14001462", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10207.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74c70d7d8517de3b832e895c" + }, + { + "name": "ons.age.70_80@E14001463", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cdb12af9b16298928bc8280" + }, + { + "name": "ons.age.70_80@E14001464", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef77ca6eec1e571aa053aa6f" + }, + { + "name": "ons.age.70_80@E14001465", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9774.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcb654b991bf9a7444348894" + }, + { + "name": "ons.age.70_80@E14001466", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2118eae22d21860f994831de" + }, + { + "name": "ons.age.70_80@E14001467", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_caf86925253b09e2cef0622e" + }, + { + "name": "ons.age.70_80@E14001468", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a968f82e3441bf9e0288aa2b" + }, + { + "name": "ons.age.70_80@E14001469", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8266.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c364f41a261bd04ddec2b2a" + }, + { + "name": "ons.age.70_80@E14001470", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b3a2afdc97bb591086f0660" + }, + { + "name": "ons.age.70_80@E14001471", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_80786450fa0dfb1ebafd7084" + }, + { + "name": "ons.age.70_80@E14001472", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dddcec24815b5a7bc0327233" + }, + { + "name": "ons.age.70_80@E14001473", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11061.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e329ff5ec204578e8f5b3ed9" + }, + { + "name": "ons.age.70_80@E14001474", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff77b2a7cb54e18eae876aec" + }, + { + "name": "ons.age.70_80@E14001475", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13138.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb6e263ac47a9f324726e79" + }, + { + "name": "ons.age.70_80@E14001476", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e232e38f3862268233e9bf2e" + }, + { + "name": "ons.age.70_80@E14001477", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c23cc148bb56a19b83fdf99c" + }, + { + "name": "ons.age.70_80@E14001478", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6704.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b574975b257a79f3b7d3c1de" + }, + { + "name": "ons.age.70_80@E14001479", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a955253d94ca721d075cd88b" + }, + { + "name": "ons.age.70_80@E14001480", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_63ffae9e56b938f042c18ab0" + }, + { + "name": "ons.age.70_80@E14001481", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_808ebb50a4c751466ea1554c" + }, + { + "name": "ons.age.70_80@E14001482", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11316.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d37c95fc52c893cb0260d725" + }, + { + "name": "ons.age.70_80@E14001483", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9406.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca1aed6197b7464326f208e7" + }, + { + "name": "ons.age.70_80@E14001484", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13301.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_76dda62de22a32d1eb0af340" + }, + { + "name": "ons.age.70_80@E14001485", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0fcd9694fc78ee435bbfab1" + }, + { + "name": "ons.age.70_80@E14001486", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13042.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5690987c76262eb55584dfc" + }, + { + "name": "ons.age.70_80@E14001487", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6fee200c6cfa1bca802bc34" + }, + { + "name": "ons.age.70_80@E14001488", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10945.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b320411114bad77881b18e8a" + }, + { + "name": "ons.age.70_80@E14001489", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10203.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28338950667959b4eb2d146f" + }, + { + "name": "ons.age.70_80@E14001490", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10289.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d46ce12b960ebf5f9fe074b8" + }, + { + "name": "ons.age.70_80@E14001491", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10591.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f600ea468fdbb8c3bb7f6fb4" + }, + { + "name": "ons.age.70_80@E14001492", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d077a8bb1cdb7fdb92abad8f" + }, + { + "name": "ons.age.70_80@E14001493", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_985c17fde517ed2e102b5abb" + }, + { + "name": "ons.age.70_80@E14001494", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be73408fc80b829f48ec51f6" + }, + { + "name": "ons.age.70_80@E14001495", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11626.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8f4d323f53da0f72b37c834" + }, + { + "name": "ons.age.70_80@E14001496", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dd9dbdb24b17f78d456807" + }, + { + "name": "ons.age.70_80@E14001497", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12209.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d496c50ce5b4eaba3d0442d0" + }, + { + "name": "ons.age.70_80@E14001498", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_920a0b831eec5f09bf04d3c9" + }, + { + "name": "ons.age.70_80@E14001499", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7426.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff2b3afdfcb3b1073aff93b7" + }, + { + "name": "ons.age.70_80@E14001500", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6733.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda1dc1550c8bc4e3d923340" + }, + { + "name": "ons.age.70_80@E14001501", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8644.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5842f74a2500fc1aa73eed" + }, + { + "name": "ons.age.70_80@E14001502", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f45ba8b8b491582f296ade6b" + }, + { + "name": "ons.age.70_80@E14001503", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2764e235e4aa7ccac8ecc84" + }, + { + "name": "ons.age.70_80@E14001504", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ad2711ec3cdeac0fcb4600c" + }, + { + "name": "ons.age.70_80@E14001505", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8314.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c5ad4dcd2fd39d14d38fb14" + }, + { + "name": "ons.age.70_80@E14001506", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9463.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aab90cd8e1dd29dea5e98bc4" + }, + { + "name": "ons.age.70_80@E14001507", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdee3751b5ac5a86d5206806" + }, + { + "name": "ons.age.70_80@E14001508", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0467d2881692686ca074f2b" + }, + { + "name": "ons.age.70_80@E14001509", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10206.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6d5b63351c56f7a8eae3b30" + }, + { + "name": "ons.age.70_80@E14001510", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f07df385c01bcf61c3a9ae68" + }, + { + "name": "ons.age.70_80@E14001511", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12329.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc722791fc06e95b05cc6800" + }, + { + "name": "ons.age.70_80@E14001512", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9195.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6a3ba15ee860aabb5cdd8b6" + }, + { + "name": "ons.age.70_80@E14001513", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10023.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f67d8ae4e5e1c4403c4f145" + }, + { + "name": "ons.age.70_80@E14001514", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e46f92fcb48a02fbc9a3b9d5" + }, + { + "name": "ons.age.70_80@E14001515", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8611.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2e835f3c8fd7940f34090a5" + }, + { + "name": "ons.age.70_80@E14001516", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7440.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93df6d0481585f28b29b9317" + }, + { + "name": "ons.age.70_80@E14001517", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cde1a2bb0d9261bd472a0bc9" + }, + { + "name": "ons.age.70_80@E14001518", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8556.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5457d13c4648eb2d044efd3" + }, + { + "name": "ons.age.70_80@E14001519", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1c0e473e9731f245e97668d" + }, + { + "name": "ons.age.70_80@E14001520", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7997.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4fd2ac62f3e24406c8b2d38" + }, + { + "name": "ons.age.70_80@E14001521", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8982.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ebc5e78397d6b07ebf1910c" + }, + { + "name": "ons.age.70_80@E14001522", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0cd4a1762d306c677801279" + }, + { + "name": "ons.age.70_80@E14001523", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10948.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ac627fc347f2be080307231" + }, + { + "name": "ons.age.70_80@E14001524", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a7f57098a05c7a571b2d8fe" + }, + { + "name": "ons.age.70_80@E14001525", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3988.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7d5c6e3db773ded388ff865" + }, + { + "name": "ons.age.70_80@E14001526", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7124da9e388914a7fde144c1" + }, + { + "name": "ons.age.70_80@E14001527", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6231.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eedf5c0040bafcfa3cdef59e" + }, + { + "name": "ons.age.70_80@E14001528", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3640db7d4427e4153e4b82c" + }, + { + "name": "ons.age.70_80@E14001529", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10998.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ea6c6fd2ac25e804de936c" + }, + { + "name": "ons.age.70_80@E14001530", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13836.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d9a0a14c18f12edc6e8b4f8" + }, + { + "name": "ons.age.70_80@E14001531", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9012.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c463589b92d7a916a7762e8" + }, + { + "name": "ons.age.70_80@E14001532", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8879.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea99863bb8c4976e3e68902" + }, + { + "name": "ons.age.70_80@E14001533", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11563.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de7e1a16aec1f6be15447e0c" + }, + { + "name": "ons.age.70_80@E14001534", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7748.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6ef65cc87fedf3be0384f31" + }, + { + "name": "ons.age.70_80@E14001535", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10265.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d3e18ab30ec994b2e5c24f9" + }, + { + "name": "ons.age.70_80@E14001536", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0de80b11807bbf5308e0651" + }, + { + "name": "ons.age.70_80@E14001537", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8151.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fca9aae1eb1967c657ee1b3" + }, + { + "name": "ons.age.70_80@E14001538", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10149.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_925fc32c0baa06c269577db9" + }, + { + "name": "ons.age.70_80@E14001539", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11113.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fde57c6065d53ea66d038dd4" + }, + { + "name": "ons.age.70_80@E14001540", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11749.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9317611840fe8fe8f6945e4" + }, + { + "name": "ons.age.70_80@E14001541", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8389.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d520eb37a17395541ee9b8de" + }, + { + "name": "ons.age.70_80@E14001542", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10379.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3a99fa30155ce260ebd60ff" + }, + { + "name": "ons.age.70_80@E14001543", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_650816aa71221f5123ca8540" + }, + { + "name": "ons.age.70_80@E14001544", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e80987dcd1c7ec8e21c3f958" + }, + { + "name": "ons.age.70_80@E14001545", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10976.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cf82d1f9dae817cf14819ff" + }, + { + "name": "ons.age.70_80@E14001546", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6408.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_985eca6d4ffc5d0e8dce7ac4" + }, + { + "name": "ons.age.70_80@E14001547", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7964.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e334f87ead29c07279c8d32c" + }, + { + "name": "ons.age.70_80@E14001548", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12844.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d51d4c5be3dc5c2336a00d7e" + }, + { + "name": "ons.age.70_80@E14001549", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9759.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5105bb559db6528154bc9936" + }, + { + "name": "ons.age.70_80@E14001550", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4176655b85520caed549ba0" + }, + { + "name": "ons.age.70_80@E14001551", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a7880412f4d6da3c35c5109" + }, + { + "name": "ons.age.70_80@E14001552", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13834.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8bbd885f691494594253a74" + }, + { + "name": "ons.age.70_80@E14001553", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5285.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d04cb8a51115a88fb27468ae" + }, + { + "name": "ons.age.70_80@E14001554", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10952.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_33d24fd4d6260a4aad5090e3" + }, + { + "name": "ons.age.70_80@E14001555", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_feb8e376c4cbf278ed02900c" + }, + { + "name": "ons.age.70_80@E14001556", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ded54ee62d44dc6bccfb6e6b" + }, + { + "name": "ons.age.70_80@E14001557", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c45b283deb00e64cca8f3132" + }, + { + "name": "ons.age.70_80@E14001558", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70dab2f441bcd91cde788423" + }, + { + "name": "ons.age.70_80@E14001559", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a2395db551417d158bc810a" + }, + { + "name": "ons.age.70_80@E14001560", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8962.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02cd10af386ba9044272db1" + }, + { + "name": "ons.age.70_80@E14001561", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8591303959d234cb6989b779" + }, + { + "name": "ons.age.70_80@E14001562", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7292.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_70f7177c674465dc3722b09a" + }, + { + "name": "ons.age.70_80@E14001563", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4477.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e174a7435806b72269e1661" + }, + { + "name": "ons.age.70_80@E14001564", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9058.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c919b631b0c812ff5cb06c" + }, + { + "name": "ons.age.70_80@E14001565", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e3ef942ebee5244ffe8d314" + }, + { + "name": "ons.age.70_80@E14001566", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b60db07cf779e20f96c819d7" + }, + { + "name": "ons.age.70_80@E14001567", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10191.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c8945950ee95bb73e92afa3" + }, + { + "name": "ons.age.70_80@E14001568", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cccfbfa9df9f1a1594c1867" + }, + { + "name": "ons.age.70_80@E14001569", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4e93482bd64100343ec50db" + }, + { + "name": "ons.age.70_80@E14001570", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a6dc8feb717a28aa0e96077" + }, + { + "name": "ons.age.70_80@E14001571", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9872.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8af441ec723580496e0bd2c" + }, + { + "name": "ons.age.70_80@E14001572", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c35f83cfc38bbd8d54826f51" + }, + { + "name": "ons.age.70_80@E14001573", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7790.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f994a7e62b04ecdb8f9b8ede" + }, + { + "name": "ons.age.70_80@E14001574", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7746.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d104194f2e9d63fc30229d4" + }, + { + "name": "ons.age.70_80@E14001575", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73462b35f13e5f08d3d2ef91" + }, + { + "name": "ons.age.70_80@E14001576", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4673.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0d3e1605b0a186bb79b8eb2" + }, + { + "name": "ons.age.70_80@E14001577", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10201.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_df37a087e80f57cd3e330b6c" + }, + { + "name": "ons.age.70_80@E14001578", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6857f02a08518ef452bfa92" + }, + { + "name": "ons.age.70_80@E14001579", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab3236d3d694a21240993f8c" + }, + { + "name": "ons.age.70_80@E14001580", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dccce767809c1dafbc9f66ac" + }, + { + "name": "ons.age.70_80@E14001581", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8d09b21c6784c13b62f9ba7" + }, + { + "name": "ons.age.70_80@E14001582", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11616.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f38f3acdb312cef6ca10238d" + }, + { + "name": "ons.age.70_80@E14001583", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da450844b0797cae9b890b6" + }, + { + "name": "ons.age.70_80@E14001584", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8352.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5d8a90025030c58f9277e1c" + }, + { + "name": "ons.age.70_80@E14001585", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a014a28a810101ece6a4af3" + }, + { + "name": "ons.age.70_80@E14001586", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7648.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf5d230618bdde60c4023bd1" + }, + { + "name": "ons.age.70_80@E14001587", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10598.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f86592252a863d50a11a46cc" + }, + { + "name": "ons.age.70_80@E14001588", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8437.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9626427ffd13deedd6eb3470" + }, + { + "name": "ons.age.70_80@E14001589", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11937.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b65a797788c0ac41ae27d024" + }, + { + "name": "ons.age.70_80@E14001590", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11493.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4466ca4676b5e2260cafefff" + }, + { + "name": "ons.age.70_80@E14001591", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9588.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d96ac6cf2720cd16ef07eb2b" + }, + { + "name": "ons.age.70_80@E14001592", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7960.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a328d31d06aab4bca328c94" + }, + { + "name": "ons.age.70_80@E14001593", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a63693019a3760c463b68353" + }, + { + "name": "ons.age.70_80@E14001594", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcff3ba6665b3a1b7b71b5d7" + }, + { + "name": "ons.age.70_80@E14001595", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_882b749d3f334e895b558e6f" + }, + { + "name": "ons.age.70_80@E14001596", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9262.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d0beb8753aa13ccc0b1a8c6" + }, + { + "name": "ons.age.70_80@E14001597", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b91c27d4c2dbf5232ea652b2" + }, + { + "name": "ons.age.70_80@E14001598", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8602.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd3312269f0777a9d72089c" + }, + { + "name": "ons.age.70_80@E14001599", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6f5c7d2e387ce6731fc7fd9" + }, + { + "name": "ons.age.70_80@E14001600", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e56ca7436f43da39bf9b197" + }, + { + "name": "ons.age.70_80@E14001601", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12688.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0df2db2ad5b27d81431fb85" + }, + { + "name": "ons.age.70_80@E14001602", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8170.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b5e19726e93de8114ad8b0b" + }, + { + "name": "ons.age.70_80@E14001603", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0959aad7dc021d7d8713e10" + }, + { + "name": "ons.age.70_80@E14001604", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_90b8125c43be1794c3ec3eff" + }, + { + "name": "ons.age.70_80@E14001605", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11165.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9190901fbe4533c54c2baa9a" + }, + { + "name": "ons.age.70_80@N05000001", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7249.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_72f9cc4d264db02c73844734" + }, + { + "name": "ons.age.70_80@N05000002", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe3e2ec42bb0a84f43580b50" + }, + { + "name": "ons.age.70_80@N05000003", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7910.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e19c17f60cafb9723752f2" + }, + { + "name": "ons.age.70_80@N05000004", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6782.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a83beece5ad77998019c1d78" + }, + { + "name": "ons.age.70_80@N05000005", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9022.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cc938bc0d052aa6521bd61f" + }, + { + "name": "ons.age.70_80@N05000006", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9515.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d102370204f0a07b6b9e5f67" + }, + { + "name": "ons.age.70_80@N05000007", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9517.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9402e791f322e195e6eecf" + }, + { + "name": "ons.age.70_80@N05000008", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7542.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a52623977665300d0e61e7ad" + }, + { + "name": "ons.age.70_80@N05000009", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9124.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_865b0c98dec4b1423628735d" + }, + { + "name": "ons.age.70_80@N05000010", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7815.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a21201cc536f8c3bd7adfbb2" + }, + { + "name": "ons.age.70_80@N05000011", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8455.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb6a3056d68914f96524909f" + }, + { + "name": "ons.age.70_80@N05000012", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9fc8a717f474d4e9e3706fa" + }, + { + "name": "ons.age.70_80@N05000013", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10852.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86513fdbd9b043976614db11" + }, + { + "name": "ons.age.70_80@N05000014", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e486b4aa9466c2b47719d40b" + }, + { + "name": "ons.age.70_80@N05000015", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8714.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcf447d92c50ee0b8bc13e3c" + }, + { + "name": "ons.age.70_80@N05000016", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10065.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aec9aa249301f4b0dc633ad1" + }, + { + "name": "ons.age.70_80@N05000017", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9102.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5a13742601445e6bdb2c3d0" + }, + { + "name": "ons.age.70_80@N05000018", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8424.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b60d0392c0288dbe471789b" + }, + { + "name": "ons.age.70_80@S14000021", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9497.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb2e79eae32c737329f94bbc" + }, + { + "name": "ons.age.70_80@S14000027", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 3218.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd250e6ac48d41bc92e11474" + }, + { + "name": "ons.age.70_80@S14000045", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed8b39f396bbafaf8849b2b5" + }, + { + "name": "ons.age.70_80@S14000048", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11202.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f66e1533ecb60ac9fa8446ef" + }, + { + "name": "ons.age.70_80@S14000051", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 4953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd04940e76f1edd8d0983050" + }, + { + "name": "ons.age.70_80@S14000060", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b576904dcfc2dd5b162d01" + }, + { + "name": "ons.age.70_80@S14000061", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8305.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7dc2bf8682c24f96c870c97" + }, + { + "name": "ons.age.70_80@S14000062", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10407.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc81c5b042b8785093957f11" + }, + { + "name": "ons.age.70_80@S14000063", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efabba131f6666aaa4088584" + }, + { + "name": "ons.age.70_80@S14000064", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9091.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d57b3759c8ffcf3412d52ba5" + }, + { + "name": "ons.age.70_80@S14000065", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd7f47c5f2cd13f653c3bb20" + }, + { + "name": "ons.age.70_80@S14000066", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11551.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9f1912eea1bfc445d514edb" + }, + { + "name": "ons.age.70_80@S14000067", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12088.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e61a125d366ce06207590b94" + }, + { + "name": "ons.age.70_80@S14000068", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6cf50b831adaac822e147a7" + }, + { + "name": "ons.age.70_80@S14000069", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11855.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fecf2a3b26887eb9d1133a34" + }, + { + "name": "ons.age.70_80@S14000070", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fac560211109f3e8e3779390" + }, + { + "name": "ons.age.70_80@S14000071", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10119.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa2fb86508f74fd2961e06e6" + }, + { + "name": "ons.age.70_80@S14000072", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8564.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5af759c8533d6b1052ca5a1" + }, + { + "name": "ons.age.70_80@S14000073", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9652ec918e28a131aacd8a2" + }, + { + "name": "ons.age.70_80@S14000074", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10786.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfca53b9e5df56428dd4bf74" + }, + { + "name": "ons.age.70_80@S14000075", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7819.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da3022ee4eb0460b483c8e70" + }, + { + "name": "ons.age.70_80@S14000076", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9012.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f52cf6b5830f271b670ebfa7" + }, + { + "name": "ons.age.70_80@S14000077", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8861.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd1cb06ec54c31c92e8ce079" + }, + { + "name": "ons.age.70_80@S14000078", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7460.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe48c1f06031fbea28b2d60a" + }, + { + "name": "ons.age.70_80@S14000079", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc2ca90113704fb45e08a27e" + }, + { + "name": "ons.age.70_80@S14000080", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8387.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb1cdef099c0783380339084" + }, + { + "name": "ons.age.70_80@S14000081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 7801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad3a3454d5ba0c50b0dc8c76" + }, + { + "name": "ons.age.70_80@S14000082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9488.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e5ee51abeadb51767942a4" + }, + { + "name": "ons.age.70_80@S14000083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9050.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54133aad4e8578a1c60cb94" + }, + { + "name": "ons.age.70_80@S14000084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2b23623894ebde262456aa" + }, + { + "name": "ons.age.70_80@S14000085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 5803.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daf13498989565876464e28d" + }, + { + "name": "ons.age.70_80@S14000086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66dbaeffd56d252ec659dbc" + }, + { + "name": "ons.age.70_80@S14000087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6670.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e91c7adcd673d4c7fbe76a64" + }, + { + "name": "ons.age.70_80@S14000088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6897fc66fea5b8b77b26f6c" + }, + { + "name": "ons.age.70_80@S14000089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 6700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_efa70d029217c412f5f5516d" + }, + { + "name": "ons.age.70_80@S14000090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9434.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fecf26c2e43766c038582adb" + }, + { + "name": "ons.age.70_80@S14000091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8e16fa40a0fb752408f38db" + }, + { + "name": "ons.age.70_80@S14000092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9459.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e986ad9133679078eaf47c52" + }, + { + "name": "ons.age.70_80@S14000093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_def29b07330f15804cb80331" + }, + { + "name": "ons.age.70_80@S14000094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d055050d14c221b18b6885d6" + }, + { + "name": "ons.age.70_80@S14000095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8920.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdaa9cfacb4a38e30b9b0086" + }, + { + "name": "ons.age.70_80@S14000096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9949.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a3db94a1266e2b2a40fb90" + }, + { + "name": "ons.age.70_80@S14000097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10832.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db4b98faf8e9f25828b45064" + }, + { + "name": "ons.age.70_80@S14000098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11154.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa06a806de7e09059ef351b8" + }, + { + "name": "ons.age.70_80@S14000099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8511.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f173b0f2c77d287bac944cce" + }, + { + "name": "ons.age.70_80@S14000100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10826.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f45f789ba5f26482d01b72f5" + }, + { + "name": "ons.age.70_80@S14000101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8586.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce62194da779e4e65a4c2205" + }, + { + "name": "ons.age.70_80@S14000102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8300.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb2c6bcd872a7b8fd156d6d8" + }, + { + "name": "ons.age.70_80@S14000103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 11076.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faa341816dd9774867999d46" + }, + { + "name": "ons.age.70_80@S14000104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8756.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0f30a5b9e792149ec50b1dd" + }, + { + "name": "ons.age.70_80@S14000105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10224.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c206166a9b5c529a971aa408" + }, + { + "name": "ons.age.70_80@S14000106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 8703.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dda39c510e3c6179fc2f554f" + }, + { + "name": "ons.age.70_80@S14000107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10907.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8b0b6971d793b06a0a14e3b" + }, + { + "name": "ons.age.70_80@S14000108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 12361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5967ca878ef6b98e0ff5db6" + }, + { + "name": "ons.age.70_80@S14000109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10211.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec490932de82d939cc6c54d" + }, + { + "name": "ons.age.70_80@S14000110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 9835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4e218816ea2e8318ab4a44d" + }, + { + "name": "ons.age.70_80@S14000111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 10, + "matched_fact_count_at_or_before_period": 10, + "resolved_period": 2025, + "resolved_value": 10101.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8b995c3b2cfd872823287d6" + }, + { + "name": "ons.age.70_80@W07000081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9027.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9fa07551b9d9dd22b342b53" + }, + { + "name": "ons.age.70_80@W07000082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9841.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d86ba164d409bdda66bd322" + }, + { + "name": "ons.age.70_80@W07000083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10552.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_396546a0629e86c6bcc0a3fc" + }, + { + "name": "ons.age.70_80@W07000084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9325.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6165236da72842eaba317b1" + }, + { + "name": "ons.age.70_80@W07000085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12317.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98b709705107b0e862226696" + }, + { + "name": "ons.age.70_80@W07000086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9808.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddd698f8c0cec8f2c91fe3f6" + }, + { + "name": "ons.age.70_80@W07000087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12057.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_43f3cefae175addede68f001" + }, + { + "name": "ons.age.70_80@W07000088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9574.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e0459e5f38f51700617e85a" + }, + { + "name": "ons.age.70_80@W07000089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0926807c689d662c0e01bae" + }, + { + "name": "ons.age.70_80@W07000090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7009824e9d6d695cb04c871" + }, + { + "name": "ons.age.70_80@W07000091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6452.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d3b5c8bd025d1aec924f4c9" + }, + { + "name": "ons.age.70_80@W07000092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8147.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a6d1ee809871ef316b65314" + }, + { + "name": "ons.age.70_80@W07000093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12216.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39fe721c63d8a78b7e7aec9" + }, + { + "name": "ons.age.70_80@W07000094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e559fc06f58e8203a16f0327" + }, + { + "name": "ons.age.70_80@W07000095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12181.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_93df36a7c9f3bad1d3a40a21" + }, + { + "name": "ons.age.70_80@W07000096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60180eb04b279d5c696e4119" + }, + { + "name": "ons.age.70_80@W07000097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11324.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd8c54b61f1359b7f7394a6" + }, + { + "name": "ons.age.70_80@W07000098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10158.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81c0e98054de3f677263f230" + }, + { + "name": "ons.age.70_80@W07000099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9631.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_644028bce7f4bfc1cff75a8f" + }, + { + "name": "ons.age.70_80@W07000100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12532.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_567b1e0a9694c2876f671756" + }, + { + "name": "ons.age.70_80@W07000101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11676.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c15e902e6811e00f72fcef40" + }, + { + "name": "ons.age.70_80@W07000102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11592.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8cc2315af982c9613afe65c" + }, + { + "name": "ons.age.70_80@W07000103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9701.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2edb00918f055323cb4ce989" + }, + { + "name": "ons.age.70_80@W07000104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8453.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d5c27ba483f8e7f4d9c8431" + }, + { + "name": "ons.age.70_80@W07000105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9776.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0d9ce76d4327dbbaa2bfb4d" + }, + { + "name": "ons.age.70_80@W07000106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9725.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e93d36e17f16de22053a574" + }, + { + "name": "ons.age.70_80@W07000107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9410.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f38428b79e189bb486e1348" + }, + { + "name": "ons.age.70_80@W07000108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8612.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93bf7376328b57180d6666c" + }, + { + "name": "ons.age.70_80@W07000109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9283.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69906e58f58f517eae6be442" + }, + { + "name": "ons.age.70_80@W07000110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9970.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c65b1feb6b5a85018cdd7fa8" + }, + { + "name": "ons.age.70_80@W07000111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9769.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26309aae79898eb8e199b45" + }, + { + "name": "ons.age.70_80@W07000112", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9ab12ff32f549be41421ab4" + } + ] + }, + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.age.70_80@E06000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9044.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_feae99ce645383892862bfce" + }, + { + "name": "ons.age.70_80@E06000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11554.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d93b2f0a24b30e8dddcc44ee" + }, + { + "name": "ons.age.70_80@E06000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15647.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce2ede6e9b622606ae3e3b18" + }, + { + "name": "ons.age.70_80@E06000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18601.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c62806e8ae6d2159e767841" + }, + { + "name": "ons.age.70_80@E06000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10953.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5711c13cc8a26d03e2331c5" + }, + { + "name": "ons.age.70_80@E06000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb833dc780bbcbb8e89c4f22" + }, + { + "name": "ons.age.70_80@E06000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19446.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f670a64adb85a2c5fe3cae" + }, + { + "name": "ons.age.70_80@E06000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10686.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd07eecb418f0883ae452225" + }, + { + "name": "ons.age.70_80@E06000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13445.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2c4e77b7ea7a178409069af" + }, + { + "name": "ons.age.70_80@E06000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19843.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa065c92e7d49bf81d221d59" + }, + { + "name": "ons.age.70_80@E06000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ba308945e2b6fb5fe742d8c" + }, + { + "name": "ons.age.70_80@E06000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acfbe631f08bb25abb205507" + }, + { + "name": "ons.age.70_80@E06000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_425ac1bbac797de870a82e97" + }, + { + "name": "ons.age.70_80@E06000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18377.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3277a263c0b24a556b96a3e" + }, + { + "name": "ons.age.70_80@E06000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0c946bce0021365286bd9b8" + }, + { + "name": "ons.age.70_80@E06000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20693.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53750bb6d7dd604099279a58" + }, + { + "name": "ons.age.70_80@E06000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5017.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd0629b1e05343b9aad0568" + }, + { + "name": "ons.age.70_80@E06000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17312.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a797ea0e245ee2bb6fce0bdb" + }, + { + "name": "ons.age.70_80@E06000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23883.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a99ce7e9c992e7ed865ff52b" + }, + { + "name": "ons.age.70_80@E06000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_af354600bb2be301f9ef709b" + }, + { + "name": "ons.age.70_80@E06000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3cd3f2f1b86179020187be5" + }, + { + "name": "ons.age.70_80@E06000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17804.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_22c8e995bb378bdce9f9d83d" + }, + { + "name": "ons.age.70_80@E06000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c218e31bdcd7adca048b6c3c" + }, + { + "name": "ons.age.70_80@E06000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6225481d20a788e02cd54116" + }, + { + "name": "ons.age.70_80@E06000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25715.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5bd21f39d984c332b54823b" + }, + { + "name": "ons.age.70_80@E06000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23634.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e669cb63fd47ff4cb4b8caee" + }, + { + "name": "ons.age.70_80@E06000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17697.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2ae0ad5a547d649db68e6cb" + }, + { + "name": "ons.age.70_80@E06000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18118.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c72bf6e8d91993b6f2f9ff1" + }, + { + "name": "ons.age.70_80@E06000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14608.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f56b6b165fea3a7fb35dc2ea" + }, + { + "name": "ons.age.70_80@E06000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11583.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6ae1a74308d0c72692d4ed3" + }, + { + "name": "ons.age.70_80@E06000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16268.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7a1a3d7f16913d52e4f47e5" + }, + { + "name": "ons.age.70_80@E06000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11487.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0a7cb2e36dde4c8b69c754a" + }, + { + "name": "ons.age.70_80@E06000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22507.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f1d0f23b8194a9f4419707c" + }, + { + "name": "ons.age.70_80@E06000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ce80a77bed2a4469681db22" + }, + { + "name": "ons.age.70_80@E06000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15560.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc324f9f532d7338ca540a6f" + }, + { + "name": "ons.age.70_80@E06000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9623.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d903f94025e167952bca84" + }, + { + "name": "ons.age.70_80@E06000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6974.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7143db9994dadd25dc095e9" + }, + { + "name": "ons.age.70_80@E06000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13390.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8282fed8dcb10df80f987ff" + }, + { + "name": "ons.age.70_80@E06000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14536.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3e0a5bbedceeecc904234c3" + }, + { + "name": "ons.age.70_80@E06000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20308.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e059deb1f0b13f0df20bd737" + }, + { + "name": "ons.age.70_80@E06000043", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18197.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_847cdce0f05b25941c87bb81" + }, + { + "name": "ons.age.70_80@E06000044", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14449.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8bdbf77659b16a833cdd24d" + }, + { + "name": "ons.age.70_80@E06000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16144.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1eb77e255d199040ad71a8a0" + }, + { + "name": "ons.age.70_80@E06000046", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20245.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbf75ebe7663decfbafd0708" + }, + { + "name": "ons.age.70_80@E06000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54999.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65fe923a9a8be9fd7542cf62" + }, + { + "name": "ons.age.70_80@E06000049", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43778.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66e8e48fac94b4ba8e52450d" + }, + { + "name": "ons.age.70_80@E06000050", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37045.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_661eb7688e5b2c8612016545" + }, + { + "name": "ons.age.70_80@E06000051", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40414.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a6806661e4f9fb2d37099a4" + }, + { + "name": "ons.age.70_80@E06000052", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 71862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_770d49fedda2497e4e3c718d" + }, + { + "name": "ons.age.70_80@E06000053", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 290.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb7447bc91e292056cfcd484" + }, + { + "name": "ons.age.70_80@E06000054", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55336.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa57a90e4e8a07024ff13fbd" + }, + { + "name": "ons.age.70_80@E06000055", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c01e1c63357e649a23eecca7" + }, + { + "name": "ons.age.70_80@E06000056", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26506.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_39108e22f7f21a9455d50681" + }, + { + "name": "ons.age.70_80@E06000057", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f107a8633b036123974a1da6" + }, + { + "name": "ons.age.70_80@E06000058", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_abb9ef39f399b5bd9377b521" + }, + { + "name": "ons.age.70_80@E06000059", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55252.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_be532d1c48c48ba670f95cf5" + }, + { + "name": "ons.age.70_80@E06000060", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49007.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bed8c54cdaa45614899d7f4" + }, + { + "name": "ons.age.70_80@E06000061", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32767.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3b6a32c1039e739ae3fe9fa" + }, + { + "name": "ons.age.70_80@E06000062", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 36029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf18d0ead830ae5992c92303" + }, + { + "name": "ons.age.70_80@E06000063", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9c65e475495d937987698e1" + }, + { + "name": "ons.age.70_80@E06000064", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28396.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a3c062e60374ab8c6449608" + }, + { + "name": "ons.age.70_80@E06000065", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 76724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a364408fd7c9e1e99050271e" + }, + { + "name": "ons.age.70_80@E06000066", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 70275.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a950c0a4f7e94aba44aff76e" + }, + { + "name": "ons.age.70_80@E07000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7707.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b333e213574ea0dac0c8392d" + }, + { + "name": "ons.age.70_80@E07000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccfd41a0cb494c1821fce20b" + }, + { + "name": "ons.age.70_80@E07000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a791df0ad72f7f6daf3ef48" + }, + { + "name": "ons.age.70_80@E07000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18193.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b263ea8ec98d138d312938f" + }, + { + "name": "ons.age.70_80@E07000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15677.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d63fac702d40a38f8c961ef5" + }, + { + "name": "ons.age.70_80@E07000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14177.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f43fe2c59fcb1a176c931c50" + }, + { + "name": "ons.age.70_80@E07000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8059.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6dd2e7f0441c29a62b540e91" + }, + { + "name": "ons.age.70_80@E07000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97faaadca6e5d2655f0213dc" + }, + { + "name": "ons.age.70_80@E07000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9837.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd457cf8f65140817d838ecb" + }, + { + "name": "ons.age.70_80@E07000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11360.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c8b7442a5a40830dd01736" + }, + { + "name": "ons.age.70_80@E07000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10047.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb3ce95bf37514ab2082e650" + }, + { + "name": "ons.age.70_80@E07000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_95ad27e4c0eba5beca423555" + }, + { + "name": "ons.age.70_80@E07000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10365.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e40be88c289e5983d48a51" + }, + { + "name": "ons.age.70_80@E07000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22032.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12bf8527de2f83632764b79" + }, + { + "name": "ons.age.70_80@E07000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b81e28e967ee43e63754a2cf" + }, + { + "name": "ons.age.70_80@E07000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9854.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_62b8b3f9c6fbd944f78293ba" + }, + { + "name": "ons.age.70_80@E07000043", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12433.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d21e8c73b47e060efd8992f1" + }, + { + "name": "ons.age.70_80@E07000044", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12528.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f166c11cee89edab0f7e366b" + }, + { + "name": "ons.age.70_80@E07000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab0c4aa7309cd44a63b10b3" + }, + { + "name": "ons.age.70_80@E07000046", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9825.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81e9ebc0f70e15da8fc6577c" + }, + { + "name": "ons.age.70_80@E07000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8168.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4e84243dbc8a5844977af3c" + }, + { + "name": "ons.age.70_80@E07000061", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7e2624e3f6ad1fccdee7567" + }, + { + "name": "ons.age.70_80@E07000062", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9037.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e3ec121c16a07673682b490" + }, + { + "name": "ons.age.70_80@E07000063", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12694.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_98e916b3e03e3f7f051e3e7a" + }, + { + "name": "ons.age.70_80@E07000064", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14709.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_952e46bf732fc060d2778960" + }, + { + "name": "ons.age.70_80@E07000065", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21085.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb08d994f89b96c5f69ea55" + }, + { + "name": "ons.age.70_80@E07000066", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15156.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_746de62aea6d34c3ad205248" + }, + { + "name": "ons.age.70_80@E07000067", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15978.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9576a4d4ea902f078a2bb58c" + }, + { + "name": "ons.age.70_80@E07000068", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7008.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cba9f457566033d63b778f6" + }, + { + "name": "ons.age.70_80@E07000069", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11092.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa32004c9aa8b37d0bbeb662" + }, + { + "name": "ons.age.70_80@E07000070", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16685.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_958248b8f89f93d7c4b629f1" + }, + { + "name": "ons.age.70_80@E07000071", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16934.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_836df73acea2df6cadd3605a" + }, + { + "name": "ons.age.70_80@E07000072", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12375.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd148face44ef4a02a7fbf9d" + }, + { + "name": "ons.age.70_80@E07000073", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4e2c5b5458122a94e5208e4" + }, + { + "name": "ons.age.70_80@E07000074", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8454.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a479ef39531e6f0549161dad" + }, + { + "name": "ons.age.70_80@E07000075", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9735.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27b541693a974355fe02744" + }, + { + "name": "ons.age.70_80@E07000076", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21850.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_297a2c05ab6f4cb96ec091f7" + }, + { + "name": "ons.age.70_80@E07000077", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9180.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab1e80f38d66f7c5b22d206" + }, + { + "name": "ons.age.70_80@E07000078", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10700.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97fefa3892b0b6bfad364757" + }, + { + "name": "ons.age.70_80@E07000079", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11702.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4754ad10ff0c7dcfb0c85f7b" + }, + { + "name": "ons.age.70_80@E07000080", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10853.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee1afe265ec56dc13af2e60b" + }, + { + "name": "ons.age.70_80@E07000081", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10395.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba27b9528165594ec9c1bf4e" + }, + { + "name": "ons.age.70_80@E07000082", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_889ea613fa717962e104878d" + }, + { + "name": "ons.age.70_80@E07000083", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbc11dc6f0d07596e59a86fa" + }, + { + "name": "ons.age.70_80@E07000084", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16111.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ab1cc4552b68cf5e6d3b057" + }, + { + "name": "ons.age.70_80@E07000085", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14171.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad6f6f3118b1758f100ca18c" + }, + { + "name": "ons.age.70_80@E07000086", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12895.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5f5be79b30eb9069cabdcab" + }, + { + "name": "ons.age.70_80@E07000087", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13357.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da0000e48b5f6144b361b7ee" + }, + { + "name": "ons.age.70_80@E07000088", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c616ae9628a091a96c39ad5" + }, + { + "name": "ons.age.70_80@E07000089", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7f4287abf080b8cc1db414f" + }, + { + "name": "ons.age.70_80@E07000090", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14358.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc0effb5b8d5b994109ede3c" + }, + { + "name": "ons.age.70_80@E07000091", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24753.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a37ef186e78fdfadde10b245" + }, + { + "name": "ons.age.70_80@E07000092", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6714f41af964002dc11c1db3" + }, + { + "name": "ons.age.70_80@E07000093", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13468.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d19929e8dde0d2ea838a1095" + }, + { + "name": "ons.age.70_80@E07000094", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12784.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4959a336848626299c2fd9e0" + }, + { + "name": "ons.age.70_80@E07000095", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7862.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfa71970042bd741aa7458a8" + }, + { + "name": "ons.age.70_80@E07000096", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12587.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b8301dd8628d9b50efc0200" + }, + { + "name": "ons.age.70_80@E07000098", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8975.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f916c1f13ba36f6550b18e27" + }, + { + "name": "ons.age.70_80@E07000099", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12126.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_405826b080469efa09b57873" + }, + { + "name": "ons.age.70_80@E07000102", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7859.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bf96e7a484c01ba04b6d01d" + }, + { + "name": "ons.age.70_80@E07000103", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6048.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db6bd9e1734dd0d9b639dbe0" + }, + { + "name": "ons.age.70_80@E07000105", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0bacef1ae7fc013fca1da04" + }, + { + "name": "ons.age.70_80@E07000106", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16909.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bed1b5e3e8715c5d58588608" + }, + { + "name": "ons.age.70_80@E07000107", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd5e643765a03b5e51defbd9" + }, + { + "name": "ons.age.70_80@E07000108", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13933.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5114a8e9266ab1e6ed11bac" + }, + { + "name": "ons.age.70_80@E07000109", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8419.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_54ce4ee9f66093d3d41c3b41" + }, + { + "name": "ons.age.70_80@E07000110", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16368.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22ec8b68be32a2b10333f1d" + }, + { + "name": "ons.age.70_80@E07000111", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12370.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_66948d73ea145ef14a797c4e" + }, + { + "name": "ons.age.70_80@E07000112", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd14b4aeaf3d1fc8fbdf4474" + }, + { + "name": "ons.age.70_80@E07000113", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14282.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfce256436b03d707f06fe7d" + }, + { + "name": "ons.age.70_80@E07000114", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16235.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_68ee93cc1170b154fcc3ff51" + }, + { + "name": "ons.age.70_80@E07000115", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12002.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_365413a6fd9e70eec50406e8" + }, + { + "name": "ons.age.70_80@E07000116", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd13c4cf032d07f5f652dc56" + }, + { + "name": "ons.age.70_80@E07000117", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8458.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd894497d25eb79260d753df" + }, + { + "name": "ons.age.70_80@E07000118", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6b2d3f40a9f3202c0eec8d8" + }, + { + "name": "ons.age.70_80@E07000119", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11398.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd019d90a17008b4b5896ed1" + }, + { + "name": "ons.age.70_80@E07000120", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7279.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_443d7cd946bc477a256eae84" + }, + { + "name": "ons.age.70_80@E07000121", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14157.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db80f63ebab222ea053bfc12" + }, + { + "name": "ons.age.70_80@E07000122", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8614.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_71f917ce9134beb089d3febd" + }, + { + "name": "ons.age.70_80@E07000123", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10303.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f3e265fa0001991af5b0a3d" + }, + { + "name": "ons.age.70_80@E07000124", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7438.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3153c1e7d3dde986f566502" + }, + { + "name": "ons.age.70_80@E07000125", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6770.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c919d758160fd20b2b51320" + }, + { + "name": "ons.age.70_80@E07000126", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11904.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ac878cdc1f011f39d0cc520" + }, + { + "name": "ons.age.70_80@E07000127", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3deeca1512c779ef5aa2816" + }, + { + "name": "ons.age.70_80@E07000128", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15581.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dffb0a4a0bc4c899415a0ba7" + }, + { + "name": "ons.age.70_80@E07000129", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10322.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_198313361a019f42e05a03a8" + }, + { + "name": "ons.age.70_80@E07000130", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16965.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3bf98c28e93ee5724d360d2" + }, + { + "name": "ons.age.70_80@E07000131", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10865.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d4b01e904feffe94de9899" + }, + { + "name": "ons.age.70_80@E07000132", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12800.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb62d3e619f2dcd39f6b547" + }, + { + "name": "ons.age.70_80@E07000133", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6237.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f57dc29705d7cc1f55efa231" + }, + { + "name": "ons.age.70_80@E07000134", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10893.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_75348e6349b04ab8a1cc40e2" + }, + { + "name": "ons.age.70_80@E07000135", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5580.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba527e592d346ee973784fd0" + }, + { + "name": "ons.age.70_80@E07000136", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6911.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5da3f57b882b8fb1427b9b2" + }, + { + "name": "ons.age.70_80@E07000137", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21846.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c8b86eed009d72756525acb" + }, + { + "name": "ons.age.70_80@E07000138", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7189.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d722e5a1395abb698bc88ddc" + }, + { + "name": "ons.age.70_80@E07000139", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13713.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3697b2010b7244e595108e6" + }, + { + "name": "ons.age.70_80@E07000140", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11067.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fdb089fa8d6ec6162ac2f1" + }, + { + "name": "ons.age.70_80@E07000141", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16603.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8faa59bcf08fcf5608da0fff" + }, + { + "name": "ons.age.70_80@E07000142", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9972a5ff0c79f3820f4a78b0" + }, + { + "name": "ons.age.70_80@E07000143", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17692.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a66a1ab041580e7b510f3c5f" + }, + { + "name": "ons.age.70_80@E07000144", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16741.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e26de154cac571ffbdf8a7d" + }, + { + "name": "ons.age.70_80@E07000145", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c7321345a25bdd076947546" + }, + { + "name": "ons.age.70_80@E07000146", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19228.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e01da7c3d0cf1119a7b8a5cd" + }, + { + "name": "ons.age.70_80@E07000147", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16913.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a86eb090516924c482306b6" + }, + { + "name": "ons.age.70_80@E07000148", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10043.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6d73b4a57ca32104aa49fdb" + }, + { + "name": "ons.age.70_80@E07000149", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17081.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4678eeb967839d004a1300a" + }, + { + "name": "ons.age.70_80@E07000170", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12039.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_42c475b6c37c40d0bb762e10" + }, + { + "name": "ons.age.70_80@E07000171", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13029.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c26a00e1f4681da9d0d446e" + }, + { + "name": "ons.age.70_80@E07000172", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11674.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_acb19271a9df785b46d6ed5e" + }, + { + "name": "ons.age.70_80@E07000173", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12256.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_741b9b4cecf400ee9472209f" + }, + { + "name": "ons.age.70_80@E07000174", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10279.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b84918692507d11e1d6e0f4f" + }, + { + "name": "ons.age.70_80@E07000175", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a435c137cc12a955aacb2faa" + }, + { + "name": "ons.age.70_80@E07000176", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e040af7dae8389071a1e0665" + }, + { + "name": "ons.age.70_80@E07000177", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13706.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9070cd73df90ea74415cdf3" + }, + { + "name": "ons.age.70_80@E07000178", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8806.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6973a9db87ae04b724cbfcc" + }, + { + "name": "ons.age.70_80@E07000179", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14869.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b57064d05974be2f4fbf25a8" + }, + { + "name": "ons.age.70_80@E07000180", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13540.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcf7552634eefcb026bf8b55" + }, + { + "name": "ons.age.70_80@E07000181", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12194.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9e3688a622d9f436e44e8a7" + }, + { + "name": "ons.age.70_80@E07000192", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9589.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b53059113822156c2f096bb" + }, + { + "name": "ons.age.70_80@E07000193", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11337.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae0dd5a6679cdaa28ef78d5b" + }, + { + "name": "ons.age.70_80@E07000194", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12537.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59e969a9feaafe8950f0bbf2" + }, + { + "name": "ons.age.70_80@E07000195", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12726.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fda1cfed9e290bc7eb875426" + }, + { + "name": "ons.age.70_80@E07000196", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13320.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0ed1e9ca5bcdf23ac635a42" + }, + { + "name": "ons.age.70_80@E07000197", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15139.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d54d7e26c27600e29673f6b9" + }, + { + "name": "ons.age.70_80@E07000198", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12353.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4196533475fe7bd42a327f9" + }, + { + "name": "ons.age.70_80@E07000199", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7561.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5206abd043c89574c32283f2" + }, + { + "name": "ons.age.70_80@E07000200", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12328.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_97c078d35015c87923952ae8" + }, + { + "name": "ons.age.70_80@E07000202", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e01bdb06c6183834abee341" + }, + { + "name": "ons.age.70_80@E07000203", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13500.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec529010d29b2daf9c84b87e" + }, + { + "name": "ons.age.70_80@E07000207", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11527.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8030fd154b761dbc4265af3f" + }, + { + "name": "ons.age.70_80@E07000208", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6903.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4ba0c110fca0e51548fef90" + }, + { + "name": "ons.age.70_80@E07000209", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11740.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb056f4ee0d2fa01fb341011" + }, + { + "name": "ons.age.70_80@E07000210", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9660.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8ab0bfbeea11e2206e1334b" + }, + { + "name": "ons.age.70_80@E07000211", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12830.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_830e535550609305e98253d1" + }, + { + "name": "ons.age.70_80@E07000212", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6967.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_37d81e3db665fc9e71f60c5b" + }, + { + "name": "ons.age.70_80@E07000213", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8306.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6daa3862b8f9939a9c88953f" + }, + { + "name": "ons.age.70_80@E07000214", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8287.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_81ce34736c3ab83147789450" + }, + { + "name": "ons.age.70_80@E07000215", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8683.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e2438f44222dd00aeab4e7d" + }, + { + "name": "ons.age.70_80@E07000216", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13072.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_639d216ffe9b59d674fd348e" + }, + { + "name": "ons.age.70_80@E07000217", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8014.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd30ec5ab59c08ff45a6f50a" + }, + { + "name": "ons.age.70_80@E07000218", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6923.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2007bc47ee3f64a7141dd6e" + }, + { + "name": "ons.age.70_80@E07000219", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12431.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_69e60ddd523d61868ac44b40" + }, + { + "name": "ons.age.70_80@E07000220", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9848.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a1158dc3a2fde07fb29130a" + }, + { + "name": "ons.age.70_80@E07000221", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16957.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_faeeaa6d5659cd407b583211" + }, + { + "name": "ons.age.70_80@E07000222", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13318.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a170757d5365f75416cc8be4" + }, + { + "name": "ons.age.70_80@E07000223", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9889d40f7b54b548c56c6a" + }, + { + "name": "ons.age.70_80@E07000224", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22956.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8960eb5ff353af013ce58c1" + }, + { + "name": "ons.age.70_80@E07000225", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16134.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ed2d00c77431e6ebd00b3d5" + }, + { + "name": "ons.age.70_80@E07000226", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7432.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5edaf106edce4caf94c9ac16" + }, + { + "name": "ons.age.70_80@E07000227", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16319.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd869e58077b5be542b2879f" + }, + { + "name": "ons.age.70_80@E07000228", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15175.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c0db80490e7ebad9321b4f" + }, + { + "name": "ons.age.70_80@E07000229", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11833.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c087ec012c80f365e00d321" + }, + { + "name": "ons.age.70_80@E07000234", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10577.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ebb39436cad0dbc74831c99" + }, + { + "name": "ons.age.70_80@E07000235", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10889.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e24341959476e3388749ae8" + }, + { + "name": "ons.age.70_80@E07000236", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8444.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d1cfc573293fcc5077367ac" + }, + { + "name": "ons.age.70_80@E07000237", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8847.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b592cc6738f2aba50f3dc95" + }, + { + "name": "ons.age.70_80@E07000238", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16509.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9af48d5c1272f0914b9a722c" + }, + { + "name": "ons.age.70_80@E07000239", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12721.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1765f99885f4f6c42bc0b121" + }, + { + "name": "ons.age.70_80@E07000240", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11860.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e783d5be030666b575fa7da0" + }, + { + "name": "ons.age.70_80@E07000241", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8471.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb72efd6883792b78f95698e" + }, + { + "name": "ons.age.70_80@E07000242", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c35df4921aaa641e1f245b50" + }, + { + "name": "ons.age.70_80@E07000243", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6176.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a72aab0e60d0b0d11af7dc" + }, + { + "name": "ons.age.70_80@E07000244", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33919.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3872b8e54ab26cf2a208885c" + }, + { + "name": "ons.age.70_80@E07000245", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18307.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_de01b431719e0704b4045c01" + }, + { + "name": "ons.age.70_80@E08000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24622.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_28e8ac2c5d01b48e7d1984a4" + }, + { + "name": "ons.age.70_80@E08000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17099.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e43b7beebd7426dcb3108e8c" + }, + { + "name": "ons.age.70_80@E08000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24415.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f21c78137fb6897f8963966e" + }, + { + "name": "ons.age.70_80@E08000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18402.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a89cd9950e2b49c74dadb0b4" + }, + { + "name": "ons.age.70_80@E08000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18208.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c73b91253a8915f891241b90" + }, + { + "name": "ons.age.70_80@E08000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16818.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c31c905ae0eb81a00f543ba3" + }, + { + "name": "ons.age.70_80@E08000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27630.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7959d7bce29a35dde836dbb" + }, + { + "name": "ons.age.70_80@E08000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19821.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dba9d4c9c89f17fb166c243" + }, + { + "name": "ons.age.70_80@E08000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18877.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b48f40046c25e83e168f10ee" + }, + { + "name": "ons.age.70_80@E08000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31765.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d4adac547d2d970305ecb26" + }, + { + "name": "ons.age.70_80@E08000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12548.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a79cf3704ac128a2ddbae138" + }, + { + "name": "ons.age.70_80@E08000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35448.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12f57d435c5473f7cf59592" + }, + { + "name": "ons.age.70_80@E08000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18213.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa8db2b1491e59df13a489a6" + }, + { + "name": "ons.age.70_80@E08000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_387f0b3453af95ae2e50d5b0" + }, + { + "name": "ons.age.70_80@E08000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34167.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7448e9ebcacee129135aab7" + }, + { + "name": "ons.age.70_80@E08000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9f2df3a8330240abaa1c409" + }, + { + "name": "ons.age.70_80@E08000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28954.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1c12c1122d7867c19c76975" + }, + { + "name": "ons.age.70_80@E08000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25263.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa944d3683fe80cb1f36cb48" + }, + { + "name": "ons.age.70_80@E08000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43932.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb1077240343542076dd8130" + }, + { + "name": "ons.age.70_80@E08000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db360100c1ed6a0ce08a77c5" + }, + { + "name": "ons.age.70_80@E08000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21413.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c0022f0cfc052af689d5c52" + }, + { + "name": "ons.age.70_80@E08000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14870.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9f5ea39e1d168d7e084ce75" + }, + { + "name": "ons.age.70_80@E08000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27523.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0abcf1e910071a07aef3204" + }, + { + "name": "ons.age.70_80@E08000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 67187.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdcca17a3a82e44bd9413535" + }, + { + "name": "ons.age.70_80@E08000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5277be49270b493c62b589c1" + }, + { + "name": "ons.age.70_80@E08000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30350.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f176d8848517a613539ae81" + }, + { + "name": "ons.age.70_80@E08000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22343.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f35989ea06879048ad73b0d2" + }, + { + "name": "ons.age.70_80@E08000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21359.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d91427b4e955795ac926ed05" + }, + { + "name": "ons.age.70_80@E08000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22096.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a30ea345eaad673d3e6fc14b" + }, + { + "name": "ons.age.70_80@E08000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19650.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c52c85654eabafbd7248e1fb" + }, + { + "name": "ons.age.70_80@E08000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39567.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_da494d33ea354c8d899f63f1" + }, + { + "name": "ons.age.70_80@E08000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19280.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e96989232d13fc31e12e978e" + }, + { + "name": "ons.age.70_80@E08000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37762.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_99cffb93279b85538def34de" + }, + { + "name": "ons.age.70_80@E08000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 60192.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_84efe90a4cf2c0ff58fa0c2d" + }, + { + "name": "ons.age.70_80@E08000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32835.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_53e64fdd31f3ebdbfc4956e8" + }, + { + "name": "ons.age.70_80@E08000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18801.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc6eacaa92f0c11c86f73c1" + }, + { + "name": "ons.age.70_80@E09000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 624.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e45b2923f264d422c7313eca" + }, + { + "name": "ons.age.70_80@E09000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8456.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b928d70cbd2129aaabaf28ca" + }, + { + "name": "ons.age.70_80@E09000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26467.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_30a1da8b0c6270e9f2744512" + }, + { + "name": "ons.age.70_80@E09000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18645.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8b8ec2deb8260bd7a55b8e8" + }, + { + "name": "ons.age.70_80@E09000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18013.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0da4c1801fae728c4e94f9e" + }, + { + "name": "ons.age.70_80@E09000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26878.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8609c70cc0a9b2faae8c4af" + }, + { + "name": "ons.age.70_80@E09000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11876.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8993f553e931dd1bb43f660" + }, + { + "name": "ons.age.70_80@E09000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24639.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_deab7e17641afa0e4fa16b9a" + }, + { + "name": "ons.age.70_80@E09000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21230.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d5b1098552482481c45e3f3" + }, + { + "name": "ons.age.70_80@E09000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20451.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bff9c958ce418b7b7f7860d5" + }, + { + "name": "ons.age.70_80@E09000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14281.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e43f051fb3590c400e15e1b" + }, + { + "name": "ons.age.70_80@E09000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9646.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5523c6a44f4d88d04ae6b8a7" + }, + { + "name": "ons.age.70_80@E09000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9244.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f172b25677ef7317d6ed8228" + }, + { + "name": "ons.age.70_80@E09000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13120.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c65a42eb6435d5980a377c1f" + }, + { + "name": "ons.age.70_80@E09000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18519.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_87467a66a6e4a204c5af7936" + }, + { + "name": "ons.age.70_80@E09000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0beacfde751b994f101e7da" + }, + { + "name": "ons.age.70_80@E09000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18682.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea6598c18b9b760d35cff011" + }, + { + "name": "ons.age.70_80@E09000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16364.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa51ebbb3dca4ea9e3742a77" + }, + { + "name": "ons.age.70_80@E09000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9654.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3de0252f966d412770c4a3e0" + }, + { + "name": "ons.age.70_80@E09000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10000.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f580cf505a6c18d4b28e3996" + }, + { + "name": "ons.age.70_80@E09000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11863.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_574c849bc0715a3625289624" + }, + { + "name": "ons.age.70_80@E09000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12450.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c9dc7a77a41da4183e2dddf" + }, + { + "name": "ons.age.70_80@E09000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12799.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8237f9a647fb84179830ab6a" + }, + { + "name": "ons.age.70_80@E09000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12755.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2fb93c69422bf2a04727a50" + }, + { + "name": "ons.age.70_80@E09000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11930.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e21dadedaef340648951dea6" + }, + { + "name": "ons.age.70_80@E09000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17535.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_65690fa3e2b28c20cf3e6a86" + }, + { + "name": "ons.age.70_80@E09000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15621.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce86b0d0728bf723ae1565b" + }, + { + "name": "ons.age.70_80@E09000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11994.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6cf1efb6d121a3a5790e715" + }, + { + "name": "ons.age.70_80@E09000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14705.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f5f484b84d66ea30e01c0d" + }, + { + "name": "ons.age.70_80@E09000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8288.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09b4ed3c064028b70d1cda5" + }, + { + "name": "ons.age.70_80@E09000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f053d34fa1e438f22639c32c" + }, + { + "name": "ons.age.70_80@E09000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14907.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_828adda1e493492ba05b068a" + }, + { + "name": "ons.age.70_80@E09000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11690.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a72bc2106b7ebe662a346f69" + }, + { + "name": "ons.age.70_80@N09000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11905.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_643368a3f34917bf4447dfd2" + }, + { + "name": "ons.age.70_80@N09000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16758.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e58ca85efeae4ef01a9e5135" + }, + { + "name": "ons.age.70_80@N09000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22579.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_88ed119c3c6011b15033f355" + }, + { + "name": "ons.age.70_80@N09000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13080.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d15e9154ac307978f69e4feb" + }, + { + "name": "ons.age.70_80@N09000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12035.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7839ec6041a563403bb5a4e" + }, + { + "name": "ons.age.70_80@N09000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10592.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_86a05d22b45d07f48721fbbe" + }, + { + "name": "ons.age.70_80@N09000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12053.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e64aa706b232d4e96eadc80" + }, + { + "name": "ons.age.70_80@N09000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12823.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee9ca0fe146f76b9eea539b1" + }, + { + "name": "ons.age.70_80@N09000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10926.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8e5a0670e8cef6a69973aad" + }, + { + "name": "ons.age.70_80@N09000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14789.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6b1f31005188020331a1fcd" + }, + { + "name": "ons.age.70_80@N09000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17842.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfdc0fc024816a1823bb27b8" + }, + { + "name": "ons.age.70_80@S12000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5422.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6df64aab3556a4074d1645c7" + }, + { + "name": "ons.age.70_80@S12000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18894.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5c05f0f1cd4dd8d2b7cf435" + }, + { + "name": "ons.age.70_80@S12000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12610.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddade68b0d8715c075841dec" + }, + { + "name": "ons.age.70_80@S12000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11339.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db9f81194392d181a5954f64" + }, + { + "name": "ons.age.70_80@S12000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9518.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd0c36da65edc44ec6a67be8" + }, + { + "name": "ons.age.70_80@S12000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3221.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f2f2ed6ca259c93e70b61e0" + }, + { + "name": "ons.age.70_80@S12000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14900.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_61fffc756e9493aaa13605b4" + }, + { + "name": "ons.age.70_80@S12000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27104.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc8e33ed95e5f088fac3762e" + }, + { + "name": "ons.age.70_80@S12000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8182.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed3b7e75a20bcc51aa0fb6d2" + }, + { + "name": "ons.age.70_80@S12000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9108.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_938e3db300bd1c94444ed2b5" + }, + { + "name": "ons.age.70_80@S12000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10188.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d7d6222c6e3ca1cb95d6398" + }, + { + "name": "ons.age.70_80@S12000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15476.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a6da01df4ed6f8ee65ba847" + }, + { + "name": "ons.age.70_80@S12000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2595.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e58354b0e0e839ab8130ab76" + }, + { + "name": "ons.age.70_80@S12000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14812.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d046853e02d5731d840ed6c2" + }, + { + "name": "ons.age.70_80@S12000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2363.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f0c3f0634e17a76115d6910" + }, + { + "name": "ons.age.70_80@S12000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14190.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e1392fbf5d5b76aecdaf5c" + }, + { + "name": "ons.age.70_80@S12000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31520.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_886fd66d37a40d50542b2d44" + }, + { + "name": "ons.age.70_80@S12000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9166.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_b57e2fbf6451ff6b323d9c3d" + }, + { + "name": "ons.age.70_80@S12000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17816.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_db2dbaa7565df932e2d3ff92" + }, + { + "name": "ons.age.70_80@S12000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27361.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb22e156dbc0789571a065d4" + }, + { + "name": "ons.age.70_80@S12000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11340.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8c2e78a28c409d8314fba09" + }, + { + "name": "ons.age.70_80@S12000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38286.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f860a671abb4b0dc762f08f" + }, + { + "name": "ons.age.70_80@S12000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17051.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_59c3340145c3fa40315c97fb" + }, + { + "name": "ons.age.70_80@S12000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8355.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c081d3e0ff36f4a2065dd062" + }, + { + "name": "ons.age.70_80@S12000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15722.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1b7d61334f20aae0ca1135" + }, + { + "name": "ons.age.70_80@S12000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14011.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3d18f6eaf78399306a7a2cc" + }, + { + "name": "ons.age.70_80@S12000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12284.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_47fda9e9aa00a0396a64caa9" + }, + { + "name": "ons.age.70_80@S12000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12137.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_49cb1ae8d6276a460226a81e" + }, + { + "name": "ons.age.70_80@S12000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38946.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eeb1f3ce504e9d52721dd8a" + }, + { + "name": "ons.age.70_80@S12000048", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17736.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33f5ce72a5b70de87311b59" + }, + { + "name": "ons.age.70_80@S12000049", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39544.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfe16f954f72b554a409ed6b" + }, + { + "name": "ons.age.70_80@S12000050", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29093.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_48774dfdfbd894475b87d0ce" + }, + { + "name": "ons.age.70_80@W06000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8831.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70bafcddd8b0f9e68ce4d56" + }, + { + "name": "ons.age.70_80@W06000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12888.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_950ceedee4b37a6973a68f9e" + }, + { + "name": "ons.age.70_80@W06000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15272.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff532a2c5e78bff11d4920f0" + }, + { + "name": "ons.age.70_80@W06000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11569.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf11173ae527b6d6f8245dd8" + }, + { + "name": "ons.age.70_80@W06000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16475.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6f64a52b103767ffda6080b" + }, + { + "name": "ons.age.70_80@W06000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13427.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa8b3e42c8b08519031b067" + }, + { + "name": "ons.age.70_80@W06000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8979.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5ac5fa8102968c25a87d0be" + }, + { + "name": "ons.age.70_80@W06000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15858.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_60856de07286007272090153" + }, + { + "name": "ons.age.70_80@W06000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22269.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d10195ebabd23fde616173b" + }, + { + "name": "ons.age.70_80@W06000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23169.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_1001fd83b05bf75e9a782077" + }, + { + "name": "ons.age.70_80@W06000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14547.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_f60f0916f84c7e9c1b1568db" + }, + { + "name": "ons.age.70_80@W06000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14717.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbe2a30ad5190a4bc35a8b84" + }, + { + "name": "ons.age.70_80@W06000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14240.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c2702ca310a9323f717872b" + }, + { + "name": "ons.age.70_80@W06000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25338.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d23eaf11ec2ea7fdbce5a0a6" + }, + { + "name": "ons.age.70_80@W06000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23115.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_52aec1bbb9b81faa010bf9c3" + }, + { + "name": "ons.age.70_80@W06000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17571.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_212c5e85ff9f739f92a08dd2" + }, + { + "name": "ons.age.70_80@W06000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6675.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad9d9d79310b1853b834ed5b" + }, + { + "name": "ons.age.70_80@W06000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9298.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_74bfd2436ce81a9927b505f5" + }, + { + "name": "ons.age.70_80@W06000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11724.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6c82928ce29530395e02529" + }, + { + "name": "ons.age.70_80@W06000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12925.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e5dcc84fe22cfd23c4ced5b" + }, + { + "name": "ons.age.70_80@W06000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18140.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ec36ec81f04931ada80448" + }, + { + "name": "ons.age.70_80@W06000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5421.0, + "resolved_fact_period": "2024", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed4fb6e414957e800adb02e9" + } + ] + } + } + }, + "dwp.uc.households_by_area": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "dwp.uc.households_by_area@E14001063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6a80be6a6cce3a4af5715ae" + }, + { + "name": "dwp.uc.households_by_area@E14001064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7349.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5204d2dbc3e2a03e7d19a970" + }, + { + "name": "dwp.uc.households_by_area@E14001065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8791d651dddb548e6110477" + }, + { + "name": "dwp.uc.households_by_area@E14001066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8848.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fbbb9507a51800deed833ed" + }, + { + "name": "dwp.uc.households_by_area@E14001067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5063.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c46f61fd547414ad6a536c6" + }, + { + "name": "dwp.uc.households_by_area@E14001068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10983.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9690aa7c665fc165635cc07c" + }, + { + "name": "dwp.uc.households_by_area@E14001069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10043.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fa3bcaa9e80684f9df1b4df" + }, + { + "name": "dwp.uc.households_by_area@E14001070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b7a842d81c67fb58224d9c3" + }, + { + "name": "dwp.uc.households_by_area@E14001071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9059.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c22e9a9f22b64fbf7f357fa" + }, + { + "name": "dwp.uc.households_by_area@E14001072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7352.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd5e728cf6e14e2103c1639" + }, + { + "name": "dwp.uc.households_by_area@E14001073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21547.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd4af6fb738804835eab7221" + }, + { + "name": "dwp.uc.households_by_area@E14001074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63d0b00db1e6502e5bb81844" + }, + { + "name": "dwp.uc.households_by_area@E14001075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14801.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5739a5276dc8365ca3acb69" + }, + { + "name": "dwp.uc.households_by_area@E14001076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8307.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_37abf2e54238610b684673d4" + }, + { + "name": "dwp.uc.households_by_area@E14001077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11624.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_772e1644be57a58d6b64c9c7" + }, + { + "name": "dwp.uc.households_by_area@E14001078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9069.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_007727d071c5184746ff4421" + }, + { + "name": "dwp.uc.households_by_area@E14001079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10770.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95750a988dd51c478ecc49f6" + }, + { + "name": "dwp.uc.households_by_area@E14001080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6642.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a7a9133a254bba7b6a02376" + }, + { + "name": "dwp.uc.households_by_area@E14001081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfa31c47bc0bf461f2c5da74" + }, + { + "name": "dwp.uc.households_by_area@E14001082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_343718570794c19abf1a3d03" + }, + { + "name": "dwp.uc.households_by_area@E14001083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8474.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_283bfc701b0eb220bda27ed9" + }, + { + "name": "dwp.uc.households_by_area@E14001084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13404.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3517c973ed2079c9dabcbc7" + }, + { + "name": "dwp.uc.households_by_area@E14001085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13623.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80588f9814971b3ed09d0709" + }, + { + "name": "dwp.uc.households_by_area@E14001086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20645.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c452e8e000281cc44dcf28a" + }, + { + "name": "dwp.uc.households_by_area@E14001087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5781.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b3cecec60bdb57708270f1e" + }, + { + "name": "dwp.uc.households_by_area@E14001088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7080.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe312e8502683c86206adcbb" + }, + { + "name": "dwp.uc.households_by_area@E14001089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8547.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5fdbaa56f9ad4cb7581c814" + }, + { + "name": "dwp.uc.households_by_area@E14001090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5801.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b40dced917b20eccd4b1484" + }, + { + "name": "dwp.uc.households_by_area@E14001091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16874.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9677870c09a77fbe907da21" + }, + { + "name": "dwp.uc.households_by_area@E14001092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16265.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_062e37aa448cf58f7d8f0daa" + }, + { + "name": "dwp.uc.households_by_area@E14001093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23673.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf5c70ee42c3d0848e4ba1a8" + }, + { + "name": "dwp.uc.households_by_area@E14001094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a118f63d8b9448638a17aed3" + }, + { + "name": "dwp.uc.households_by_area@E14001095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7e058e9268b0bfd50e89b33" + }, + { + "name": "dwp.uc.households_by_area@E14001096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe26f92e10f4d29eca6c10b" + }, + { + "name": "dwp.uc.households_by_area@E14001097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17607.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00b72800df29e8080e869b08" + }, + { + "name": "dwp.uc.households_by_area@E14001098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26181.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdab0bfa37b04a26b3fd6de2" + }, + { + "name": "dwp.uc.households_by_area@E14001099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13830.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d30a0487b966e6bf1f604a6" + }, + { + "name": "dwp.uc.households_by_area@E14001100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21017.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_980ca5511fc43af14b6f36fc" + }, + { + "name": "dwp.uc.households_by_area@E14001101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10845.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23f8559126e2eb57140d2476" + }, + { + "name": "dwp.uc.households_by_area@E14001102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18228.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_279b50738abb293d1f1d3702" + }, + { + "name": "dwp.uc.households_by_area@E14001103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbdab46a7939c14aa3f35e00" + }, + { + "name": "dwp.uc.households_by_area@E14001104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10359.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1c22a10bdac980492b3c155" + }, + { + "name": "dwp.uc.households_by_area@E14001105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_303bd1a05965ec00c0205f95" + }, + { + "name": "dwp.uc.households_by_area@E14001106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9286.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b34f4a170606eb31bcb4dd0" + }, + { + "name": "dwp.uc.households_by_area@E14001107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_764f8cbe79feac56e4c69ccd" + }, + { + "name": "dwp.uc.households_by_area@E14001108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cff31f8c21e3d163bb0f9ee" + }, + { + "name": "dwp.uc.households_by_area@E14001109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10327.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_908ea638f49e60c123b1a3ba" + }, + { + "name": "dwp.uc.households_by_area@E14001110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16060.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09e6826621ebd339733df064" + }, + { + "name": "dwp.uc.households_by_area@E14001111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20408.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_317948d89563aa89724b007f" + }, + { + "name": "dwp.uc.households_by_area@E14001112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9186.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2110bbe3e36e8a8e8c2221df" + }, + { + "name": "dwp.uc.households_by_area@E14001113", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16846.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4659fce86a956229ff47a76" + }, + { + "name": "dwp.uc.households_by_area@E14001114", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15235.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d0e9352a1d829fb47275e82" + }, + { + "name": "dwp.uc.households_by_area@E14001115", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11204.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3618be5e4cb7eba4ddcb7fe1" + }, + { + "name": "dwp.uc.households_by_area@E14001116", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e93d7ee04450366ce33017e4" + }, + { + "name": "dwp.uc.households_by_area@E14001117", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7272.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f17b0746675d456ed64da15" + }, + { + "name": "dwp.uc.households_by_area@E14001118", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21731.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d50500259b79b2df3257afb" + }, + { + "name": "dwp.uc.households_by_area@E14001119", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17794.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac34f95101deba77e52a4603" + }, + { + "name": "dwp.uc.households_by_area@E14001120", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22640.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a2fd1e6ac0b667e59a9db1a" + }, + { + "name": "dwp.uc.households_by_area@E14001121", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7399.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33e7c7a7f03de43550421b1" + }, + { + "name": "dwp.uc.households_by_area@E14001122", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24391.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b1a1b37fad90cc89c3fa1c8" + }, + { + "name": "dwp.uc.households_by_area@E14001123", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15154.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fac4c1de5ca037c7133b33f" + }, + { + "name": "dwp.uc.households_by_area@E14001124", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a760b2cd81b6efb5c0ea2bba" + }, + { + "name": "dwp.uc.households_by_area@E14001125", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5777.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd10b5d66fdd71abb42e417b" + }, + { + "name": "dwp.uc.households_by_area@E14001126", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9695.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cab6c0551e177a37827002b" + }, + { + "name": "dwp.uc.households_by_area@E14001127", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8352.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c24f8d633df561bef510492c" + }, + { + "name": "dwp.uc.households_by_area@E14001128", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6386.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bf6f5c79ed5135a88f06a8a" + }, + { + "name": "dwp.uc.households_by_area@E14001129", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11657.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72aaba17555a3b50b904aadd" + }, + { + "name": "dwp.uc.households_by_area@E14001130", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9671.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c45c2924faa1a27881b33c" + }, + { + "name": "dwp.uc.households_by_area@E14001131", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a58cd745f67edd8ad7ee3f2" + }, + { + "name": "dwp.uc.households_by_area@E14001132", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12650.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b160702c3d1d45e1be54782" + }, + { + "name": "dwp.uc.households_by_area@E14001133", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10628.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ab8fcf9ae33f7e32e3aa69a" + }, + { + "name": "dwp.uc.households_by_area@E14001134", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9543.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bc7fadee4c41e98b5972ca5" + }, + { + "name": "dwp.uc.households_by_area@E14001135", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13140.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7364e6b2f2c0a86f5dcf0ca2" + }, + { + "name": "dwp.uc.households_by_area@E14001136", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5905.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ae6498cf4a151e7c767969b" + }, + { + "name": "dwp.uc.households_by_area@E14001137", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6345.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b24d75684271570e255e995e" + }, + { + "name": "dwp.uc.households_by_area@E14001138", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7883b37624fbb956eba03b8c" + }, + { + "name": "dwp.uc.households_by_area@E14001139", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf800815315f623938859aa0" + }, + { + "name": "dwp.uc.households_by_area@E14001140", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7389.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9513efcbbf93c37a1fe6fe4c" + }, + { + "name": "dwp.uc.households_by_area@E14001141", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b38089e6954ec5a18d4be58" + }, + { + "name": "dwp.uc.households_by_area@E14001142", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16413.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ff4b3bf05e3243fe0bb64e3" + }, + { + "name": "dwp.uc.households_by_area@E14001143", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11089.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8424bfb84e0e64c69f59af86" + }, + { + "name": "dwp.uc.households_by_area@E14001144", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11145.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4718fa30b830c224014c426c" + }, + { + "name": "dwp.uc.households_by_area@E14001145", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12044.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd3e14d2838b16c20815753" + }, + { + "name": "dwp.uc.households_by_area@E14001146", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_38c857ef6ac7d9b77a1603fc" + }, + { + "name": "dwp.uc.households_by_area@E14001147", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8588.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_561ff8ad4c5474433029248f" + }, + { + "name": "dwp.uc.households_by_area@E14001148", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a645ca8e1a52fa24094dadee" + }, + { + "name": "dwp.uc.households_by_area@E14001149", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7698.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9d38c2de39f82c63fffcb29" + }, + { + "name": "dwp.uc.households_by_area@E14001150", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a19be421c820db709355c2e" + }, + { + "name": "dwp.uc.households_by_area@E14001151", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51e5ee4b022a039e3bb18b1b" + }, + { + "name": "dwp.uc.households_by_area@E14001152", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9369.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c22a7c42016ac0d62d3e0dda" + }, + { + "name": "dwp.uc.households_by_area@E14001153", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5be4bddcb00b70afb50c98ed" + }, + { + "name": "dwp.uc.households_by_area@E14001154", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_527843773114b14550b08a44" + }, + { + "name": "dwp.uc.households_by_area@E14001155", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6423.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_baa88f7845e4af590e31b831" + }, + { + "name": "dwp.uc.households_by_area@E14001156", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5613.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85ddf1dffff8663e550db04e" + }, + { + "name": "dwp.uc.households_by_area@E14001157", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11499.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dceee4963333478caa2e3bac" + }, + { + "name": "dwp.uc.households_by_area@E14001158", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccb3f88e74af6310a697c004" + }, + { + "name": "dwp.uc.households_by_area@E14001159", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c8725cf9d7d29c88b2a73d" + }, + { + "name": "dwp.uc.households_by_area@E14001160", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10120.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00ac54215c2a480cb23db8a8" + }, + { + "name": "dwp.uc.households_by_area@E14001161", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7044.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3afcef9f9632c64055e4f9d2" + }, + { + "name": "dwp.uc.households_by_area@E14001162", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4475.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_605a429be4e068cd357d603d" + }, + { + "name": "dwp.uc.households_by_area@E14001163", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7604.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d421d3180d7d74e414860b8" + }, + { + "name": "dwp.uc.households_by_area@E14001164", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dff9b11aceb714d69da47210" + }, + { + "name": "dwp.uc.households_by_area@E14001165", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10142.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecdee382c8599d55cb089a3c" + }, + { + "name": "dwp.uc.households_by_area@E14001166", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6420b57208296c4568e43286" + }, + { + "name": "dwp.uc.households_by_area@E14001167", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9973.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f12de0b1af4580787b8e560c" + }, + { + "name": "dwp.uc.households_by_area@E14001168", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e24274cb14589a97fffa5e76" + }, + { + "name": "dwp.uc.households_by_area@E14001169", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9191.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1b4bc67980c4932c99d2640" + }, + { + "name": "dwp.uc.households_by_area@E14001170", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8649.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed030faac6b40dbfcabdfe32" + }, + { + "name": "dwp.uc.households_by_area@E14001171", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5059.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_411c75da0861efc6b754bfde" + }, + { + "name": "dwp.uc.households_by_area@E14001172", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10045.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c0b0b171f919d3af153910b" + }, + { + "name": "dwp.uc.households_by_area@E14001173", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7998.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43aefbb78126e4c7152d175" + }, + { + "name": "dwp.uc.households_by_area@E14001174", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4ef17f6b383025966ccccc7" + }, + { + "name": "dwp.uc.households_by_area@E14001175", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12333.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f2a12827e10ddeac8c8791b" + }, + { + "name": "dwp.uc.households_by_area@E14001176", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11231.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd7e26e4999009be8b42a160" + }, + { + "name": "dwp.uc.households_by_area@E14001177", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6738.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_70e19f884602193e176680a9" + }, + { + "name": "dwp.uc.households_by_area@E14001178", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2927d401825e4bde7cf6b2b" + }, + { + "name": "dwp.uc.households_by_area@E14001179", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11368.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e7b3f2cf04b23870ebd9066" + }, + { + "name": "dwp.uc.households_by_area@E14001180", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19056.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_621a7956c552e8729b74a4cc" + }, + { + "name": "dwp.uc.households_by_area@E14001181", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11889.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ba3523dbbdf7e077c6ccc83" + }, + { + "name": "dwp.uc.households_by_area@E14001182", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12757.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4b6d6a797828a9d0aa15987" + }, + { + "name": "dwp.uc.households_by_area@E14001183", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8816.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d773db4a22f8c0fd1c5c8ec7" + }, + { + "name": "dwp.uc.households_by_area@E14001184", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13111.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6e03d94eec0662fc6c00999" + }, + { + "name": "dwp.uc.households_by_area@E14001185", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11072.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83f72c20d171bd9a8db02564" + }, + { + "name": "dwp.uc.households_by_area@E14001186", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_61ee269608336ab27d869507" + }, + { + "name": "dwp.uc.households_by_area@E14001187", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8532.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_66724438c5f174e56772af4a" + }, + { + "name": "dwp.uc.households_by_area@E14001188", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21443.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_baa20b97b385698bc1b9428c" + }, + { + "name": "dwp.uc.households_by_area@E14001189", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6097bf8a8b51b653ba555c4" + }, + { + "name": "dwp.uc.households_by_area@E14001190", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f541a9f3adfd119d91e9bd9" + }, + { + "name": "dwp.uc.households_by_area@E14001191", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9618.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2587e3a44e18ec5bb05d0111" + }, + { + "name": "dwp.uc.households_by_area@E14001192", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7047.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3860f3d5e51c60a803ce28bb" + }, + { + "name": "dwp.uc.households_by_area@E14001193", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09c82d195204994fbadf8d61" + }, + { + "name": "dwp.uc.households_by_area@E14001194", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19411.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6db9717dae89c5a823ac1b69" + }, + { + "name": "dwp.uc.households_by_area@E14001195", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4654.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b1cc833ac7eef38ac05a853" + }, + { + "name": "dwp.uc.households_by_area@E14001196", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16029.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8117c09840d8b6d1795593c9" + }, + { + "name": "dwp.uc.households_by_area@E14001197", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_06cd366b95de6401b579f3be" + }, + { + "name": "dwp.uc.households_by_area@E14001198", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15567.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f46c60373ea9d5a07c50c6c" + }, + { + "name": "dwp.uc.households_by_area@E14001199", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8414.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_53eb0cd0026a434d63a30dc5" + }, + { + "name": "dwp.uc.households_by_area@E14001200", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12754.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eab9cba0cfb276c000d3fbf1" + }, + { + "name": "dwp.uc.households_by_area@E14001201", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9d838e6a141ea6a368ac90e" + }, + { + "name": "dwp.uc.households_by_area@E14001202", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11000.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21fcf17d2cc30debb00dc61d" + }, + { + "name": "dwp.uc.households_by_area@E14001203", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7592.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c66e89db911bfa1159a82dea" + }, + { + "name": "dwp.uc.households_by_area@E14001204", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13688.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b4e0a1f9a85190ade94cb57" + }, + { + "name": "dwp.uc.households_by_area@E14001205", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13576.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da5c8cef1668dd97d2da2338" + }, + { + "name": "dwp.uc.households_by_area@E14001206", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9321.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_787e0ff7f294e67f5a93227d" + }, + { + "name": "dwp.uc.households_by_area@E14001207", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb051b0105e4c257cae485a" + }, + { + "name": "dwp.uc.households_by_area@E14001208", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17961.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d810b3f710e1df8516382b" + }, + { + "name": "dwp.uc.households_by_area@E14001209", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16052.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21dfc37bcd01e997df5c7644" + }, + { + "name": "dwp.uc.households_by_area@E14001210", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6441.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff0641e8231937389a76750d" + }, + { + "name": "dwp.uc.households_by_area@E14001211", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14880.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c49ce1de290ccce93f8e62c1" + }, + { + "name": "dwp.uc.households_by_area@E14001212", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5197.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdd8bb72d76a23e137506a49" + }, + { + "name": "dwp.uc.households_by_area@E14001213", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19413.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00f830e342b857742bd58cdd" + }, + { + "name": "dwp.uc.households_by_area@E14001214", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7351d95c84bbbff1ad46f332" + }, + { + "name": "dwp.uc.households_by_area@E14001215", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6024.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_946418c1694a2168c41651fe" + }, + { + "name": "dwp.uc.households_by_area@E14001216", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15450.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_342b3ba962a0b7d66fdcb99c" + }, + { + "name": "dwp.uc.households_by_area@E14001217", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6050.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3023f6a8b56b83f38c6ba1a7" + }, + { + "name": "dwp.uc.households_by_area@E14001218", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7364.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a76c55268bc932d117b1a111" + }, + { + "name": "dwp.uc.households_by_area@E14001219", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7da8d350261a4d64e4b58a2a" + }, + { + "name": "dwp.uc.households_by_area@E14001220", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5911.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bb0a6e6f50a218a1c269449" + }, + { + "name": "dwp.uc.households_by_area@E14001221", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce9b8c4b3ba50248627274f6" + }, + { + "name": "dwp.uc.households_by_area@E14001222", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10418.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c294ed0125e647a5e54ec4c0" + }, + { + "name": "dwp.uc.households_by_area@E14001223", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11396.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad38722adb5a6081ab57288" + }, + { + "name": "dwp.uc.households_by_area@E14001224", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6604.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2580ead748adec7b8e654f6" + }, + { + "name": "dwp.uc.households_by_area@E14001225", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21237.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0969ff5385559dfc0d78a8cc" + }, + { + "name": "dwp.uc.households_by_area@E14001226", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7435.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91b0887a93dc823723a7ef18" + }, + { + "name": "dwp.uc.households_by_area@E14001227", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5542.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0a03bf13ce832f29026f5e4" + }, + { + "name": "dwp.uc.households_by_area@E14001228", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10138.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64881a4c358dc1a3da1c4bf1" + }, + { + "name": "dwp.uc.households_by_area@E14001229", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19529.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecdf8eb013ca0c3f088b1101" + }, + { + "name": "dwp.uc.households_by_area@E14001230", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a36b3cfa30a1ba41d8b8c79d" + }, + { + "name": "dwp.uc.households_by_area@E14001231", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8119.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dd6990bcce83de93f57e186" + }, + { + "name": "dwp.uc.households_by_area@E14001232", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7662.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3cd638816f7e580d181ca76" + }, + { + "name": "dwp.uc.households_by_area@E14001233", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6575.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9037fc15f61ac1aac9ae7efe" + }, + { + "name": "dwp.uc.households_by_area@E14001234", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4974.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8928b42ec23d837f136b2a0" + }, + { + "name": "dwp.uc.households_by_area@E14001235", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8567.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc2bff6624ec452cefa8bfc1" + }, + { + "name": "dwp.uc.households_by_area@E14001236", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17941.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b1d20de310860f1275b7d6b" + }, + { + "name": "dwp.uc.households_by_area@E14001237", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f2f7e7fbb613f24038b70e5" + }, + { + "name": "dwp.uc.households_by_area@E14001238", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13317.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98ffc05a5254d94753cd013f" + }, + { + "name": "dwp.uc.households_by_area@E14001239", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9549.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_768f33dd6fa036d35e4bfb77" + }, + { + "name": "dwp.uc.households_by_area@E14001240", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6854.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d678cfc87b7488c6be3909cc" + }, + { + "name": "dwp.uc.households_by_area@E14001241", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6789.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eade94e4d237f119a470521a" + }, + { + "name": "dwp.uc.households_by_area@E14001242", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7007.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8cc8e8944809a6394c1be06" + }, + { + "name": "dwp.uc.households_by_area@E14001243", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5d9eb647e80fc548c1be429" + }, + { + "name": "dwp.uc.households_by_area@E14001244", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12245.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9de140867116eaee718f18d0" + }, + { + "name": "dwp.uc.households_by_area@E14001245", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8837.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2fa45fdfdcd5a96d138d674" + }, + { + "name": "dwp.uc.households_by_area@E14001246", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10464.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f289bd3375a6d575ec309d1" + }, + { + "name": "dwp.uc.households_by_area@E14001247", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6513.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15040087933b721e7258f877" + }, + { + "name": "dwp.uc.households_by_area@E14001248", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12805.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f349e87f6b06a875e3c959da" + }, + { + "name": "dwp.uc.households_by_area@E14001249", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0e4f4ef474707bf77b933dd" + }, + { + "name": "dwp.uc.households_by_area@E14001250", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cab2f769a137e214afd8f021" + }, + { + "name": "dwp.uc.households_by_area@E14001251", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_93524ae0a17b54233ab67517" + }, + { + "name": "dwp.uc.households_by_area@E14001252", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d90863112946754e7478256d" + }, + { + "name": "dwp.uc.households_by_area@E14001253", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8254.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27d1f082acd20496b7d55590" + }, + { + "name": "dwp.uc.households_by_area@E14001254", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f41b1511580828e5667a438" + }, + { + "name": "dwp.uc.households_by_area@E14001255", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82a94b16b45d5cdb38ce2900" + }, + { + "name": "dwp.uc.households_by_area@E14001256", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13793.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c0a82bc0e5ed9dba67054d4" + }, + { + "name": "dwp.uc.households_by_area@E14001257", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14235.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_227dc16dea4cdefb1ca9190d" + }, + { + "name": "dwp.uc.households_by_area@E14001258", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5147.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e9ae669929f8d415f6cb3cc" + }, + { + "name": "dwp.uc.households_by_area@E14001259", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20102.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fdd38d64a58e0dd8aef055b" + }, + { + "name": "dwp.uc.households_by_area@E14001260", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18135.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c675ec8139c5c7712f1f3d50" + }, + { + "name": "dwp.uc.households_by_area@E14001261", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10208.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82bb82651e48477b19d530e8" + }, + { + "name": "dwp.uc.households_by_area@E14001262", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62e1eb195bfa463a771e1270" + }, + { + "name": "dwp.uc.households_by_area@E14001263", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5936.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f1b0ab2eb1f43db7817d5bf" + }, + { + "name": "dwp.uc.households_by_area@E14001264", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e1a5a73495404add1ed080a" + }, + { + "name": "dwp.uc.households_by_area@E14001265", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10977.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_212d17382ead272065eb45f9" + }, + { + "name": "dwp.uc.households_by_area@E14001266", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6594.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1dc8fda88365c9a468b74ecc" + }, + { + "name": "dwp.uc.households_by_area@E14001267", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12177.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8b000823f74b08d576bb87d" + }, + { + "name": "dwp.uc.households_by_area@E14001268", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3683.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa40b0b340dee724a5e31e52" + }, + { + "name": "dwp.uc.households_by_area@E14001269", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6180.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f7f4a80d6581775a2f419a7" + }, + { + "name": "dwp.uc.households_by_area@E14001270", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02a3b7aca95c1c961a8f741" + }, + { + "name": "dwp.uc.households_by_area@E14001271", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12949.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8fd4b7145d6c38bd302a8d9" + }, + { + "name": "dwp.uc.households_by_area@E14001272", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f779ea5caa7c98de03e0c65" + }, + { + "name": "dwp.uc.households_by_area@E14001273", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7505.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fd37a96dfba4e1c11b978c0" + }, + { + "name": "dwp.uc.households_by_area@E14001274", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13956.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6d2d38bb926c5b6b1969c64" + }, + { + "name": "dwp.uc.households_by_area@E14001275", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9598.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19242daad54f3c88c94e7803" + }, + { + "name": "dwp.uc.households_by_area@E14001276", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16906.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec1442018d94ea4d2b1bcab" + }, + { + "name": "dwp.uc.households_by_area@E14001277", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7246.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edabefd766fccfcb43aa647d" + }, + { + "name": "dwp.uc.households_by_area@E14001278", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10076.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3809bb65e806e8d8c5d46d63" + }, + { + "name": "dwp.uc.households_by_area@E14001279", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16516.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_facbe09faea3bbdac1a70dd0" + }, + { + "name": "dwp.uc.households_by_area@E14001280", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8ac6f9e613c997079d20f8a" + }, + { + "name": "dwp.uc.households_by_area@E14001281", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bab767913ca6b061866c339b" + }, + { + "name": "dwp.uc.households_by_area@E14001282", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9136.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d116a0246d18d88710fbe0" + }, + { + "name": "dwp.uc.households_by_area@E14001283", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6472.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8c1ab3557baa31236952045" + }, + { + "name": "dwp.uc.households_by_area@E14001284", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8402.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb37390b7acc96595f782a06" + }, + { + "name": "dwp.uc.households_by_area@E14001285", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5664.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed8997ce39116c3c9f22698a" + }, + { + "name": "dwp.uc.households_by_area@E14001286", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67e7478de7f3b2536f8e9403" + }, + { + "name": "dwp.uc.households_by_area@E14001287", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fa43f2749846172dfbb2640" + }, + { + "name": "dwp.uc.households_by_area@E14001288", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7341.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a71b759f4b07a4d9979121aa" + }, + { + "name": "dwp.uc.households_by_area@E14001289", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6137.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b87862f9c646300634da0f52" + }, + { + "name": "dwp.uc.households_by_area@E14001290", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b12e6aea75871e480f25c053" + }, + { + "name": "dwp.uc.households_by_area@E14001291", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5353.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bc6f03833e6041044b40142" + }, + { + "name": "dwp.uc.households_by_area@E14001292", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9fb52f8c3ba76b80a2b1d12" + }, + { + "name": "dwp.uc.households_by_area@E14001293", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ade5e31fffcbf3a230aee3f" + }, + { + "name": "dwp.uc.households_by_area@E14001294", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5650.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2a69b604ab87d786b7bdb50" + }, + { + "name": "dwp.uc.households_by_area@E14001295", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13881.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3db38ea968f55848d915ee54" + }, + { + "name": "dwp.uc.households_by_area@E14001296", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9899.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83e1cca46e5d705f7b826c76" + }, + { + "name": "dwp.uc.households_by_area@E14001297", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16218.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8aab2722c771a42b0ed4f57" + }, + { + "name": "dwp.uc.households_by_area@E14001298", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6850.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49d9c11356b34be1abbe440b" + }, + { + "name": "dwp.uc.households_by_area@E14001299", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13397.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_160bc1b4e8614b53daa99411" + }, + { + "name": "dwp.uc.households_by_area@E14001300", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12051.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8aacf99d3f353dbd6b83fd6" + }, + { + "name": "dwp.uc.households_by_area@E14001301", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16974.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c669ef000e31ca642bd6db5" + }, + { + "name": "dwp.uc.households_by_area@E14001302", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5afb3f1af54c7f0403cb6680" + }, + { + "name": "dwp.uc.households_by_area@E14001303", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7319.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d41074cb18ab0aaf45685560" + }, + { + "name": "dwp.uc.households_by_area@E14001304", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6471.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6c91ce4bfecc25c87ba5bd2" + }, + { + "name": "dwp.uc.households_by_area@E14001305", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15409.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c55af6fe1f02d1f70839bec1" + }, + { + "name": "dwp.uc.households_by_area@E14001306", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fcc965ed29116e29531b735" + }, + { + "name": "dwp.uc.households_by_area@E14001307", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13175.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6ab3612edaac7e99fd337e" + }, + { + "name": "dwp.uc.households_by_area@E14001308", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10308.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_132cad87330d444e4977dbff" + }, + { + "name": "dwp.uc.households_by_area@E14001309", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4615.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4e8b7c2fb121d591cc4474e" + }, + { + "name": "dwp.uc.households_by_area@E14001310", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12105.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdfbe5478ff62274b977b928" + }, + { + "name": "dwp.uc.households_by_area@E14001311", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44d04eac5b9ff68f197e113c" + }, + { + "name": "dwp.uc.households_by_area@E14001312", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2572cab2ab0234035f5dea5f" + }, + { + "name": "dwp.uc.households_by_area@E14001313", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16754.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff30156f36134dbd048f0e5f" + }, + { + "name": "dwp.uc.households_by_area@E14001314", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15982.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdb49a7f86ea59d04980609c" + }, + { + "name": "dwp.uc.households_by_area@E14001315", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13156.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62f3bc91c3a91a61464370c4" + }, + { + "name": "dwp.uc.households_by_area@E14001316", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5176.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ba90e397f7e4a815a0c2a5a" + }, + { + "name": "dwp.uc.households_by_area@E14001317", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15281.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa5bcb8841b8605593f3ff6" + }, + { + "name": "dwp.uc.households_by_area@E14001318", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7147.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5089b80e8b4c5d0d568e8f92" + }, + { + "name": "dwp.uc.households_by_area@E14001319", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9630.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d3d7d7fa1daac9499e8dc7b" + }, + { + "name": "dwp.uc.households_by_area@E14001320", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16502.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac6361056c8c113b9d2dda90" + }, + { + "name": "dwp.uc.households_by_area@E14001321", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43a2c0d14c7864a4b87bc743" + }, + { + "name": "dwp.uc.households_by_area@E14001322", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5101.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef5c80b23576561932687cc2" + }, + { + "name": "dwp.uc.households_by_area@E14001323", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23095.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_299d58b776b7cb574c001ba6" + }, + { + "name": "dwp.uc.households_by_area@E14001324", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8998.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ac05145984598d56f95ed9f" + }, + { + "name": "dwp.uc.households_by_area@E14001325", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12430.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80528d3fb9a6567680a3c93c" + }, + { + "name": "dwp.uc.households_by_area@E14001326", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14565.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dc7abb1e091d5618785b916" + }, + { + "name": "dwp.uc.households_by_area@E14001327", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_784c83510ed39a91d5b38d24" + }, + { + "name": "dwp.uc.households_by_area@E14001328", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19449.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1b9085b4a62cc3c03932f76" + }, + { + "name": "dwp.uc.households_by_area@E14001329", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12966.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_720287cae598e1cfaf5e2dc8" + }, + { + "name": "dwp.uc.households_by_area@E14001330", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7250.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5539a67c562a0601ed1c13bf" + }, + { + "name": "dwp.uc.households_by_area@E14001331", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18400.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab49c110657f2357f69a37f" + }, + { + "name": "dwp.uc.households_by_area@E14001332", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35cc15bb744c5c05def8c2f9" + }, + { + "name": "dwp.uc.households_by_area@E14001333", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d616e3c81e18e1078d808e14" + }, + { + "name": "dwp.uc.households_by_area@E14001334", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13129.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ef81f2c0b1f10b53b42c5f6" + }, + { + "name": "dwp.uc.households_by_area@E14001335", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6359.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5d065757511f9d60eb36e23" + }, + { + "name": "dwp.uc.households_by_area@E14001336", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12857.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afe0b1e893efb481ab44a12a" + }, + { + "name": "dwp.uc.households_by_area@E14001337", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_278696d654a2333eaaddf956" + }, + { + "name": "dwp.uc.households_by_area@E14001338", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21300.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e9ab0207ba09de0b7c3961b" + }, + { + "name": "dwp.uc.households_by_area@E14001339", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cd719486deaff307221e30a" + }, + { + "name": "dwp.uc.households_by_area@E14001340", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6909351b8234872f3b06ba42" + }, + { + "name": "dwp.uc.households_by_area@E14001341", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15196.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85d950e644ee7dfa586101c3" + }, + { + "name": "dwp.uc.households_by_area@E14001342", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7724.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_61a41ab94108e8325a40e7e6" + }, + { + "name": "dwp.uc.households_by_area@E14001343", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8435.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fbdfe84d00dd19d2c909613" + }, + { + "name": "dwp.uc.households_by_area@E14001344", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77e4533562fd6fcb54ec5a4d" + }, + { + "name": "dwp.uc.households_by_area@E14001345", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_57306c063079cfa5b9ed0ca3" + }, + { + "name": "dwp.uc.households_by_area@E14001346", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa63cce00ec3638964f4dd85" + }, + { + "name": "dwp.uc.households_by_area@E14001347", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5f62101cd54c462cbcaaf8c" + }, + { + "name": "dwp.uc.households_by_area@E14001348", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5332.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89047d9c95204125379c4a17" + }, + { + "name": "dwp.uc.households_by_area@E14001349", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9210.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_38148da47ea18ba81b1bc9b2" + }, + { + "name": "dwp.uc.households_by_area@E14001350", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9557.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e7554cdf8a5aae3e465996a" + }, + { + "name": "dwp.uc.households_by_area@E14001351", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6073.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_880003edd1c8c606dac1f4ad" + }, + { + "name": "dwp.uc.households_by_area@E14001352", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_005044ce83a8a7f2f3cda714" + }, + { + "name": "dwp.uc.households_by_area@E14001353", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17296.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4060a989d83eea11346fd7a6" + }, + { + "name": "dwp.uc.households_by_area@E14001354", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef60fabe56006c0777f40a9" + }, + { + "name": "dwp.uc.households_by_area@E14001355", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12562.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_227ffae5903abcccdf0ad4ed" + }, + { + "name": "dwp.uc.households_by_area@E14001356", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_331f795f29bcadb02a145930" + }, + { + "name": "dwp.uc.households_by_area@E14001357", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6997.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51bb28c9a2ad74b8d53b996f" + }, + { + "name": "dwp.uc.households_by_area@E14001358", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9698.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67ea2396602b4353a4b0fff4" + }, + { + "name": "dwp.uc.households_by_area@E14001359", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8aa87e535497185f9822ae7" + }, + { + "name": "dwp.uc.households_by_area@E14001360", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4383.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d54d2454a862f07955d28cd0" + }, + { + "name": "dwp.uc.households_by_area@E14001361", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9021.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c94b16be948397d1b4efa200" + }, + { + "name": "dwp.uc.households_by_area@E14001362", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4916.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6497894624716a889f45f8e3" + }, + { + "name": "dwp.uc.households_by_area@E14001363", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5688.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_36eb63f3e774af4d9dc6843c" + }, + { + "name": "dwp.uc.households_by_area@E14001364", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9f687ad05b9fd7b001392d8" + }, + { + "name": "dwp.uc.households_by_area@E14001365", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6547.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bad9cfb82d415f4659413773" + }, + { + "name": "dwp.uc.households_by_area@E14001366", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5201.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc7ad8da3b4b866e351b60ea" + }, + { + "name": "dwp.uc.households_by_area@E14001367", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20137.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fd873c7acee13e67bd06c08" + }, + { + "name": "dwp.uc.households_by_area@E14001368", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a052d2378d7007f7ffad9865" + }, + { + "name": "dwp.uc.households_by_area@E14001369", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13364.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8d6961a957ec01354b051e7" + }, + { + "name": "dwp.uc.households_by_area@E14001370", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8650.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3974ba9f527b8ff0d2596a48" + }, + { + "name": "dwp.uc.households_by_area@E14001371", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14288.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84ca1cc05f8176d22d1627c8" + }, + { + "name": "dwp.uc.households_by_area@E14001372", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8773.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de5520b3980b4df859520977" + }, + { + "name": "dwp.uc.households_by_area@E14001373", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b7c7aef9d43fd450129ce73" + }, + { + "name": "dwp.uc.households_by_area@E14001374", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4731.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_97d624146ccbe669ca223f0b" + }, + { + "name": "dwp.uc.households_by_area@E14001375", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7996.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_acad0a2efb1d004099c7de88" + }, + { + "name": "dwp.uc.households_by_area@E14001376", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6450.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26966939b906d2e1f87b318" + }, + { + "name": "dwp.uc.households_by_area@E14001377", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19644.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a02abcc294b72b1f8bbf941" + }, + { + "name": "dwp.uc.households_by_area@E14001378", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16651.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_40436510f68769258973c57b" + }, + { + "name": "dwp.uc.households_by_area@E14001379", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95c7687d2a60dbbd6b00c040" + }, + { + "name": "dwp.uc.households_by_area@E14001380", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8416.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a4b25645e59132f5e47e9df" + }, + { + "name": "dwp.uc.households_by_area@E14001381", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7077.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76a6c0cb9d8b07ec2befed7c" + }, + { + "name": "dwp.uc.households_by_area@E14001382", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12015.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5e4b4c187b0b2d6575c7810" + }, + { + "name": "dwp.uc.households_by_area@E14001383", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11747.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de677262a2cc9c18a77fae81" + }, + { + "name": "dwp.uc.households_by_area@E14001384", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6756.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50858f9b27c16a262e6f70a5" + }, + { + "name": "dwp.uc.households_by_area@E14001385", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8722.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_245a861b09bbbe16aceeadab" + }, + { + "name": "dwp.uc.households_by_area@E14001386", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5b914062098d3f265e0ae96" + }, + { + "name": "dwp.uc.households_by_area@E14001387", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c0748308b348e64365847dc" + }, + { + "name": "dwp.uc.households_by_area@E14001388", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21945962991f907fb43065ff" + }, + { + "name": "dwp.uc.households_by_area@E14001389", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10809.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_679956348b546c152917ece4" + }, + { + "name": "dwp.uc.households_by_area@E14001390", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10225.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_12b088d5ed55c5718683d2c5" + }, + { + "name": "dwp.uc.households_by_area@E14001391", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7429.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1d1200c3cce7b5954cbcce" + }, + { + "name": "dwp.uc.households_by_area@E14001392", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4148.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18a2ec9c4576ffd6f0861c7f" + }, + { + "name": "dwp.uc.households_by_area@E14001393", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e3e2e320ce425b11447676d" + }, + { + "name": "dwp.uc.households_by_area@E14001394", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5500.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c19a71ee9957950aee213cf" + }, + { + "name": "dwp.uc.households_by_area@E14001395", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5676.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14215f1807b7eea83606a220" + }, + { + "name": "dwp.uc.households_by_area@E14001396", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6256.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1fc3f8ed05a7afe62fb6d3a" + }, + { + "name": "dwp.uc.households_by_area@E14001397", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6692.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a78a819720973dceb5a746e0" + }, + { + "name": "dwp.uc.households_by_area@E14001398", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f4ec6d126d839cbc617ec91" + }, + { + "name": "dwp.uc.households_by_area@E14001399", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d5f14eb4ce6ea9dcf1c9d5a" + }, + { + "name": "dwp.uc.households_by_area@E14001400", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8873.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c6cf128ebbda8eca1648730" + }, + { + "name": "dwp.uc.households_by_area@E14001401", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11282.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b6756ff28deccbf520caaf6" + }, + { + "name": "dwp.uc.households_by_area@E14001402", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5956.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e4f704bec2b42e1846559a2" + }, + { + "name": "dwp.uc.households_by_area@E14001403", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7736.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d23f861e748a784e35fe2ccc" + }, + { + "name": "dwp.uc.households_by_area@E14001404", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7653.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b719b7b58ff6daebb6c424f" + }, + { + "name": "dwp.uc.households_by_area@E14001405", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb283712246d3dea3fd9ef62" + }, + { + "name": "dwp.uc.households_by_area@E14001406", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16045.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7a05ecc4ac5ac3902686e8a" + }, + { + "name": "dwp.uc.households_by_area@E14001407", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eb8ad20cdea5cf0609112d0" + }, + { + "name": "dwp.uc.households_by_area@E14001408", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9550.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc946a51db1305b270296b80" + }, + { + "name": "dwp.uc.households_by_area@E14001409", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05d7f538a318b538074838d3" + }, + { + "name": "dwp.uc.households_by_area@E14001410", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18561.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_877c6cb341505e29dd48bbc4" + }, + { + "name": "dwp.uc.households_by_area@E14001411", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b270f7cc53e8b11b9e2e5e4c" + }, + { + "name": "dwp.uc.households_by_area@E14001412", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12450.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c88d6ea6e675b482f0d27a21" + }, + { + "name": "dwp.uc.households_by_area@E14001413", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11034.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca4841f61b94052582d7d58f" + }, + { + "name": "dwp.uc.households_by_area@E14001414", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5991.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_32b78d2198bbcc460771b31e" + }, + { + "name": "dwp.uc.households_by_area@E14001415", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15292.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81bb0f07e32d4cb8dbfe0d38" + }, + { + "name": "dwp.uc.households_by_area@E14001416", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17802.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e8e790840d912aa9e9afc40" + }, + { + "name": "dwp.uc.households_by_area@E14001417", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7611.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_555b09f1249546d0e9c7d83d" + }, + { + "name": "dwp.uc.households_by_area@E14001418", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6470.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a74ba83bad010771d1edb55" + }, + { + "name": "dwp.uc.households_by_area@E14001419", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_968ec2cbb8280abcda8ff0a8" + }, + { + "name": "dwp.uc.households_by_area@E14001420", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4841.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6738a4b7badcd61d22b45bcd" + }, + { + "name": "dwp.uc.households_by_area@E14001421", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17387.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b845823047b256596309b8a6" + }, + { + "name": "dwp.uc.households_by_area@E14001422", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12342.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b2ed4ad8bea12d0b2a7f687" + }, + { + "name": "dwp.uc.households_by_area@E14001423", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6042.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85ab22050f7fb2205803085" + }, + { + "name": "dwp.uc.households_by_area@E14001424", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6451.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad2904cc90a9b531674bd17" + }, + { + "name": "dwp.uc.households_by_area@E14001425", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19527.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41d2edb6b326f9b616cffaa0" + }, + { + "name": "dwp.uc.households_by_area@E14001426", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11522.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_36861b9b5b19b3979ba1743b" + }, + { + "name": "dwp.uc.households_by_area@E14001427", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14660.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4bdeefe43a6d98905e8d976" + }, + { + "name": "dwp.uc.households_by_area@E14001428", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12249.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf91dfcb2008627ffe6ae698" + }, + { + "name": "dwp.uc.households_by_area@E14001429", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d21565b673827221e22278b5" + }, + { + "name": "dwp.uc.households_by_area@E14001430", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19688.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62a05868a1b2aafa0a3a8712" + }, + { + "name": "dwp.uc.households_by_area@E14001431", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10355.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d6033d5eb8d78d2f66bda07" + }, + { + "name": "dwp.uc.households_by_area@E14001432", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13741.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c06e7949df1f9b1059c8652e" + }, + { + "name": "dwp.uc.households_by_area@E14001433", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17020.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44130ff5b35cb302bae06e64" + }, + { + "name": "dwp.uc.households_by_area@E14001434", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10181.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba625db3cd38e7ac7d284c9" + }, + { + "name": "dwp.uc.households_by_area@E14001435", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_86b9386cdc2841d4e8fddfe3" + }, + { + "name": "dwp.uc.households_by_area@E14001436", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11587.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae781c9e881e15a563974a90" + }, + { + "name": "dwp.uc.households_by_area@E14001437", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5098.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_565864c567f9ddc254c56737" + }, + { + "name": "dwp.uc.households_by_area@E14001438", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba4da89d272df3ba0a8b5c11" + }, + { + "name": "dwp.uc.households_by_area@E14001439", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6237.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce50735259123497913e1bd2" + }, + { + "name": "dwp.uc.households_by_area@E14001440", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ab90c46fb869afbfe9fb14" + }, + { + "name": "dwp.uc.households_by_area@E14001441", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9425.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7616f4827c0bb003f31bc45c" + }, + { + "name": "dwp.uc.households_by_area@E14001442", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe10c65083787d32b430d669" + }, + { + "name": "dwp.uc.households_by_area@E14001443", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5850.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_058921dbfac2e1dd843c0fc1" + }, + { + "name": "dwp.uc.households_by_area@E14001444", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5502.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67dfaff51a31a42abf93095b" + }, + { + "name": "dwp.uc.households_by_area@E14001445", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5914.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_75661c875787518b26e4fea2" + }, + { + "name": "dwp.uc.households_by_area@E14001446", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_266675ee13c9d6cbfe5afa92" + }, + { + "name": "dwp.uc.households_by_area@E14001447", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10383.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76f396a254d8418a70d187c0" + }, + { + "name": "dwp.uc.households_by_area@E14001448", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10371.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c66e85c0d34301455a9802a4" + }, + { + "name": "dwp.uc.households_by_area@E14001449", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5581.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b75e1d44f940f13282e0c822" + }, + { + "name": "dwp.uc.households_by_area@E14001450", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10510.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc2e31d62fd7792e2211c0af" + }, + { + "name": "dwp.uc.households_by_area@E14001451", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8281.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae11d5e6f79cac0611ebef41" + }, + { + "name": "dwp.uc.households_by_area@E14001452", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_55645bee90b92c0f887712af" + }, + { + "name": "dwp.uc.households_by_area@E14001453", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fb4de9fd81180eca1b5997b" + }, + { + "name": "dwp.uc.households_by_area@E14001454", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99047e3ec75cf75d545682ba" + }, + { + "name": "dwp.uc.households_by_area@E14001455", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10840.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fbb6e6bce5dab3a427c54bf" + }, + { + "name": "dwp.uc.households_by_area@E14001456", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6299.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7295038522db2c3b8fb0c2bf" + }, + { + "name": "dwp.uc.households_by_area@E14001457", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab9d91343a6b2042abe3784b" + }, + { + "name": "dwp.uc.households_by_area@E14001458", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5060.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6998c516a131681b48a34ea6" + }, + { + "name": "dwp.uc.households_by_area@E14001459", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18554.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14b64f31ad391a988eb86b6e" + }, + { + "name": "dwp.uc.households_by_area@E14001460", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6287.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db26382d3227f646180cfc4e" + }, + { + "name": "dwp.uc.households_by_area@E14001461", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6554b755f923dd1d730133d" + }, + { + "name": "dwp.uc.households_by_area@E14001462", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12540.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82d5111d2b7bb3d37eca7c29" + }, + { + "name": "dwp.uc.households_by_area@E14001463", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5350.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc6c77e09f6c7e1906e535d" + }, + { + "name": "dwp.uc.households_by_area@E14001464", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14b87b444378c6fe89e69910" + }, + { + "name": "dwp.uc.households_by_area@E14001465", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35f6c5224372b18431f577f9" + }, + { + "name": "dwp.uc.households_by_area@E14001466", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20110.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_128abf1a155648aefcfe7f44" + }, + { + "name": "dwp.uc.households_by_area@E14001467", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7892.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b04eeb8aee1acd44a7b5240" + }, + { + "name": "dwp.uc.households_by_area@E14001468", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_66817510b0a612b4e2b54564" + }, + { + "name": "dwp.uc.households_by_area@E14001469", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15767.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_10c3a8aa63e9a966eb757806" + }, + { + "name": "dwp.uc.households_by_area@E14001470", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13503.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9268fd8f8e5ddb731116560" + }, + { + "name": "dwp.uc.households_by_area@E14001471", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9437.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a37756083f5f879b510e50e9" + }, + { + "name": "dwp.uc.households_by_area@E14001472", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7777.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_248e8c1a7c04714f56bb2bb5" + }, + { + "name": "dwp.uc.households_by_area@E14001473", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7529.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2caa89918658a1229d4abda" + }, + { + "name": "dwp.uc.households_by_area@E14001474", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7822874fab34b91f4aa2ec99" + }, + { + "name": "dwp.uc.households_by_area@E14001475", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5132.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddd1e7f11e5cd50584d06241" + }, + { + "name": "dwp.uc.households_by_area@E14001476", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6361.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f7fd8f132dbaaf994a5a2cf" + }, + { + "name": "dwp.uc.households_by_area@E14001477", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15951.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77a3db047444b8a3656de590" + }, + { + "name": "dwp.uc.households_by_area@E14001478", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16390.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a24fc95c4d2a86065f3946d7" + }, + { + "name": "dwp.uc.households_by_area@E14001479", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eedf21dd81c8e543bbea6d64" + }, + { + "name": "dwp.uc.households_by_area@E14001480", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10248.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e16a2c77af8ee357da4e6f0" + }, + { + "name": "dwp.uc.households_by_area@E14001481", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6fd50e5b0064d5c977f98b9" + }, + { + "name": "dwp.uc.households_by_area@E14001482", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b5d855728ced8b073379dc3" + }, + { + "name": "dwp.uc.households_by_area@E14001483", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b660e02db2f8b4b850a7348" + }, + { + "name": "dwp.uc.households_by_area@E14001484", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1e6c302df09bfd95ee1010a" + }, + { + "name": "dwp.uc.households_by_area@E14001485", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e5af708931a624b8586176e" + }, + { + "name": "dwp.uc.households_by_area@E14001486", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7516.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43dadbd9ec121dbce68b3ff1" + }, + { + "name": "dwp.uc.households_by_area@E14001487", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9408.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_862fb3ecc8c724b7c81253a4" + }, + { + "name": "dwp.uc.households_by_area@E14001488", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5995.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a1d7a85ccd7035e95866582" + }, + { + "name": "dwp.uc.households_by_area@E14001489", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80c16575271f4bf3346710ba" + }, + { + "name": "dwp.uc.households_by_area@E14001490", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4886.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_93135f9b19ba87d93145ad25" + }, + { + "name": "dwp.uc.households_by_area@E14001491", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6507.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7205d06e5afa10b3a4d726e" + }, + { + "name": "dwp.uc.households_by_area@E14001492", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12539.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14e39e14cbf2f3d34d3d4b29" + }, + { + "name": "dwp.uc.households_by_area@E14001493", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80a1b0ad0aa2524c6ab00969" + }, + { + "name": "dwp.uc.households_by_area@E14001494", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6097.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea5ec0138b5d3f23b576780d" + }, + { + "name": "dwp.uc.households_by_area@E14001495", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5324.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62f45202ecf0edaedbde131d" + }, + { + "name": "dwp.uc.households_by_area@E14001496", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5791.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_52587fc9690e9dced9bb6bf3" + }, + { + "name": "dwp.uc.households_by_area@E14001497", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8373.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_858f5baa5fa73887e911d4dd" + }, + { + "name": "dwp.uc.households_by_area@E14001498", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7998.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_783f26d473e0e9c392dc8282" + }, + { + "name": "dwp.uc.households_by_area@E14001499", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_690a31e5c90ee7e6c1decb83" + }, + { + "name": "dwp.uc.households_by_area@E14001500", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13685.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccca02462be0484b5810cee7" + }, + { + "name": "dwp.uc.households_by_area@E14001501", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13594.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d92ba9e8ae7a026e746a188" + }, + { + "name": "dwp.uc.households_by_area@E14001502", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8618.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcc4f548757345a9dc2999c3" + }, + { + "name": "dwp.uc.households_by_area@E14001503", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae1dd85020887f69a777a2dd" + }, + { + "name": "dwp.uc.households_by_area@E14001504", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b5ab3f0a7cd7dc563a98842" + }, + { + "name": "dwp.uc.households_by_area@E14001505", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7967.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27ede042ee8824e15c9a3d04" + }, + { + "name": "dwp.uc.households_by_area@E14001506", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9355.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c2a8f4e293d4b5288330eb5" + }, + { + "name": "dwp.uc.households_by_area@E14001507", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6216.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed477a0b22f7b045539bb47a" + }, + { + "name": "dwp.uc.households_by_area@E14001508", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10212.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b834839380b4a2d4d09705d7" + }, + { + "name": "dwp.uc.households_by_area@E14001509", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11418.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93438f484303bf3680fbc67" + }, + { + "name": "dwp.uc.households_by_area@E14001510", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12182.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_576bec3c72bdccf7d1e640be" + }, + { + "name": "dwp.uc.households_by_area@E14001511", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf68bf943646630d97199c5b" + }, + { + "name": "dwp.uc.households_by_area@E14001512", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8e789f86f86bac24691891c" + }, + { + "name": "dwp.uc.households_by_area@E14001513", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7304.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8b09d19543aef09664caef3" + }, + { + "name": "dwp.uc.households_by_area@E14001514", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5166.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e496caf23b41214090911ac" + }, + { + "name": "dwp.uc.households_by_area@E14001515", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaf78b6f559ea11ae21135cf" + }, + { + "name": "dwp.uc.households_by_area@E14001516", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9524.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50ec459e628d0474b083eeb4" + }, + { + "name": "dwp.uc.households_by_area@E14001517", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13317.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81836ea7492dcd86953782c3" + }, + { + "name": "dwp.uc.households_by_area@E14001518", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bb6a60c7cd1c760cdae1f7a" + }, + { + "name": "dwp.uc.households_by_area@E14001519", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db23bb953da582b4ab9f8bb" + }, + { + "name": "dwp.uc.households_by_area@E14001520", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16791.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9d46ca4729f14c11a2dae9c" + }, + { + "name": "dwp.uc.households_by_area@E14001521", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12931.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8c865c20dc31d269efffe25" + }, + { + "name": "dwp.uc.households_by_area@E14001522", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8825.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4abb7bcdfc04119c0a26aab7" + }, + { + "name": "dwp.uc.households_by_area@E14001523", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33d7bed32f4f328c5d70b2bd" + }, + { + "name": "dwp.uc.households_by_area@E14001524", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10149.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da63f71969f2708d290d8abe" + }, + { + "name": "dwp.uc.households_by_area@E14001525", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18213.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67d31ee0ff2b297ec2537dd5" + }, + { + "name": "dwp.uc.households_by_area@E14001526", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6011.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3898da0d8a3d65db6c193d7e" + }, + { + "name": "dwp.uc.households_by_area@E14001527", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15886.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb9c9d9a18f31a19f714bbe" + }, + { + "name": "dwp.uc.households_by_area@E14001528", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_256592fbd96cdab7a0510a83" + }, + { + "name": "dwp.uc.households_by_area@E14001529", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6121.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_666107410467297d330f8552" + }, + { + "name": "dwp.uc.households_by_area@E14001530", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6240.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6520b7e1d4cc1a934592e68" + }, + { + "name": "dwp.uc.households_by_area@E14001531", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12964.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4136be18207eec34541384db" + }, + { + "name": "dwp.uc.households_by_area@E14001532", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4858.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_975311d2efbbf326323d1d3a" + }, + { + "name": "dwp.uc.households_by_area@E14001533", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_921719e9efff32a4c1cefdab" + }, + { + "name": "dwp.uc.households_by_area@E14001534", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7115.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a814bfa6408d624c4a3d08a" + }, + { + "name": "dwp.uc.households_by_area@E14001535", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_493a1e1aafa9151785c3c0b6" + }, + { + "name": "dwp.uc.households_by_area@E14001536", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9213.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f64283d56a3bb22882503bf" + }, + { + "name": "dwp.uc.households_by_area@E14001537", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11293.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eb5d8317c0500e3adf6a4d0" + }, + { + "name": "dwp.uc.households_by_area@E14001538", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8943.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b0b624ed2410ed12f7b2d05" + }, + { + "name": "dwp.uc.households_by_area@E14001539", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4965.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c34f35bb4b439fd604aaed3" + }, + { + "name": "dwp.uc.households_by_area@E14001540", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8541.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_760891c1f5918cdd363ca89e" + }, + { + "name": "dwp.uc.households_by_area@E14001541", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13834.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1b403b02b324917efb63dc7" + }, + { + "name": "dwp.uc.households_by_area@E14001542", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6467.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e99d361757dd98565b22139" + }, + { + "name": "dwp.uc.households_by_area@E14001543", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8735.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d834b0b3a08d5c30b3e1ff0a" + }, + { + "name": "dwp.uc.households_by_area@E14001544", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6221.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4ac2c9556ad3c133e807ce7" + }, + { + "name": "dwp.uc.households_by_area@E14001545", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e60c3877a3c08b50071e97c" + }, + { + "name": "dwp.uc.households_by_area@E14001546", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13626.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f3b86ae7df003dfd3eb9739" + }, + { + "name": "dwp.uc.households_by_area@E14001547", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17731.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82cde1837069432c0b14f847" + }, + { + "name": "dwp.uc.households_by_area@E14001548", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91096a986ebc0b12db30f025" + }, + { + "name": "dwp.uc.households_by_area@E14001549", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5802.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bffa02833e71007afd8193a6" + }, + { + "name": "dwp.uc.households_by_area@E14001550", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9308.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddf3837491d54e720ab98b9b" + }, + { + "name": "dwp.uc.households_by_area@E14001551", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11853.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af7460b3c8de60dc300ff19c" + }, + { + "name": "dwp.uc.households_by_area@E14001552", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7306.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_162a535b22160b450e1b5f82" + }, + { + "name": "dwp.uc.households_by_area@E14001553", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7290075dae0a6980e78cabd" + }, + { + "name": "dwp.uc.households_by_area@E14001554", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9260356048d1414eddf0c599" + }, + { + "name": "dwp.uc.households_by_area@E14001555", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6800.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60aa04b89f3c84d11d807fa4" + }, + { + "name": "dwp.uc.households_by_area@E14001556", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6023.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a12ccea50fde7b919d0884" + }, + { + "name": "dwp.uc.households_by_area@E14001557", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8455.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a6dd34f45674fa3c126d36c" + }, + { + "name": "dwp.uc.households_by_area@E14001558", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_834e35636dfc8ebe41527431" + }, + { + "name": "dwp.uc.households_by_area@E14001559", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14890.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef6a80f604271adb03e639e8" + }, + { + "name": "dwp.uc.households_by_area@E14001560", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11849.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_432e01f1dd16241eef7249dc" + }, + { + "name": "dwp.uc.households_by_area@E14001561", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12607.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18b6bafa84cbef2c420e00d4" + }, + { + "name": "dwp.uc.households_by_area@E14001562", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20647.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d9e9d5b28a8a9a44a4c2278" + }, + { + "name": "dwp.uc.households_by_area@E14001563", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64af41e09c4d2f7585320966" + }, + { + "name": "dwp.uc.households_by_area@E14001564", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_669e98408c675b0be6be9976" + }, + { + "name": "dwp.uc.households_by_area@E14001565", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b4d9f46a0f01f2e0215b49a" + }, + { + "name": "dwp.uc.households_by_area@E14001566", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7755.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a62be4a6afa31098d2b0cda1" + }, + { + "name": "dwp.uc.households_by_area@E14001567", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12794.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a6ff7bc84795e090e62a238" + }, + { + "name": "dwp.uc.households_by_area@E14001568", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10498.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_823f78106887f4cead6d323b" + }, + { + "name": "dwp.uc.households_by_area@E14001569", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3605f5ef21e73cf899919fe2" + }, + { + "name": "dwp.uc.households_by_area@E14001570", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6360.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ee19626fe6a669e38871e22" + }, + { + "name": "dwp.uc.households_by_area@E14001571", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e03b3b78d07e1e6473b069c7" + }, + { + "name": "dwp.uc.households_by_area@E14001572", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5617.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee041b5066902161d569fa56" + }, + { + "name": "dwp.uc.households_by_area@E14001573", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9981.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e0d7197102a71667d532c49" + }, + { + "name": "dwp.uc.households_by_area@E14001574", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14543.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b56e7792b1869f2fd3c5963" + }, + { + "name": "dwp.uc.households_by_area@E14001575", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d00f93378703df85e67818f" + }, + { + "name": "dwp.uc.households_by_area@E14001576", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ab13965b444dc5f96b65fdf" + }, + { + "name": "dwp.uc.households_by_area@E14001577", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9194.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2188de2783e5567364b4669" + }, + { + "name": "dwp.uc.households_by_area@E14001578", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8461.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41b38049b9d61b243fd62e5c" + }, + { + "name": "dwp.uc.households_by_area@E14001579", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b77f3a2f10380acf9f151ab" + }, + { + "name": "dwp.uc.households_by_area@E14001580", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4411.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2075e520a95e6c39e43a122" + }, + { + "name": "dwp.uc.households_by_area@E14001581", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10613.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad5a11042a6e55e3ea2cab54" + }, + { + "name": "dwp.uc.households_by_area@E14001582", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3832.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_011d6b308c65c078ffe0b283" + }, + { + "name": "dwp.uc.households_by_area@E14001583", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_747643e9bf9d7e83aefbc068" + }, + { + "name": "dwp.uc.households_by_area@E14001584", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_166701ce4260126cd7b222d8" + }, + { + "name": "dwp.uc.households_by_area@E14001585", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a088e97454ffce1c8520953a" + }, + { + "name": "dwp.uc.households_by_area@E14001586", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6217.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4779ad3aeaa464f14b584ca" + }, + { + "name": "dwp.uc.households_by_area@E14001587", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5515.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dac460680e724368455a27c" + }, + { + "name": "dwp.uc.households_by_area@E14001588", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6767.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8621ff1050b34edd548c4ec" + }, + { + "name": "dwp.uc.households_by_area@E14001589", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_115429aa327aaf3780f312dc" + }, + { + "name": "dwp.uc.households_by_area@E14001590", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7291.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7207b5cb09ac15362502fb2" + }, + { + "name": "dwp.uc.households_by_area@E14001591", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5919.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_439ddb77342965d918a5d946" + }, + { + "name": "dwp.uc.households_by_area@E14001592", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69d65b3faed50f7d5ffbc71d" + }, + { + "name": "dwp.uc.households_by_area@E14001593", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4273.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09c6b647a43173b17c9abe1d" + }, + { + "name": "dwp.uc.households_by_area@E14001594", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0da33ab96cbf92478f26d7c5" + }, + { + "name": "dwp.uc.households_by_area@E14001595", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44df27abd0dd0697fea89e9b" + }, + { + "name": "dwp.uc.households_by_area@E14001596", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14095.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_109725a2f2fdac9a997ea3d6" + }, + { + "name": "dwp.uc.households_by_area@E14001597", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c2dddd6b60a63c32eadc560" + }, + { + "name": "dwp.uc.households_by_area@E14001598", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12050.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a1c3828af3c83ea593aadbc" + }, + { + "name": "dwp.uc.households_by_area@E14001599", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba3a8449a95a5ebbcf3caab3" + }, + { + "name": "dwp.uc.households_by_area@E14001600", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9542.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6592b6d68028c72fd2147931" + }, + { + "name": "dwp.uc.households_by_area@E14001601", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77c2bdd07c8bb601da4ce8fd" + }, + { + "name": "dwp.uc.households_by_area@E14001602", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15950.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbac2c2028e95649837fcb4c" + }, + { + "name": "dwp.uc.households_by_area@E14001603", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8718.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49706e3f35266b542dde0500" + }, + { + "name": "dwp.uc.households_by_area@E14001604", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8599.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aabdcd5279238ff5af696ee4" + }, + { + "name": "dwp.uc.households_by_area@E14001605", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3883.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_335ffc62b4625d0262b472a9" + }, + { + "name": "dwp.uc.households_by_area@N05000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N05000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@S14000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5412.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bae1a451e46a6fd3f8c72e43" + }, + { + "name": "dwp.uc.households_by_area@S14000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1657.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d72dc65591ba2f92d3624ad" + }, + { + "name": "dwp.uc.households_by_area@S14000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4efd4ff194d03fd1259ec2f" + }, + { + "name": "dwp.uc.households_by_area@S14000048", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11652.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8770fdaf95bb6cf5cb224c0d" + }, + { + "name": "dwp.uc.households_by_area@S14000051", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2639.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b503a22cdfeab8d4442f980" + }, + { + "name": "dwp.uc.households_by_area@S14000060", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11981.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d7c4523c108d81a59aa662" + }, + { + "name": "dwp.uc.households_by_area@S14000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b55cecd16434624e5a2aade2" + }, + { + "name": "dwp.uc.households_by_area@S14000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8930.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d79f8ae24091b46eb6180907" + }, + { + "name": "dwp.uc.households_by_area@S14000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11709.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be43a36efdf7ebf2ee221453" + }, + { + "name": "dwp.uc.households_by_area@S14000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10483.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4425daae9261c475375ae00" + }, + { + "name": "dwp.uc.households_by_area@S14000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8486.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_548d76f6232470b5651a73ba" + }, + { + "name": "dwp.uc.households_by_area@S14000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10098.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43a67a7b5804fb21be85cc49" + }, + { + "name": "dwp.uc.households_by_area@S14000067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a7e21861d55797a5e5cc204" + }, + { + "name": "dwp.uc.households_by_area@S14000068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9944.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a69e2902eacecf6abdf35a2f" + }, + { + "name": "dwp.uc.households_by_area@S14000069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8014.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_71934fb38a8172b56327687e" + }, + { + "name": "dwp.uc.households_by_area@S14000070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12173.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1a44af38340f3e5bcee57e7" + }, + { + "name": "dwp.uc.households_by_area@S14000071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ac92081554df77439b451b0" + }, + { + "name": "dwp.uc.households_by_area@S14000072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9528.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d2477fb07de377c7ad14715" + }, + { + "name": "dwp.uc.households_by_area@S14000073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9681.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21d321da21918431dec3563d" + }, + { + "name": "dwp.uc.households_by_area@S14000074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_defa6b4860b9ed3e4ee8d0ab" + }, + { + "name": "dwp.uc.households_by_area@S14000075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14169.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14cba3c5fa00de573657fff9" + }, + { + "name": "dwp.uc.households_by_area@S14000076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8326.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c91c90f5aaab09c26de06e9" + }, + { + "name": "dwp.uc.households_by_area@S14000077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a95718246c8305965277b860" + }, + { + "name": "dwp.uc.households_by_area@S14000078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10810.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0762bbff0271da3a51108ad5" + }, + { + "name": "dwp.uc.households_by_area@S14000079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10754.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_90463277cd6fe7a8f06520fc" + }, + { + "name": "dwp.uc.households_by_area@S14000080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5651.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_883649c4c2f85d507f45020c" + }, + { + "name": "dwp.uc.households_by_area@S14000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8851.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_653491ce81e3960c832d95eb" + }, + { + "name": "dwp.uc.households_by_area@S14000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_777424a8de567d54ece846db" + }, + { + "name": "dwp.uc.households_by_area@S14000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10187.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eca1a12d33b34d6952f49b1" + }, + { + "name": "dwp.uc.households_by_area@S14000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16774.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b5f48fa22c099479e89d0e9" + }, + { + "name": "dwp.uc.households_by_area@S14000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14900.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4025122790b87bbc3c10e71" + }, + { + "name": "dwp.uc.households_by_area@S14000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19616.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d712161c668018cc7e37cf40" + }, + { + "name": "dwp.uc.households_by_area@S14000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11718.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ace1bda7ee61f3997150eeb" + }, + { + "name": "dwp.uc.households_by_area@S14000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14865.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3e1d982b5f7f492f3b421b7" + }, + { + "name": "dwp.uc.households_by_area@S14000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12821.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b283cc4394cec11ab51f580a" + }, + { + "name": "dwp.uc.households_by_area@S14000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e37ce2a9d8ce518636974866" + }, + { + "name": "dwp.uc.households_by_area@S14000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4810.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60c58166a2f6a7dc1cd10f00" + }, + { + "name": "dwp.uc.households_by_area@S14000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11108.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9a934045229ddb552e4cc2" + }, + { + "name": "dwp.uc.households_by_area@S14000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10718.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5975e3e8b0672b6414d790d" + }, + { + "name": "dwp.uc.households_by_area@S14000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c4754222738c83ec7545daa" + }, + { + "name": "dwp.uc.households_by_area@S14000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebc23b3f74a0b55a76a5db3e" + }, + { + "name": "dwp.uc.households_by_area@S14000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f7e85b6c5a4bdb50acff3a2" + }, + { + "name": "dwp.uc.households_by_area@S14000097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4525.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_663bb73118ae18a318ef3e0f" + }, + { + "name": "dwp.uc.households_by_area@S14000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_12aa8d6199f0d22816fcf51a" + }, + { + "name": "dwp.uc.households_by_area@S14000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11879.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeb7c79697c2eab473877cee" + }, + { + "name": "dwp.uc.households_by_area@S14000100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6484.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3821e676d1ff23b2bbc9ebb1" + }, + { + "name": "dwp.uc.households_by_area@S14000101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10184.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_54bf12ac11939c04136070b3" + }, + { + "name": "dwp.uc.households_by_area@S14000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10805.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a0b2f4c0043ddc50e6c606a" + }, + { + "name": "dwp.uc.households_by_area@S14000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8174.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5d541c6fce3149507d28dc3" + }, + { + "name": "dwp.uc.households_by_area@S14000104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b89485cd25417ac8f17210a0" + }, + { + "name": "dwp.uc.households_by_area@S14000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7448.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1e71199a715900f9605fb88" + }, + { + "name": "dwp.uc.households_by_area@S14000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13031.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_55de650e1d8187eefde3e5cd" + }, + { + "name": "dwp.uc.households_by_area@S14000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11162.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_93edde24e9fbcb344ea837b3" + }, + { + "name": "dwp.uc.households_by_area@S14000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8503.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9aec1798479c0fee71d886be" + }, + { + "name": "dwp.uc.households_by_area@S14000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9804.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_062d4e25171e8be8c21868ab" + }, + { + "name": "dwp.uc.households_by_area@S14000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11524.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_625faef428b181d095b97002" + }, + { + "name": "dwp.uc.households_by_area@S14000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1db51f6a5a2533e0aee5a819" + }, + { + "name": "dwp.uc.households_by_area@W07000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13260.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cce3f6a35940f52e10200e47" + }, + { + "name": "dwp.uc.households_by_area@W07000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9505.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_592c5f954f35c9f2f5727257" + }, + { + "name": "dwp.uc.households_by_area@W07000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8347.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_869826f6c2bd82ff4e1c2eed" + }, + { + "name": "dwp.uc.households_by_area@W07000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14295.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15b5774b888bccb9f97d6c37" + }, + { + "name": "dwp.uc.households_by_area@W07000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7467.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6932faf6295326d42a63fd8" + }, + { + "name": "dwp.uc.households_by_area@W07000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8474.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab6cab471c64f1dfa2aee1ea" + }, + { + "name": "dwp.uc.households_by_area@W07000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8086.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7d1fa2b818d197d76fac553" + }, + { + "name": "dwp.uc.households_by_area@W07000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10996.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a324f9cce7d4ae0f650c8a2d" + }, + { + "name": "dwp.uc.households_by_area@W07000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14100.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bceb47befe7eb0f360fb58f7" + }, + { + "name": "dwp.uc.households_by_area@W07000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cccda54a0e03697bf7ff1ab9" + }, + { + "name": "dwp.uc.households_by_area@W07000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10767.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e4a7ce65c58aa0196ed5a4" + }, + { + "name": "dwp.uc.households_by_area@W07000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c6e98ac0405dddfa674d921" + }, + { + "name": "dwp.uc.households_by_area@W07000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7497.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_537d9103914f9dbfb46d3919" + }, + { + "name": "dwp.uc.households_by_area@W07000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7925.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b56df658a282882fd63d47d5" + }, + { + "name": "dwp.uc.households_by_area@W07000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12833.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95ea13aee7177181b7b34b0e" + }, + { + "name": "dwp.uc.households_by_area@W07000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8518d184bfedf0b554bfd262" + }, + { + "name": "dwp.uc.households_by_area@W07000097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28eecd322c9c2554ce59594b" + }, + { + "name": "dwp.uc.households_by_area@W07000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10624.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c76702c2fce5b1a619d7ba9b" + }, + { + "name": "dwp.uc.households_by_area@W07000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13395.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_988b90f54c8959419ae42bd1" + }, + { + "name": "dwp.uc.households_by_area@W07000100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10124.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a7f70736ff02e9aa8864d64" + }, + { + "name": "dwp.uc.households_by_area@W07000101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6463.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99de819a1c3a848202297328" + }, + { + "name": "dwp.uc.households_by_area@W07000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9036.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a83f175afe8f076083311c22" + }, + { + "name": "dwp.uc.households_by_area@W07000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11658.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d06722e0d55fc0028ad6f9bd" + }, + { + "name": "dwp.uc.households_by_area@W07000104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15633.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5cffb230c5b260afc5ed00a" + }, + { + "name": "dwp.uc.households_by_area@W07000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10069.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4feaf9e7cd654873974cf2a6" + }, + { + "name": "dwp.uc.households_by_area@W07000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcc5a372c21c324828539ce7" + }, + { + "name": "dwp.uc.households_by_area@W07000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e11b0782e17a4f7f916bb1c8" + }, + { + "name": "dwp.uc.households_by_area@W07000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f70100a5dd05c254ca1c540" + }, + { + "name": "dwp.uc.households_by_area@W07000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11769.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99e94dfa93ea47536de0b204" + }, + { + "name": "dwp.uc.households_by_area@W07000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9831.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_701af94701c531d09e442a95" + }, + { + "name": "dwp.uc.households_by_area@W07000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10293.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a61d030f8eba7bb8d0b5e9f6" + }, + { + "name": "dwp.uc.households_by_area@W07000112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6684.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_802affc64756074652bab65c" + } + ] + }, + "local_authority": { + "status": "partially_active", + "candidate_count": 361, + "candidates": [ + { + "name": "dwp.uc.households_by_area@E06000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee8007b14f627e71b2931163" + }, + { + "name": "dwp.uc.households_by_area@E06000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23208.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c1d68f05672d99722de3568" + }, + { + "name": "dwp.uc.households_by_area@E06000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17289.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd1de5fbe40ccca8f6c62d9e" + }, + { + "name": "dwp.uc.households_by_area@E06000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22361.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3b4714606b8c588a99b82c9" + }, + { + "name": "dwp.uc.households_by_area@E06000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12150.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f43eea6c0e2e8c8cf2ddf842" + }, + { + "name": "dwp.uc.households_by_area@E06000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16830.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_25e267e6edbb8dc8acfa3b2c" + }, + { + "name": "dwp.uc.households_by_area@E06000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef03aa995d955745a01d689b" + }, + { + "name": "dwp.uc.households_by_area@E06000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22749.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78a99a58d3ffba765e9790d6" + }, + { + "name": "dwp.uc.households_by_area@E06000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24045.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_472f80bd54ff5bca8f0aa668" + }, + { + "name": "dwp.uc.households_by_area@E06000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42503.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72084e2894e9a5e12f8bc4ee" + }, + { + "name": "dwp.uc.households_by_area@E06000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23506.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fbcf99ab0078d0162854f39" + }, + { + "name": "dwp.uc.households_by_area@E06000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20533.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_533a110a78a5fca70b7ffa1b" + }, + { + "name": "dwp.uc.households_by_area@E06000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17088.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdf35d990e02d122cacfbf03" + }, + { + "name": "dwp.uc.households_by_area@E06000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26fd4d5efd5f7c8eadbe3302" + }, + { + "name": "dwp.uc.households_by_area@E06000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33560.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98fc0b50799eb53e1bfc310f" + }, + { + "name": "dwp.uc.households_by_area@E06000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49542.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0688007bb17e01ff9a2ba390" + }, + { + "name": "dwp.uc.households_by_area@E06000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e036348d74ffd4a1e82e4b8" + }, + { + "name": "dwp.uc.households_by_area@E06000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47892.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d62f4e5358202ae11547332" + }, + { + "name": "dwp.uc.households_by_area@E06000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13307.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8a5d8d5c41499685e59a931" + }, + { + "name": "dwp.uc.households_by_area@E06000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21218.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a73eed5ec054a9c286d8bf23" + }, + { + "name": "dwp.uc.households_by_area@E06000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35330.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_52140062b2d186e469e59b41" + }, + { + "name": "dwp.uc.households_by_area@E06000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12471.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d45dfb12b40b7f4b69540539" + }, + { + "name": "dwp.uc.households_by_area@E06000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47956.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72d0ea731b80774196b243b5" + }, + { + "name": "dwp.uc.households_by_area@E06000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16596.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc7054bf151f8c9721efaad1" + }, + { + "name": "dwp.uc.households_by_area@E06000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19659.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccf8d76b304279983e17170f" + }, + { + "name": "dwp.uc.households_by_area@E06000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29190.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b1e83d28a079185e3b0d2c2" + }, + { + "name": "dwp.uc.households_by_area@E06000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15202.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69dcc1569db0e97d50d3982a" + }, + { + "name": "dwp.uc.households_by_area@E06000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb0c817b9ccf41edcead5b6e" + }, + { + "name": "dwp.uc.households_by_area@E06000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28603.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f93be5b88eb526f64ba50db" + }, + { + "name": "dwp.uc.households_by_area@E06000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29378.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a3b7aaea1472eaac5034fae" + }, + { + "name": "dwp.uc.households_by_area@E06000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17e2edc4561824e3fce3d118" + }, + { + "name": "dwp.uc.households_by_area@E06000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18320.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23364c604407e87b9577983f" + }, + { + "name": "dwp.uc.households_by_area@E06000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29986.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b382d1c418ff0557e5f27a0f" + }, + { + "name": "dwp.uc.households_by_area@E06000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8142.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64c9207bd35670dfd2eb3346" + }, + { + "name": "dwp.uc.households_by_area@E06000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_71f634c00ad16ac99c763262" + }, + { + "name": "dwp.uc.households_by_area@E06000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16822.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cf616dcbab131a6a8df10ca" + }, + { + "name": "dwp.uc.households_by_area@E06000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18391.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c605a72cd006f5c315f3bc8" + }, + { + "name": "dwp.uc.households_by_area@E06000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8103.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5738fc51c9e90ea06f81a549" + }, + { + "name": "dwp.uc.households_by_area@E06000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7683.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31534872fe4b19c508e23de5" + }, + { + "name": "dwp.uc.households_by_area@E06000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e604162f0e522c0f740bb89f" + }, + { + "name": "dwp.uc.households_by_area@E06000043", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29103.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f26e6f433585c95a82b0383b" + }, + { + "name": "dwp.uc.households_by_area@E06000044", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24094.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f959c935e71c62a12f1b994" + }, + { + "name": "dwp.uc.households_by_area@E06000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28851.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89436d5bb12e2a4fd7a089e0" + }, + { + "name": "dwp.uc.households_by_area@E06000046", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13788.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f08d12b9d69cebd3a2cf85f" + }, + { + "name": "dwp.uc.households_by_area@E06000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ad1d94595c046149d06d9f7" + }, + { + "name": "dwp.uc.households_by_area@E06000049", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27788.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c88ffbcdb2c2ac9c6a312b4" + }, + { + "name": "dwp.uc.households_by_area@E06000050", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29677.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0af38045123b16229dad060a" + }, + { + "name": "dwp.uc.households_by_area@E06000051", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21930.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d53a3e38cf38ee3206c6602" + }, + { + "name": "dwp.uc.households_by_area@E06000052", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51387.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f6b41e5ffb710e6ff8d1164" + }, + { + "name": "dwp.uc.households_by_area@E06000053", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 78.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_343007d5ae09a3c32fc78696" + }, + { + "name": "dwp.uc.households_by_area@E06000054", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34287.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f87bf59cc6b55fab4d1b9ee" + }, + { + "name": "dwp.uc.households_by_area@E06000055", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18045.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28b6b4bee728030975f231b7" + }, + { + "name": "dwp.uc.households_by_area@E06000056", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2bafac4ce52f3b78d328d3a" + }, + { + "name": "dwp.uc.households_by_area@E06000057", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85adc1c839f232e1e101da4" + }, + { + "name": "dwp.uc.households_by_area@E06000058", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35821.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4b3a708ac8daebcb4c36e5c" + }, + { + "name": "dwp.uc.households_by_area@E06000059", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25943.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0b621c9a9808051329ed8f5" + }, + { + "name": "dwp.uc.households_by_area@E06000060", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34795.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_abc92c332379cd68cd1d14c3" + }, + { + "name": "dwp.uc.households_by_area@E06000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34612.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_613d857c2530566b00c068eb" + }, + { + "name": "dwp.uc.households_by_area@E06000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2258adfa42bd140d5fd63400" + }, + { + "name": "dwp.uc.households_by_area@E06000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24075.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35ae47f501342325b072938f" + }, + { + "name": "dwp.uc.households_by_area@E06000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0bd9ad67dd456d39ac0d758" + }, + { + "name": "dwp.uc.households_by_area@E06000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40814.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1966fc009af6a39280126a95" + }, + { + "name": "dwp.uc.households_by_area@E06000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27fe621b8b3439707deb1f05" + }, + { + "name": "dwp.uc.households_by_area@E07000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8804.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f633bd1ef06a264ebfd11b34" + }, + { + "name": "dwp.uc.households_by_area@E07000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5516.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_579561e666b92ab039178b2e" + }, + { + "name": "dwp.uc.households_by_area@E07000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10225.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f25f2cc4640d27deed69a652" + }, + { + "name": "dwp.uc.households_by_area@E07000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12134.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99728fd3e56e87357dc616f9" + }, + { + "name": "dwp.uc.households_by_area@E07000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8659.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43b10df0b5cc40fb2b7cd0e5" + }, + { + "name": "dwp.uc.households_by_area@E07000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10741.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eadf272647ff676f6416f65d" + }, + { + "name": "dwp.uc.households_by_area@E07000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8389.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6459ce3188f142de5383e281" + }, + { + "name": "dwp.uc.households_by_area@E07000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11370.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7e621e0f0def6a37fd97d64" + }, + { + "name": "dwp.uc.households_by_area@E07000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3686.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44623877b5053854d653fbfa" + }, + { + "name": "dwp.uc.households_by_area@E07000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11064.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e536dac72e7ca0e92193353c" + }, + { + "name": "dwp.uc.households_by_area@E07000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7876a41b3eb74d077be17540" + }, + { + "name": "dwp.uc.households_by_area@E07000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5873833705d4bfb9407a9608" + }, + { + "name": "dwp.uc.households_by_area@E07000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8326.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04194cb735d536d2b6cfeda1" + }, + { + "name": "dwp.uc.households_by_area@E07000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8563bdaff296b03004e1aef4" + }, + { + "name": "dwp.uc.households_by_area@E07000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10578.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f5553a72684cefc4e75be10" + }, + { + "name": "dwp.uc.households_by_area@E07000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6107.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3034f17662765cabe0d03958" + }, + { + "name": "dwp.uc.households_by_area@E07000043", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a12ec11bcf69cf94bd7ac47" + }, + { + "name": "dwp.uc.households_by_area@E07000044", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_abe98d53f2c89682fa475b26" + }, + { + "name": "dwp.uc.households_by_area@E07000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9847.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_12b316ad10c248db1a2c637f" + }, + { + "name": "dwp.uc.households_by_area@E07000046", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5654.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b03b6cf36598d7590444236" + }, + { + "name": "dwp.uc.households_by_area@E07000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3693.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7347acca161f0c5ba2c68016" + }, + { + "name": "dwp.uc.households_by_area@E07000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1cda4f46975700d5b017236" + }, + { + "name": "dwp.uc.households_by_area@E07000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12773.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3714fd1a931ec75dfdbf36a3" + }, + { + "name": "dwp.uc.households_by_area@E07000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8162.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c22f1832ad08b8b25c4258e" + }, + { + "name": "dwp.uc.households_by_area@E07000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7700.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59e1657c451db930eb57e96a" + }, + { + "name": "dwp.uc.households_by_area@E07000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9286.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_131bbc62d1645d4ac18d897a" + }, + { + "name": "dwp.uc.households_by_area@E07000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19387.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e3e29c1ce76e1ad9fc97543" + }, + { + "name": "dwp.uc.households_by_area@E07000067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12076.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_563ff21051279076a9716741" + }, + { + "name": "dwp.uc.households_by_area@E07000068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4453.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_11b4de097d14c49fe90a8030" + }, + { + "name": "dwp.uc.households_by_area@E07000069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6132.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f726542a411aaa283dfaf03f" + }, + { + "name": "dwp.uc.households_by_area@E07000070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f71d4c9308704743610c653" + }, + { + "name": "dwp.uc.households_by_area@E07000071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84e52566ada6956dc8a78f9a" + }, + { + "name": "dwp.uc.households_by_area@E07000072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9386.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_691fd61e19039af177c3a5b6" + }, + { + "name": "dwp.uc.households_by_area@E07000073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11330.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd2eaf36d3972dc942cb113" + }, + { + "name": "dwp.uc.households_by_area@E07000074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ea29cb01484038b8ec5fb78" + }, + { + "name": "dwp.uc.households_by_area@E07000075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c58eebdac5e328a2b2209c8" + }, + { + "name": "dwp.uc.households_by_area@E07000076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba9cb0a6f330afc85b383b29" + }, + { + "name": "dwp.uc.households_by_area@E07000077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4667.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4113e73475812c80863e188" + }, + { + "name": "dwp.uc.households_by_area@E07000078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8479.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_858f843b8d0d37a8b407c8aa" + }, + { + "name": "dwp.uc.households_by_area@E07000079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4726.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_334edf2b896a3177c07bf784" + }, + { + "name": "dwp.uc.households_by_area@E07000080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6592.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3350e8dc9894ec9b2b2be580" + }, + { + "name": "dwp.uc.households_by_area@E07000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13517.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ece4061edec4047c75dcca1c" + }, + { + "name": "dwp.uc.households_by_area@E07000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7443.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea20209ad312fc99df4a4d98" + }, + { + "name": "dwp.uc.households_by_area@E07000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6874.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e081b36cfef45a46cd89f226" + }, + { + "name": "dwp.uc.households_by_area@E07000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12911.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b62e26c7e915aec0db6f93" + }, + { + "name": "dwp.uc.households_by_area@E07000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_737391616f28bf5a92ac172b" + }, + { + "name": "dwp.uc.households_by_area@E07000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8980.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_93617250791169a4da445f4d" + }, + { + "name": "dwp.uc.households_by_area@E07000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5817.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c1fbcdb7bae7a33d332de7e" + }, + { + "name": "dwp.uc.households_by_area@E07000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_90adeb78ae9062f3e7bf715e" + }, + { + "name": "dwp.uc.households_by_area@E07000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4278.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aca8604cd33425a9e44952a0" + }, + { + "name": "dwp.uc.households_by_area@E07000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_46f83b470c25c54bee7a2495" + }, + { + "name": "dwp.uc.households_by_area@E07000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10548.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db41a091d0d21f4179323630" + }, + { + "name": "dwp.uc.households_by_area@E07000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7647.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fd299719d5e7adead1a0b4f" + }, + { + "name": "dwp.uc.households_by_area@E07000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8176.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bd55640b55e2f639f66f1c4" + }, + { + "name": "dwp.uc.households_by_area@E07000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7347.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26ed6c5e52e2aea1bd78ecff" + }, + { + "name": "dwp.uc.households_by_area@E07000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9677.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3c04415c8688be34a250556" + }, + { + "name": "dwp.uc.households_by_area@E07000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12259.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fa8352cd9d06e42763e0f04" + }, + { + "name": "dwp.uc.households_by_area@E07000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8605597d873aa9549e910e27" + }, + { + "name": "dwp.uc.households_by_area@E07000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0166d1b26b26e6d735dd5bf5" + }, + { + "name": "dwp.uc.households_by_area@E07000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a541c2413bd8114356a8010a" + }, + { + "name": "dwp.uc.households_by_area@E07000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9919.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64619b5796dfc08de14d5eee" + }, + { + "name": "dwp.uc.households_by_area@E07000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11731.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7821918d881062dbfd4a714d" + }, + { + "name": "dwp.uc.households_by_area@E07000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13796.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76db95bb0385674e07f2bccb" + }, + { + "name": "dwp.uc.households_by_area@E07000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9722de515614f5ed3e39bc88" + }, + { + "name": "dwp.uc.households_by_area@E07000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11979.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21bf350a451ece2b062f0c0e" + }, + { + "name": "dwp.uc.households_by_area@E07000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b696f880210b1164b6dd515d" + }, + { + "name": "dwp.uc.households_by_area@E07000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14975.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_24743a7604e2dbe19a01c017" + }, + { + "name": "dwp.uc.households_by_area@E07000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6886.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e52f8e91327823dbbd3f5e0b" + }, + { + "name": "dwp.uc.households_by_area@E07000112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10635.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e6d1ae514a80d64a922ac36" + }, + { + "name": "dwp.uc.households_by_area@E07000113", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc05616746ec25dd22714e1e" + }, + { + "name": "dwp.uc.households_by_area@E07000114", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62de3157347e8be9e31344fc" + }, + { + "name": "dwp.uc.households_by_area@E07000115", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8643.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0773d870005b3cedc28e3c6" + }, + { + "name": "dwp.uc.households_by_area@E07000116", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7435.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_064cfa23567a67ca160698d6" + }, + { + "name": "dwp.uc.households_by_area@E07000117", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd9de79e730b78c1ebc61386" + }, + { + "name": "dwp.uc.households_by_area@E07000118", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9253.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70d3d10f8d214c2e956cba0" + }, + { + "name": "dwp.uc.households_by_area@E07000119", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6118.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5db04af4696e7396df88071d" + }, + { + "name": "dwp.uc.households_by_area@E07000120", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11927.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_279d4aedf9bc3958fe71753f" + }, + { + "name": "dwp.uc.households_by_area@E07000121", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13532.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_243341d04440dab8a8401437" + }, + { + "name": "dwp.uc.households_by_area@E07000122", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00cc6e9d2fedb7bab93f4acf" + }, + { + "name": "dwp.uc.households_by_area@E07000123", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18919.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be0b99c66b6767b81460a2b0" + }, + { + "name": "dwp.uc.households_by_area@E07000124", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3108.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e457f1637a90505318804d35" + }, + { + "name": "dwp.uc.households_by_area@E07000125", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7459.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cab08eb38372fb8af95f80c" + }, + { + "name": "dwp.uc.households_by_area@E07000126", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8410.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb9f3701b670352253e81da6" + }, + { + "name": "dwp.uc.households_by_area@E07000127", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10216.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23eda08799f9221c33723de3" + }, + { + "name": "dwp.uc.households_by_area@E07000128", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9722.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdb15438cded51ac3b02a723" + }, + { + "name": "dwp.uc.households_by_area@E07000129", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6458.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31291024cb1a33523fabf213" + }, + { + "name": "dwp.uc.households_by_area@E07000130", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13132.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8992856d1cab401bfa5259c" + }, + { + "name": "dwp.uc.households_by_area@E07000131", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5137.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15ea3ef976b99b8f906521f3" + }, + { + "name": "dwp.uc.households_by_area@E07000132", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50c97d2499098a9ea06ec5f2" + }, + { + "name": "dwp.uc.households_by_area@E07000133", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f131a8202c37026d32c6ce0b" + }, + { + "name": "dwp.uc.households_by_area@E07000134", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7966.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_32e52f6b97ffbdde4ba729ed" + }, + { + "name": "dwp.uc.households_by_area@E07000135", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4203.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a54c13c8ac03c1e6c0f835b" + }, + { + "name": "dwp.uc.households_by_area@E07000136", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8858.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5a691b60dc56efd3dba7e38" + }, + { + "name": "dwp.uc.households_by_area@E07000137", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f431a9c9342733da02bf75b" + }, + { + "name": "dwp.uc.households_by_area@E07000138", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12112.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_25d9a4343b82c02c393f6df9" + }, + { + "name": "dwp.uc.households_by_area@E07000139", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d95a0ee21508d33151b48f0e" + }, + { + "name": "dwp.uc.households_by_area@E07000140", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8491.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4129ac7e2edcac054bc14be2" + }, + { + "name": "dwp.uc.households_by_area@E07000141", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b27b554346f325bfdc4ad47" + }, + { + "name": "dwp.uc.households_by_area@E07000142", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d5db8f46075b8d7b3ba7d93" + }, + { + "name": "dwp.uc.households_by_area@E07000143", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec407c5cd15b2c828007c5e9" + }, + { + "name": "dwp.uc.households_by_area@E07000144", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7886.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5f922dc643effd6db3e92ea" + }, + { + "name": "dwp.uc.households_by_area@E07000145", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13793.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc728742eafb68370f100b7" + }, + { + "name": "dwp.uc.households_by_area@E07000146", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12754.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ddecc090e3cfdb0afc3b2d6" + }, + { + "name": "dwp.uc.households_by_area@E07000147", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b234f4b256a8b4427d79da2" + }, + { + "name": "dwp.uc.households_by_area@E07000148", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17484.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a76a57811f5b4bef7def1097" + }, + { + "name": "dwp.uc.households_by_area@E07000149", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9011.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bd698d29e4c46faabefb944" + }, + { + "name": "dwp.uc.households_by_area@E07000170", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14341.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26314caae870004c43438362" + }, + { + "name": "dwp.uc.households_by_area@E07000171", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11598.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ece917237fe3e8b238572ae" + }, + { + "name": "dwp.uc.households_by_area@E07000172", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8462.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c399760883367fd03ef714cf" + }, + { + "name": "dwp.uc.households_by_area@E07000173", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9898.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fecaa598d985203d95c138ff" + }, + { + "name": "dwp.uc.households_by_area@E07000174", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13139.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cd1d2551a194e8b901348f4" + }, + { + "name": "dwp.uc.households_by_area@E07000175", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10647.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f05dd87327f5d151184561" + }, + { + "name": "dwp.uc.households_by_area@E07000176", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5994.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b95eb5e899b1c26efa86cb82" + }, + { + "name": "dwp.uc.households_by_area@E07000177", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11034.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09302a98d765854904ad18c3" + }, + { + "name": "dwp.uc.households_by_area@E07000178", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11693.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23d234784bbadd5078ff1a14" + }, + { + "name": "dwp.uc.households_by_area@E07000179", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39f54b509595893465130884" + }, + { + "name": "dwp.uc.households_by_area@E07000180", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8364.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce014e990bef4cf075cbc08" + }, + { + "name": "dwp.uc.households_by_area@E07000181", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6479.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee049cb72c257532f591fc4" + }, + { + "name": "dwp.uc.households_by_area@E07000192", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ce7563232a06388455d9f75" + }, + { + "name": "dwp.uc.households_by_area@E07000193", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11478.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f8e342dbce0de7a0a98df8c" + }, + { + "name": "dwp.uc.households_by_area@E07000194", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7164.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d226994745e20350711268db" + }, + { + "name": "dwp.uc.households_by_area@E07000195", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10705.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_542cbe9325017dc06fc2d9ed" + }, + { + "name": "dwp.uc.households_by_area@E07000196", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eecfac63ff1cb07ea52d2b27" + }, + { + "name": "dwp.uc.households_by_area@E07000197", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9561.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_24a95195db2ada35acc6c4e6" + }, + { + "name": "dwp.uc.households_by_area@E07000198", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fb6bcf039ca059837644fc2" + }, + { + "name": "dwp.uc.households_by_area@E07000199", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7755.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63dc60515ace3e8a8d3a7cf" + }, + { + "name": "dwp.uc.households_by_area@E07000200", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6097.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4408e58fd51a83f8afad54a3" + }, + { + "name": "dwp.uc.households_by_area@E07000202", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16106.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc53fe91fa094367e7e30bf1" + }, + { + "name": "dwp.uc.households_by_area@E07000203", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6255.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ada33cc77eb12ce453a2e285" + }, + { + "name": "dwp.uc.households_by_area@E07000207", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6829.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d08a94de0aefab2762a1070" + }, + { + "name": "dwp.uc.households_by_area@E07000208", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4059.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cee5c223873cf1d8da73119d" + }, + { + "name": "dwp.uc.households_by_area@E07000209", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96bd4e4f5bc308e47adb3a1" + }, + { + "name": "dwp.uc.households_by_area@E07000210", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35d1ac9df59cbd49801ca6de" + }, + { + "name": "dwp.uc.households_by_area@E07000211", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8577.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce7ef660e78eed83beb820fb" + }, + { + "name": "dwp.uc.households_by_area@E07000212", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5490.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aadaabc1fccc0240f3601a8" + }, + { + "name": "dwp.uc.households_by_area@E07000213", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7967.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2291d5e952bfd0fdc0f7f79c" + }, + { + "name": "dwp.uc.households_by_area@E07000214", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7325b0ff0acd2081e4125ae2" + }, + { + "name": "dwp.uc.households_by_area@E07000215", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5115.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c835208440516c763349d6f" + }, + { + "name": "dwp.uc.households_by_area@E07000216", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5753.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_957a1155cc1580d9f34271b2" + }, + { + "name": "dwp.uc.households_by_area@E07000217", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc5043aed23cea476e007815" + }, + { + "name": "dwp.uc.households_by_area@E07000218", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5410.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b0327b47d6d71e67d6c9250" + }, + { + "name": "dwp.uc.households_by_area@E07000219", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14899.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b781960b43175262d1d8b366" + }, + { + "name": "dwp.uc.households_by_area@E07000220", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9220.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cc476a31d7f2d8b009c63f7" + }, + { + "name": "dwp.uc.households_by_area@E07000221", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8405.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b81e3d3da0c89cba438a947e" + }, + { + "name": "dwp.uc.households_by_area@E07000222", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9394.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3b60e788348eb2265c35dd0" + }, + { + "name": "dwp.uc.households_by_area@E07000223", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4929.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64fcb1b5cce4b1c7d09c72ec" + }, + { + "name": "dwp.uc.households_by_area@E07000224", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14017.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b05b02f8d438c15bca0c53a8" + }, + { + "name": "dwp.uc.households_by_area@E07000225", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8730.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_32b9f67ce1e1002312541bcc" + }, + { + "name": "dwp.uc.households_by_area@E07000226", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13111.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2725b562b20123b44344de73" + }, + { + "name": "dwp.uc.households_by_area@E07000227", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7704.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7f6b75d70fa5b30345b7df6" + }, + { + "name": "dwp.uc.households_by_area@E07000228", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2faf2680f088f7af1d70f355" + }, + { + "name": "dwp.uc.households_by_area@E07000229", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9133.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da91f4a88747862e472e99e8" + }, + { + "name": "dwp.uc.households_by_area@E07000234", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72b46ea7275cd5d1dfe86a4e" + }, + { + "name": "dwp.uc.households_by_area@E07000235", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5469.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21bbd21e6798e71fd88a977d" + }, + { + "name": "dwp.uc.households_by_area@E07000236", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8826.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6da98e060fbf20ffcfda6e3" + }, + { + "name": "dwp.uc.households_by_area@E07000237", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c01229953eeb29c499992c74" + }, + { + "name": "dwp.uc.households_by_area@E07000238", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9404.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa5a23781be460e58dd9f840" + }, + { + "name": "dwp.uc.households_by_area@E07000239", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1734d5d8f1f05a749c1ad6f3" + }, + { + "name": "dwp.uc.households_by_area@E07000240", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0ac57e58527d8bd45ceeb3b" + }, + { + "name": "dwp.uc.households_by_area@E07000241", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10172.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d10172fb53994a9bbb65f776" + }, + { + "name": "dwp.uc.households_by_area@E07000242", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0c1f7f32e39563541e534f1" + }, + { + "name": "dwp.uc.households_by_area@E07000243", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63cf00807d8254d05e6b16a7" + }, + { + "name": "dwp.uc.households_by_area@E07000244", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20273.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c475e5cd96073d2010e1221a" + }, + { + "name": "dwp.uc.households_by_area@E07000245", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12955.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a774e826da4a9da8232070bb" + }, + { + "name": "dwp.uc.households_by_area@E08000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38854.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd0483d431fb2991847d09a3" + }, + { + "name": "dwp.uc.households_by_area@E08000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3df157c84bbc3826175d9ff2" + }, + { + "name": "dwp.uc.households_by_area@E08000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 88038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_681c729ecfb2717dd9e3c506" + }, + { + "name": "dwp.uc.households_by_area@E08000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35740.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_581d8b25c9b10feb3896594f" + }, + { + "name": "dwp.uc.households_by_area@E08000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32646.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_704657dee9e2b1493b844c2c" + }, + { + "name": "dwp.uc.households_by_area@E08000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_38e2014f57c2227753d0b934" + }, + { + "name": "dwp.uc.households_by_area@E08000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25111.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_141046abac4a90c21552feb4" + }, + { + "name": "dwp.uc.households_by_area@E08000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30404.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_337beea274843423dfacfa46" + }, + { + "name": "dwp.uc.households_by_area@E08000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18070.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83747975f64f06278019ef04" + }, + { + "name": "dwp.uc.households_by_area@E08000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35950.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8cd230fcb47b5c6f60b213d" + }, + { + "name": "dwp.uc.households_by_area@E08000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23194.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_294ca003ff9025ab85082f18" + }, + { + "name": "dwp.uc.households_by_area@E08000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 75842.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_956c843f67a4741d292b09d0" + }, + { + "name": "dwp.uc.households_by_area@E08000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6765e680a14e04ef38984e9e" + }, + { + "name": "dwp.uc.households_by_area@E08000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30512.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49c46d2f8548318d68fd9156" + }, + { + "name": "dwp.uc.households_by_area@E08000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_13137388520d84aef45c0860" + }, + { + "name": "dwp.uc.households_by_area@E08000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29540.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_262ebf829809388e2b82a2a0" + }, + { + "name": "dwp.uc.households_by_area@E08000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39178.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde09846d69068ec5c2af082" + }, + { + "name": "dwp.uc.households_by_area@E08000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32950.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c69a0169739b61154fefcf3" + }, + { + "name": "dwp.uc.households_by_area@E08000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 64794.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fc150ce6f1a1976cf987f92" + }, + { + "name": "dwp.uc.households_by_area@E08000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36753.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78dacb8dcb37ff66fc032044" + }, + { + "name": "dwp.uc.households_by_area@E08000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21096.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e0534a241fafdd8e350af9" + }, + { + "name": "dwp.uc.households_by_area@E08000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20672.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d595793549143c9be83e467c" + }, + { + "name": "dwp.uc.households_by_area@E08000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37580.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e5164edb4f5c7d44a53a314" + }, + { + "name": "dwp.uc.households_by_area@E08000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 195750.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78e9df1b1036591ac4efc0d5" + }, + { + "name": "dwp.uc.households_by_area@E08000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43698.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78a4b4fe2274c35efbd074e1" + }, + { + "name": "dwp.uc.households_by_area@E08000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35551.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bbcf2709932c559cf7d7c2b" + }, + { + "name": "dwp.uc.households_by_area@E08000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59bce0a53be1a6bac50d4b1b" + }, + { + "name": "dwp.uc.households_by_area@E08000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18511.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5957f7f01def66617786d71f" + }, + { + "name": "dwp.uc.households_by_area@E08000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38900.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b7cdadbd3e7537ca21ae558" + }, + { + "name": "dwp.uc.households_by_area@E08000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39143.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_055322f7d74367a54effeb67" + }, + { + "name": "dwp.uc.households_by_area@E08000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80247.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3070ffd65d098607dca2a2ba" + }, + { + "name": "dwp.uc.households_by_area@E08000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24541.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1e0a2686b6c616124246c85" + }, + { + "name": "dwp.uc.households_by_area@E08000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49638.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac06ab6c663a0bc0fadd11c4" + }, + { + "name": "dwp.uc.households_by_area@E08000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 88666.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_36e658ee556cac16baf45db8" + }, + { + "name": "dwp.uc.households_by_area@E08000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39423.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b082907e7ddb9e1f360ec6b" + }, + { + "name": "dwp.uc.households_by_area@E08000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e24feba0e97826859a2ec0cd" + }, + { + "name": "dwp.uc.households_by_area@E09000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 440.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_968f4f007627a816360e439e" + }, + { + "name": "dwp.uc.households_by_area@E09000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8188c1a25831f2ec6750d8d1" + }, + { + "name": "dwp.uc.households_by_area@E09000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41252.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb40e745a611e46773379db" + }, + { + "name": "dwp.uc.households_by_area@E09000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20961.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a10670371fa5dddf4e917374" + }, + { + "name": "dwp.uc.households_by_area@E09000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fd36f039f40c33199ec61c4" + }, + { + "name": "dwp.uc.households_by_area@E09000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc91f5475c7fda68bd82ff50" + }, + { + "name": "dwp.uc.households_by_area@E09000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66099bbc7b115dcc5070409" + }, + { + "name": "dwp.uc.households_by_area@E09000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51866.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31d5e418e619927107c840b2" + }, + { + "name": "dwp.uc.households_by_area@E09000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47438.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9afa8d9305ca6f48a9ad3b02" + }, + { + "name": "dwp.uc.households_by_area@E09000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51148.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c83b19d92a35cca0d2a9b24" + }, + { + "name": "dwp.uc.households_by_area@E09000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36583.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d50066839ad6815278bc23a8" + }, + { + "name": "dwp.uc.households_by_area@E09000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42594.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51fea38ccaaad7a6624d86ed" + }, + { + "name": "dwp.uc.households_by_area@E09000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20839.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3caf1bdd9f9074a870191f5" + }, + { + "name": "dwp.uc.households_by_area@E09000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41974.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c15194638524c2dcb77fefc4" + }, + { + "name": "dwp.uc.households_by_area@E09000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23219.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_818c1b7ae151a6b0621fd164" + }, + { + "name": "dwp.uc.households_by_area@E09000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a00faef40f838a3e9632b7" + }, + { + "name": "dwp.uc.households_by_area@E09000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31615.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1fd0cc328a55da27c21f0b3" + }, + { + "name": "dwp.uc.households_by_area@E09000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67fc45fa491c72e3e8e2a93f" + }, + { + "name": "dwp.uc.households_by_area@E09000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30168.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73117133c7c1c1424d9514bd" + }, + { + "name": "dwp.uc.households_by_area@E09000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12588.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78c5d82a0846fd0fe588c764" + }, + { + "name": "dwp.uc.households_by_area@E09000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11931.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4d311630e90af81b6969322" + }, + { + "name": "dwp.uc.households_by_area@E09000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e965754e36feccc98b861f4f" + }, + { + "name": "dwp.uc.households_by_area@E09000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6534c757b99182f147e93694" + }, + { + "name": "dwp.uc.households_by_area@E09000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5f07a330fe319ea3bf5dc65" + }, + { + "name": "dwp.uc.households_by_area@E09000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 52907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a1111137230fc6c4f6d2ce6" + }, + { + "name": "dwp.uc.households_by_area@E09000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32035.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf6a6ba43db24cae71846a2b" + }, + { + "name": "dwp.uc.households_by_area@E09000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5dd9bce964ddd41fb3ea3a0" + }, + { + "name": "dwp.uc.households_by_area@E09000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41287.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eed1c9bebf11a10a1eba3c2a" + }, + { + "name": "dwp.uc.households_by_area@E09000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_921f9cc2c2fbf7e427f35a80" + }, + { + "name": "dwp.uc.households_by_area@E09000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47260.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8620268a3b4daedc22890bf" + }, + { + "name": "dwp.uc.households_by_area@E09000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35001.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_271bf03e7783d983dbf16401" + }, + { + "name": "dwp.uc.households_by_area@E09000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28726.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1a797b29998112952fc28a2" + }, + { + "name": "dwp.uc.households_by_area@E09000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22253.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a59e1750367f3079a813065" + }, + { + "name": "dwp.uc.households_by_area@N09000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@N09000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts." + }, + { + "name": "dwp.uc.households_by_area@S12000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6118.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fed286936fd75989177d2479" + }, + { + "name": "dwp.uc.households_by_area@S12000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14121.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dbd475182d2de3418daa59c" + }, + { + "name": "dwp.uc.households_by_area@S12000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_781cb4a489a53d9284910bce" + }, + { + "name": "dwp.uc.households_by_area@S12000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9391.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7a02b04cfacacb16ba601b7" + }, + { + "name": "dwp.uc.households_by_area@S12000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5412.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_24caf8b56d3584fd5480d0bf" + }, + { + "name": "dwp.uc.households_by_area@S12000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1657.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_024b06432b6fdc000c8ce617" + }, + { + "name": "dwp.uc.households_by_area@S12000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e7a48d3241373793060d44a" + }, + { + "name": "dwp.uc.households_by_area@S12000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19188.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f02dc18180370463de136bcf" + }, + { + "name": "dwp.uc.households_by_area@S12000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6591e4f7a6301ffdcc6a69f" + }, + { + "name": "dwp.uc.households_by_area@S12000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3afab513112b8da2fbc268c" + }, + { + "name": "dwp.uc.households_by_area@S12000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7503.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c291f1802ddac8e5c7690470" + }, + { + "name": "dwp.uc.households_by_area@S12000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17847.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f63bb8c59fb82430abc94e4" + }, + { + "name": "dwp.uc.households_by_area@S12000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1324.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_291bad05c877b5bc127d2bbb" + }, + { + "name": "dwp.uc.households_by_area@S12000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c63a8b86e51a2a0e906dfb1" + }, + { + "name": "dwp.uc.households_by_area@S12000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_994735f9b872daea7ff4472e" + }, + { + "name": "dwp.uc.households_by_area@S12000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b25a8a47d9fc36b91e74e4" + }, + { + "name": "dwp.uc.households_by_area@S12000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32911.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_045950ca81cad2c59edd7a68" + }, + { + "name": "dwp.uc.households_by_area@S12000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7013.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4347d90c659c0ee39e82fe18" + }, + { + "name": "dwp.uc.households_by_area@S12000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d736e4a54be7dd326e26033" + }, + { + "name": "dwp.uc.households_by_area@S12000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16050.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb75dee5497f6620779c21ef" + }, + { + "name": "dwp.uc.households_by_area@S12000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7003.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cf3c91d2ad1a9c8a096928f" + }, + { + "name": "dwp.uc.households_by_area@S12000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40256.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d981e4f2c4bd33bbbe6754a1" + }, + { + "name": "dwp.uc.households_by_area@S12000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18919.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd47f82b6d939766fc353e6a" + }, + { + "name": "dwp.uc.households_by_area@S12000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12592.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9cfe898e71a0f215ec983e7" + }, + { + "name": "dwp.uc.households_by_area@S12000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19223.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb39006d2f6f23c510f0feb0" + }, + { + "name": "dwp.uc.households_by_area@S12000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10872.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd7f0c93e69ae2da62df74a7" + }, + { + "name": "dwp.uc.households_by_area@S12000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19052.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e8fe70f8dfde65f66ce67e0" + }, + { + "name": "dwp.uc.households_by_area@S12000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6402.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7eb1dabc1f7b6c5ca6aa9317" + }, + { + "name": "dwp.uc.households_by_area@S12000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d799adc168d5af488b40e0bd" + }, + { + "name": "dwp.uc.households_by_area@S12000048", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11427.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6825cddf5c2d6c293ae37ee2" + }, + { + "name": "dwp.uc.households_by_area@S12000049", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 93610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_55385269fe940b93ff6792db" + }, + { + "name": "dwp.uc.households_by_area@S12000050", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41316.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf5ba36b363a55dd5388a87c" + }, + { + "name": "dwp.uc.households_by_area@W06000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6684.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d26d13575f5b139b6f6f00e5" + }, + { + "name": "dwp.uc.households_by_area@W06000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_401597ce5c4e8057a109cdea" + }, + { + "name": "dwp.uc.households_by_area@W06000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7ef96d5f08eb499690f8b4d" + }, + { + "name": "dwp.uc.households_by_area@W06000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10472.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20607c6d6d796a6f7262a3c0" + }, + { + "name": "dwp.uc.households_by_area@W06000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f6ff8803d7bb7a1785f0692" + }, + { + "name": "dwp.uc.households_by_area@W06000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14517.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a7a66991234ba5cc91633b" + }, + { + "name": "dwp.uc.households_by_area@W06000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5707.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de580182f71bfa6b5174cf87" + }, + { + "name": "dwp.uc.households_by_area@W06000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0dcc587d50aa157c47ee99aa" + }, + { + "name": "dwp.uc.households_by_area@W06000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18713.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e87710a390bebda9c552a593" + }, + { + "name": "dwp.uc.households_by_area@W06000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27880.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_747b224719bf1c5e7f61ec23" + }, + { + "name": "dwp.uc.households_by_area@W06000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17841.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_269671e0c2de70de09564970" + }, + { + "name": "dwp.uc.households_by_area@W06000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15655.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_29a1ca9447fc91f33eeda56f" + }, + { + "name": "dwp.uc.households_by_area@W06000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12039.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08b9c90082248fe325cfe138" + }, + { + "name": "dwp.uc.households_by_area@W06000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fd8e3664e7e038e22fad66e" + }, + { + "name": "dwp.uc.households_by_area@W06000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4de8fccf97d88b52367c6631" + }, + { + "name": "dwp.uc.households_by_area@W06000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa0293864afad954bfa47d7" + }, + { + "name": "dwp.uc.households_by_area@W06000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ca376be9a9ef7ee3650428e" + }, + { + "name": "dwp.uc.households_by_area@W06000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11769.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad357bbacbcef59680c53d8b" + }, + { + "name": "dwp.uc.households_by_area@W06000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6463.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f07b0bd19718ba787289bfc9" + }, + { + "name": "dwp.uc.households_by_area@W06000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19992.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_53c1b5e129c7606086c0f2a4" + }, + { + "name": "dwp.uc.households_by_area@W06000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_13855cc6562a231a58edd5c8" + }, + { + "name": "dwp.uc.households_by_area@W06000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef178e85b6bc29408313e86c" + } + ] + } + } + }, + "dwp.uc.households_by_area_children_0": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "dwp.uc.households_by_area_children_0@E14001063", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ed95b423054d8f14b3044fa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001064", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3623.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c19081740568bd0a10eadec" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001065", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2815.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05d70ba556b0df64e3258a9b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001066", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4516.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b488d05f3098b064d6ad4ca" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001067", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2451.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fc359961b0b3261facc27dc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001068", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5471.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba20535c0c828d8a9eaefa1f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001069", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4787.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_323e67510a560e8ea85427b3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001070", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7018e1cb9081986be4d00836" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001071", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4203.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dad93734ba0b9bde6f91f32c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001072", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3485.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05a4bda642f6e9ccc1e836bc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001073", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9147.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_369162f5f1d49bb50ac1b81d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001074", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6686.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f2b84942ab772d7c44e2ea1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001075", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7643.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6bd5bc31c2e308f035cb9fc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001076", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4601.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2bb1f96e51167e372e8e10b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001077", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5593.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a0db071cdde136850db2c60" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001078", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdfcf8cc2d065d7fe233f6ff" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001079", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5456.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69935da296a48d74da952346" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001080", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3965.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_126c4c0ac8fe0bf0407deca8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb4263500dc2a0942a451a34" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2461.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a92a333a068c583ad6a88efa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4732.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_402f01af9a7acb164ebda54e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_135d1e043cb1d969d1ba6fa4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7916.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8a26e3ec2ed583f39b60db1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9de81dffd21b4a22dddff48" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2904.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de5a55c36f642aa017cbe94b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3781.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ca556f6df324fb7cf40d86f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4166.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_736e3b4b3d69e2c5c9dcbaaa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2593.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_330b8218e0f1355f9ab68158" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9566.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89bf8c0ed7f4e7344389b750" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9466.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c5b316053f690d54eb6568b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12914.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d43e32245e07ed2e88e3266" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11498.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_891a94751a5bdf493903f524" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11376.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_210aea6e9dc35f90acce342f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17932.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_53e0fa91923b4a3071cd6b40" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8834.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_71d745af51e6ad3b32f399dc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14923.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f83a2bbf65b915ddb71ee7e2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17617a2b9a6a3b8841813bad" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10990.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1922aa2539d4fd23cc2bbb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6104.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_960ec2d4efa55a4e418b95e1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8883.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fcb23d5e4c118375d6cb0b9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9573.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2677ee316b1594b66f1ca4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5688.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fb1a2af7ef664366adc0c78" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12371.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_814b2e6b19c12b2729fdd8bf" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f7de7e9637b0f2348c38275" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7506.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84fb47357c114651300fddf7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5469.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05676782f846b1adb62f8489" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5169.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f425c2c5351fc9cb4ea134fa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df5412d0f9269842c7e8af0a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9667.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18af3fe8e30daf58ed3c2158" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001112", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fb874270f56fdd64bc5be4d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001113", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e491e62eda8e5bf5394dd656" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001114", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8080.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78f7b26702727535ca4a13f0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001115", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6649.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d3d1ec2e1364b9bdd667332" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001116", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6516.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4bf4d947b218ffe1e4aa2ca" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001117", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3490.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5599bb1e624f6278f65a55a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001118", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10056.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_45f5d8831986f8fa609273d2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001119", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8275.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c0186676fd3528a38f2549e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001120", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11971.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fe291cb2b275542cd924ad9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001121", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3584.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cfad43f57d80c2126a6ca3f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001122", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13739.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f73d02d0eac3cf8ceb2acfd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001123", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7429.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd08bb29bf20639c062555f0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001124", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7530.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84771b38331663750c44a464" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001125", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de133f83abe1cb9887888ec6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001126", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4808.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0334674f6f4f7927baf3d03" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001127", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26fa3cb99e97c8474e8fa98c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001128", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3170.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc81cbbed158ca2e7c25c271" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001129", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7138.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da16ba4d84a4d767fa680663" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001130", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a250003614a87121b105e369" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001131", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4344.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c5a1ddc84119c0401439e63" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001132", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b4ca97429f68e575a0093a3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001133", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5911.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a928b9bbd05164fcfeb2a054" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001134", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5086.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7166446c026cd2ac216f4cfd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001135", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2879ca34e165a9f59990f278" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001136", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35b967372eb0cf050da4dad6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001137", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3353.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e42f9e819150ef0f4f2d290" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001138", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea0cd64c9ae90ced8e2c9a93" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001139", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f27080a585778d7eccac3ec" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001140", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3956.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c71f194a7d218e99272040e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001141", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3764.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c5dbf5f431185e8951f82c5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001142", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b7153cb8aa1972fef3c8058" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001143", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_30dc4a0d7c1310129ca7b391" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001144", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5692.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a20acd7b944a7542b8af279" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001145", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5804.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e10491faef70b0a770de9891" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001146", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3618.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_97d860a9c39fb9117cbb8bca" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001147", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4660.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc3c91ad01bf71528edab168" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001148", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5217.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2607dd731d706d1d2b1dfa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001149", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4425.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e9ce0cc8ae89bd323e73c6f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001150", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4710.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3317ad442af8f3bb93f108d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001151", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1baf7e62c8e6b047f6af32b2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001152", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e04d12f3435ef3a638912dbb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001153", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5164.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0a517db8db0eb0482a423a6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001154", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3184.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7e001df2745eca466a3d20d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001155", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5ea96fe6155524f1e10e068" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001156", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2445.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b175df19f6a03c552918a26b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001157", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5512.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92f850cc76f268d6d80f7579" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001158", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2366.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c22cfff72d49cda83d54511d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001159", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4139.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfeb81d427d7dfad77cb76a7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001160", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6576.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fec2bc9aa95c76669a7428ec" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001161", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3984.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84e4c5eb62136f02cb6fa2d7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001162", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2202.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a9663e05908361ce1d6522e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001163", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4524.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e42920f4c75f425f1d2f39a3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001164", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2308.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7028dcc00e0b9a4ca5f8c6e2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001165", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_66baf69790ccb15ebc6019aa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001166", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_674959bb539cd78a474e704e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001167", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5095.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_abc1e4cd429d12fdee62395c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001168", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3359.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27577c65d13bac54b464c6a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001169", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02287075dff38f28bd1e807e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001170", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4417.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5be5e406c139cde6f413f6e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001171", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2626.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6a2747afe02df4c1f206cd7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001172", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6924.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2e8881fc82b0530d88e4290" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001173", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4437.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a30401c2b65ae7c0f599205" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001174", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6788.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7dc211faeac6b2db7e83664" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001175", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e279cb2e22be981ff2066303" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001176", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5577.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8755ff9fe6b056f3f2b1b0aa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001177", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3342.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ea102d1c75ee8d75b8bf990" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001178", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2764.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e911eb378c7b52a9e636e88" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001179", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5329.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b57ed813d6aa03a287ec537" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001180", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc37fbc4a5540c823debb407" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001181", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6052.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a437cb7af12253086c8dcdca" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001182", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b511185dbe1c87ae5654aaff" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001183", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4444.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_06e14571246b6599df64c4e5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001184", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17672994694bc1b3d13300d5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001185", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5452.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_052b3bef5c1830a3e850dcf5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001186", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6997.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_146e7acf3594f6c5316ed949" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001187", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4218.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f23deb1c9f4f2a62d878a37e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001188", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0968723c209fe2caa3cf9ff" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001189", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6994.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_75e43a5de81e04486a7ba003" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001190", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43ab9520658839a40efc0ad" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001191", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4268.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe273c033e20a5a0cc64d2d9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001192", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3244.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_55e4386994d13e9e976b02f3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001193", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6103.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89b1e165dcac0c9c8796759d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001194", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9927.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21a4d19289ec523f8d2bd7e7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001195", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2307.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_672e40ea76512fe7aedbf696" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001196", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7640.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43bdebee7cee19a8671a1d31" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001197", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2975.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_713f20d722da4af52f658c87" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001198", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8669.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93572efc2629ba49310e38c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001199", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3925.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15b91015d8904b2bc77b50f3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001200", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb2c782cb07ba99e47d644e8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001201", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8359a2529339f1d8a093fa06" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001202", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5594.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c3d233dfe509843a5124375" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001203", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3643.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c22c082695975e307767d37" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001204", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6833.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d9356a552bdd9227b836daa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001205", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7868.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6340f23d57ea4ba0b09e0b18" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001206", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4258.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cd770f05cdcdbe2768f2290" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001207", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10166.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_501ada3440ddecb9f00b2224" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001208", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9415.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdcf049179a17667f5ed7fcb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001209", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8508.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e4a2507056e928941fb6777" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001210", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_03215ef6e08ac11f323ffe6e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001211", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8431.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd63b94e1bec0406c4de46d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001212", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2414.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00459461484ffedaea36494d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001213", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8653.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16130521de25c73b9aa0c43a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001214", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da730105ea3f7cdd6a9e21b2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001215", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eedf84bd0d69d17db354367" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001216", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_680034ddd76ec83e8589901d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001217", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2646.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5762e69fb626ffc0017641f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001218", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3870.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15ac8c062356c9de999defed" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001219", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a96e7524eb8db291259a03" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001220", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a708666ed641fd02a0ac78b7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001221", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10905.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_658ba00016e4ffab855a9c55" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001222", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3396fd0fa061a40de244e3dc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001223", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfc909062d64df5847daf98a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001224", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3246.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8111de4ef562e3d34a0dd7bc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001225", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3534c4de3e8cd2784a9c6147" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001226", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3700.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d60acd222d32c8bd68610edd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001227", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2764.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91f7fac4a57c36d735417bef" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001228", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5403.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_11ff27e52b557d4b026c5798" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001229", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9970.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_375575398152bbd2624869ed" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001230", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2659.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e6c92a4545cee25b1de5a20" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001231", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4949.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_46efce2aa212261c740a2fdf" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001232", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3634.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d89397e4b936a4dd6989fd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001233", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3316.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6135bc4fb9c4cce47f468b98" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001234", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2382.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_10e04b39f182cb92265080e4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001235", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c457f5c361b30db1a5731e7f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001236", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8738.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdebfa39274948a5c028d067" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001237", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3227.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b2cb46e32ef0075a6cc7063" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001238", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7746.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd904ecedd4f8fc41993c1c2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001239", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb1992dc1fc418b7e4dacc91" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001240", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cff013f0028b8ce3c77a0923" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001241", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3390.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a80434ceaf7b96820066fdc4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001242", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3766.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0813d1e0a27c3bc7de7e3fa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001243", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4332.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced6b8e0878a904e68634bbe" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001244", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7121.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a1d00988fe8f9a0fdf7e4e9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001245", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc5a0b4bd777a753e9f979e5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001246", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5185.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12cb8e3d0ab04ac84f62247" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001247", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3380.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_982069fb6f33719d67139118" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001248", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49232ebfdbed90b043996615" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001249", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2346.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3f36f030adcafeeb41caaf8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001250", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2727.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cbccd71f0d88e5b0e7bbac4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001251", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9223.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b514adf835a73cf0efcf7890" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001252", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbaf64bdf8ae41e6da3d24ad" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001253", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3861.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6874e9aefb79186b1ba4a637" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001254", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5569.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a78986f0fdf30e5b0ffc0b4f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001255", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9110.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa00b4bf661ecffd157826c2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001256", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7585.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6a03c8e81a383c13458a184" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001257", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7674.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ece7c6d935a137e68e6e4c03" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001258", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2829.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9a81de6149785ea056ec062" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001259", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10840.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a88be71b7117b8d8639e09ab" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001260", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10979.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e02ba20b425778290c35cd2a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001261", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4822.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08830ae7411adbe37c20ec1a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001262", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa37b4820d61832d4892b09f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001263", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2381.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf43a56078b75489d0a13efe" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001264", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8180.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16ca59d029eb1691f821a76c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001265", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6980.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac0cec05b54537ff83de1ba6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001266", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d08348b86d1046c7d15a639e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001267", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5847.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_897068730cc95e9bdc7a7f53" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001268", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1740.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_674c880ddd3a8e6ff8531aa4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001269", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3329.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f89a5cadb9d5d6c6fa30afad" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001270", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4795.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_42bbcedc1cc2f89d5ff48f16" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001271", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6515.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_45fbffb16cabbfd1c059b05e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001272", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8466.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1eb22f56e7e75e361063bff6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001273", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51aa4d1d4e1af1383e32751f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001274", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7931.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6aa0e03cec464f81701108d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001275", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4657.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa2fea22b4e2162712012fc9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001276", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8264.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00861372570972149a7005b2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001277", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3785.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be1d1e50d577a88cdcf0aa18" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001278", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4811.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b741093a6723d62cc0e14111" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001279", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_29997651ca3dd31b31bef663" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001280", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2007.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_90581820ee12804149976e6b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001281", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3744.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_419cb7c68fa031ff49efe074" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001282", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4827.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95b87870f73c742aacfedfa4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001283", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3051.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a1b2aaa7bed6534a601e4c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001284", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4329.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59b313830f55fd0a2da70248" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001285", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2957.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5696a43ef4ec68d378b21157" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001286", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84f183af4cb3c1b87c50ed02" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001287", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26c8f6fe598f4605433856cb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001288", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3667.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92d230cccbb46590477d60db" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001289", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2923.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be0a6b759acc188a589b0990" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001290", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2742a43757627baa177c73df" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001291", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2609.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_653bede9b657b918ac7b67e3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001292", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4434.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bc0fd5751c4c0c3fe57ff33" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001293", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6187.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec1d8086590e4690a491362c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001294", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2712.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_caac9e985761bda4ee5c80d7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001295", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_54b123266b35efc27c10f82c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001296", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6326.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d56421e65001527266f7510d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001297", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3534d01749256675c71dc1c6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001298", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3306.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35044e79c8c87179adad2ba9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001299", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6874.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd2003fea5769d487365072" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001300", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b65fe9ff442e90dd5521c8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001301", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7569.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f156322a07baadab34e55e7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001302", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0de3ffa191397bc72215d9d7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001303", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4209.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fae5cfb8a6f5635342769b8a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001304", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3275.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d07a41066c79d171078b9f2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001305", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9498.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6027af884589f148a7245efd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001306", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9468.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb342ce7af5812b8a619be0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001307", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7067.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_042ee30028baf2597879fb9a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001308", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4943.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbf49856d58a6eb73ac631e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001309", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2175.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81127bc250f4f7de5581c444" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001310", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_97c0042db23fe4309ec185ce" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001311", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a08adff30effbd9b22bc52be" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001312", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4786.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62b7068a10821fc09a3ff868" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001313", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8326.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43639d7d14aeb5ccd561123b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001314", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b2305b821b58a4163fd9b6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001315", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf343211833c5e9048af30bb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001316", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2616.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7667a9ce9e0649b97408aba7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001317", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8146.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4d7558f8d044ae6a7294793" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001318", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3879.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ac2c2d704ef292f53c85734" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001319", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6105.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_06b758ca68d1add8a1031f5a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001320", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7829.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4042cc523ba1dce3fe1e809a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001321", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4540.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_53e259e6f023770fbaeefafd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001322", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2582.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbfdd061487a218771c8e00d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001323", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11480.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_79c68e27eb9ede74f0b1a851" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001324", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4478.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0983a6cfbc604cf20a71d3d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001325", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6475.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a2f395c6309d841269f4316" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001326", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6382.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d10e8c6c04b5a23a3079d26c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001327", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7985.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb0865cf80985946f5b57d16" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001328", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9556.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a05e179f47071fd2c48c6a1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001329", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6753.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bab04cb5309a58a3c623740d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001330", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3682.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3d53f4708845010b0f0d266" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001331", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10364.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_540e501f7b11fe1088701b51" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001332", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9674.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f996e6bcc414a14f3e82ebe2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001333", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6556.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb0d0544b8e886b63f917d80" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001334", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7103.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa8e202e89bf794427368130" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001335", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_94a17f68aa5685415da6eb44" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001336", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7066.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39c9c23e8dbd5ec314146fe8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001337", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6056.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67d77ba0915646087c078d72" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001338", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f68a709a0a8c74dfbdfc860" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001339", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5c659740093ae90be33fbb2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001340", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8977.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_47af72bb21b4dcf764bd9c33" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001341", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8297.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fc97782b5eaf2029a16f3d5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001342", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee5cd38bc62fd8353b0ee9c9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001343", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4380.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63df111db41854ba18a68afa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001344", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6099.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca87046c5778a2025a32856b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001345", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5771.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_29b100e5d605d7c56e2d4ed5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001346", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8633.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b4dff3856ecd568932b55a9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001347", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3315.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a707df27dde7e7dee9ae9190" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001348", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2679.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0334dae89edc43eb731f4a94" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001349", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4572.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_986b91cdb4d99df48d3adc9c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001350", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4893.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_164e54e601dd0591880519e3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001351", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3070.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea069643dc90826a48b1d796" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001352", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78c4ac407fd994547907b2e6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001353", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10415.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae74b3e967aa983df3630337" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001354", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af9063729d239d6437f6a7fe" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001355", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_562b40590e4324891bccf26d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001356", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3159.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1afb6d01dfe982671f7b94a3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001357", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c0fed5d04111c1901c2c44c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001358", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4908.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfe9ad427471529220095529" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001359", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2345.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b233adfdd75f1fa269d09c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001360", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c91f838697841f155eb72f6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001361", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4558.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_913ca922974247c042b9cc1c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001362", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2429.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a4ed5a8d13257c76201e378" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001363", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2699.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f4d229744692d5579008056" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001364", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2696.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_97b4d5c747d4633dbbd8c5d0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001365", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69dceb93e4ea4ac55d7cf462" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001366", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2466.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e01789cd8d9e4e7be00d45" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001367", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10687.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_acf985acc00b8fdfcf658b80" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001368", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5780.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ea5e2717c64c965eb022e9e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001369", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6472.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bd0cf4971be2a8d1e630e83" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001370", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c4e4a0c313fedbcb558eff9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001371", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7555.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9062ceab9f40d51506f2f06e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001372", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4671.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dbe74bd388c9c0cbf56f6f4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001373", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2850.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_542619d48a52b2f36ac92fbf" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001374", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2395.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3f18714c9bc1afd9ee2f3df" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001375", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4104.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e1042ca24456c2ab395a4c0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001376", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc00a8e460065238d889e1e5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001377", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10488.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a1316074d3951eebe0c7ad" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001378", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e45b9043bf3600fdf185ab4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001379", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4006.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73aa9b3f91988c82f59de21a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001380", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4463.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_579cf2d2658fde68a970e5ba" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001381", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3574.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d3a9fb56ee4ca92002f3ccb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001382", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab09c690b0b079e1ffe522a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001383", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5730.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4084fbf45ae613205634c1c2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001384", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3040.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1493e3269788bddd169f68cd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001385", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4335.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_68815fe1b672f9aeed44c438" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001386", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2413.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be14999f5c9ad51a83ff282c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001387", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18fcf8080bb9596d2f7452c0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001388", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2605.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5a007d31ee5c1835299a566" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001389", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b58e768329cabc192d9027fe" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001390", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5040.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_37b20246435b0213f7f20532" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001391", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3841.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b15570f5d0ee1c7171309bd7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001392", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1896.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1ce70309661da050460295b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001393", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3280.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03bc054c2f1e35f6a4c494f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001394", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2705.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe14de45f11b994955fb411b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001395", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2795.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf4284cd509bcf9388f3397c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001396", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3275.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b1184cfc337e9fe929692c9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001397", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3630.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_148dcc5139b3ee1e7ab39a0a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001398", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3780.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3aa5f7847a419cc377409a7a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001399", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8312fdcecc8f8352f99be47f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001400", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0298bbe79ff25ea95e29a47d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001401", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5009.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4f07b80631a204299ca3022" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001402", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_06d10ead6905d17d4e37379f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001403", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3501.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6f9e8253a252fc9510d8d31" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001404", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3383a0583a431cb3ee126f3a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001405", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4678.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b593e00e75a8076460f5c2b3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001406", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d18df78a449f28823c94484c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001407", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4139.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_13d86c7c078071f7665cda09" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001408", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f52bb488a2c10467ea054419" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001409", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6977.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cce8e350297fe7cacda9c790" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001410", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11100.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4690a28b19e61844acf8c699" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001411", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8658.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03d9bdcc198dea81de79881" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001412", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e66d423e28128c6e1c254fe7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001413", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5539.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8add8ca14f638bb6d909d51d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001414", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9506ec8e918668c5bbadb402" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001415", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7175.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8775b232ceea301c88d9761" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001416", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8192.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76db4c3ab1ab070304c13a08" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001417", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8635d50d5cd46ee4b85526a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001418", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3319.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e76b4623b02009489e7d2c49" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001419", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5501.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_818386f2f1a6265687fdaac3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001420", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2641.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eb9bd11845b88b37400401d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001421", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9973.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1ae66bb6879b3f31ad50933" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001422", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5766.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_337dda942b95ae75fa780886" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001423", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3201.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95f4d2a02e5ecbca3a83f702" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001424", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3437.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc355c978db50170d3e7876f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001425", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9443.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7cfe695b70759e590c0d644a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001426", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5471.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89aedd0eb27117e783879c62" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001427", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9caa8444feaa9ba115f786fb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001428", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6233.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_502e78658faf5aa7876094fe" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001429", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4240.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_348e553361180ff05101fe24" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001430", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9691.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_65ec3939d48b375313a97c54" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001431", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5035.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aab2d8296bdd55d78821d302" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001432", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7701.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_986f9ef2a99e59c0993c3536" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001433", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9098.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef99c562499cfc0a7725c53b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001434", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5527.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_79f566e0cd31416de533d31a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001435", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11916.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df0749a7eebc7f497aa9b1eb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001436", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaec28f2acb7e4f20518dd06" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001437", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2453.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_513861f403667aaf6233a85d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001438", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d54f9e7a7b6dd4d67bbe6c2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001439", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9ddbe36da830dc078090046" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001440", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6869.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d76d645aded1613880ee3411" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001441", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4708.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1198558b45b3293df1af6b80" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001442", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2757.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f5ed983241a578fafc7045" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001443", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2693.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f97eaab2d5f24d28b8952237" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001444", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b841011a358d0f296ee32706" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001445", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3272.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5019db0f02c181ae84c6c4e0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001446", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7834.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b59ac000e256c313b2bc3ed6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001447", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5116.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99e88b85018ed5c93252d6a4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001448", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_316c0c987c9b22a1eae3e9bf" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001449", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2794.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e8ac0230c19cea2b8113d97" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001450", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5492.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1eea06d54d92cb309d03343c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001451", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4048.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a0a1bdbf004c8f2ce13453" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001452", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9078.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d995dcf19d882ee7f4deb3dc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001453", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4470.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e0a0696d74b7db800fe2756" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001454", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2930.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8879a172b8533f9e3cfb10e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001455", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5769.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_314c42a2764263e260dd4f7e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001456", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3089.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51cb9494f054477e13b7b697" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001457", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2645.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09b657667beebaa8befba86" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001458", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2417.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27cc89ff514c264e47daeb5e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001459", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_727720b6603f9c2ece86034a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001460", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3259.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_70a82f1c73a21642e9b7f3cb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001461", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5590.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_816022e87617351d893b2e1d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001462", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6149.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3290792653868b2572613f2f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001463", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2877.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4a98372ab2f059fb13fb4b4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001464", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18a38c5c73b9da28ad2c4ea1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001465", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2676.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7064314afb8ecc388ec60240" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001466", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10025.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bce1df5cf07aaf3df9bf2a9a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001467", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5520.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_206401f567756258bc288e07" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001468", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2009.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27167bccd33e000697c44380" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001469", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8319.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60b848fee46ce8bef1d17b00" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001470", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6811.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04af9d5fdf1fa01dc86cc9db" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001471", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4593.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f5443c86523f9796bdbb140" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001472", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3957.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b98957309e147cf91f65902" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001473", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3805.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3ea82b1d182e219944b1a5c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001474", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6376.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cad3f66eacd33f001c60687" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001475", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2625.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4da57ef1de33ddc33fc3a512" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001476", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2990.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf1de306a9a4eba1c2cb0478" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001477", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6932.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a408046e9510ea6abcd7c92" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001478", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7662.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_71e3fe94d59774ae92a81a95" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001479", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2809.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff13fe5e5391c060c0f8a39f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001480", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4841.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceeb7e35b9ec8987b2fb0432" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001481", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2445.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1a10fb1230d4012d3f07e44" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001482", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2301.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f986eefed25c5d771d40445d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001483", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3488.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_250ace7292c7afb6f9b7f015" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001484", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b8ce1553879951914d32547" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001485", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4772.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9df789b89a45b5f0f65bd64d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001486", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3861.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_815e97756121131422b6e946" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001487", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4431.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c28c0381d516ccfafb8a374" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001488", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2660.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2b258d7cf2a0d824fbfacbc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001489", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2729.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7985e788281991df0f46f05" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001490", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd5258392931bec4ef2829c1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001491", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3178.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c6dbf5934f752d5eab48fa2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001492", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7360.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_014179e23838efcf487a04d6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001493", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_695a7bfad9c13b0fe2033dda" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001494", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2850.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_227456164de6995e2104c3aa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001495", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2420.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_359ab61aa50f376f1d8a1ad8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001496", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2929.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1468a2fb51382a2045151d49" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001497", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb98ef6d5149c3dd60198e23" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001498", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3985.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cec245d4877561590588a46" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001499", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6708.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77afd30cedbbae07c9d26250" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001500", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7489.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fc3a78b2679f9d0d4ee40ac" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001501", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7483.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_833612c784a94b3e6565ae33" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001502", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4677.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f94bbf9abc90c4657e0a287" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001503", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10047.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f349c151f5d7fcca4f45f6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001504", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72a5772161631db2a78450e4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001505", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3834.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_03aeba1216e63fa894e97e4c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001506", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7df6beed3183125a890ff403" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001507", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3235.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_00bff0b053e1088c6f1d77b2" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001508", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5458.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e142ab39307092db8e70ed2b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001509", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd36f94ae5cbe7710a9c1951" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001510", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6804.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c7c2d2d5a0666d160d1653c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001511", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4247.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f62b0e71284a08bafb9bc76" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001512", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2780e2e84660bf014a29fa27" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001513", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3618.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bfe5ee0be7ac1c66e17ac06" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001514", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2615.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d396cf90719bec504daf2552" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001515", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6043.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0c2df23318a3b629d6dc82c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001516", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e89785747abd910f0f6a9513" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001517", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7110.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c81301e8ae08e9955ec8627" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001518", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7960.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_57e269f10eb92472dcc2ebaa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001519", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2469.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf29866eca2e99acf14ec79c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001520", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d6929a6d73ff09bd9f70733" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001521", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6279.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef4e456619d4aa177ab43654" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001522", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4124.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1311d705f699df9c03c691ae" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001523", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2737.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_483703934673ae89e3105f7b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001524", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_122b7036f55d4ebe57b7cc63" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001525", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9711.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81c90af70b6c62353888c15f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001526", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2927.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ad96c0bc24627261bf2ace7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001527", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_751c54e0f3802fd5d0d6b358" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001528", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6101.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5167dddb0de50d0b916cc659" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001529", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3153.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c23197a66b02a3e3d9ff15c0" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001530", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3120.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c288e269f441551dc46eae55" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001531", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7912.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b9afee4eaf60730e327d2cd" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001532", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02a8a30bc1e6b22951279511" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001533", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2397.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b8780f17e0fd908021ff21" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001534", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bb7a1588b9814119243a290" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001535", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2959.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_999a0e6403f59c57f1ccac18" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001536", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4378.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4653a04de8a5ba9f2532f6a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001537", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b66d37403a58967eca02a15f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001538", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4252.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89991b4d9474eb2233c22244" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001539", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0feb6de746533a704161ddc" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001540", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_156a715adf40c516c5641ace" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001541", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6634.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_419484758e762748e9b54ccb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001542", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_57bb04bc83abb7b49dbe4ceb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001543", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4101.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a78db7432d7e522f7fd94af4" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001544", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_459682e2484da97616437dab" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001545", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2783.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_640d14bc0e0a778b4be6ff15" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001546", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dd73c67a5edb37db89859c7" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001547", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8551.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c22eb2552729cfd36abb0d1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001548", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3533.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1daf04d3e2bdfb66e2ee4f1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001549", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a71ad8e666ffc514e815cd79" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001550", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5496.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3d4a1e322ce246ca5aeb112" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001551", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0176af868e468b0e5f0fc781" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001552", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84ea1de1c49b8d24d7f9e5c1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001553", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15293.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a94059762965cfa3a19891a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001554", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3854.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_033945cae5cf2ef03fae8f22" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001555", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3466.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e5a35fc3a9eb459f7e36a3c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001556", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3321.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceb32a54210498cef61c6023" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001557", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4921.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4728cce52fd3336a7544648c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001558", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5572.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a119842f72028e84573310ee" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001559", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_090bf519f40f7d2be23d5d48" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001560", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16476e96a6e4400f6ebeffbb" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001561", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6870.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31191a34200d1b709dc94c72" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001562", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0415ff1fa1425e0b158689b8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001563", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8736.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a2a20acf1873f4a43bbad20" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001564", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5302.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_811d7cd91eccb07e4163d438" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001565", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4304.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dd5d06b140fa5ee5442ffaa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001566", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4161.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d09a34a12bd358a417d218a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001567", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6762.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33d030bf69daa21ecb0efb5a" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001568", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5264.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c75f0de581e5888a59ab9562" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001569", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2815.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27dd93e47621ca87db4700a6" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001570", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3015.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff5db70dd204f9649b718d35" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001571", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5535.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50742fd46ab51f1f2241d406" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001572", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2df3a420ff3a6038c6a144c" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001573", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5056.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bfbdf4fbe298f89c21f9488" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001574", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7184.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08a2e7bb5212ed78a89f3f56" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001575", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3071.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6a6a42881f90e8b29c84e0e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001576", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11068.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8ac2081fcabd9cc0653f2a8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001577", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4732.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_124dab36ec8cc1f0d4a7b684" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001578", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78239df9fce6bb3e92f63d71" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001579", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3315.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbed0996d086b1b4e803d7ae" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001580", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2258.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a82ca61f66173da510920ac9" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001581", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5778.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5102f353539f775e410ca32f" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001582", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1835.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f1670a45dab719f25dea6d8" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001583", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5216.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bb5a33020bff69ebbfbd8a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001584", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1774f11a007fe2e1af99f49e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001585", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6822.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d19729518b9de54cb7f09aa" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001586", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3462.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ee67aef82ea5a063ebd9de5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001587", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2905.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2b2647beca5c9904608138d" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001588", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_12e09f549c23b33a25ed75b5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001589", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2456.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b8318643a53ccda3e14da75" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001590", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3376.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_45a64de56c9a144e329ca6e5" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001591", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2633.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6198a245f7748184cb8fe22" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001592", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2971.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdf74176880502c98c0c2be3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001593", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1949.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0269d2f83069dcb54b47c3" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001594", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7373.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8acd5795378979cff94038b1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001595", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d83085d22ca3e63f4a55876" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001596", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7852.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d5d5a12dd5b7d4a12cdae30" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001597", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5026.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_769f77bc512101db2bd8bf0b" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001598", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6409.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9dc7caa9b40761c1e523f2e" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001599", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4241.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a9432a8e729249fe94d7128" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001600", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4702.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_65b52f644d04fd3d59cb7930" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001601", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_827c78150f496ee61b69f0da" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001602", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c184a6bd70009d84d75f5309" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001603", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4379.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_45f42c0b9f507e0b07a9d6c1" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001604", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_564b96e840b8493b4f7ec833" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001605", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1895.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cce9aad08acc36716938dbc" + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000001", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000002", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000003", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000004", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000005", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000006", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000007", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000008", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000009", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000010", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000011", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000012", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000013", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000014", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000015", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000016", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000017", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@N05000018", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000021", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e3a737859e7c39dffa8e966" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000027", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 991.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_94fe63d0376db78a307db963" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000045", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4674.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c558c388843a9671f7e9026" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000048", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6981.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63d6711ee0d18f40cc506f81" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000051", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1521.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d23bec2128ac0ed267ca006f" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000060", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7083.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8a24fd83e5a3ff61ed77e41" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000061", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5169.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c7d8e6d318114177e8024d" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000062", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82d964b496f52be66a8ebfcb" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000063", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6498.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1ea0319a7c010f8458f3b7" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000064", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_94746bdf0066fa7489e4ef84" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000065", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4685.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4469df474c44bf70d7b635a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000066", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5378.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de4525bf8cf918d0530c8d2a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000067", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4392.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4649c5ab74fad70213bfa04" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000068", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5379.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ffd2619a1a1f780f4db57a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000069", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4599.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e9c8d4182f9a6513a1f715e" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000070", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6950.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_90a848c59f42be39a193b349" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000071", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6361.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ae56e45111757e18149e388" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000072", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5188.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff0cf8f1c83e213e2c059ead" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000073", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5600.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ae9a842ac142cda17fdab30" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000074", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3963.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f60931bdeaa0995869dec6a9" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000075", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8914.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d33c450ca649f60e6df8cfe6" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000076", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4524.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_345718071750ed32af49e9a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000077", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4515.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_905a15e3b9382dd14ad4d2d7" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000078", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6869.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ec9cc044b395704d152a3f8" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000079", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6676.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_686f185a3ddf45a66e1ddb0a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000080", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3292.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d0c689d118270c956341f4b" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5480.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ad1506f73ae6324481238f7" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2946.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0de8c5697adf3e32048856af" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5815.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a241117981419325a318dc1b" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de86987dcddb1520388c3218" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ba4046762013c7db933e38a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11577.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_11481c299e7bbbdef24c2811" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7025.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_060845d5bdf89b95bd2d351b" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31ab18c8b0cded626e5a8c9a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7933.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa196d865105a92722fb5637" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe886d1e8925a848d4c96016" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2490.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_86c5331cb6b30d6e7fb82ec2" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6384.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a9a389ee038e7759b66d881" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6564.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39dc4faa7983147a7b57b8fb" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5043.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c601d5014fd892ad081d468" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5788.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b3de60be1a6e9e0cc2e04b6" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4201.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e71cf92ec50c1b6a3160feb" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2494.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5d970615700cc24b03602a8" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b67622236078183560131f3f" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6866.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_799204ad84cfd99f33d2f08a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8d247a9d13e008b028feabd" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5845.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2960580d0a7ccf8bc67a8f3b" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba5e07301b5619f35b86bc40" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4599.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fc28b049f84133f99ffbc18" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5766.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b816e511d8b79b1cd9209c37" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4330.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3af8114f0413ef472420ee3" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7578.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce452cdd4bac129b1850fc9a" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6708.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63daf45463d43c36f61a7d4" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4811.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04c11599179ce123841717ab" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5559.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5f305ec572e1390be196127" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6731.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_049bc5552f8c71040ffcc8ad" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b1a62fe1ffc4b4226a69058" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7245.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_190b04f7476ddf023819e608" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4695.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb12f55223c946d87bc19ede" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4614.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98426436e45a4514745df6b6" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7826.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbb007ae28cfe1a2ffecfd8" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4044.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b86b1c47d32aaa163c978871" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_517d91453bf6b98ae2512cd7" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7836960ececf32ff0b2bd4f3" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5870.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50190fd21940df2b409e8894" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7824.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_480a8633e30e50eeb761f4d1" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3413.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9f4a224b654960ab6498a6a" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_42d868078488acbf097cf157" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6855.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d86d0b6690d70df1caf2634" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43631bb855d2c74c1372a4c6" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4119.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6b10b36532f7019630ba2d8" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7026.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ecc91a1683c35f0d6361158" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4105.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d31ab7261a440e79539345cc" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3875.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e03c5ca90f1f9a05480a70a" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5584.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ade2562e8254da3b5d121633" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c98532a4dafabed017d4599" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5303.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c35e33a7e088f696be1b2bce" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3506.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_137bf95ed64ef7fc378c391b" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4532.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ca50ea55b66e34842b4132b" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_154a8b9769ca43f584a9f4a9" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8047.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e480558c5926b2658ae64377" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5299.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c6a5e1de683a8a5c57cb1a5" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5754.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf6be119959ce4edaf08bd65" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb7b249bbd19880d658f51fb" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9406.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8b0b412da9a903be45fc252" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6224.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_03412695dc67e63bb62cf4f6" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5142.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_851aec66f1ba71ea98034d01" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5209.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_006011fffec2e6d5cbb97d34" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000112", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3528.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fa7a4ae77cdd68d942d1168" + } + ] + } + } + }, + "dwp.uc.households_by_area_children_1": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "dwp.uc.households_by_area_children_1@E14001063", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1760.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e522a85afd6a8bb717c456aa" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001064", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1490.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_349755fefa0e3078f7721df3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001065", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50ace7bbf7bbff5ffb323cc" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001066", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b848ab573675dfef3247400" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001067", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1071.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0494f78ede5e61cdcc91b0a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001068", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2237.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2cccb3528a213f01ab99b1c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001069", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2032.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_47a76d93012fd836f275292b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001070", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2828.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67d186dbfd6ed1752c67274a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001071", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1849.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a46e979a6f66c54bd852cb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001072", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1574.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_189426cb08f3ca1a949cb41e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001073", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4640.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21169b13669a0e6fa46b662c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001074", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2616.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef222059bb2eea6ce416ef6c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001075", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2899.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_064e0ea4d191622a56652a33" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001076", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1580.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41a7254da67201121cc08217" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001077", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2296.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e398c59f9d906cb4090c065e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001078", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aeb528c26346acaf637daa7a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001079", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2115.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81c57ad06f8816c8b816ba3a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001080", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1172.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41917c61e9b4710f3d0919f1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1725.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_395dd307e3e896a3e1b0af46" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d041eeebe8a95345aaef6b6d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1826.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_500a8e9a46817ce8021029a5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2444.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc0a0a230bb2ec72f714d242" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2437.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc3ccd8d210a1a0e52d27194" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4f081f23b7fff28429dc598" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1150.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05f82d5db1a5743273043dd2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1372.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc9c53f5b1e43da681ab9acf" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1802.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6ca1ab39b150a01b7e46073" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1302.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91443b0358cb5ab8dd82256" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3099.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bee77ba1fc820dba71f0585" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c26746048d8b316a3488999f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3973.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcd5f89861746a5575b36232" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2715.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0910e6b12797b7cdd17661b0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3923.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_408f953bc3985163842a0655" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d18624b3499f442af1dca0f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3265.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfd55bf8b13f6af1f1afa020" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4062.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb3d19d9c3c47953369d003f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2246.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9a1a173af6f4d32c3e89bc8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3294.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_125de44dd1cc6fced96e776c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1947.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a00ce5beeb1b51c8bca4954" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3039.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_57243d275da70cc36edbcdbe" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_61a2d4892a0e86e8700b2e0a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1986.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5b5675a8a81ad60557c075" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3551.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab6a4879a392686e6eb8ecb7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_196e18a9cfb9ab9ea985385a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef8324512e47b1d7c6a3088a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2099.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_396acb935d96d03e2ab1a19b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2112.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb7b8968411367a9b74825db" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2900.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_173a28d897da77df269c2e19" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3707.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d30499a27b26aa82e4b19e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001112", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1829.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39994d7b381150617dd26b56" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001113", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3066.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c670b19f8165d5f00ab58394" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001114", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3064.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8ce869ccd76f37ae2ca57c4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001115", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2154.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35455e14f8c4a37600cacdbb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001116", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2017.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_68913309b2534146a21d67a8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001117", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1572.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a98cb6878daee1ce314f11" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001118", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_25d6d8d20d29873bccf197e8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001119", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3368.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5119c9b2047397668a998c05" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001120", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3454.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d76c428b2eaac4baa456410f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001121", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1548.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cad2dec41046411bd18ede5f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001122", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4308.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db20cd1adda28900a124c30b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001123", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3179.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_66036e4e7a11a01d0e63d1e1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001124", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3158.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e5a13a1a12a06d838e3a59" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001125", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1219.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c389a1d2c96354c2fd395ed" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001126", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1857.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bbb7019315c4fc650676140" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001127", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1606.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c582fda60f0bb326f5aa7a7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001128", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1302.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b820a4df038da48a8a12e3a4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001129", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_837c24d8d9f45bfc18bc29b0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001130", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1479.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44b42acb1386fb1a2cfca230" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001131", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee51aa49fa017fbafc92b6ff" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001132", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2035.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67ba54a79583941ad71285fc" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001133", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1902.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1045a74b6ee2f8c18253b133" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001134", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84bf47638ed7250d5dd52df3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001135", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b0538e35c473e3bec06195f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001136", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1252.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9109de67cd64171ff38e09dc" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001137", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1309.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_44cf0d3ccb5b8ae569ad56da" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001138", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1141.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d0d882edc3d789d103d096b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001139", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2269.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85feacd54a19ea95659142c8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001140", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1418.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_964920690eb2f9dad60dce2b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001141", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a226ab44b69feae22ec7ba04" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001142", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3094.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bddac3329664c09a7898134" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001143", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2240.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2dbccf0e2d4eb2efd9d5e80d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001144", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2101.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50d24d5fc6f027afd5a5af82" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001145", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2258.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5fe3af857a71818d4d63851" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001146", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1551.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edf82f9a548232413c7cef21" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001147", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b7dd9a0ead6128e4de80ab3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001148", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1947.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a629d96d949ea244a099951a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001149", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1369.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5363ae15c223c3f25760e692" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001150", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1994.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_229401adabd20ea3d33a3afe" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001151", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1654.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f84d638db5552f683e52858" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001152", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c318ddb684ac0fa882a767ef" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001153", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8f01112a9053383ed1f4d71" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001154", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1212.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_567655ead2c6f99ccd90392c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001155", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1373.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd64f2601fdd59f99ccae0f4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001156", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1294.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0fa4b428f89389c19e4f5b2c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001157", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2273.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de81f8fd2de2ee5fab52e24b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001158", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0abea4b0b53f6130aa0d5dda" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001159", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1553.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_87d2d40409a7962cff16cd96" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001160", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1699.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b1be1dba4505249328db2df" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001161", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1311.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb255e63967ac444017d2a11" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001162", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 960.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c97fca4e1e3401ca432f99f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001163", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1356.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_94af370212d1ee20fde24aa8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001164", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b53741bff9512586f4539d50" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001165", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1895.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_608c3bf6b9b30f3547aba72a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001166", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1740.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfcc95738b0caee3a034043f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001167", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2099.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca23495200af2377aecc222b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001168", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1350.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d995ba203e5ac4de20e14c60" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001169", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e48c22a72500a793e8c600fb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001170", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad4487b3fb404a7be8692449" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001171", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1014.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_883007e7e6018b30e955c590" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001172", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dddbfa8d661d23628bc0b397" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001173", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1536.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc5333ea4c9f95575a7cc27f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001174", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2899818eb22a0a79e933a23" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001175", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2207.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa3c41dbeeb0912366b1f65d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001176", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2272.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73c8be1d20afd1a174be0d77" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001177", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1388.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bca75df572e01dfe6da3fb4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001178", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1083.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e06391a0812d3cd818c1bdc" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001179", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2441.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ab1ebf58f436e6de70516d0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001180", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3785.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5dc0e24409f464357a3ad85" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001181", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2250.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed42d570edb6a8d8575ec40a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001182", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2181.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_192bea601ac0bba74d9b7bfd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001183", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1902.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3d2034dd74c74f828f2744e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001184", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2658.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_555029911a7ff01aee39e20e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001185", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2291.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb8e4ce186a2836ba88a246" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001186", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2736.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b26bb438f54239ae732bcf18" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001187", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1982.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc0b194b323f53d4b780c05d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001188", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4676.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad11398203e90ce2c702304e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001189", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3404.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b064c4e87c913731a52aad2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001190", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2247.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4878eb26e956b501bbec8ac5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001191", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05ea6c007ebeb09d58abaf78" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001192", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_701964724b1843f866ba2253" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001193", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2398.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e333489d3fb83fc0a464eff" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001194", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3431.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_773857e1905f93fb5ec2bee7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001195", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1005.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_032d284523c672338cb8ca5e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001196", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2857.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6cfcfdff4af277fa0c9a2cf" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001197", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1466.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_674546fe90b50c5b9464647f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001198", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2845.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c0cfbf13756bee5a6958ab4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001199", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccf399944ad044938b1d3e52" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001200", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2558.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28b0f5474788c29135b44137" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001201", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 972.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d279b499c15ee19fccc6629" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001202", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67793981c8f5d51326f1dc4b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001203", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1630.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1988f1c0cfdf3fa6722ce951" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001204", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2577.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f08c70a0f42aecb5b8bee19f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001205", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2659.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b12ce76d31e94a6f35a7f3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001206", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23eb11d80368aa38be7af617" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001207", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43d540ced4675b6f0ed8d1ac" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001208", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3455.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cb9fbdae09747ed648d6190" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001209", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_260936123e25c937dc288744" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001210", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1269.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e8e85c09daa4f31bd36235f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001211", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2862.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09741bddf55688ce9e6d9890" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001212", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1143.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43249ce171578a6332c198f6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001213", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_745fd83527ccb28acd604020" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001214", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 988.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7969a19e0d8ce7d44d5749d7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001215", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1268.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04e4d88d2dafd689eddfa25a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001216", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3047.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b932250388e4482a8ea8f378" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001217", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1282.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b00f10d051be21c66d38fda1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001218", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1502.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_406174212a309b5fbf3c6bfe" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001219", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2125.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5d6a3cb94ec8f93f095a7da" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001220", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1254.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04678662fb4bddb6c87554e9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001221", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e76d5963cea1e5f9f193b60e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001222", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2077.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_485b141fb55181f49f3241a0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001223", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2271.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a54b4f1abd0c8698fbb789b5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001224", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff511a572e24b82ec24dff09" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001225", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4791.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1322a43f95688915366ad239" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001226", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1642.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33456e6570acaab388be03d4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001227", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_415683c43e1daeb67d1b9107" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001228", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2020.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7aa43ddfd75095acaa3beb5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001229", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3801.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_737979643332eb39a8c19b4a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001230", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1141.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f37bd92e4abbed015c87f20" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001231", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1bffd4e7b73583248e2397d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001232", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1593.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f76aca2c77493ddf3f4e46f0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001233", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1373.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3341919841a0acc0f067913" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001234", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77b7a125b79d0ec53f043942" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001235", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b54ee74d665558ecfe60b28" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001236", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3796bfa9db79a780deccf55" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001237", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1594.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ad340e49607d4de09055bd1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001238", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2536.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1ccb1580f0ce0b9483e0284" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001239", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1824.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f376375db4a6bbe6355ae70b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001240", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1334.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cece2e0395cbd39068fc5dd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001241", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1339.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_87c7e96eada075fee9254c90" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001242", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d218b4dc32bf7592a62aa797" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001243", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1534.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_754494c11f4b11aceb979a28" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001244", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2204.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e8bf0312a2345f38b58b574" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001245", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d2a4a67251252773879c396" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001246", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2063.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4038341d96ab0ff16f22ce7b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001247", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1265.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_710d0eec367b10e5662e619e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001248", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2434.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a58b66531075263ae53b49da" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001249", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1006.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c1152571b8c8995fcd43e20" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001250", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db7ebb17c1fd8742077fbee2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001251", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f470bcf15ab84e8b9ea4eeb5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001252", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1831.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4711780e6f3323a0988c60a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001253", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cba2a210b032c0084f7252ad" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001254", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2294.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_512ffc59beaaa7b491e3a804" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001255", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3286.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e78cff3678dbef3b4232a029" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001256", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2609.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08c8cf8f126ad4fdcc0574af" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001257", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73902334cc3dada9ce873339" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001258", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a532ab58d238a41dc2c885a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001259", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d7036232bf71430c37d5162" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001260", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0fba4d605bb5df5d5239e260" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001261", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1945.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d5333f735c510af70f873e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001262", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0aaa0fedaa07924d12018120" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001263", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1404.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5f2945d4f4b1c264d333194" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001264", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4015a9857117a0a7da1780d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001265", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a771ab7a2dcf5f7e44b74de" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001266", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_53dcbce2099d89f7bcb1f79a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001267", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2533.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8351e2d2325bbdaa7d4bc044" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001268", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 787.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f853a0db1e1d3020cd42de" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001269", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1318.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cd59c50f6a3557b86581df1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001270", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1959.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d2ce5a176cca17ca23ad414" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001271", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2585.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8c34616f84d77814baa2b70" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001272", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bd15bfa2f16b3c38f8acf97" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001273", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1457.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33fdc3f462c78c14f8db1563" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001274", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2634.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7bf1089875a801403fcfc83" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001275", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1989.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af0759f4c8f1fa48d4f957e9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001276", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3162.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b94d93ba72f194bfb3b4bd90" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001277", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1467.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7501f1309fd5d418363d369" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001278", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2132.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_74e269fadf4db22ca08bef27" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001279", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab7300dd0fea3fecaa87be1d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001280", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 916.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a896dde73f7c5ce0b1e6081a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001281", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1582.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0fb83d257a9b299cbb91fdf4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001282", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1756.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f315e0b1786ef2e9cccda3b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001283", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f15ddd76de0e3e75b982fcc6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001284", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1732.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ef652b9f84d971156f6c6f6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001285", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1226.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76f89de808e4a53ec1d263cf" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001286", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2848.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f13300474ae8cc493d15531" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001287", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1376.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8fa3d0735fb15f8447b3f9d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001288", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1553.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a1c6d8435e8d3d74943750c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001289", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1319.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d39074c593973cfd43f356" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001290", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2335.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dcac61da98a175fb652fd2a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001291", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1093.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d2634f294709f430fdce844" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001292", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1840.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa253dea1d8afe08d5e797c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001293", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e8608faf5389d59623af783" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001294", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1169.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c810de8794ef9c7d1dbebff2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001295", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7f4ae69d6ed68e5b97b240b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001296", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1767.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_822d2ae74626f054b134b6e3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001297", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2881.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_874a8b987ed4e86343525f77" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001298", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1435.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5553cee900d821289e4bd4c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001299", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2485.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_264d5bc50bfc03fcb6cda3c5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001300", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_987a2663ace6fd2c6296b69d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001301", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_368ca9b24baf1d5a86dcaa1a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001302", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2639.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5829ed5ba9e07600fc2fcc8f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001303", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1381.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba8c8078e5067a42e4e27fb0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001304", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c86ce1b2b7c9fbaaef33a55c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001305", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2578.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7e824d304a977892992bd63" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001306", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2826.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5edb7c64ff81ec126f7c5842" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001307", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d0a4b64aa1e2db34280a0c1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001308", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c7c7ea61b6d619658d6a39d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001309", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c9155eb0f9533345f4813fa" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001310", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cb3ef6691bf64cbedbc749b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001311", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2159.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_68c0004451089fcf05af6dfd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001312", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1781.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efa6f5cc40bc1a9cca0b6d80" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001313", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_429716bb696ef14b9438b5c9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001314", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2927.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4808979a1a5f5b276004cfd7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001315", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2494.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dc16a5ac8bda98059912db9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001316", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0021e818d1e091386ed012a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001317", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2921.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39a365895c07097a642fa332" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001318", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1365.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d56b48159b4430c0591908cd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001319", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1415.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ead30b164ffa5e39842c7e27" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001320", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3121.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aca2363617c4ce8747ba79b3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001321", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1483.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33a12a2528035e26ecd9c6e2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001322", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1052.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab1ae5e5cf8590685e5d0907" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001323", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4352.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9411c74bfb9364c305352aa2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001324", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac59e96267d8436508374db0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001325", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2405.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7548a6f29067c6564163f1d3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001326", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2824.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e00db39148624a07476cd5d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001327", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_48ac2fb7bf0e7ca12a1ae321" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001328", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e930eda9746d12327fa64049" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001329", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2695.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fc3878eab39b312194e90db" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001330", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1507.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19efd0fb91bb0fe48eae1613" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001331", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3555.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cda58a4876244cb4232eef4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001332", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3067.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce08a6b22fc65e388aa06cc2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001333", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2124.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_837548be9f0b21aa1353f8c9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001334", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2690.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_10a04b92bb666257f0ee9683" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001335", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1339.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19f3b31b3597dd967f4e1f3d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001336", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2454.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80d9ac69c2d346494b9132a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001337", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2086.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b2b231865045b7e5491b35b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001338", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3433.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4341e3bdede0a092e9059a32" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001339", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51bd1d01a48e278351edb579" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001340", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2105.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6dfc208a94228628f32aa0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001341", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2895.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5c1c21b57718fdedb43a227" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001342", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1412.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b8c931b7c2e2a0747c3be1c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001343", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09b0501087d870899b701c3b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001344", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ff4fa2ae1b754d242f6e7e7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001345", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2252.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_56860a21e80a3833d64620da" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001346", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04aca544eca273b0c1e0db1a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001347", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1172.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f76e9e45210b24c312a2c75b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001348", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fa5f1c87c4c6c576253836f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001349", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1995.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b40cc30f71509908f186ba5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001350", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14324e836550a2f500e44851" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001351", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1226.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1abb480b4f6c3163679952e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001352", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3062.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_802c10e06083e1137148357d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001353", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2389.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09f773efe3922df1726c8da6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001354", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1139.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_742d2cc639e38686ef61fa24" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001355", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2534.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2fece02a5328f91031bcac0f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001356", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1197.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f7fbb59626c6c17fa152bc1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001357", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1554.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7ba4d6593be36594fc2ab64" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001358", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1964.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a48fd0c7faa68a0c2ab3f73" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001359", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1303.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd460f13f744488aa43bd087" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001360", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbb2060f3b13014df0e42272" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001361", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d1998246b6d857fe6c5fbfa" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001362", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc4370e9ecd5cb42b23935f8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001363", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1210.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1f1ec1027f46f4e09430a0a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001364", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1330.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4ea59a844482fea19e42b2c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001365", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1351.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80d2bf2ed44dbfc5db323bd2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001366", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1089.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_521e2f318b66244f650358ab" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001367", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3496.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5166f5cf91297178b33b5677" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001368", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2169.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc642c12a73addd40d796d5d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001369", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2811.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc7a5cf5f61fef7ab192591a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001370", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1802.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c895965e7c42966859aebe07" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001371", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92f51f0acd9a08c07a46df6a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001372", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1687.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_682766ae435e33cfc15df3bd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001373", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_79e147f39b809445d7116eb5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001374", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a27044cf6d710cdcc72c6531" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001375", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1540.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4538f7a10483f2f47fc75622" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001376", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0355472d912f9484b4a09565" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001377", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3473.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1dfba594341051615681063" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001378", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3161.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1438fc7a86a10f55c7a47688" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001379", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1298.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e6cc8c69f50a254b32fd84" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001380", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_756fb9f072df64fb9e60c416" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001381", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1475.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcd8876d973843c0e18d0e93" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001382", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2418.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7a01fe15602878c718c1793" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001383", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2437.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7001a2e5b64d1f530c0eb0d5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001384", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1401.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5441f6dcc7e4beefbbf798f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001385", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1684.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca9a5d9474e93b0f02344f93" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001386", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1175.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fbd1a4f89093fd3b9ae1bde" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001387", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d16d39bfbe6ac7e5ec9241db" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001388", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1198.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_477b44340329f67f0d68a41d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001389", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e02b07769912b5c56d08045" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001390", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67ddcd5377b852afe0741819" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001391", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1440.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b848f7cd88ef2bce2bb8c643" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001392", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 901.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce5dc57175d49cc4df6ff4e1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001393", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1406.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fbf65fc244018e8b1fc7e93" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001394", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1112.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27e277ee4c111ad3b0b43259" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001395", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1147.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbe5f31ee3677a6a273a0c6f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001396", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf90535a6d5d1d7ea2a7abca" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001397", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92b514459bc0d1b23d2ae58a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001398", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1542.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9473b5128fa7ac834bdf12ed" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001399", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 961.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f43b336ede8720bf42ba6c0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001400", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f678fa0965f99e8a4623a90" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001401", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c9fbfbbb3f20a85e0aedfc" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001402", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_30833adc27208a78b8ebda5f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001403", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1710.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0e61ab2baa4fa4414d3f9e4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001404", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1587.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c13467e5825279c907043377" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001405", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1980.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4af889426fff564fe8e23901" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001406", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3254.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4ff332b5c42328cb799cba7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001407", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2072.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26021119e31ee2eee402ea23" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001408", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1859.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e20a77dd3e92110bde8262f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001409", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1980.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd036c542aca037b5ca13de" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001410", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4fea6ae1d9789c32e9e83657" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001411", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3564.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6f74f2244a1d206dd3e6483" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001412", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2203.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5645ff32685a06125164eefe" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001413", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c8fa79abe0be8cec452a494" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001414", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1358.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc0c7d9dfb00f725cd6f94c9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001415", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc77e6a0181f4d5815489076" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001416", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_830cb9c1e92d3f4879c1b194" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001417", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e13e15113f82d6cc736e4a0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001418", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1340.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7ff8fd3c8522cc94460778d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001419", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1781.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b820fcd8ae987d40381f4706" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001420", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 936.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_231c77ce2a29e2e8de64c087" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001421", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3299.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2de558dac464be697515ad7c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001422", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2387.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d036a05cca095d95af55b046" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001423", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1198.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c863cc8d890b000b568497e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001424", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1249.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8862e1318fbae9c1f8f9147" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001425", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb50c232237bd78c9fdc6b3c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001426", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2433.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83c6a02cb1653c5360a73a8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001427", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2441.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cda36c01029583c5d922edd0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001428", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2366.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7442f3eefa3de4509cd951a0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001429", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1666.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ec2d200c1c5cb4dd67658fb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001430", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3555.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_54edca4ba6d6766cfef92fb3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001431", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04b674deda3a80039e24f194" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001432", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2511.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23b7267ece073151e2de13c4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001433", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3067.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6cb44e79001fe9c888cca67" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001434", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1891.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a3f18c8cd6ecd224d85efac" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001435", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3387.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c88f8707cfc9ef6d0cac6c8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001436", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ba1bcd2e2853ffd22cefe7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001437", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1074.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95c329c0f420bafb690d3d7d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001438", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2007.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_36404fb20a66b64128bb0b45" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001439", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1306.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_04f6b2f9ea074d2175ffbf9c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001440", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2376.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6656b54412d865c39ce4b723" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001441", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce180f4f9658ba2adaa895a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001442", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e239c8a3c5bfdbbd83ef8131" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001443", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1317.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67a13bc3c2ed3500e4f62901" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001444", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4117ad5c3222d1b90977c3e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001445", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1217.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0411c1ae55c1fe2d8350ae01" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001446", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f901cd15794f71d4b8c9bc5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001447", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2146.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4081cfcc7e2a2380b19ab939" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001448", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2347.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c62556316d20361f7e51ba9b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001449", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1094.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_feb1a04e93af7bd85f897ef9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001450", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2135.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc726b6c6be9dbe225186256" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001451", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1668.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_52d51d25955476950fedfaa1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001452", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3156.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef54ee5e97b421ccf88fa8d0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001453", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1932.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_527f9db279ef3b7217db454c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001454", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1207.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d063d65affd5790405e11bb3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001455", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2119.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a47072f6fbc845761d5663d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001456", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5a30e53c5fb0a3e03f2255f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001457", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1036.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd2a97b94f385c31701493f5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001458", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1080.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d2421505ba9f4b686707ac9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001459", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3164.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_25823e41fc73ff4953965654" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001460", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1231.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72cab41d699103aaf32e1212" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001461", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1908.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8341519ab419c334ebbcf8c3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001462", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_570ac807ad62715c4226c6c1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001463", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1007.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b757b7a86987f82773d3bc3f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001464", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1559.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62adf7ab7dd9f1119d2f8fc7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001465", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20456ad58bca94f2069fd470" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001466", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7aee3d351297a4c0bc30f81" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001467", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_502f2d2a563d308ed8f3c26c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001468", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 585.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_58e7382083cf68c612bba5a1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001469", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2959.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1e617dcabdd1feb48bef806" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001470", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a9094611b0fddd39e524dd6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001471", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_580b2854a0cd502ec642ab39" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001472", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1639.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4912353c865f577a26f3905c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001473", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1505.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_01ee10adf4a86a5032ed37fe" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001474", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2450.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4dd9d0464b9a8d3a4e5a3a4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001475", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1010.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72eb1b13dd0665a7b261a661" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001476", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1339.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02f424795edd31f0d0f3fc4c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001477", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3359.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f905d2d04fb1bcca45d7108" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001478", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20abb8fec73b6b30fc8dc3f5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001479", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1089.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f16c7f22907639b3cf1d714" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001480", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2024.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e003b713623875567d2bff7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001481", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1083.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_031afa50a4e7cb5cceaf7db9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001482", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 967.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5099cc49904b548572cbbbf9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001483", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1628.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26896b307f716ef9c725d1c9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001484", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1363.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17fe858dc98fac4cde3d66c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001485", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1670.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2043a2909dcd69b7f9718479" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001486", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1487.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3577f3ac12c828bbb18dcbb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001487", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2047.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f8b85998e4a2a15c47cc797" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001488", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1326.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60862b27c81080f21cee9273" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001489", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60b3117c2afd8434b9708e8e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001490", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1090.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d31b292be0eb0d13682865b3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001491", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec81fecf25121d24b204bcce" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001492", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2178.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e120e3c522b62b716ddc6313" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001493", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1133.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dc3f7635b4f914b5195068e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001494", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_149a36050aba12e16a96a591" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001495", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1155.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6ab6ebdf58a087d67b9a730" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001496", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1201.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5317e1019ffb51e259ad554c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001497", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1707.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb4571d2ffdc443f197fe34f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001498", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1695.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_914ac6f094358a475df31411" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001499", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2527.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73cd7fae17a22366e81d3830" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001500", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2514.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09de88c806b4d050c739a358" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001501", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2484.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1590017e7e405d985ad0a5f4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001502", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95fa1c7ffb73f3e33a59f78c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001503", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3600.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa145b8929da5ec827f22eb6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001504", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_344e16bb07873e62189a6510" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001505", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_31a86c91fc3dca673d54df1b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001506", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c358e1cb3a62afead28fae" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001507", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a97c9448ff1ff2f5e2e1f493" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001508", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1929.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_01e72f72d3ab0312c81eb54d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001509", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f948a09fc0bd0d8f6e0dece0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001510", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2370.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8deefdbc380af37e11961c1f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001511", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9cdac76712d0f87daeee1c3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001512", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1491.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_622ea42fe0f9dcda8c233973" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001513", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1464.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_073bbdf1aff52b55d743d583" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001514", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bfbefa6c26f32ccb1a089f3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001515", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2379.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49c2a8d269ab63070b4e100b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001516", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1861.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3048a497620789d9024b8fe5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001517", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2582.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_68483f89b4306488dae213b3" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001518", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2727.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f63fb2035c201cb67859abef" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001519", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50a6f23b315f429743d90962" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001520", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3056.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6de4d0740edd839a48b8b6d7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001521", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2443.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_677671ae27102b48990b03cd" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001522", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1746.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_46b3aec851002d15cefe60ef" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001523", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d992df607b4cc6ac5075a02f" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001524", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1862.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_693fdd8fd679cf047cce54d0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001525", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_035eb138ca1bdfb6c40d62da" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001526", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1308.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6faa6b24be88c6f3289136e4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001527", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3077.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95d96d9d18e0a91194b96d40" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001528", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2005.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e06f49311a94b4475572e26" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001529", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a68537c7923adb7f0d08266" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001530", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b983cb59b3cd16142b39e8b2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001531", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2222.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c37e50b3dfb356782e0a066e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001532", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1003.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b1061dc53ba149b9892232c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001533", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_360011e3b92de6df7ac95bec" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001534", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1574.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_88f87a74a018042c0ae7f3df" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001535", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1028.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_261d8f74424070cd3bb82879" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001536", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1927.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69a4a849b2f8ba2333b87786" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001537", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02e98b2f9a0f8f7e4b419278" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001538", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d74adfdfa4e149f89c3668a9" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001539", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1017.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f5aa631436f518d99bfac4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001540", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1727.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc45b94c35103ea565f94364" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001541", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2758.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cdab5b22abb73806539cd9a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001542", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19120708f1e116a717c26b6c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001543", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1763.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7afde821b9ec96172ed450ec" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001544", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1256.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_10618031b887ffd5426a46bb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001545", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1356.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1eefb701d77c9739c5182be" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001546", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1c5aab2f32a8576ba502688" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001547", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3318.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_196cade0629c9c92c088fc92" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001548", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17d2f4f24e73348551a1ef4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001549", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c78de209dd102d0e935a2fc2" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001550", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1727.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2cf817b26e1947c2f5bc571" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001551", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2203.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ca87afd8956dcc86cd19d46" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001552", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9638af600883f66f1035d392" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001553", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5204.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_18072bd096bfa910efabc19a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001554", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1413.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_32afc0c588fe2a48db825836" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001555", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_127611b6b080eaa8aa591413" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001556", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1281.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64229d7335bfffa1e3a020a7" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001557", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1566.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_23670be5af46ddf145b8c06c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001558", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2149.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa846989a5de919df633f71d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001559", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2647.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2bbf3d58207b3ed2bb5351d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001560", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99b0d5ea8076db10403801c4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001561", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2375.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dee8adebf13da79f88369b39" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001562", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3726.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_255ae88c6143993ceb9fac9c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001563", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3329.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3dc606bd9cdd757ba0eb8671" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001564", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0019dad758a821447e609413" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001565", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1600.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2edea869092e7b24cd64e1b4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001566", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b2ee641a562e6019ea5bfb1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001567", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2726.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7415bf9fee48af35b6d925b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001568", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2192.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80f26243b10c0270bf350ca" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001569", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80f2368e2673008b1e69a976" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001570", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80ae8b82c1e4f18b9d6a7c69" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001571", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2500.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa14c3e9875214c86dbf0ec6" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001572", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1129.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9652a5f3f43294326d57ab1" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001573", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e4ae327b9d8dcbed3b7edf0" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001574", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2797.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0510534c625ba82819b06e8e" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001575", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1202.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e1e692fa3a8e9a0bf788d3d" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001576", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4499.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a39847c704914a7f56bdb441" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001577", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1815.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4aa8dabb63585da853fc922" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001578", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4893d1f14ea66e08f4f3addb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001579", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1383.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a611399bb919495865b0f34a" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001580", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1f960271186dc23fda17564" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001581", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2107.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b6367b80c51f3d202e86aa" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001582", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e2dcc32d20d1ea6a9b11ee4" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001583", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce693ab6ae37d5f65a77a174" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001584", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b25a4403887c1bf80b3ad80b" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001585", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2464.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c20db382749062e7a4344390" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001586", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5c2b075b122583698552b93" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001587", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1068.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_54006c4ed6741aaf8a3934a5" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001588", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1348.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3aad53e6eca72257d25d503" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001589", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 946.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_32ebf5e5a621ddadc6296f44" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001590", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eeae06932a8bca50a890d13" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001591", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1251.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3ca4d33e711c914e93ea991" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001592", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1283.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_193ed0d68d6979abc8f7f367" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001593", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 933.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d154b0663ada8c2475120fb" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001594", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfb98eab2683f0f10cfa3968" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001595", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3940.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1753bf1a567b9dfc1f54649" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001596", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4995fc2b3396a196d3733a17" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001597", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_525d1b26f7125b93b402c5d8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001598", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_11a50df7e22a3656139ed8fa" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001599", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1581.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9a2c66b77c0a33e69ecbc56" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001600", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1911.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_72c2d2f0c99861696a2eda8c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001601", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4a609e3b0005f10826e784c" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001602", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3244.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7f69680a516a576ab9bb616" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001603", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1720.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_390ced76549bc5cc856f7ae8" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001604", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1654.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84915787b07f26fe427d0f62" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001605", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 841.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bf8c3201538cec6a808dcf1" + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000001", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000002", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000003", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000004", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000005", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000006", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000007", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000008", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000009", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000010", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000011", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000012", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000013", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000014", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000015", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000016", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000017", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@N05000018", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000021", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1113.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7037cd12d30ae791903da2fe" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000027", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 286.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59abd26661cc5bd25f571719" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000045", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1873.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_949dd9d284e7ebe5ed0641de" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000048", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2174.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed41f2113d375f40b4549944" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000051", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7de1a8339bdf291f3279a86e" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000060", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2303.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84712840b3a49bdf11f06232" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000061", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1399.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8df51c9040fb2d566ac7ab05" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000062", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1700.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fadd4da133dcfc77c687a1f" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000063", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2293.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b83a3362492df5c660480411" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000064", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1966.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ae61efe0a95462c0670d846" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000065", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1641.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a7b8c5f6153efd8fd3b010" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000066", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f66e6d2fe7cbba6f621cf79" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000067", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1215.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_52820678c1b9bb8b3f00d427" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000068", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2031.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbec9b1b81feaf8e8e91458d" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000069", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1432.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0b37a785d050ee68d95df7b" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000070", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2446.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_340142bca3c83a8d188de794" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000071", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2039.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41ae03da5661fdcd33391dd0" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000072", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1859.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8334b63ed9a7c4fe18fa8ec1" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000073", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_213e2239aefb5f2c49a61394" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000074", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1353.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85e40145de249d7d42e8aaa" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000075", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2479.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b9d1f4c87e5fa7bf88c5dba" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000076", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3b688db8aa187b7862c542e" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000077", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1512.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a517673f1f1bdd77a020da6c" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000078", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1915.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ca151883830f2e7afaebbc6" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000079", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2021.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f60b102eddbae7744ebd0f24" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000080", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1005.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e9eda73ae90828ea84e23e" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1582.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_585537612156f3f6f050ade2" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cb9bc063cd86527328327de" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf1c6d83023a5406b7bdc4d5" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3058.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1db3a3504d2f77bf79c8a527" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2342.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_662c9c6afa68ed4bc607241e" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a2cee3cbb295a8e9ccd7378" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2048.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17c72b000c55f85e451b6788" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a3e46af7e7a4abe907a80f2" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2162.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f765796d4054aa9664838ec2" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2692.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e30b3ee5d14e8ffab31860e1" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 925.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb3f1c2e8e8f052505faae45" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3242c88523dba0ca0aafcad4" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1917.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_15195d74133019b801c0061a" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1743.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09600565a14e92b447c42785" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2128.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce9deef8c94f260ad176f510" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1584.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cead52b0dc092e0b8d0f9f6a" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 867.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ef318a8a5069a1db56d4415" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa9968fbef1e51653b87ac35" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b6ac36014f23f2dc2a89f6d" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78e5da6df2306e93b4f86942" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1905.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_396a755bd74c1312b3419148" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_799c498b5bd0b20e219f4306" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1586.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e670f256d2b488173c2becd2" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_237b7c947e5bdce0b5b17553" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1399.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_114e746715f6c76d0c6ec2a6" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2499.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaec13ee12c2d59d49c630d7" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1943.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_86ba3514a8a46164ba50d7ad" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59ba50c0dbdd219816bae812" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_324243cbad93e7c4834fe344" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2106.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b348ba4e1abea290928726e" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 817.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_780a8038378ed5bce3561bdb" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_29b49d4efc3ccb7f4d538aa6" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2efd2b0b01902543b19ed78" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1584.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f8435340bc0ba9285b93066" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2871.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80542384be5d09f5cf609655" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1433.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_060572369d6f657577bd8abe" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1702.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67f3954427577f67d34eccda" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1518.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e07440471064f710376d394d" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2115.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ec16f46b4e4c555dcfc3840" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2365.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f511e22a4b04f2f274b0bd2" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1240.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_38a1b306504899c783b1e033" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1831.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aff8d6c1ed7a6195c21ee9ca" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2314.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e39cd8535289058302ff3aa9" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1389.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_433acbcaeb3d65211fb53b5b" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1493.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b73f509de803e3d1cf67a7ad" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2344.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1694f48ebda28dc12b299028" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ae5b21db023ce3bc0d34679" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1488.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ac08142ed0e41733ca0b088" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a76b95620b27205ae9667759" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50529c8fdb8eeec1f6e02692" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_155aa1c0375d2601cc0c8750" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_58f5cfc8f8208a44bf7c704f" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1849.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c80f3492523bd10a3da919e7" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2348.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_212909adfc80737264212f81" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3040.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e05f0bd795ef1839b431629" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1967.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4528a306df5e9497cfda76c1" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2244.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39c2f212fefbdf4f207ac93" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2747.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a09147d2cef83e526f3329a3" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2776.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_065261ceb557b6b1f24b38c9" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2339.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df6dab8659b899e499f6294e" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2032.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c2c7d899a55ec0161a2658b" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2094.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d0d7baa66a89d82861094a" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000112", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1241.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d03489f78c4e71274ccf9c0a" + } + ] + } + } + }, + "dwp.uc.households_by_area_children_2": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "dwp.uc.households_by_area_children_2@E14001063", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1550.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff0947006d2eed66aafd0c59" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001064", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1361.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_937fdb7df8c00bfdbea1d3d8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001065", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 881.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50f23fe9954c0373d7b13f03" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001066", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1546.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e82c03e237d82e5cc96232f6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001067", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 984.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3377996fe8d8adca2fd6663c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001068", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1924.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5b2af6bfc249120c57ae5b2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001069", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1951.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba66e164257ab4493ac60799" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001070", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee174ebea5f5a5a6ac13bd6a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001071", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1777.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2716b36db2d7786b386fa622" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001072", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1358.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3025f0b80c2f3dae0e889ac3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001073", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4426.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd7aa19d90f3fbd325d726e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001074", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2191.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f73a7a1b2438429e15c03644" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001075", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5742e1e95ca585414daded25" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001076", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1338.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_65519cb457b56d1027eb8234" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001077", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2099.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbb81ec7693d84914f719282" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001078", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1662.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1b75a8d1357960042343aab" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001079", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_159bf53edc788bb1b13996a7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001080", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c26a40362ba9607c763fc41" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1226.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3f94411ac40659e7147da30" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 917.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_667e51a7901e781e7d1421f3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20a1a1e99d08945e7e9556d3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2141.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_805ccc2122d26c88172ab4c2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_61d291c8c1a0800c031f93c0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5bf332a6126380932a27e90a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1106.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98baa1d9e4ffac6952452305" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1204.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a862a921687f8d07f54b8c5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ab6aee187b6c19e6a0c7217" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1198.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9399947ffc6393b4db47cbc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2533.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0228aa7f21378a144c73019e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2271.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e73d8ccb9fb48c3d960f34ff" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7068e5651dff4f1845c66848" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2642.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_34bcd863a637a955403c42ef" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3875.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a512cd84ea84df957caae6cb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4134.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8de81539341ab7f5ad0876bc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4aab1b111743d0d497063f3b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3591.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_42fa96c4590fcd6045ac397c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2010.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bad8acb60633569cbe369f91" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3155.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f17afbc269026cdcc2017d8b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1709.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3a234c17ec4d3f59c539405" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3068.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1ae40b4a174f9337e4ac6b5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1b44bc424dc05613c853dba" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1668.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b743e2f82506efc21b577b64" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d186871ddd28d61c2f59e524" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1486.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cc6de90ac9e47940bd518ef" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2283.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de6414fb5cc495ea05f3018c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1747.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_858481a5206034a546d62ba4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1859.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21f0387ded350acdf328e3f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2632.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5568ef404daa8276f5a20e52" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3588.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cf41ef7e2c839ea4f9f1d7b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001112", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1727.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91dc93db1107306de6476a95" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001113", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5edbcadbeec02077a36a7810" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001114", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69068388899bf9d499b9fb1b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001115", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08fd15e8f2ab4a0d7a4ff797" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001116", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1597.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d28f57144969d42593818ad" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001117", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ac13562417e6c735e8674f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001118", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3783.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9d5d5473f0a3a92fcff1dd5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001119", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3341.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b30d0a035561f3b2cb66d570" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001120", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3377.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_191072627e7b1a30837ad639" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001121", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1327.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_71e523891f89c0ffe51f4c59" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001122", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3357.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ae1147527f4b5cb968bcc2b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001123", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2706.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1117d74d23dad53199b5b229" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001124", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4696c8a24ce29487220994b9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001125", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1067.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0753657989a11ea11323456" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001126", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f0991ab2e56a4d4c8f68d29" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001127", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1331.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c82db7341de2b8962428936" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001128", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1166.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f9c626351fb1885e08b2a04" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001129", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1540.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b852c3f6547f8d26efcd623" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001130", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 977.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ebab04b5caad4858d75d9d1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001131", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 468.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bd78e719e63020e7d8e9e39" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001132", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e06e14892a1509f7eccf131f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001133", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1654.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_60e404f3a57d1e727234e4f3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001134", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1574.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad31e33eeb439f0295e89d8f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001135", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2149.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bad907c1759bf861a4d1323c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001136", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1214.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4ddcb24accf3a5018df29c6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001137", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1111.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4b7d6605f3632567fdc51a6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001138", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19865ba23fc29cd022b6a58f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001139", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2060.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_781fbfca08d300b53eba762c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001140", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1244.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb295b957928de07de92f156" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001141", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1817.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db8e0dd0bcd0df66622c869c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001142", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2833.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbd18e5f84baaafec74462dd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001143", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2010.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ded591bf4154b65d50318a8a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001144", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c3a58b0a19061be3e9148a1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001145", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1984.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_007977cacd6a69e44093e7a7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001146", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98a63fe753fa41ae2cd27a5f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001147", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_298cdc15c8a6887cea50a72b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001148", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1774.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49b9f286fb64262b52349f95" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001149", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1126.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99964e6d8762bfdc97590d2a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001150", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2b001602f232a13114ed631" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001151", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1454.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd15e7d4e84a47bc3e477fa8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001152", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1532.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_46e3f7e88397ca51001c7bfd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001153", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1871.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f859ce6195436a0d74114b8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001154", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_59f1656b1c7f954a0468b6d2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001155", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1239.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c7d9536a93365079427263a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001156", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1105.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_35963de8231f12574a08623d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001157", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2157.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_878a04d8d96c9c4cf3d69bd6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001158", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8332f725f695f53a93b7ec38" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001159", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1358.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cd73c8930c3108f84520d86" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001160", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1144.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9aa026c47008addfee6a7ab0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001161", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1097.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5769be5b1fcb99fc686815f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001162", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_588413e1d7ed0de5e4285ef6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001163", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1062.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e68cff385124ade879556acc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001164", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 965.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5e9899f37fe79d951a9c46fa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001165", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e592cfce5a84916f9417357" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001166", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1508.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a1a8a829c1422110bb95b42" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001167", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1694.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7711729f85c0372097ab4b21" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001168", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1258.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_88b0f8b86f52c4567ecf64be" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001169", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1551.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82b9939b1b29d77a755fff92" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001170", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1493.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f57c7855cc7dc75ea6ad4e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001171", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8a65154735f2dd1e1f5009e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001172", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 963.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efb086843e006e7e9c4d942b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001173", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1262.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_579804041f0b28c26b09bb4c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001174", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1827.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_510b69fff236416876785208" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001175", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d3793d1539c9587a6b6874" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001176", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2053.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95a2e06e2c54169cd64a2c1a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001177", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1228.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f54afe4ec7ca9f472d5a5ba" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001178", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 961.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_927b2abe75d4d91a9ea2f433" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001179", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_990bd9e33ca2f2f45e5f41da" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001180", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ff3940a924a8af74eb8ea5e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001181", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2107.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d78f344baf650f6b39c08af4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001182", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_79b8eb5d5aee849599b7de7d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001183", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5297cabc6d2835a3f24d77e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001184", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2445.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c37974bfd6ca5c53c554c355" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001185", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_55f6b1a8114941de07680014" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001186", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2444.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f534330c95deaf4e16106f67" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001187", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1523.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b6e434c0c686b811e9a5a3b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001188", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3439.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05fc2938c808796e098ca952" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001189", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3255.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c1756b117f3d833a25ff937" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001190", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1936.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c027b80a2d57ac118a2a781e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001191", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa97ab6fded5d4b5d81e4e7f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001192", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1426.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5797e4e40889e164ad31d56e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001193", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1976.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2a5591d3b26692f76669a34" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001194", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3268.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a129be71414173f32f1f4a39" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001195", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 862.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efb0623adcaeef00876eda1a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001196", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2816.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08d154c4b8c3b86bdea47d9a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001197", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1360.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1c1655035c201aaa11631b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001198", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2484.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5cde062e3f437a54e9c248fc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001199", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8588f6a16f59090b67e4d6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001200", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2303.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8367eddbdeb9d06a37668a1a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001201", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 945.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9e091b48319d18fbe5f3a48" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001202", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1891.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff77edb573aada5782d3968a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001203", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a120c199453893ebc11b348" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001204", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2355.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b13c598c2ba4fd05612b1d6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001205", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc52184b3f7c6431f5b95bd4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001206", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_231bdd1268d71ded57ec9018" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001207", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2076.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9592506413ca682fd1f5968" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001208", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2900.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d210decdc2b5c690534864f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001209", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2747.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17503f889417f6eb640978eb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001210", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1221.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac83fc5eeb239e77913f049a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001211", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2261.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c22cae69f7b4fd87ab6a0de5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001212", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1067.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_29c396d6d998921b07019058" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001213", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3757.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84f940333e3d220ea70e58f6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001214", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50b6266724d0a0223dbea9e7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001215", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1188.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_617cd4d7f20ac80ca43a4032" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001216", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2515.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0d8a4f5433aa24fe1e50855" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001217", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1223.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_314b700376ec62df2454387c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001218", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1197ee6d15b2f025caf089b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001219", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1803.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85244f12db97cef59a466035" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001220", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1213.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_34ea3fc3ac21d059955e56c1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001221", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3780.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4bf1d440fc9bf3e1fda0f99" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001222", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1929.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b73a9e17b4ec381c1badb16" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001223", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_845b382d4b71f06bdb267955" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001224", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1249.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_daeb6bd2edc68df248cf9186" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001225", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4131.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d035dadbc758132bfd4ee60" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001226", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1384.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ec3068ccc7081dbd50b4646" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001227", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1063.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4414ac89670669a3403f9293" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001228", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1692.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d28432629580f82ac34b4bfb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001229", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3302.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_099e49be6ec8d8b404f94fe9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001230", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f7852b363652974b8172486" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001231", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1122.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d3ded966601d6214bdc9fcd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001232", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1550.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2209a4d58f7237c79a78276" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001233", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f0319ebf9976d69d3c1e575" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001234", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 993.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f3b6c75382b29889592c124" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001235", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1685.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f7a72d6eb9909fb17f18ab6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001236", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3372.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c8290aa4fc3642a14513586" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001237", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1405.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_88792eeb82346b708382946d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001238", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1747.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_88e4a8a21cf90f079b7a2d5a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001239", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1505.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9ca401b21b6be826da42bc9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001240", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_86d400d8628c56e4ed4c8a82" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001241", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1285.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee74bbe8e059b43d02149a8d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001242", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1159.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdc1a04355aa7922cd8017d7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001243", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1349.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_62877ec3173bc293573c82f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001244", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e7e787b1cd47fb31313c4f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001245", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1585.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db7a2cf43a831c7ffe9000f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001246", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1930.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f19eb4ef71e779ea3f14c2b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001247", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1186.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ed0dcae3d3f45b759c1b046" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001248", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2145.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2bdc17a0a8e9b15aa411e2e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001249", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 900.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83d1130d58a4d9fbcb66e0fe" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001250", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1222.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6a0f8c7ba5d4a4c85b687ff" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001251", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3403.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc3173bfd47f16d6f5561597" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001252", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1586.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_25243622740892955fb311f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001253", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d55e487a92da3eed12f60159" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001254", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2191.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_400e5f6daa302f892500a3bb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001255", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2854.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e814942afd30f1fbd669484b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001256", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2212.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d1b063d2c7909b22131120" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001257", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2198.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50c2300ddf7f7253058d9206" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001258", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19bd5c0c956f73c5db134ed" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001259", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2523.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be42ab26af5a5ad897b30a70" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001260", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2325.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b33aea25bc6577b724438a3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001261", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1984.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bfcbaef2c77264051500a87" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001262", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2586.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84bc48dab14d9b9b78b8bb96" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001263", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1401.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9f3a15c910cc445c4080982" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001264", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1459.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7993b03c6fe2f8ebd1021d0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001265", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb6496edb5339a83bca8c5d6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001266", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1329.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6e63e59dd68c42ed69ce68" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001267", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2289.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab1302bb92454c8d6daf0d1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001268", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 719.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d8227af6320f1b185adfd5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001269", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92d4ae461c93145a28edb32d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001270", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1718.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d908e692181a3febb74a90f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001271", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2207.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec258e32480cbf5796b08132" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001272", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2220.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b40d232197fe69b058d255db" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001273", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1333.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_65136de61992b9206d63baca" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001274", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2082.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73e1192218b6b312d4b23692" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001275", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1715.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27eb865a0ad8f29417284f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001276", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3fc7065eb6f53db0f831effa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001277", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ad9e2d228fb747f48e1048c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001278", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1890.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a259e2e9cab12627274bbc2e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001279", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2591.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c838a23392c186bf7c890702" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001280", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 800.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_64e812d80547a9033b1f4a7e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001281", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1425.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea52c437cf292853f0ffad7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001282", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1559.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c623b03f907a3f3f22cfd465" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001283", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1299.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_87b2407d7609ec43f78522cd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001284", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1486.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_601e5115abb81ebd862dc38b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001285", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 964.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d19c14597aa127544c4bcb2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001286", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e993e820d180b190cd77387" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001287", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ce21c34ebeb209b4904db1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001288", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de0d3f33dba90b5dbc9a8215" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001289", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1186.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81b331d7e8a8ed2416bc55dd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001290", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1817.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0548bd4b76c6b28b387bf534" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001291", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1028.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_17c27765f0b76a1ee8b8ca89" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001292", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_432175597708c7783180dfea" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001293", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1285.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b09f1f0f717010ab26a0278d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001294", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1210.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_03c3fac2255b41c3b5ee7866" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001295", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2244.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e49f43a9f0d81cd3a8359a1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001296", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a74d5f114e9592d62a44341a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001297", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2573.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c829e0cf1da4670d915ad9c3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001298", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1275.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a66bd710ebb29bec9e6d3361" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001299", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1d297252f93eeb1c1f3a347" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001300", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2242.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e96b27d4d40b9896fb283842" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001301", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91218368115b329720012d50" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001302", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2493.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5f7d371693935b9cd2c3345" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001303", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1113.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cad2cca8ee78462eb39ae29" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001304", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1091.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_05f149fc9cfeea7d79e801de" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001305", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1914.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_38bb69f94c20120196bbd82e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001306", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2209.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7790401e4fb73a55833d82ab" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001307", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2257.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d983d96857429e73e4dc4acd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001308", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1868.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_048c30a5070a760f4d840539" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001309", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 881.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9e21b8bcb4a79ecf082d603" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001310", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f4ea5088e4234b415462ca2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001311", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1964.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbc3662f69c202b0a99a9673" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001312", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a107e096520b7e2c27229d4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001313", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dc8c79a279341cd962db500" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001314", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2436.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd4aba6475b6d3f695ba9c16" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001315", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8aabd48f18798d75b68b210" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001316", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 988.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20348b26cb90e400710fd013" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001317", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2614.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_254eb26b9411cd8f391f644e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001318", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1178.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33f80bb8a290d1a32c1050c3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001319", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1123.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91554f60dbf62de89d151069" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001320", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3038.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdb676476c3213c5daa5fd8e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001321", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1234.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dae7a12b5e42ccec605c393" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001322", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 979.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b424524a9a36f366f0fd17" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001323", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3933.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_01a3b781dd2cc9c020586a50" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001324", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1679.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dcaa7f43bac05f91d454410" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001325", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d05ebcc6f7c7c78a34dd5ec1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001326", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3168.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b52574ed8ef7a7d1dc5f91" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001327", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d53f63a08e423875c1a25f7f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001328", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3386.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f839a1bf395f4ba6815eb63" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001329", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2184.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7de649a52991981a01fa7b98" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001330", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_005ff6b3dbaa2b2b1e818088" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001331", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2718.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8c44d270d70f3d3b68e6183" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001332", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2139.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_652fc6d3b97ce686884e9d42" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001333", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_37b1abbc0d0ee9c5e69301bf" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001334", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ff949154fe140da2e8501e3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001335", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1193.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_331239b913857c59c0ae7c15" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001336", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2032.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a600e0a8aafbe39282ee89a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001337", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d86a48b834e1108e1c191315" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001338", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2740.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_751fa84d90ffe2fbb48cac17" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001339", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9347409d62bc95aaa119e5ae" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001340", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae8ece6abe2f46fc0bf2d530" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001341", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2536.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a27169aa8b2016217ecaf86" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001342", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1315.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca598283d168952ebb70b8d2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001343", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de9ca361b372e74afcb0da76" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001344", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1773.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_978aefd831fb40a9fe991f0b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001345", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2399.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_49064a162693e412fda64869" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001346", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a77cfe953028fa5c216b0936" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001347", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 942.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3228fb33aa365f2195e8302" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001348", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 989.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_654e1d01763ea57eabb23821" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001349", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1695.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_230a7eb81aa97a8f5e01bed8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001350", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1634.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e85bfd0b3764219bdf4cd0f3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001351", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1108.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9423603485c2fdda144a9cd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001352", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2801.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc534c805e82005e609272d2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001353", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2141.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c16ee286dc2e7f4b0faafb9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001354", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 963.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9c4d875c211f92090d824e8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001355", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2120.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_561a1f8c19738a943eea79cf" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001356", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1093.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c0eed4fa60b6648a1243058" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001357", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1420.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd9603ceefba61f3904faee2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001358", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1701.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27e214ecaaa30a43b30365a6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001359", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1265.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bbf6977de88e2bef0007e7e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001360", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 959.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_583255508d2702f6f69721b2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001361", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1576.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd471c6e747f13fd34e8443e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001362", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 943.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ede5b5a3e5eb1ce98b57559" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001363", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1096.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b4bed4be07a97b3841a1b11" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001364", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd03ba53ff341f9e6ba6f2e2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001365", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1259.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d116f681d548da7bbe42e5a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001366", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1075.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_390a631fb9a03435a3d639ef" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001367", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3299.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c60957794c9cbfc5d1a10c5e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001368", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1749.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_338b7723c10775599bfaa234" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001369", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2467.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8a72a22bde0a1195fd5a08e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001370", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_95856df91eb5e332a0346c91" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001371", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2356.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26afc9a393622c6cd03cdb55" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001372", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1464.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_96f62e4e4d34cd68009f6a3f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001373", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1072.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb69c103fbb86faf863de73c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001374", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4200a59572fb6bb8824b386" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001375", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1395.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec535074500cc6853e5b20cb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001376", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1125.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa84a918ee6784b66ef08f27" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001377", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3159.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9252570546191d83da5d2c7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001378", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2500.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84f63caf4a450d9ee12eb3ca" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001379", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1043.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_34824329e1399a6460177d09" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001380", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1385.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ecb052b40fcd3ee73d95e38" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001381", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1366.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a91de4f287353ab5858ce7aa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001382", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1951.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0bbb00e7e9c03b14222e230b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001383", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2175.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_124d6ec2ec42483f84ff438e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001384", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1396.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c721022a55ba77b210c7cf64" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001385", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1641.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2198881ae287c419df03cec0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001386", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1158.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c6cdb5e44393d380a2655ef" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001387", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1505.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16c841a6490ab3f6636566db" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001388", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1180.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0438c944cfb4ba12c18c8f34" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001389", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1749.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6daebd1da59a1a392af33e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001390", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1875.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4506a32c58feddeb93c334d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001391", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1380.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2ae3b7cc005e99393922f07" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001392", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 884.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_45f3b0c7d2186e058917a075" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001393", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a494e4787b28fb79738e5b65" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001394", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1079.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea26a6fac373e6798490606f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001395", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1037.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7523bf4eabc7156793817f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001396", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1064.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_262b0f093873f028231247f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001397", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ccca5e41a939c5732da51d2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001398", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1274.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8a82cd505b0f1e889273f70" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001399", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 854.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5f64a489f8d3b2377e0d7cd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001400", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1668.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02e93dc9eee91d3087b921b0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001401", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd0179f0266d97b72206834d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001402", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1225.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a84b897ae0af0b0aec833b0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001403", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7411fbf59c38835af1ba3da" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001404", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1461.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_84455ce45d1edba14d26f017" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001405", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1620.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_11a6f5a90e9b56d4c5954441" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001406", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2761.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_06fa11065a5ea72ad10e15db" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001407", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1766.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efa29466013b1132d340ff82" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001408", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1663.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_842e5e6ac0b8b23c13e6c36d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001409", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc112f2503d3bc64a9900ff0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001410", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2574.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_10831dd9348daa915ae130f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001411", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_87626283be21192499cbfafa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001412", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2059.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de3a91969cc6e2ef3a82559e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001413", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1915.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_465514d342981cff673b7594" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001414", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1162.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a8c1249b4d0a3b38a1b2969" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001415", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2776.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bde61f6ecab77b7fd9772a4c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001416", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3281.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_57fd96a603f544ff1edc2a6e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001417", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1293.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_971b8fab7e27ac126d0e87b4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001418", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1176.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0737e5f4c4fddb33f303c321" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001419", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16611a1e3ea56fcf0c59d139" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001420", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 802.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c2d8cb81708c3bcdb4d792b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001421", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2403.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0528c3270340815f8ebfe28" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001422", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2194.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad76e70e1576cf58717bd433" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001423", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1019.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_43485deedca84c1f76483f70" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001424", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1126.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9557cf27118ecf2d916cd781" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001425", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3528.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_210acf2edf0f1f00f5788710" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001426", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2201.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de6421b166fa0a60244ad013" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001427", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1808.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6bf20aaf2a1db9e516049f9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001428", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2248.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4eca6e23ebb59015a2bee7f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001429", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1390.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_13b13c2ef363110a0736e011" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001430", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3457.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3666d23ee00bd6df96d8d5d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001431", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de895b8603929f2186a3ded1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001432", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2137.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4f1f2a5fdf88aca024f83fb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001433", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2736.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c48c27f4051a3e9044e8ddd9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001434", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1581.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2611b06e1e170c8ab7e6a37d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001435", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2660.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e2b8deddad13455e230fbaf" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001436", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2026.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_264e8deeae053ed395674a96" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001437", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a781b237c9f62382e44e1e3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001438", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1566.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92a0c5dd9a55fd2227e8b606" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001439", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1214.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f254106ae4935df986afa62" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001440", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1954.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c558cd747dc205653d91c658" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001441", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad7bf2fee8d7c2ae9875ecdd" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001442", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1074.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b2ded0eb33250a5254d014a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001443", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1161.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26721364c7dd342dd58f79fa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001444", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1013.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b67d7b301b46911f8854ac19" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001445", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 941.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3e6d1161d86b4ba75c35f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001446", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2750.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1771e7725e486524341f4150" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001447", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1910.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6df79dd8f63edde25d8e9409" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001448", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_533d5fb7ac5e7a59cad1ffcf" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001449", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1017.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f253e182786055cef2700582" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001450", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1742.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_100032e2cba77a91224df1f6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001451", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cd958d497dc9b64f7fa3ccb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001452", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec12e05a33ca650d2b2916d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001453", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1647.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d342c28714e5c437017870fa" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001454", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 963.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e93d808c1960d42d20230eff" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001455", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1796.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0926b55f2877955a0f4aef27" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001456", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1157.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_97fd2924ccd680ccbc556ddb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001457", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 904.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39ef74ee148d82b1a66b6d07" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001458", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_627806bdb362b43fe71ceb30" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001459", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2569.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cfbd94cbcafd21eb9205113" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001460", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1121.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7368386449aacdd0aa422513" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001461", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1579.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc4e83b516ddafad33712a7f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001462", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4aeb3eaf2ee2a97bd2030a91" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001463", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 910.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e4c6ee1763eb5df2a951145" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001464", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1393.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e8cf54c0aeb13636b4383de" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001465", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7730714c3c8a00a7389a1207" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001466", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3511.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7b5c858efeea3f9631e6fb9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001467", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6dfa6cce553e72a5118c6a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001468", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 497.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f885ce5145b20d2bd5841f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001469", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2579.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_167c056c7c2047905101d9fe" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001470", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd5ea1a50434560a7e519fd9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001471", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4567a7ec2227c4b732f1e3a9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001472", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1370.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b0eb2cd8133fa2d86fe43bb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001473", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1289.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5737da0bbde78e8f3e83586" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001474", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2231.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_09da94cc6086fb065fd27f6f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001475", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 964.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_70a8d8cc3c58b1fa4620d68f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001476", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1241.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_364af86a8c29f11ce786cf36" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001477", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2985.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_26ea7c98d87a4801a999a3c9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001478", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2991.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f622bfda7a821107c2b53b8c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001479", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 986.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_896a8243a57630edd62e4a60" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001480", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_198c4ff9c2e96b0fc70f4ccb" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001481", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 979.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcea9c3481a80b381046b09e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001482", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 921.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f0ef4e1255de97a924accd4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001483", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1528.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_313c13e4bdd790b591a7be33" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001484", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1234.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c8cb94abe9dd91f601a89f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001485", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1511.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f249064ce77358ece687ba03" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001486", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd24ccebc07fe65d301a675c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001487", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a2aeebf2f83f19705e4c1d4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001488", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_005c99ca112d283a7c13d8fe" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001489", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1231.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_974c1870febf1221ebe90c89" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001490", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1061.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c471ccdd049720990fe2c5a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001491", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1181.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85a081d6ddf67cbc3561b814" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001492", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_42f26693e487af9cc3711a61" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001493", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b4e5f155ccd3ed32717aeea" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001494", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1209.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eed31deba47837d8065cada2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001495", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1123.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e75afb9b75ecf1e10138309" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001496", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1068.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16598baacef90a92e8bccdae" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001497", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1605.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b76a50e0fc656c77b37c6e7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001498", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_312cebd622edbb1400ec956a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001499", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2129.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3334eee740b5fee47772678f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001500", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c49227ccbe049d191837e7f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001501", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2199.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_424953a74cb99181a7165097" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001502", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1434.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceb73a686df9cea76529f17c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001503", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf35ff8a0b27d260c3bab7d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001504", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1431.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_412f79c060843776a20309c7" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001505", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1482.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6cee4025f9078b9f5ad0740" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001506", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1698.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c0a01ff6a70bb4c3f296fed" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001507", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1053.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_08df9c688b7dbf24d3514e69" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001508", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1778.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9209523717e02a9b6983b86e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001509", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1983.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa4190777c6b5123c4f2320" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001510", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_548516025bc832ad83cbe01f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001511", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0f3373804badeb8899ec1d6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001512", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1324.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96966044960b56c3e2c946f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001513", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82886ab9eb8e847b86b0cc8b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001514", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 917.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae80e166ae7a8ebf68f548f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001515", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2131.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a52d200f89f62f3344660759" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001516", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3704159b3f225339061bbe5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001517", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2153.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4cb2987eecb5f468d378774" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001518", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5838ba6a451b4b0bdb35e609" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001519", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1040.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d8b72c6b79f6378760b316f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001520", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_81250182ca0897a2372ff99f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001521", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2345.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_098e17c0be96b364c1630ca2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001522", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1718b53999acb15453a2295" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001523", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1154.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d773979adac1f9fd812f79e3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001524", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1667.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc1d47d7d4ebdc81c3f4c37d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001525", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2903.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9ae8ce19106731376d467cc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001526", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1119.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aed5181b0ded129d28a1f58" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001527", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2174.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_051aa753e9680c3259bedd03" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001528", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcdbf6a27f1b060621632f7b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001529", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1114.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b67c740496d1e564e665c2c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001530", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1142.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db0f19c23ff5f5865feef13d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001531", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91f4d35c0c810afb5f1f089d" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001532", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ddadc9a25861056b5319cc1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001533", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1066.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e88fb0695ab5aade476a7971" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001534", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f78550924c1ba6cb210540df" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001535", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 883.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f788bbeed9245b1dd595755" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001536", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1793.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea03a96221ec8fb70642f06f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001537", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1960.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_201b2c7ca1e2e018272f09f6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001538", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1724.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_636c80dacbc794f054eabc9f" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001539", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 857.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d6283e1d297453fdd733e8c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001540", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1494.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b910c04d8329a1f5bdcae8a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001541", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c291a8c23c134c9459dcfc8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001542", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1358.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_056108742e93f4611ea53772" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001543", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1638.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f80da94f01bcf4bf439c4f47" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001544", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1247.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_01076a6a927d74b94de135c6" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001545", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1295.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6045e31a5f4976d712de5193" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001546", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63106b52f617b31b7056f776" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001547", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3337.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_392012ec98570c0688d0c4bc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001548", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_24930fc81187ace1b1fca38a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001549", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1129.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_58eae07054b70ac77f89aed1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001550", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19123cee27f70c72ab944dcc" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001551", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1807.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f193b180cfb76d54616be03" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001552", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1321.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3375ad6c7cb7ce5e0d010e3" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001553", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3600.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_46133f9222ba63f8bbead822" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001554", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1212.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c215a8a09bf253b5026d6d21" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001555", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1197.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d70fe299aa39d7031e7a18e8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001556", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 931.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2e95b467415a29e1f9e3e38" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001557", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1286.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_263836cc200361a225ea7a8b" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001558", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1842.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_48db4b794af1d58f17ddfd3e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001559", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1908.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_885d46814839a054318ae8c2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001560", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1970.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab671b32a02ccb825386b5f5" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001561", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2003.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d497b0b4afd3b73a678cd8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001562", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80dbff6fbf93d4b492a7af78" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001563", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a826e818edda85f4933a31d4" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001564", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1728.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4797b59a26fe79f4c968afc9" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001565", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1289.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_42adea5ba2fb610905703746" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001566", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8524acc4d53e724d70940a0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001567", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2078.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4135a9ebaf57fc2bc9d45c3e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001568", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1838.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6368926b5841de6764cecad0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001569", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1072.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c7edb977f61ec5269524bb2" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001570", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1152.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e66d3b0f21b7fc619ec5734" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001571", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2095.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0297699be760819e3bcb26a1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001572", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1025.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_485c0a44e19a7b3e22936865" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001573", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1849.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d18c0be78448de4ff1405d8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001574", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2600.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fae21958c6e82e6033d07625" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001575", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1157.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd02e773ede6f897991ebfbe" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001576", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3855.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_94fab112189b8c9732bf888c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001577", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1646.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b42d4f8e5bd0ab919b8657e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001578", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1582.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0fd70dd4a13f5e4369d5ceec" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001579", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d9df026a20b7fc3c954147a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001580", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbd6510fd6dcb6d060d08934" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001581", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1760.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f66ca84c61d0881a134a097c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001582", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb97e6eb9ba2a95580f7a42e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001583", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1460.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb73e72118eac7ed1740461" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001584", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1812.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb81d0b9d28a6c51cb82f247" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001585", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2030.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_572fdd4cec742f560db84a35" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001586", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1011.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_699f32eceadaa879c8bd8ab1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001587", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b16e2e1ee01258cf93218af8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001588", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1205.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_54f6c32edde8df65afe7ce45" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001589", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 798.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_779c74ee71f5169f1fba2337" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001590", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1420.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eacb5a33339e275b4701b111" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001591", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1184.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02fba46c810c747b575f8542" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001592", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1159.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecb5b5685ba80a8ad48ea677" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001593", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 855.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_327fc47851555da5adac0d4e" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001594", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2925.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77065b1513ea98ed40595106" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001595", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 3813.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d1ab21e89f5c90553941fb8" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001596", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2161.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_951c0dd2529f3d56a4d5ea32" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001597", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1c87cbd57642ca085c42887" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001598", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1987.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_976009842f268341cf1d23cf" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001599", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1345.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b94ef2ea2e4adb45b76bf6a" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001600", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfe41c9b5801b130475c5eac" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001601", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1638.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf561c9b45f8bdfc5f3059e1" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001602", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_488e17368c543a2417c1359c" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001603", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1628.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b65731e6f82d11a7a654ad03" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001604", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3aa2e06c212d01a0cd9d7ea0" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001605", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 759.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b80976f754b228ad4637e4" + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000001", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000002", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000003", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000004", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000005", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000006", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000007", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000008", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000009", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000010", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000011", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000012", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000013", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000014", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000015", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000016", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000017", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@N05000018", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000021", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 917.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b77c55c984518435ff39a2b" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000027", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 236.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_994bdef579ab7d62a65ea2b2" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000045", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1604.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83b4ffe95bc324979bf5098a" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000048", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1629.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d00877d44451c26c7b36367d" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000051", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 403.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f10dafefde25a21d0e68a01" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000060", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1746.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_41b8d7632c873216d1f92fcd" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000061", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a5e14a4a1ed477d8f973eb30" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000062", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1346.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2c92d716c328406cfc74d15" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000063", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1823.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_14d33cf99cff26198ebba23f" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000064", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1655.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_73c17aca71761b81129eba9a" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000065", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1380.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_698083b3ff5a289237d75b2e" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000066", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d32d257a78555c4c66b67e6" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000067", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1087.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_268e80bbe8580d3aa9b06c06" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000068", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1686.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f07d1c9f30224a36733b3f3" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000069", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efa45326aaf4fd0b32999b9f" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000070", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1786.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e0cc5ece15455439606b86d" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000071", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bcd4d0f71d215d7071c8466" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000072", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1595.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_36be9977ffc436c1e6b26ac0" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000073", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1428.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_02a7233bba2e0c0498609f81" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000074", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1097.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a409a2d963a45e25d408da" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000075", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1725.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b068eec7a1f761b35fcbce46" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000076", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1451.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_157b0c260bbbdf94f376a74e" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000077", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1391.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_16d80292e7595af53cc26e66" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000078", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1340.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb43a3f998080cac490e13ba" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000079", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1354.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28ef52423efe9f5b4aa486d8" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000080", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 851.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_301ff48d9880c392e746552d" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1083.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6031c54b8f6ad83284b1ef34" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 969.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c16826c387aaaa5fa96293af" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1557.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28403a0cae484ce9f4121b98" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2408.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f78bcfb9754bebb0157bc3f" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1be052cba8aabe96bbed19bb" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2809.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_28e8c737e3dc5650e4ee3e49" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1663.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c57b54180de3ad7495786f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2156.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_418a5f040893ff58d5f498ca" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1639.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ea271b5446bc6ecc47c299d" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2178.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_74ea19ed8b9c38827f81a96f" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b8b977b29e917206f1a44a0" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1645.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_27759d40f47a037a51cd2d20" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1494.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d8d634a2522ce647396a849" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1333.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccda86136f35ee97365888dc" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1835.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_acf039a6ea6a5515a4f52955" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1384.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a8e48cdfac78aa93305c14b" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 805.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_105e68df927652c59962ace8" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1305.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac1db22cece1a984b69687e5" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a26fe57073b61b466c886e8" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1002.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8cda7926b0bba911da2d31" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6e1b597eb6b2f3d549298e7" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7ece3203b44d58804afe7f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1275.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63e79044cc70e6c1718da7f2" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1545.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9b8403ecb0992b7764fb07e" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1152.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_21e1d51674436cb1e4f252ab" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b12eea9c76ae384dc9358bf" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1644.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_631fc16a43568dd909b811b3" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1363.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9b0db2a6db9eee35816175c" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1499.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f79f54394a09cabb3b2b02a0" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7e2a8ae89449e6616a30ef1" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 838.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dda90d2fa571d122d3ea22e7" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12ac069a9ce8ba6b17234d9" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed564f794e2a09a18c5bb662" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1305.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b38950dc9f80de0ab14e7d96" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2313.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d5442460bfdae0600966352" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b86fbf6d9ac0cca4d96151c" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1365.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_307825e8668d76507539f0a2" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1349.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63760123cf11038b9472d5ac" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1910.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_868e70dbb0520c903e467dc7" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2211.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_887d3eca9213ee5044d5cbe3" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1075.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_33770970ce13f87b1fc3ab44" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1568.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_727ed368b1e8532171b0d19f" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cada0d39c49e22aa8b65464" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1283.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9c4dd8a7c80e056383c0cd0" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1396.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a821cd75c0151dc6e643e0f7" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2008.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4cd65c5e15a01b6bdf1dd56" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1325.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aed268b981dfb0d584b7e94b" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1281.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2a7413c8ffd0cc3bf6c1a9f" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1839.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bba5becf0a22f4f01ff038f" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2292.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_899899e1bd69a023e25cbb1f" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1733.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c871d5864f32d11aec42b8e2" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1072.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f396e8f2828c818e48345da2" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1635.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1af0b0bffddf9aa42b6d98f" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8261a3923735f8fcfdc498e6" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2711.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9df245c471b7e0c5dee2258a" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1743.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3d682aaf0f97995b8b5a215" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1834.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_2c6c31e23e121659c3ae8b82" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2291.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_0478d16c8f5739d4864e357d" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2323.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0c539210c121474452ba010" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1968.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_56b5c25b57ed5f1d93c07021" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1644.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a224be21dd8355f9734aaf6c" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1857.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_20c49816b4e91f0ef2f4de30" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000112", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1093.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc74fc682bb4418fcf97f8be" + } + ] + } + } + }, + "dwp.uc.households_by_area_children_3plus": { + "status": "partially_active", + "geography_levels": { + "constituency": { + "status": "partially_active", + "candidate_count": 650, + "candidates": [ + { + "name": "dwp.uc.households_by_area_children_3plus@E14001063", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001063", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1034.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceea6b189e1f26893341070d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001064", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001064", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3156392c7c306d0756a3351" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001065", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001065", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 481.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ce016362748f1c975e9b9f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001066", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001066", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 977.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4758ac2be5ae191dbf3cb4c1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001067", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001067", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 554.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afdf184ec2e96a39fdfc1254" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001068", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001068", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1346.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c364feddd7401dadc6a65b0a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001069", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001069", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_63208e8a62e0ddd44af578ad" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001070", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001070", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1871.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e87ad268b74107ba201a4ea2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001071", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001071", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3295c814c17cfd189f45de3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001072", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001072", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 937.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b857833ce3012c80f85200f6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001073", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001073", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3327.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afc3f0fa3cb11e607159eac6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001074", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001074", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_907d07dff472464bbaeee87a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001075", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001075", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1593.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98cf0f959ff9d8738eaeaaa9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001076", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001076", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 785.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce99655d5a29e9748b33e12a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001077", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001077", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9382012f4d37a7930bc19f3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001078", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001078", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f5630eae300275c7d7e15dd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001079", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001079", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1234.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_896aaf633c8de3c2767a7f1c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001080", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001080", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 503.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bb5dc86d996209e76b52afd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001081", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 976.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8edfda74141ff9f0d1827e5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001082", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4f42ab499a4538266e1d8a1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001083", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 603.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c154bb805b4e98036efb4bc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001084", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1454.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb0b7d32e8110df0d3c8d68" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001085", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1392.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d65bb35898f73769f3f0f97b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001086", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3068.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_573b2588c7fe2954faa67049" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001087", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 611.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd914cff147007671c4de477" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001088", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 723.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f452fdd8c0069f2089cc67a8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001089", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1018.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3c173c6e5b62daeec57947d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001090", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0e982432c937a5790bc8b91" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001091", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1672.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1b80ee08e9d3ae87256e7cb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001092", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1917.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d849106a992bc5d0f5d0911c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001093", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3151.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8889e391fcfb81b6eeff75b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001094", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3194.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f41098057c7399fccea009d4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001095", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 4292.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff01bdef2ea3b14e165f1c7f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001096", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 5117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d12aca298e360aa8414d1515" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001097", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2447.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4a6d6a721abd271e2cfeb02" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001098", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3601.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a703484580022b930761f1ef" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001099", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1635.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3606a773de0108d81c026324" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001100", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3573.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc7deaef2075a8d43323d2ae" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001101", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1078.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_facff116ac1c576b328b9ec1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001102", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3241.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b668a7bec141a11481d13850" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001103", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3270.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcbfb52dbee813f512bf0bda" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001104", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1014.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a55a9f1f71e134800d14cacd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001105", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1909.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f361d75452df938181dc38df" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001106", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da5a453d7ed5f18c8110d86b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001107", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1467.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47328e5d5e18ccd89fc217b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001108", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7a3c014e914cd20c976759d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001109", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1192.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b204d85bba9021241a5d7d5c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001110", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2273.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b9b1a5d9118977cbfd7c80" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001111", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3439.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d17279b94e91c66b969e032e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001112", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001112", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1266.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a89e042936181a3242a67ea6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001113", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001113", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1528.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c94f31114362b50508ab6bf7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001114", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001114", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1539.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aada6fc663fdeb18a4b57620" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001115", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001115", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 774.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d72a12f5de9ace49e07dd1c2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001116", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001116", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 934.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebd89b43681d31e119834aa5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001117", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001117", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 789.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cafc92937f758633b7eed57a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001118", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001118", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 4106.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfbfd4eb2581807df8f14a64" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001119", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001119", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_996242eb9f50c019eff8f106" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001120", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001120", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1d87fb5260ce4e61ba05972" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001121", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001121", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 932.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa5add878fa8c41bb9dd62b1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001122", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001122", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2986.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afee25fec2b13a810fd853ff" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001123", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001123", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1832.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e011f0507fbf474c469bc0d1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001124", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001124", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_feaa138ac2ceae2c9ce2f85c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001125", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001125", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 605.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47ccfcecd250a6943b26fbc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001126", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001126", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1220.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db82744e7ff1c31fa6c563b3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001127", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001127", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 940.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8710e292cdc86b51c173479" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001128", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001128", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6b3404859ea43e80d12fa2d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001129", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001129", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 967.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bff0eaeade9af7b894e0ed55" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001130", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001130", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 407.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_973a55bbc9b6aefe3c2a44df" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001131", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001131", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 389.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a472f7cbd4fa56a09661044" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001132", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001132", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1490.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca270f1c4d7dd9c24a67eec4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001133", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001133", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1160.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0fe3be0ecab3c756d318d70" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001134", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001134", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1127.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a3e9ff063ad318a7604bb7d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001135", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001135", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_865375981448323530da7355" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001136", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001136", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 633.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b50d17d6354ff1ff72bd24bc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001137", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001137", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 565.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c608b1b91398dc4ab2ede7cd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001138", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001138", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 635.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4dd16e8f12a22996c04cf81" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001139", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001139", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1034.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_daa2339f5c7a150b9d1aed6a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001140", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001140", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 774.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d66bfa0ad610dc51c3069e6e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001141", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001141", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1298.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4db99db3e56020d02693456" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001142", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001142", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2359.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bbaa6e2624930db967293c77" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001143", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001143", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1520.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ab6ebbf60fabc28a628c223" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001144", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001144", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1463.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4ff50a5a7b639305c0ed714" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001145", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001145", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1995.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1956d8ad0da4a16dbbe09c2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001146", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001146", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67e8aeca3e6cd229ac2cd74b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001147", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001147", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9bd41d20fa894bab5661eeb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001148", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001148", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1118.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1df87168bb6ee42e997b52a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001149", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001149", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 776.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb5b08590aa70b226b1a2f3a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001150", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001150", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1119.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5d1b1327f9458af146f03f3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001151", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001151", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1005.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd00973c3e66723514fc1767" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001152", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001152", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1006.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1dfb86d63a60bff22ee3bc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001153", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001153", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1157.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85c149b191d34c7c77757bf5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001154", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001154", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 767.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0fc7552df6ae378b9aa7fe1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001155", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001155", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_731d48f20c01d0863f200b47" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001156", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001156", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 764.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff2d5c7464af838c06cfa8e7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001157", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001157", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1554.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e664720a9244ae2e51dcc196" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001158", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001158", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 478.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb06fca19a74320f7564fe4a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001159", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001159", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 876.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eccdd46d3dc798c7b11194ca" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001160", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001160", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 703.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbbd66b8a7030603b92c4818" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001161", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001161", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed17d953a808157797c2f29a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001162", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001162", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 473.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78bb9daafd3790d35316bd0b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001163", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001163", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 659.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1242282710a1c03ad730d17" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001164", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001164", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e663ffa8b32aa5610a591f5a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001165", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001165", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1009.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a70a2360288ce4a6b4919204" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001166", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001166", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c105e0e2628587fb7a76278f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001167", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001167", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1082.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0d31516787fef5e587d5912" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001168", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001168", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 776.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_91435ae4d02a3cdf7e915939" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001169", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001169", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 966.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_caa7a4aef55b7db353eae9c8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001170", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001170", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 912.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb7ee5ccd61bd78e30d5f86a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001171", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001171", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 521.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8d7cd99246d816a2d22b41" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001172", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001172", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 607.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_66971a606202e98af1755900" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001173", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001173", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 763.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6a51d1cb4c7a8dbfd1fd988" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001174", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001174", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1332.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bad640f0943f3a6cd2f52d4c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001175", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001175", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1075.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c3431adc4ecce38f2ac883b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001176", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001176", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a725f781a641395a1df8b05f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001177", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001177", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 778.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fef418628f5a53f76c6d8dda" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001178", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001178", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 619.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e23787ee56a0f5f2376cbf1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001179", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001179", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1399.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d48e8b12b66558edb5ddfb97" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001180", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001180", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c70c626712923bdbc19f0bfd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001181", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001181", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1479.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_910f1d0bfe6275a79fbd2806" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001182", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001182", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1655.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb89a5b4e7d1ca3ccf5662a4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001183", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001183", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 846.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0415fb0a730304846658d5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001184", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001184", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f61862c40827f8c610fb1893" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001185", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001185", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1283.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_76426686ddf78b8dfdd9e494" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001186", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001186", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e65863e7d8d17a7319138277" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001187", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001187", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 811.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3cd52718c1a9e5009a380a1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001188", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001188", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffa5fb21e44e5fbd8020bff8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001189", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001189", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2496.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_923dd1156c9c5b5b518554d9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001190", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001190", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1190.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2e241ca39233fd33403bfc6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001191", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001191", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8edc40d237a7d45b5156be" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001192", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001192", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 801.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a6bed4de504137285560eb6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001193", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001193", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1350.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda91835ac1d1643e5b08714" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001194", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001194", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2782.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e316f0d0e9319b2eefa3f573" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001195", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001195", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 478.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd0c1a97289617ba208a338f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001196", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001196", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2712.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6e5854fffeb2695985ee266" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001197", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001197", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67ad2c4cde23b603d3c60abb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001198", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001198", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1560.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdb451a025ad2250ea4d095b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001199", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001199", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1107.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a6f3561b6d557aa941ed9e6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001200", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001200", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1502.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eae9581f5d1e8359d093a809" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001201", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001201", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 519.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc79068244ba668edfe3fdce" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001202", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001202", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1271.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a84b3093dd3a475b2e9f8789" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001203", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001203", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 872.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5d6dd810e28755cc111ef59" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001204", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001204", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1918.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cf18906b112878b59ef1438" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001205", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001205", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1261.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbc79776045638c280b5cb81" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001206", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001206", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1140.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e439f1b147df3d4ab5b6654e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001207", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001207", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1440.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4fa9fd73f6dec603b46f594" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001208", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001208", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2185.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bacf07fe76e77ba96a9816ef" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001209", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001209", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1818.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c15f86d7e06b8801a9016f6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001210", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001210", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 902.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efb99988616b43d1db4f10f0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001211", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001211", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1322.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b225876ea75ab19516c2847c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001212", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001212", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 578.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1e28369dfc000cd3db1fccd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001213", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001213", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3195.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d21420825f46079d5ae776c9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001214", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001214", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 541.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e51f996aaf3a5d0bf20476c8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001215", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001215", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8a915f893352221f79fba77" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001216", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001216", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1563.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed684b020b754204ee016fdb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001217", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001217", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 904.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b85a31f4b69e25121bbccac5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001218", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001218", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 705.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5654022a36952fc6aa15476" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001219", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001219", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1125.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb15024c6f631cd2e8ea1df" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001220", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001220", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 684.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9404aaa343d8d3424b82346" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001221", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001221", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2559.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb29a7bc9bff1960e21f5a1e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001222", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001222", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1133.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc5de40c0d42c4d82aa67f63" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001223", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001223", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1427.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f96a688b57f7f382da477155" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001224", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001224", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 742.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc3b709ecea0febc74eb2f40" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001225", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001225", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2664.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3bf649e9e3f68d6b2458d6b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001226", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001226", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 712.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f090a018787ea6726f11114c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001227", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001227", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 561.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc33aef84ac58c1133a762b2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001228", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001228", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1014.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0848117dce66ec5b805735f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001229", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001229", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2451.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_abc4beec95eb8c205d905d39" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001230", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001230", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 552.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9305ab7c48a005a57c771a9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001231", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001231", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 689.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efe95fc60b84312628720625" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001232", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001232", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 880.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c42f4ace3e2431a284697b02" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001233", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001233", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 682.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3dcea2d2b7f5e45b13179ac" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001234", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001234", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2525d4aa0f88623c1b10a6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001235", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001235", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f7b66f1e95163fa3f2c66be" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001236", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001236", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2269.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbf4e55bf61db4ca22f7b81" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001237", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001237", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 806.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9d48b6f42dff22f78ac44e4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001238", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001238", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1288.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27585335ba5aae8d615c117" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001239", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001239", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1015.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1abb503b573f547fe8ecf8e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001240", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001240", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 751.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72296bd2cd443c6692442db" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001241", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001241", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 778.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6af7024e6051f91fb71e6707" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001242", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001242", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 661.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9eb328d9e77be547df7bf5f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001243", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001243", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 978.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc9e14da976c40f7e95df64" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001244", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001244", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1296.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb54616497f73fb66c6b0fea" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001245", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001245", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3c4a0f2cee11b658afcf0de" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001246", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001246", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1285.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bddc88a99bf5196779d80691" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001247", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001247", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_829d10acde9dcb93e66cb182" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001248", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001248", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1470.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a8b712b0733825884488168" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001249", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001249", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 536.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5ed8979d4fd501c2c3004b8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001250", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001250", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 644.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcad96666c788f9771b3e029" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001251", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001251", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3070.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6fe518b5bfb2b121842ffef" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001252", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001252", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1048.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_51949292183b07092774461f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001253", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001253", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1025.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be02713a49ab6882cde696bf" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001254", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001254", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1515.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eee4b8a24630247f3e28afde" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001255", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001255", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1954.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1d0e3269283109c0be2c927" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001256", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001256", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1390.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_69b5997c9e27754b1ab29a32" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001257", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001257", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1556.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7fc142e2c6d2cca11a371b3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001258", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001258", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 504.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1b537b727e8ef1591b20ede" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001259", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001259", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3318.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5311ad6ac12c43b21433371" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001260", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001260", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1685.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f65546d5fea6f16841b00b32" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001261", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001261", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1453.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9bd620c5eacfbe11ff6375e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001262", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001262", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2131.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd678dae592db343e97045a3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001263", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001263", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 748.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4d682e3d46c104b76c2c60c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001264", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001264", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c530339a10638eb9af4546d3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001265", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001265", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 883.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da8a87df7af9f9c96b846dec" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001266", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001266", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 772.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c95b3d5d0ce49afb13440dc2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001267", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001267", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1511.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4e4561aba5c827c443129fe" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001268", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001268", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 441.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bdd5e131c1846ad7cfbd9b4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001269", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001269", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 512.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e26ee50015ddb8a836913054" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001270", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001270", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1590.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54cb44b569c05ddd36c23b7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001271", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001271", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1642.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a01362e83948cccd67f215f2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001272", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001272", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1475.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb0a8fe725db673c573b5b56" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001273", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001273", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 891.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b47de45043becb3cd5a2c678" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001274", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001274", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1312.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb65443d39bb5dd352db1097" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001275", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001275", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1235.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edc6a0ca8bd1ffb748dcab8d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001276", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001276", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2367.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd68d503d75f8262b3592de3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001277", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001277", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 715.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c27b6c4c0ba5fd864a58f1c4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001278", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001278", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1234.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa32d1b50271f2f712adcb68" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001279", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001279", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1982.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_82cd1de9ddd3ee3bc43ce99a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001280", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001280", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 531.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0f7c20e2fa9ec15a9b633be" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001281", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001281", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 870.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de099a1c64965273763d0fc4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001282", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001282", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 990.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb9a758d61927d946d6a6d9b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001283", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001283", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 604.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a552b71ec91c62dcfdee6406" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001284", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001284", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 855.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba193a5f4e9f6240cd2e45d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001285", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001285", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 514.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f0948451b9429379932999b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001286", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001286", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1961.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc2fc25fbcf4cc054d6ade9c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001287", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001287", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 648.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d06f9caf5927a34625a516e7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001288", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001288", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 779.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be3fe6281908b2f6d87ca69b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001289", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001289", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 706.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd560c7b3d35ea11adcea440" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001290", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001290", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1306.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e35103ec1191672bba1ac8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001291", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001291", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 616.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0369d060a3a4d22d97ad4a5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001292", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001292", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1124.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb3e412bef4be427c4c1714d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001293", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001293", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1831aa5e3443cc1dff002b7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001294", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001294", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 556.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0ae450902c97f625270f171" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001295", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001295", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1206.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4adf903760a6b8deeb5ee0c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001296", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001296", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd53e290da3ef3e78a1734c4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001297", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001297", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2171.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_92453fd7376fac0d9569c0aa" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001298", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001298", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 833.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8beb1664466ea88993a3809" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001299", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001299", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1844.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_65fc03f988aa3b930a1631bf" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001300", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001300", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1484.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb4678c343b5ac340572be35" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001301", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001301", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2532.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ae86ca61499d6b8fc45b34f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001302", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001302", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1585.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6b6c641539f3ff84b954833" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001303", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001303", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 620.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9953c50de89e9f70536374c4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001304", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001304", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 759.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f54f8778ad70672900e5a0f7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001305", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001305", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1406.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6568b60f3b27a4bd3b8ec69" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001306", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001306", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1430.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b4974eea4220ec16b322845" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001307", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001307", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1243.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2f7f9f954552e276860cf3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001308", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001308", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1570.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98d78a8fc14475b2dafabadd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001309", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001309", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 529.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b72dbac5147ed908dc693ced" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001310", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001310", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 721.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b45ff47beef7e3eed9dfe62d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001311", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001311", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1182.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe88bb0b63d3287556750aab" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001312", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001312", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 772.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee51b1febe0edda2f8a5436a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001313", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001313", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2006.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d49753da969fde5117612d3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001314", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001314", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1753.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad7445c1df74478e39c47ea1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001315", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001315", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aec2259603030b533d5bd8eb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001316", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001316", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 537.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a9998edfe5df8853617bb55" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001317", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001317", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1601.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7aad8e9078b3079f73128bf" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001318", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001318", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 726.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edad8da6c10d5f8f057c7f65" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001319", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001319", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 985.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ded74249c3877840fb12d018" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001320", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001320", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2506.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d867f177302d93804ec1cb05" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001321", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001321", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1010.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a97cff5b0eb7a712d9a689a4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001322", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001322", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 485.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd9729a2e38ed458eddde5dc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001323", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001323", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3323.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bb8f88357b69337cd590f9f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001324", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001324", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 937.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fa6bb89d73fb1e88367dc1d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001325", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001325", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1414.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c819bd4c6bd4e1162ee0155" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001326", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001326", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2194.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4d88ebb540f6f029b87779a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001327", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001327", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2207.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d08dd25be805a302e1bd7462" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001328", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001328", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2755.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dc2cb31fd197998cbf7d3db" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001329", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001329", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1324.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac17bb07df1f56e8e9d53a92" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001330", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001330", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8d2a7ea9f4b3b450d7a1ae0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001331", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001331", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1750.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7479232227b9e25e0d5671b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001332", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001332", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1424.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b041794ccc2f126c557144f3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001333", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001333", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 928.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d809bc7e89bb9d4bc1aefc64" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001334", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001334", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1284.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f55086778babdf379edae689" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001335", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001335", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 741.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d68fc8aff51ae84d0bbee26e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001336", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001336", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1304.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cefd7f3f41fe5eb622966120" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001337", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001337", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1088.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f48f2ef12493f6974e0f7dec" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001338", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001338", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f4a704923a56c30f8a5a0c5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001339", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001339", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1853.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8a5878171d6538877ec0732" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001340", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001340", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4e2ad96415339379c678ef3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001341", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001341", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a48da66585bebf2c129eec59" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001342", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001342", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 847.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6e9b2b5b999e6e04525b00c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001343", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001343", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 971.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6c6ddf20d420fe9ab4f9a27" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001344", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001344", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1221.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca645e66c10d27428aae4697" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001345", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001345", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2422.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ff8a15d110b41866840f0be" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001346", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001346", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2579.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0f8419c01fe8ead21fa1a60" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001347", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001347", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 509.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd65b0632c25cc274e8a4e2b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001348", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001348", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 576.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98dfe82f632a6715b3998b1b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001349", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001349", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 942.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb84b112174a715523815440" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001350", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001350", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_96eb1ffec2a2681a56134e85" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001351", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001351", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 666.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eadf0e0aabf6cdb420a3252c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001352", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001352", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2626.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7ead8f82fdae99dfd13a5bb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001353", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001353", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2350.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_964485a8da65c29d3ea9825d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001354", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001354", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9365fc6e53057e17cb8a8ec7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001355", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001355", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1361.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd647d8f6b1f9cd08c0cd5d8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001356", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001356", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 708.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efecbfd57ae66730781ec1fe" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001357", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001357", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 821.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57af4022072784801e00932" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001358", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001358", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1124.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb4bc7363bb0a403b95d3aa" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001359", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001359", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 734.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6cb18b4d09f626e024d01d82" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001360", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001360", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 635.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d64c4d52e83244439c9d9157" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001361", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001361", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1080.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c602e80caf254eaee5eadd6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001362", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001362", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 512.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d401d8ff7e9f8a42bb663468" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001363", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001363", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 681.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebfc185980cf4129fa314ad9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001364", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001364", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8df054a176aacd2f8094ba7f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001365", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001365", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 872.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d883463a4d74148c6b3b79f3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001366", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001366", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 571.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc155925a8604f4792a52e91" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001367", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001367", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2650.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b017f06cc32d192b293991ec" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001368", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001368", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1185.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4b75c20046066aa5daeb2a6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001369", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001369", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1612.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b132bcc5145fdd6acfc32359" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001370", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001370", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1170.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed24c60a8bc86fd80722cd17" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001371", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001371", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1583.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b819531bf7d34af2c451455b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001372", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001372", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 952.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edb18ea37a9df9a9e3233876" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001373", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001373", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 701.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_99ed009078d7f74b0f73a8ac" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001374", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001374", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 486.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea1d2be9ce2fd3581fe8082" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001375", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001375", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 958.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0d934428be117dbbf92f86e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001376", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001376", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb4f29149469d2cc0abe2ed" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001377", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001377", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2522.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8924ab5cf0b3f244332a54ce" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001378", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001378", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1448.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dd44f33f76c7cf2507138f6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001379", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001379", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 687.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a92b325b824ffeaca2bb1732" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001380", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001380", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 886.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af89606db83d862a237a5f9d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001381", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001381", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 661.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeebf5b3f33186cbd25acf59" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001382", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001382", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1296.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1fcdfe258c419513376e8ec" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001383", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001383", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1395.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67fa2eabccac55234ada8468" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001384", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001384", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 919.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb50a70039dc72b7e45907f7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001385", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001385", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f23961c0f02d83813502a5c4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001386", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001386", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 685.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8af5644e22091eee7edc8e8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001387", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001387", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 908.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1ef05f99876d6edd5b9e256" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001388", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001388", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 679.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_783c8dfbefc891e8cf802157" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001389", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001389", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1041.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5e60d1eb06a37cc42a54a1d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001390", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001390", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1191.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_edcca926c3aac11d30ded528" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001391", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001391", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 757.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0e1fdf8dc115527dc7e6698" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001392", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001392", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 463.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0b48a3170544c36c2f35d54" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001393", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001393", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 846.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8468de9cf9e102464ceb825" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001394", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001394", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 608.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0c69808bbbfbe2445f77585" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001395", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001395", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 694.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d324a480ff1a7f48aab81900" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001396", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001396", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7a3a1c92fd52d5beecb4236" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001397", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001397", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 602.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb8140a56f5251ca8fb3d5ba" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001398", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001398", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 887.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba40514d816fba9d089d5de" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001399", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001399", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 424.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4dff549548c80330b06c2d2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001400", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001400", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1011.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9178bd02d428b853964c7c57" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001401", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001401", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1468.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4def4fba261c0f13f257252f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001402", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001402", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 716.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a156d9427944e3e237c4abd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001403", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001403", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a73ce2377927c8a4c12b535f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001404", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001404", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebfdcbcee8d80b2a7b34a953" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001405", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001405", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 999.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f4e8afcf86d775a20eb00f6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001406", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001406", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1774.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df4d53ae4fddc6becb645dbb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001407", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001407", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1221.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56f3fa46abb15c110030e1c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001408", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001408", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 980.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0c96f0e7396bf1a2732ddb1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001409", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001409", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc05add0758824595d9878b8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001410", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001410", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_67016e9646db340e95bc7a81" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001411", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001411", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2523.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd770ae1958c69b85801f5d2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001412", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001412", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1611.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8830238845b33772cd9289c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001413", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001413", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1305.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c54be0b4407b4136a8b003bc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001414", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001414", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 616.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f042743b5ef8321c91b55b70" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001415", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001415", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2396.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda8ebcec07370c49222668c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001416", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001416", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3007.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dca72f124d5958115676e980" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001417", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001417", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 868.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_80f92d67e181cfb331bb661b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001418", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001418", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 638.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_89bf8a29b9af7b06b98bc1ea" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001419", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001419", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1323.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd123e2185c659bc0a4f91a3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001420", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001420", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 464.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f0113b380b440894613e78" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001421", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001421", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1708.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dec8c632e1e150b8cc4c3d9c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001422", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001422", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1993.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5465b4657ded00baebf1b2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001423", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001423", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 615.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e862fb838afeec19e88d6ab1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001424", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001424", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3ec4cb02c1223bdfa4dde6e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001425", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001425", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2730.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce9706d3fcf37e625f39f5e4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001426", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001426", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1421.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb7ae4b7463d7d489f2c5acb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001427", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001427", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1107.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7c7b6e6156eedc90911c877" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001428", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001428", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1398.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c566dedb58cc78a14d202b85" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001429", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001429", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9515c19fde763120aa52e185" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001430", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001430", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2986.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2028341e6c208d97a6d1a0e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001431", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001431", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a8ca0fb67407b0f1fac6559" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001432", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001432", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1382.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c091f522391ecb30964373b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001433", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001433", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2c08d9b8363ee06d9f5b7b3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001434", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001434", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1186.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a390276db90ee0bf02feb892" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001435", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001435", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1e1830d71ee4bd540be5546" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001436", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001436", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1294.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac764275c02c788a9e69586a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001437", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001437", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 519.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9001cc5a378d8921be43c3f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001438", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001438", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1059.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0b0ee463aaa03bc880cd7c0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001439", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001439", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 873.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f37fe04b425460dca2dbd4e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001440", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001440", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1320.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e930a212fb13f20e1a60d5a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001441", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001441", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1128.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fad8570ba04ffd53a88eb517" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001442", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001442", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 640.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c97377975c6a9109b8e5f1b1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001443", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001443", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 675.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b49557407412a6d370f0f16" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001444", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001444", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 682.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd821a0070766d92c0aef230" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001445", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001445", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 485.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e6b390d33db93cb9f4d1d2b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001446", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001446", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2554.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aade5f342c1c2c4bd13c033d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001447", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001447", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1218.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_785fee166a6b3032ae2cebe2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001448", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001448", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1222.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7612cf63c9265df8e9f281f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001449", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001449", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 669.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3917b7835b2fdbb42d20a32" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001450", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001450", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1132.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_19851750c1ac36cc51a58fc8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001451", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001451", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 998.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f725b1a7fd5f4d101bd4a94c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001452", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001452", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1956.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2f4afbe737832d7888e4279" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001453", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001453", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 990.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2d23cf6c5397b968361c6bb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001454", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001454", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 610.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c042f54889144fc9c70aa31" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001455", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001455", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1154.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_690c2a57a2794b172d5f69a3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001456", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001456", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 662.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7a518d5e9ba8318b1132333" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001457", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001457", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 446.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9641d7181346b688350aab4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001458", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001458", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 579.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_87f7a4f08ec2ef4999e8d320" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001459", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001459", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2208.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8fb0f654d60df5c4baa58b49" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001460", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001460", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb087865dd1304bf3da5bc6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001461", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001461", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb186506dc4b3f0ee151fc2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001462", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001462", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1588.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2ded2299d5cd38a20af3579" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001463", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001463", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 556.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffba2ee5cc58ad7e9561ee17" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001464", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001464", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 822.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeae67fc9fb0ee0530639a2b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001465", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001465", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 691.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd013e98d28d7d2648e269e8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001466", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001466", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2913.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a0c407a857cd9d2db816f6a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001467", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001467", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 730.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d069599f6193f7a0d2e6ce70" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001468", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001468", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 276.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7439d40f64585e83047c0ab" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001469", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001469", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cff6bb9f97d327053c62aa6f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001470", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001470", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1771.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcd984dd61f649c3d28489b4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001471", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001471", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5d0f78d30cb8c465b715f46" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001472", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001472", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 817.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e80a7285c6d4aafe9f93ef09" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001473", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001473", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 932.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4603a73738a087b6272c98b2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001474", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001474", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1740.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec524be3eb96bcb25c27290d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001475", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001475", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 527.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c08c3da636359c30102c1c3f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001476", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001476", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 787.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f52363af39bf0841b1c94ba1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001477", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001477", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2672.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcb86317707e9a22c1db2651" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001478", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001478", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2679.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c36d4b7aa9464b0d78b722ae" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001479", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001479", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 597.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a23b9d2294837d21b5c5ec8d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001480", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001480", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1374.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bcfe53e21cd44d37047803a4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001481", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001481", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 628.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_be9dca0c7fe6ac2df84ef911" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001482", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001482", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 565.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa5c9e63971548ed24da01d6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001483", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001483", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 946.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eda4da2e9b7e2e2bbb305870" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001484", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001484", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 742.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_39dfa2523c87fdf16546f7f1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001485", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001485", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6f745e4746ee76da6c3906b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001486", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001486", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 792.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bbd36ae9b1390eb7dec1bbc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001487", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001487", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1118.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d12271d2a506421f41a53ef6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001488", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001488", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 717.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e321dd655ddcef72fd391be5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001489", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001489", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 663.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5687bbc5e0760aa92ae6a2e7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001490", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001490", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 572.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83c2e7b126238ce84e17fa10" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001491", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001491", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 758.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b5f2870b8449f3888fb1771" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001492", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001492", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1109.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c073317cf8aa8bf023a8e928" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001493", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001493", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 626.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_db797ee6eb1ae8b2136099a5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001494", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001494", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 720.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a669940a4e7576dcb1a241c0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001495", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001495", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 619.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1c792b621e5fcc5f822ba0e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001496", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001496", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 591.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4390d90bf8b1359bfc7cf9e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001497", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001497", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1058.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f02de63404bca0289ea5baf5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001498", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001498", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 885.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ca17708608073591ddd21d6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001499", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001499", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1388.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f14ba9deac173bf035f6e25a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001500", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001500", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1514.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7fa7c2a7f41e92ae2d97c04" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001501", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001501", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1419.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_efbd660c675f05b0ef78cfbe" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001502", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001502", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 905.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6fcd36b900acc7bcbb13959" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001503", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001503", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e7f30b399f516c9460a7bbb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001504", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001504", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 784.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a03a15bae6126a2145849f75" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001505", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001505", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85182831f3b0f58e38732ca" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001506", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001506", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1168.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cde0dace58d45c1e283eea69" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001507", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001507", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 656.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_adeb56ece64cad694580ac75" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001508", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001508", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1042.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c71d053e7cf12d20afe94506" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001509", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001509", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1224.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdcc6b82acba7488b1a42eab" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001510", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001510", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1163.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e859a41397f1f748f5d8958d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001511", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001511", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 764.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee937007e569f41f03ee7ec7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001512", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001512", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 797.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7583c4359f465df420c664a6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001513", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001513", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 840.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f29163f746a787198935ec" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001514", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001514", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 592.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0fac0de9a175fcfe2725395" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001515", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001515", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1480.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d767781881591ee20bcd1091" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001516", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001516", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1174.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8274e001a5b130455f13c66" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001517", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001517", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1469.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce34ce7adbba8c9b2699d9f5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001518", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001518", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1529.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9728a2424c8ea633a8800f5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001519", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001519", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 575.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4df35877923d2c41a6c9a4f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001520", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001520", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2054.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1b2847028aea4850c2fb34e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001521", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001521", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fcac8658aaff37d2a854052d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001522", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001522", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1343.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a71bfdf7eef0690d61c0e24" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001523", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001523", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 681.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd4a9c5cd244ac2f64d80e89" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001524", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001524", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1238.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9577819b4700581c9b282188" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001525", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001525", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2182.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d866c8f224bc2f205e47c75" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001526", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001526", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 650.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb7cc4f5f334737696fc9fd3" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001527", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001527", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1394.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8ea31a926cc4c1f9c8ed7a7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001528", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001528", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1335.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dca7ed06c8f40eae5b5f74" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001529", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001529", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 628.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbaef452061de18f1bdc24eb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001530", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001530", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 738.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5ba4b1753f207821c9ac3f4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001531", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001531", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1116.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_86de728ea9c0d60328e49edc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001532", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001532", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 534.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_74fb4475ec934496e827e30d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001533", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001533", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 707.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c158363785a47147e3263d56" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001534", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001534", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 694.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba03d6f8bf9c69961eda3b7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001535", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001535", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 498.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1afea557f66e88cbd95416c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001536", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001536", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1117.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_85712473c917b440124d3ebd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001537", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001537", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1182.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea4ff79f5b5ceda43f5dba64" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001538", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001538", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1078.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_96e9a1502b4ab57a141626c4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001539", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001539", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 527.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9a9ea22c7c2ddfd6e2ada4f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001540", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001540", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 946.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_905b0885df4cd697bd8b673f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001541", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001541", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2012.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec0b7afd2f54a5bb5caefdbe" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001542", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001542", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 847.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9ade1cb8ca98c3135a62b26" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001543", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001543", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1230.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e3cd3f1c24fe723471d66e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001544", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001544", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 720.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a15751c21db4ed1d85d566" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001545", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001545", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_abc73e73bd0d8194afe9bee5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001546", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001546", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1858.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a9409680171018494cfed59" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001547", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001547", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2521.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a109d9db6ad2cda6f2fc8a2e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001548", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001548", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 819.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d20d973476564471d8e28715" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001549", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001549", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 739.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ed97f748b518194ebaa71b8" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001550", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001550", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 871.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebb32351c26d42a6ebc6d5d9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001551", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001551", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1027.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e76785e1af538f5a55134c91" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001552", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001552", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 824.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5a51874bd69612256501fc1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001553", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001553", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e40a1e0bb366985fa6919ee2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001554", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001554", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 693.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3fb4714ec5dccf4a1c0dc8c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001555", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001555", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 707.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7e975d2569b5f826dd17aa0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001556", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001556", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 487.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_78e5053545e7a93d0cb681a9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001557", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001557", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 680.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eada85f88fcabcc87bf5956a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001558", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001558", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1382.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a619993610f42285660ae270" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001559", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001559", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1362.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9a324776790f6c2f9c67933" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001560", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001560", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1477.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa4b2809fbfb37a55a6df146" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001561", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001561", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1358.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f81ee600b86a843af1357e26" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001562", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001562", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 3474.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fffe7cdaaf302fa98f0c123" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001563", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001563", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1938.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdaf1949c12c6bf1932761de" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001564", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001564", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 953.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e685cf4a376df054bceec7e7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001565", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001565", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 690.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7602d13435f0bcde793c1e97" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001566", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001566", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbcbfb3cd70fd4c6a6b16c88" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001567", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001567", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1225.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c18696d6ea92ad2732a8ed74" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001568", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001568", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1200.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aa47fbd759aa8a356b3a4fa" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001569", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001569", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_98c93414b4e782627991ac46" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001570", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001570", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 901.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb00dd714f3c81e713975da2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001571", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001571", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1495.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da7871b2f14f50356f651d52" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001572", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001572", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 636.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df1024af3264318dbe14fcab" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001573", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001573", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1055.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0a82a4eaaaa65e4f83f9667" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001574", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001574", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1955.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_890f30c338deb9ca7e31ce81" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001575", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001575", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 696.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffeb1a73aea9aad2548821dd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001576", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001576", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2776.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e56d337ae912fda4472f6587" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001577", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001577", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1000.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee3b4f5d1f256e3229e1098c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001578", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001578", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1046.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd2b2c6acfcebc532decf269" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001579", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001579", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 739.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_5189eb0776d92cfb7ca51c08" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001580", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001580", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 403.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f009bbad2416b07eedf957bd" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001581", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001581", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 966.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_898cfde061f6b0e58546d90e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001582", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001582", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 401.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_980d3c37a012a57333ddd783" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001583", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001583", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 925.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2554cc0ccb22667dda4fac1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001584", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001584", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1126.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_da2b3a040fd6fbb9a4deb46e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001585", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001585", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1310.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fee8e2d9687ff2e3a7e20880" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001586", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001586", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 536.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8fec5537f469b33a54e8e80" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001587", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001587", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 627.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e65ff526a72180bc84a2b1ac" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001588", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001588", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 838.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a0ae990e09a3cdb4ec06e2a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001589", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001589", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 425.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a182fcd4ee9655ad6fa0263a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001590", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001590", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 951.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0d59e15a4c450e28390fe28" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001591", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001591", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 849.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac682c366df8bde11b76a7b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001592", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001592", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 793.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c2f6eea4ed66ca4138e355" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001593", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001593", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 541.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eb691275da652b620d9bf09" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001594", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001594", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2101.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac061555a775edcdebcf015d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001595", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001595", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 2883.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f15d9e51acbde73423fffcc1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001596", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001596", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1621.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b958fc27af4e98d8dc2cbc48" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001597", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001597", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1057.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d360dbc5cf15183ac4cc3e69" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001598", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001598", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1309.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2f990c85194d78ec73b80e9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001599", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001599", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 711.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e72030c60e8c8e44fa24c010" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001600", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001600", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1290.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b036237dba03f01041d4ce26" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001601", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001601", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1112.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9f8eb7842de86456964a823" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001602", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001602", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1863.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaf4afbe808461b07e8d5630" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001603", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001603", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 990.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f3095262c60f5ee1f72be47d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001604", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001604", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 856.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd3a71c92f6cafe724624160" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001605", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001605", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 388.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_96867474e780d5e02a479c34" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000001", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000002", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000003", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000004", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000005", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000006", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000007", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000008", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000009", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000010", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000011", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000012", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000013", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000014", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000015", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000016", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000017", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@N05000018", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "N05000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "uc_children_gb_only_ni_absent", + "signed_rationale": "DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts." + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000021", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000021", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 589.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6dfc70398c4b3fcb3aedc47" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000027", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000027", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 146.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3b885c1dacd4965e5d0c42" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000045", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000045", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 894.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff083b5d16b3eee9464cacf" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000048", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000048", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 869.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f933aff19509c38ff9ae4c6e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000051", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000051", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 258.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1b848923c4277b125c217ad" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000060", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000060", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b58f283405f8e3f86bd0e90a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000061", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000061", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 465.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df2a0701ed4c8c31cabef0de" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000062", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000062", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 799.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc9c34141b0bd59750b9e576" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000063", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000063", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1085.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a604a85d056d7ee7b571efb4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000064", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000064", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 860.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb55f2e3e8bcb08206b72440" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000065", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000065", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 775.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0a580c27c544ea7c55d10e1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000066", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000066", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 895.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbed3a4106a592291a87830c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000067", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000067", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 622.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e369f9255d35b8aa079fc78d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000068", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000068", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 843.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9576595da3d378e1b76ab278" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000069", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000069", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 785.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a47e1d54506dfb981927c1d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000070", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000070", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 985.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc0b165b7c0649fc43a5113a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000071", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000071", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 926.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8eae45275faf47c615a2fa18" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000072", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000072", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 882.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1f53e263b3f7f81063540e2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000073", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000073", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaf14626f0d8444f34d9c8a9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000074", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000074", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 720.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bed1386e0524ea81e5c0b264" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000075", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000075", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1045.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18b3e5743684ce507f41522" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000076", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000076", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 723.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc43dcd4004cf11bdf50f4e1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000077", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000077", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 701.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c79ca43faa577faf1cfe8361" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000078", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000078", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 683.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ded7a68a276dc6d6d312c528" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000079", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000079", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 691.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_df683b3b9b748c5c9ecb3c29" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000080", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000080", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 499.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_faa68c675176fc594ee5c8df" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000081", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 700.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_afb740180c71d169901dc797" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000082", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 521.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e71f262cf920ede51510a944" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000083", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 897.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c21da83128b39180d7da69db" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000084", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1526.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfc84035c6019d66136f0ed0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000085", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1033.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f354ce2dd64fb35e0cb51a57" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000086", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1637.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8305c7dbe19c63d993b1d32" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000087", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 974.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba3ec26b8ccda7f8e24a8550" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000088", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1497.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6aa70f858b8fb475d20bcfc1" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000089", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1077.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfa6875a54ba0eb2b9c5af38" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000090", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1328.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7f09d934326c66b14fe4dc6" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000091", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 476.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af5a0e538c1ecd5ff1df0e27" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000092", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 909.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_50e39facf3703c8f02cdca1c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000093", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 745.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae9e920ec477c5b3209c5bd5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000094", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 743.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed6b301cd52ba884ec7c4b52" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000095", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1039.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8abccb019c0941188df2d12b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000096", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 786.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb6cdf15199f8c50a1000df7" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000097", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 355.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1e27b169eb96187bc8a6359" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000098", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 750.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7e23f95463ad228cafc1526" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000099", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 939.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d08c64bd182ec9da1695d68" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000100", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 587.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f43cd91ce7023a3d22d7b14e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000101", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 878.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a4bd8b5a2af90a519e60c76" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000102", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 773.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1aeff32af9586fc329b20fc" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000103", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 714.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_af792d122911e06cd68f274f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000104", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 749.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec407c049dd1a9b4d35a5782" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000105", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 561.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8ab828839ce8b500a439b11" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000106", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1065.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_83d1654ccd0281976989beb0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000107", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 865.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f74d2a297afc665afe65e35" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000108", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 781.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_950e9550d91b0ebb0eac6098" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000109", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 791.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_de6ef7b3d6bef0fe9d3fb4c5" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000110", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 935.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7c10e5f0db66672db534ff0" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000111", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 412.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f705412ff162d63f8adebf9" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000081", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1368.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac4d96783cfdd5ce7c7df14a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000082", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1075.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5ce21f5da9a866e1515f745" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000083", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 846.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_6423e160890baa2052d3bf59" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000084", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1277.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9859383e133cebe5a25bebff" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000085", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 699.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab1a4ef67770a87493e85a15" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000086", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 772.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9969754024df6c5ab48c669" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000087", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 848.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb53478fe285f38b16e9e89e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000088", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1095.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd3d3ba568519debf34c766a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000089", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1701.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_349ac814a969d1bbe880669f" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000090", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 631.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d15350ba606755f79d4d9ae4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000091", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1197.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d55cfeb12401c24f9cdc359" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000092", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1544.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f70a38e032838a57290af1c" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000093", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 794.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_cbe64b49f57933a9d30e584b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000094", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 907.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa34d61f675c4cdfe335da7e" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000095", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1441.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd3cf8086346daeee2a643bb" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000096", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 974.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e37468311c9a4ab2b78f6259" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000097", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 694.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca460509c71aefc3f3fea247" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000098", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1130.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2c344a707148660b64338fa" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000099", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1301.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1436333eabe37c78bf28da" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000100", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1135.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecb6ec3cadbd7575f8b58d16" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000101", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 596.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e03b604c12e361191645532" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000102", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1016.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e41ceedb71f8a125edfea07" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000103", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1042.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdbc90f863be46132cc0e40b" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000104", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1836.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2d30518b1159b91d6c0e80a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000105", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1053.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_722d66910f500163c51af670" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000106", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 971.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_f85611ea544419aeabcb756a" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000107", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1352.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4b167c6c5d55f86f5bcc328" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000108", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1346.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c424b212000a581226c832a2" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000109", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1231.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_77a475be1e915a5160f23696" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000110", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1004.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c08ca5f679319e7337d2c1b4" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000111", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 1129.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_c00eba8bd49fb399001bf83d" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000112", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000112", + "status": "active", + "matched_fact_count_overall": 3, + "matched_fact_count_at_or_before_period": 3, + "resolved_period": 2025, + "resolved_value": 820.0, + "resolved_fact_period": "2025-05", + "resolved_fact_key": "ledger_aggregate_fact_v2_e84430509645bb33244fe17e" + } + ] + } + } + }, + "ons.equiv_net_income_bhc": { + "status": "no_fact_for_area", + "geography_levels": { + "local_authority": { + "status": "no_fact_for_area", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.equiv_net_income_bhc@E06000001", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000002", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000003", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000004", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000007", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000012", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000013", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000014", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000015", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000016", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000017", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000018", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000019", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000020", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000021", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000022", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000023", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000024", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000025", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000026", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000027", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000030", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000031", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000032", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000033", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000034", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000035", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000036", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000037", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000038", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000039", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000040", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000041", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000042", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000043", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000044", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000045", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000046", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000047", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000049", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000050", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000051", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000052", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000053", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000054", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000055", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000056", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000057", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000058", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000059", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000060", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000061", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000062", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000063", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000064", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000065", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E06000066", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000012", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000032", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000033", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000034", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000035", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000036", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000037", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000038", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000039", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000040", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000041", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000042", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000043", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000044", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000045", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000046", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000047", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000061", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000062", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000063", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000064", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000065", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000066", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000067", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000068", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000069", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000070", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000071", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000072", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000073", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000074", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000075", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000076", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000077", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000078", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000079", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000080", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000081", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000082", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000083", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000084", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000085", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000086", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000087", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000088", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000089", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000090", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000091", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000092", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000093", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000094", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000095", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000096", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000098", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000099", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000102", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000103", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000105", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000106", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000107", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000108", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000109", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000110", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000111", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000112", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000113", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000114", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000115", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000116", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000117", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000118", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000119", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000120", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000121", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000122", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000123", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000124", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000125", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000126", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000127", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000128", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000129", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000130", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000131", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000132", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000133", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000134", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000135", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000136", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000137", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000138", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000139", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000140", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000141", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000142", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000143", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000144", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000145", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000146", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000147", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000148", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000149", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000170", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000171", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000172", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000173", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000174", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000175", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000176", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000177", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000178", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000179", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000180", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000181", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000192", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000193", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000194", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000195", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000196", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000197", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000198", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000199", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000200", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000202", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000203", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000207", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000208", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000209", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000210", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000211", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000212", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000213", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000214", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000215", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000216", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000217", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000218", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000219", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000220", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000221", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000222", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000223", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000224", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000225", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000226", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000227", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000228", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000229", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000234", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000235", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000236", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000237", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000238", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000239", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000240", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000241", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000242", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000243", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000244", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E07000245", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000001", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000002", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000003", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000004", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000007", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000012", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000013", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000014", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000015", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000016", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000017", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000018", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000019", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000021", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000022", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000023", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000024", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000025", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000026", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000027", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000028", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000029", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000030", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000031", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000032", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000033", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000034", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000035", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000036", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E08000037", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000001", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000002", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000003", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000004", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000007", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000012", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000013", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000014", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000015", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000016", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000017", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000018", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000019", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000020", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000021", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000022", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000023", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000024", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000025", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000026", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000027", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000028", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000029", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000030", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000031", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000032", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@E09000033", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000001", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000002", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000003", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000004", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000007", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@N09000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000013", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000014", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000017", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000018", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000019", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000020", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000021", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000023", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000026", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000027", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000028", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000029", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000030", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000033", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000034", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000035", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000036", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000038", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000039", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000040", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000041", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000042", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000045", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000047", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000048", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000049", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@S12000050", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000001", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000002", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000003", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000004", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000005", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000006", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000008", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000009", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000010", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000011", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000012", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000013", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000014", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000015", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000016", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000018", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000019", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000020", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000021", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000022", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000023", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_bhc@W06000024", + "target_id": "ons.equiv_net_income_bhc", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + } + ] + } + } + }, + "ons.equiv_net_income_ahc": { + "status": "no_fact_for_area", + "geography_levels": { + "local_authority": { + "status": "no_fact_for_area", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.equiv_net_income_ahc@E06000001", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000002", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000003", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000004", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000007", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000012", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000013", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000014", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000015", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000016", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000017", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000018", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000019", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000020", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000021", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000022", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000023", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000024", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000025", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000026", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000027", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000030", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000031", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000032", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000033", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000034", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000035", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000036", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000037", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000038", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000039", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000040", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000041", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000042", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000043", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000044", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000045", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000046", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000047", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000049", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000050", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000051", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000052", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000053", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000054", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000055", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000056", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000057", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000058", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000059", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000060", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000061", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000062", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000063", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000064", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000065", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E06000066", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000012", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000032", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000033", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000034", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000035", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000036", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000037", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000038", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000039", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000040", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000041", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000042", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000043", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000044", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000045", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000046", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000047", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000061", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000062", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000063", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000064", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000065", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000066", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000067", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000068", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000069", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000070", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000071", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000072", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000073", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000074", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000075", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000076", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000077", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000078", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000079", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000080", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000081", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000082", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000083", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000084", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000085", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000086", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000087", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000088", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000089", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000090", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000091", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000092", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000093", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000094", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000095", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000096", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000098", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000099", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000102", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000103", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000105", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000106", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000107", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000108", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000109", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000110", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000111", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000112", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000113", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000114", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000115", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000116", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000117", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000118", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000119", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000120", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000121", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000122", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000123", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000124", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000125", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000126", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000127", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000128", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000129", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000130", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000131", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000132", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000133", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000134", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000135", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000136", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000137", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000138", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000139", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000140", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000141", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000142", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000143", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000144", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000145", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000146", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000147", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000148", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000149", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000170", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000171", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000172", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000173", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000174", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000175", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000176", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000177", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000178", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000179", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000180", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000181", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000192", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000193", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000194", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000195", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000196", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000197", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000198", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000199", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000200", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000202", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000203", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000207", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000208", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000209", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000210", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000211", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000212", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000213", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000214", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000215", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000216", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000217", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000218", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000219", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000220", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000221", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000222", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000223", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000224", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000225", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000226", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000227", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000228", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000229", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000234", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000235", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000236", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000237", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000238", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000239", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000240", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000241", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000242", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000243", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000244", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E07000245", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000001", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000002", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000003", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000004", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000007", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000012", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000013", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000014", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000015", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000016", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000017", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000018", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000019", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000021", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000022", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000023", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000024", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000025", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000026", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000027", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000028", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000029", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000030", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000031", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000032", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000033", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000034", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000035", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000036", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E08000037", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000001", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000002", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000003", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000004", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000007", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000012", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000013", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000014", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000015", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000016", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000017", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000018", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000019", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000020", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000021", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000022", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000023", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000024", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000025", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000026", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000027", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000028", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000029", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000030", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000031", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000032", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@E09000033", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000001", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000002", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000003", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000004", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000007", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@N09000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000013", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000014", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000017", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000018", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000019", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000020", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000021", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000023", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000026", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000027", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000028", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000029", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000030", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000033", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000034", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000035", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000036", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000038", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000039", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000040", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000041", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000042", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000045", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000047", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000048", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000049", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@S12000050", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000001", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000002", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000003", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000004", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000005", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000006", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000008", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000009", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000010", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000011", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000012", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000013", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000014", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000015", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000016", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000018", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000019", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000020", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000021", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000022", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000023", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_net_income_ahc@W06000024", + "target_id": "ons.equiv_net_income_ahc", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + } + ] + } + } + }, + "ons.equiv_housing_costs": { + "status": "no_fact_for_area", + "geography_levels": { + "local_authority": { + "status": "no_fact_for_area", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.equiv_housing_costs@E06000001", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000002", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000003", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000004", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000007", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000012", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000013", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000014", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000015", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000016", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000017", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000018", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000019", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000020", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000021", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000022", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000023", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000024", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000025", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000026", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000027", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000030", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000031", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000032", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000033", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000034", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000035", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000036", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000037", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000038", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000039", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000040", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000041", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000042", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000043", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000044", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000045", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000046", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000047", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000049", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000050", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000051", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000052", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000053", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000054", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000055", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000056", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000057", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000058", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000059", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000060", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000061", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000062", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000063", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000064", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000065", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E06000066", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000012", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000032", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000033", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000034", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000035", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000036", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000037", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000038", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000039", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000040", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000041", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000042", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000043", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000044", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000045", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000046", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000047", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000061", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000062", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000063", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000064", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000065", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000066", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000067", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000068", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000069", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000070", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000071", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000072", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000073", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000074", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000075", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000076", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000077", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000078", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000079", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000080", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000081", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000082", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000083", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000084", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000085", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000086", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000087", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000088", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000089", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000090", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000091", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000092", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000093", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000094", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000095", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000096", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000098", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000099", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000102", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000103", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000105", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000106", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000107", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000108", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000109", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000110", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000111", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000112", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000113", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000114", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000115", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000116", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000117", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000118", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000119", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000120", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000121", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000122", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000123", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000124", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000125", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000126", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000127", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000128", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000129", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000130", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000131", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000132", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000133", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000134", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000135", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000136", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000137", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000138", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000139", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000140", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000141", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000142", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000143", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000144", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000145", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000146", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000147", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000148", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000149", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000170", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000171", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000172", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000173", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000174", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000175", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000176", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000177", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000178", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000179", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000180", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000181", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000192", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000193", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000194", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000195", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000196", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000197", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000198", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000199", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000200", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000202", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000203", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000207", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000208", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000209", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000210", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000211", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000212", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000213", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000214", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000215", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000216", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000217", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000218", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000219", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000220", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000221", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000222", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000223", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000224", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000225", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000226", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000227", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000228", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000229", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000234", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000235", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000236", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000237", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000238", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000239", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000240", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000241", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000242", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000243", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000244", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E07000245", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000001", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000002", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000003", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000004", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000007", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000012", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000013", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000014", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000015", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000016", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000017", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000018", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000019", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000021", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000022", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000023", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000024", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000025", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000026", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000027", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000028", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000029", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000030", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000031", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000032", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000033", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000034", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000035", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000036", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E08000037", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000001", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000002", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000003", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000004", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000007", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000012", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000013", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000014", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000015", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000016", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000017", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000018", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000019", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000020", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000021", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000022", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000023", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000024", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000025", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000026", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000027", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000028", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000029", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000030", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000031", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000032", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@E09000033", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000001", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000002", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000003", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000004", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000007", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@N09000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000013", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000014", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000017", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000018", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000019", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000020", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000021", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000023", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000026", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000027", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000028", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000029", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000030", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000033", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000034", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000035", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000036", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000038", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000039", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000040", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000041", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000042", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000045", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000047", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000048", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000049", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@S12000050", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000001", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000002", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000003", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000004", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000005", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000006", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000008", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000009", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000010", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000011", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000012", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000013", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000014", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000015", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000016", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000018", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000019", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000020", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000021", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000022", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000023", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + }, + { + "name": "ons.equiv_housing_costs@W06000024", + "target_id": "ons.equiv_housing_costs", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": "ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design." + } + ] + } + } + }, + "ons.tenure.owned_outright": { + "status": "active", + "geography_levels": { + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.tenure.owned_outright@E06000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12761.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_de817879c1baccd5af68d608" + }, + { + "name": "ons.tenure.owned_outright@E06000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17224.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bca5ee9bba170f73b47d611" + }, + { + "name": "ons.tenure.owned_outright@E06000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22649.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9e45293949c4fe1d50b6bdd" + }, + { + "name": "ons.tenure.owned_outright@E06000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27726.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80ac1538e6299f0eb8a2ce43" + }, + { + "name": "ons.tenure.owned_outright@E06000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16222.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2b1df2202bd48d49062d5c8" + }, + { + "name": "ons.tenure.owned_outright@E06000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17096.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f79138764c0023846da35736" + }, + { + "name": "ons.tenure.owned_outright@E06000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31939.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b56ed75d078a1af79d7ebba5" + }, + { + "name": "ons.tenure.owned_outright@E06000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19573.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d87f5665737f34145ca1d22" + }, + { + "name": "ons.tenure.owned_outright@E06000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20348.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3a48674f66361306728c4bc" + }, + { + "name": "ons.tenure.owned_outright@E06000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26695.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f16104067407f2bfa6400ad" + }, + { + "name": "ons.tenure.owned_outright@E06000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65680.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a6a9cb22e7b5f14d4cff7b0" + }, + { + "name": "ons.tenure.owned_outright@E06000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24373.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e704a7a5725e49029830a038" + }, + { + "name": "ons.tenure.owned_outright@E06000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27829.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4353dabcde72c27c48adb048" + }, + { + "name": "ons.tenure.owned_outright@E06000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31453.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0e71c9265f509598c3e9882" + }, + { + "name": "ons.tenure.owned_outright@E06000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33384.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2dc5d5c9d258283783021b9e" + }, + { + "name": "ons.tenure.owned_outright@E06000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31324.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_60ecebfdb448e47617ecf26a" + }, + { + "name": "ons.tenure.owned_outright@E06000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7286.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_21ee707aaf7cc2ac86c2d054" + }, + { + "name": "ons.tenure.owned_outright@E06000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27940.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f7f5611efc7c944eb96a26a" + }, + { + "name": "ons.tenure.owned_outright@E06000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35070.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2c209a44f7d82c595ac73f3" + }, + { + "name": "ons.tenure.owned_outright@E06000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23088.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4b701a4d26e1968b852451b3" + }, + { + "name": "ons.tenure.owned_outright@E06000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_27af8770614169d79d610c63" + }, + { + "name": "ons.tenure.owned_outright@E06000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28855.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a01cb111feef5c51f507a76e" + }, + { + "name": "ons.tenure.owned_outright@E06000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48199.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef5964100314b336ae9b321f" + }, + { + "name": "ons.tenure.owned_outright@E06000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37250.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b4b543d6d550e71ee6f2409" + }, + { + "name": "ons.tenure.owned_outright@E06000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43220.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddf2bd35f9e0170f27cf2879" + }, + { + "name": "ons.tenure.owned_outright@E06000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33783.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_376bed2a6476719448a501ea" + }, + { + "name": "ons.tenure.owned_outright@E06000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24663.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_989a9ecb4315d541a27b2de6" + }, + { + "name": "ons.tenure.owned_outright@E06000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27968.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_22de4420718e38f9ab44a333" + }, + { + "name": "ons.tenure.owned_outright@E06000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22268.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_85b62cab2038f527f619f443" + }, + { + "name": "ons.tenure.owned_outright@E06000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20296.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_76e87a2e1cc2ef78ad70844d" + }, + { + "name": "ons.tenure.owned_outright@E06000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24722.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ed5cc8f0cc252b33c9dd3a" + }, + { + "name": "ons.tenure.owned_outright@E06000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16912.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c906f6bb342c9528dcb15cf8" + }, + { + "name": "ons.tenure.owned_outright@E06000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34388.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f936bfaa59a3422462f6294" + }, + { + "name": "ons.tenure.owned_outright@E06000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14488.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb15eac0c2ef561e9d78698c" + }, + { + "name": "ons.tenure.owned_outright@E06000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23209.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fa523c604ffa238b5050849" + }, + { + "name": "ons.tenure.owned_outright@E06000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15426.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8df24d2ad4f829177916426c" + }, + { + "name": "ons.tenure.owned_outright@E06000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10215.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a7bfdbae6ef9557813b4092" + }, + { + "name": "ons.tenure.owned_outright@E06000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20393.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea4a60321369ab390f162ed6" + }, + { + "name": "ons.tenure.owned_outright@E06000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24952.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e2dc13d1419d1742901b5be" + }, + { + "name": "ons.tenure.owned_outright@E06000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27193.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da865ab4f8ee258a3181a75f" + }, + { + "name": "ons.tenure.owned_outright@E06000043", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30444.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_783d9ba80f876a4699466c80" + }, + { + "name": "ons.tenure.owned_outright@E06000044", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21958.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b879e01e9a0f5f3f945e17c" + }, + { + "name": "ons.tenure.owned_outright@E06000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23049.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a72a28271b7adbe4fe5d6fc" + }, + { + "name": "ons.tenure.owned_outright@E06000046", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28737.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8801cc60df7896fadece2ae4" + }, + { + "name": "ons.tenure.owned_outright@E06000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 81046.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_27606a9db89cebb874de81cb" + }, + { + "name": "ons.tenure.owned_outright@E06000049", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 69191.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_55097f4841cc2f58c580b0b3" + }, + { + "name": "ons.tenure.owned_outright@E06000050", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 57620.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2367c89843424c2602a89be9" + }, + { + "name": "ons.tenure.owned_outright@E06000051", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59262.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a5c908282d665d94f5313fa" + }, + { + "name": "ons.tenure.owned_outright@E06000052", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 104659.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cb0129694cf3f40ef2b2bca" + }, + { + "name": "ons.tenure.owned_outright@E06000053", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 320.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbb941804048f7a1d83adef2" + }, + { + "name": "ons.tenure.owned_outright@E06000054", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 80220.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7b27e668c705ccc8cdb84cc8" + }, + { + "name": "ons.tenure.owned_outright@E06000055", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23359.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_69127ee96b5f4a60becf3883" + }, + { + "name": "ons.tenure.owned_outright@E06000056", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40618.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_69e6b9c33e19cb5edf44d97d" + }, + { + "name": "ons.tenure.owned_outright@E06000057", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56684.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8172ec642570fe96b6f28d76" + }, + { + "name": "ons.tenure.owned_outright@E06000058", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 59736.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cb85e929e1bc332018080f0" + }, + { + "name": "ons.tenure.owned_outright@E06000059", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77561.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_27d368adf9931f08b202227c" + }, + { + "name": "ons.tenure.owned_outright@E06000060", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77213.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e243b29cd38144644ac02ed" + }, + { + "name": "ons.tenure.owned_outright@E06000061", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47617.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1195ba0ef57038f5756d0f7d" + }, + { + "name": "ons.tenure.owned_outright@E06000062", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 53782.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2a937d465e705fe96ba65db" + }, + { + "name": "ons.tenure.owned_outright@E06000063", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51185.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_944001754ae390321fb74eba" + }, + { + "name": "ons.tenure.owned_outright@E06000064", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46305.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_85dc318b02803d25e5fafb26" + }, + { + "name": "ons.tenure.owned_outright@E06000065", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 113625.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_525f36e01280abd07ced4c36" + }, + { + "name": "ons.tenure.owned_outright@E06000066", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 100887.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cd217945863b6f5af324e4b" + }, + { + "name": "ons.tenure.owned_outright@E07000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12897.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d5a72a863e297e36ddc62c6" + }, + { + "name": "ons.tenure.owned_outright@E07000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13485.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f03a79d0c4e5cf19b62d10f" + }, + { + "name": "ons.tenure.owned_outright@E07000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16632.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0624ed8ce5c27d35759eed4c" + }, + { + "name": "ons.tenure.owned_outright@E07000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27621.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_617e1796a6c9fb2467501837" + }, + { + "name": "ons.tenure.owned_outright@E07000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24426.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_84eac68eeb691391e84b49be" + }, + { + "name": "ons.tenure.owned_outright@E07000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23051.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_61b86afa2b9dfd80541e9862" + }, + { + "name": "ons.tenure.owned_outright@E07000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12391.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cdb77580448bbecb6aecc77" + }, + { + "name": "ons.tenure.owned_outright@E07000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17249.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e40d885d8fe1b0b7dfedfb1" + }, + { + "name": "ons.tenure.owned_outright@E07000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15405.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e970050e4a1e6d06f042bb8b" + }, + { + "name": "ons.tenure.owned_outright@E07000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18887.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_30a8ada2c10c000ac8244c7d" + }, + { + "name": "ons.tenure.owned_outright@E07000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16367.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_643447b189c6924aa4f90909" + }, + { + "name": "ons.tenure.owned_outright@E07000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18959.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfdb23081dbe1f0bd6127250" + }, + { + "name": "ons.tenure.owned_outright@E07000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16388.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_372a66bda5d1eeff8d1f2d77" + }, + { + "name": "ons.tenure.owned_outright@E07000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31228.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b80c75049a619ce0b6eb90ae" + }, + { + "name": "ons.tenure.owned_outright@E07000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16369.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_18a62e3d634e975acc707649" + }, + { + "name": "ons.tenure.owned_outright@E07000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14110.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f8df753b141825d101973f3" + }, + { + "name": "ons.tenure.owned_outright@E07000043", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18055.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb6143ea37e810deff179b35" + }, + { + "name": "ons.tenure.owned_outright@E07000044", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17708.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe0330cedb049ec098d4ba99" + }, + { + "name": "ons.tenure.owned_outright@E07000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25889.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a3e5e29d040f2d4b8d2f46a" + }, + { + "name": "ons.tenure.owned_outright@E07000046", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13870.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_47007e957cebe3cfa082a53a" + }, + { + "name": "ons.tenure.owned_outright@E07000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11569.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a6ade913b97ad7d1e200d614" + }, + { + "name": "ons.tenure.owned_outright@E07000061", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16305.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5e97663d9605ccc0615c654" + }, + { + "name": "ons.tenure.owned_outright@E07000062", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12644.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_55951dd15503ca645133eb27" + }, + { + "name": "ons.tenure.owned_outright@E07000063", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18524.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bda8ef2081fd26d36ef7f95d" + }, + { + "name": "ons.tenure.owned_outright@E07000064", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20395.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8bd165bfef52dfd9854935c" + }, + { + "name": "ons.tenure.owned_outright@E07000065", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30510.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4abfc03b32a9abb86350dfd" + }, + { + "name": "ons.tenure.owned_outright@E07000066", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23029.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_323fa1cffbdb0fe131ebfbda" + }, + { + "name": "ons.tenure.owned_outright@E07000067", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22262.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_562256bd105a8dbbc5afb85c" + }, + { + "name": "ons.tenure.owned_outright@E07000068", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11797.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef2b7106ba3cab850f6800df" + }, + { + "name": "ons.tenure.owned_outright@E07000069", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16937.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8993ce34bc144edc1491886" + }, + { + "name": "ons.tenure.owned_outright@E07000070", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27057.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f93f12d527d0beea964fbe1a" + }, + { + "name": "ons.tenure.owned_outright@E07000071", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26126.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdd8faa3a6f87429ced24f06" + }, + { + "name": "ons.tenure.owned_outright@E07000072", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19180.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_86b5b46e35ff157ed8c2384f" + }, + { + "name": "ons.tenure.owned_outright@E07000073", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8723.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9674f3cd39e0749078086494" + }, + { + "name": "ons.tenure.owned_outright@E07000074", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12224.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c36fb8fd7f806f1a1e911913" + }, + { + "name": "ons.tenure.owned_outright@E07000075", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15572.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aa755c755cb8e94ab87fb0df" + }, + { + "name": "ons.tenure.owned_outright@E07000076", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31510.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_06cf612b19389af0c7ea2f01" + }, + { + "name": "ons.tenure.owned_outright@E07000077", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13177.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9d192be4eb618738fe27f29" + }, + { + "name": "ons.tenure.owned_outright@E07000078", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18362.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f123ca6c9119305bdf1b04f" + }, + { + "name": "ons.tenure.owned_outright@E07000079", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16177.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4efc845a493a15022f302f85" + }, + { + "name": "ons.tenure.owned_outright@E07000080", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16466.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_912cd12ea3b2af5f9d7cfff4" + }, + { + "name": "ons.tenure.owned_outright@E07000081", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17510.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2769417976a4cf0ff8c8959b" + }, + { + "name": "ons.tenure.owned_outright@E07000082", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21548.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a80cd9b54961847222652e8c" + }, + { + "name": "ons.tenure.owned_outright@E07000083", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15984.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_39df8b819088cfdb58b6eabe" + }, + { + "name": "ons.tenure.owned_outright@E07000084", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23475.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7da4507c2915464e9131b06" + }, + { + "name": "ons.tenure.owned_outright@E07000085", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21080.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6073cc9a4a957d71478ec0b" + }, + { + "name": "ons.tenure.owned_outright@E07000086", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20012.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_15b75472ca5c0cf432835046" + }, + { + "name": "ons.tenure.owned_outright@E07000087", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21154.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e83ec98c9de015bb2836a972" + }, + { + "name": "ons.tenure.owned_outright@E07000088", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12314.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9bd561ab89b03f5fd471686" + }, + { + "name": "ons.tenure.owned_outright@E07000089", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14958.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4566bf2265275061e7baeee7" + }, + { + "name": "ons.tenure.owned_outright@E07000090", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20869.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ee40369d69a2b99d7bdd417" + }, + { + "name": "ons.tenure.owned_outright@E07000091", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36150.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ebf5ee39b2e7a61faee75fb" + }, + { + "name": "ons.tenure.owned_outright@E07000092", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9979.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3341b1442b122899fbbf081" + }, + { + "name": "ons.tenure.owned_outright@E07000093", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19742.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d4a90f2366bd7c41d015eea" + }, + { + "name": "ons.tenure.owned_outright@E07000094", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18648.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_69e0052df30c8fc334487e28" + }, + { + "name": "ons.tenure.owned_outright@E07000095", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13178.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_364825b8eea3d1f7781d1a22" + }, + { + "name": "ons.tenure.owned_outright@E07000096", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19598.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_705eb26bf7f3bce2fa71ad9f" + }, + { + "name": "ons.tenure.owned_outright@E07000098", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13227.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_593034284cfb55c6a1db5f26" + }, + { + "name": "ons.tenure.owned_outright@E07000099", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18933.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ae7f340ba957ba5def2a508" + }, + { + "name": "ons.tenure.owned_outright@E07000102", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12806.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf40d05745fb5d92f4468cb6" + }, + { + "name": "ons.tenure.owned_outright@E07000103", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9577.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea15384e223e965b9a610c1" + }, + { + "name": "ons.tenure.owned_outright@E07000105", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18032.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f645cd2e7aca28440240f2d" + }, + { + "name": "ons.tenure.owned_outright@E07000106", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24477.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b8060c0a83220591e618ebb" + }, + { + "name": "ons.tenure.owned_outright@E07000107", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12302.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aa8f78800bd3010c6ac4451" + }, + { + "name": "ons.tenure.owned_outright@E07000108", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19753.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e33a65208d47b7951ba9a343" + }, + { + "name": "ons.tenure.owned_outright@E07000109", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13018.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_656d95fe39d8bd366c86b15a" + }, + { + "name": "ons.tenure.owned_outright@E07000110", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24192.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1830d5658783b6c8ca8ad606" + }, + { + "name": "ons.tenure.owned_outright@E07000111", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18769.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4dda6bf3dc09b146c9c01a13" + }, + { + "name": "ons.tenure.owned_outright@E07000112", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18966.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d32d5c24f7f15240fb5c429" + }, + { + "name": "ons.tenure.owned_outright@E07000113", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20788.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_26f1006c550345ac7949329c" + }, + { + "name": "ons.tenure.owned_outright@E07000114", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22731.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a6a42b990b791c556a09aae" + }, + { + "name": "ons.tenure.owned_outright@E07000115", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18379.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aaaf47544e3ff1560f76c8a6" + }, + { + "name": "ons.tenure.owned_outright@E07000116", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16324.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ffbded694146708e61aec0b" + }, + { + "name": "ons.tenure.owned_outright@E07000117", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13051.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8b0c6ca56929b0f7769dc7a" + }, + { + "name": "ons.tenure.owned_outright@E07000118", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2466ff2ffebd124bca29e3df" + }, + { + "name": "ons.tenure.owned_outright@E07000119", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16369.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a751cbe8742011793668cd0a" + }, + { + "name": "ons.tenure.owned_outright@E07000120", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11917.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a005f8d6af74f64e64f95920" + }, + { + "name": "ons.tenure.owned_outright@E07000121", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23152.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4549a556155259709cb9b62" + }, + { + "name": "ons.tenure.owned_outright@E07000122", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14127.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_090cdc67963a8196081e5167" + }, + { + "name": "ons.tenure.owned_outright@E07000123", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18219.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a826bb13d046d5ba1e113b9b" + }, + { + "name": "ons.tenure.owned_outright@E07000124", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11654.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_86371748ac42912e7c07c089" + }, + { + "name": "ons.tenure.owned_outright@E07000125", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10560.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5afb8e80e3dee52fbdd5b627" + }, + { + "name": "ons.tenure.owned_outright@E07000126", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19428.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_55718b56908f1d9bf5b9967c" + }, + { + "name": "ons.tenure.owned_outright@E07000127", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18987.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6501baa26eafb418411c3280" + }, + { + "name": "ons.tenure.owned_outright@E07000128", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22699.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db10f09d1156b92fa2605106" + }, + { + "name": "ons.tenure.owned_outright@E07000129", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17012.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d379a9a90725e08e189daaa5" + }, + { + "name": "ons.tenure.owned_outright@E07000130", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27619.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_14dd7487cf98f75af0d3cdad" + }, + { + "name": "ons.tenure.owned_outright@E07000131", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16484.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_06079a0459875a6511cca21b" + }, + { + "name": "ons.tenure.owned_outright@E07000132", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19715.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_52a1473e15e99c7aacc1ce46" + }, + { + "name": "ons.tenure.owned_outright@E07000133", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9160.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7617c60b841af5c13c29aa26" + }, + { + "name": "ons.tenure.owned_outright@E07000134", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16599.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b51d597f7154357c48ae11fe" + }, + { + "name": "ons.tenure.owned_outright@E07000135", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9711.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_798a7a19bd6a336e884b394b" + }, + { + "name": "ons.tenure.owned_outright@E07000136", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58ad11b2a03850c33e186e0e" + }, + { + "name": "ons.tenure.owned_outright@E07000137", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29907.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ea8d37defcd293ddc4ddeb6" + }, + { + "name": "ons.tenure.owned_outright@E07000138", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11092.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a063fecda03c9b058145ac1" + }, + { + "name": "ons.tenure.owned_outright@E07000139", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20386.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6ebdeb39c8ecff3c8232a83" + }, + { + "name": "ons.tenure.owned_outright@E07000140", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16604.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_084af3e1da442ffdfe053cb2" + }, + { + "name": "ons.tenure.owned_outright@E07000141", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23765.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed7b737707f94276d06bc13b" + }, + { + "name": "ons.tenure.owned_outright@E07000142", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17553.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d1ab072be8441f15a89b2ae" + }, + { + "name": "ons.tenure.owned_outright@E07000143", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24126.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80e24359680b51d85d670154" + }, + { + "name": "ons.tenure.owned_outright@E07000144", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26448.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e94d32c6dfba5dfdb29ce5da" + }, + { + "name": "ons.tenure.owned_outright@E07000145", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16978.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0af8567beaac9fd7799476b0" + }, + { + "name": "ons.tenure.owned_outright@E07000146", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28053.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_47815d2ecc931a31d9cbb828" + }, + { + "name": "ons.tenure.owned_outright@E07000147", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23509.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5378c48ee698cdb4e280990d" + }, + { + "name": "ons.tenure.owned_outright@E07000148", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14312.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd072c347a9a5a12fa3d7d93" + }, + { + "name": "ons.tenure.owned_outright@E07000149", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25720.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4218420e80711d792d9f3822" + }, + { + "name": "ons.tenure.owned_outright@E07000170", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19484.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f0e70825d9cf493c0df8ef" + }, + { + "name": "ons.tenure.owned_outright@E07000171", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19442.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f137360c3646eb0a872a354a" + }, + { + "name": "ons.tenure.owned_outright@E07000172", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19301.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_174689253a9684ccf08a8e3d" + }, + { + "name": "ons.tenure.owned_outright@E07000173", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20649.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5780c95a331738c8f2102d9" + }, + { + "name": "ons.tenure.owned_outright@E07000174", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16668.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6fe56cf8056deb5e3dfee82" + }, + { + "name": "ons.tenure.owned_outright@E07000175", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20525.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e9f109545a318cfee5eddb4" + }, + { + "name": "ons.tenure.owned_outright@E07000176", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20508.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_af8c7d71be30b1a0c3125a49" + }, + { + "name": "ons.tenure.owned_outright@E07000177", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21431.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0e2b62fc36fd0c7d3d341018" + }, + { + "name": "ons.tenure.owned_outright@E07000178", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13993.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ad4a087d92851ea0fd71b62" + }, + { + "name": "ons.tenure.owned_outright@E07000179", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23180.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2fc0412027c0509f3cf5be6" + }, + { + "name": "ons.tenure.owned_outright@E07000180", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20812.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1f261fca0b8c5d48a36562c" + }, + { + "name": "ons.tenure.owned_outright@E07000181", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17963.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1690501d43e1b5932b8711b0" + }, + { + "name": "ons.tenure.owned_outright@E07000192", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14718.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c61fb77349eb2c30ef952c5" + }, + { + "name": "ons.tenure.owned_outright@E07000193", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18695.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec99673a65ef8736940e2242" + }, + { + "name": "ons.tenure.owned_outright@E07000194", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18902.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d862782f3e24c8f23f854b58" + }, + { + "name": "ons.tenure.owned_outright@E07000195", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20435.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6ce1860496c0e47bc3ceeed" + }, + { + "name": "ons.tenure.owned_outright@E07000196", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20310.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_13575246361b9b8268a6f1fc" + }, + { + "name": "ons.tenure.owned_outright@E07000197", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23474.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6690dcfcdde26e6ac71aea71" + }, + { + "name": "ons.tenure.owned_outright@E07000198", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20401.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a176ac8adffb31b12b1f626" + }, + { + "name": "ons.tenure.owned_outright@E07000199", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_08848c4fcdd9b0a7f920dabc" + }, + { + "name": "ons.tenure.owned_outright@E07000200", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17460.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc88644250ec68cab2b2c511" + }, + { + "name": "ons.tenure.owned_outright@E07000202", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16810.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccb11790c233f47f5017b983" + }, + { + "name": "ons.tenure.owned_outright@E07000203", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19151.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e29a12794b4133f8b875aff" + }, + { + "name": "ons.tenure.owned_outright@E07000207", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18809.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a0461b39d122c7087e8dd109" + }, + { + "name": "ons.tenure.owned_outright@E07000208", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11364.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d371906e1fafc2a426146c5" + }, + { + "name": "ons.tenure.owned_outright@E07000209", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19267.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d10f8e18b052a9c9818e8f6" + }, + { + "name": "ons.tenure.owned_outright@E07000210", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15136.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_64b5fa82133599f4a2d45176" + }, + { + "name": "ons.tenure.owned_outright@E07000211", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20196.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa9f92f88e3d29179ecfaf6" + }, + { + "name": "ons.tenure.owned_outright@E07000212", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11431.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_afecc49ffd8fe9a282c2684f" + }, + { + "name": "ons.tenure.owned_outright@E07000213", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13980.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2232b12f406e452fd3f31141" + }, + { + "name": "ons.tenure.owned_outright@E07000214", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13156.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_267fa8a6c724ab4d6f984fcc" + }, + { + "name": "ons.tenure.owned_outright@E07000215", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13326.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8899411cc31199f519cbcb79" + }, + { + "name": "ons.tenure.owned_outright@E07000216", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20039.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b09a0484af6a16864b34801a" + }, + { + "name": "ons.tenure.owned_outright@E07000217", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13251.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_439c9875281c09caa6437828" + }, + { + "name": "ons.tenure.owned_outright@E07000218", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7ce368fc759ecb0f76e147a" + }, + { + "name": "ons.tenure.owned_outright@E07000219", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19829.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_39a07cddb9bc7344d068058e" + }, + { + "name": "ons.tenure.owned_outright@E07000220", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15703.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_07312b11fe51d5814fa490ec" + }, + { + "name": "ons.tenure.owned_outright@E07000221", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24156.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_809e2b76bc258808c89d1919" + }, + { + "name": "ons.tenure.owned_outright@E07000222", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21411.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_af2a3b76e0c96455c750cb36" + }, + { + "name": "ons.tenure.owned_outright@E07000223", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11101.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4cd820811a02e2efe2a12225" + }, + { + "name": "ons.tenure.owned_outright@E07000224", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32182.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_83f48326bbbb934fe896a567" + }, + { + "name": "ons.tenure.owned_outright@E07000225", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22715.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4d94bcc1bb39230cf56b00ae" + }, + { + "name": "ons.tenure.owned_outright@E07000226", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10940.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_01130b3a7c2cab9899e3ee5f" + }, + { + "name": "ons.tenure.owned_outright@E07000227", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24482.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_09efdfc34dc18e44c08fb3d8" + }, + { + "name": "ons.tenure.owned_outright@E07000228", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23259.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_97dd654bc74fee511be8b788" + }, + { + "name": "ons.tenure.owned_outright@E07000229", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18052.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_114b05a46e1ed75b8518262e" + }, + { + "name": "ons.tenure.owned_outright@E07000234", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17483.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7b8b0b27d71d633f2e4946f" + }, + { + "name": "ons.tenure.owned_outright@E07000235", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15753.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_51171e435ef9c773ca50b922" + }, + { + "name": "ons.tenure.owned_outright@E07000236", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11254.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_09e189a706405fd82c0a8be9" + }, + { + "name": "ons.tenure.owned_outright@E07000237", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14320.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f65198f47b0548f043c81333" + }, + { + "name": "ons.tenure.owned_outright@E07000238", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23188.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5074a2ce9363ef69536315fb" + }, + { + "name": "ons.tenure.owned_outright@E07000239", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18477.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8de6311beecfd421bc8b2fba" + }, + { + "name": "ons.tenure.owned_outright@E07000240", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20615.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cb4df0e1f16d22907ef52bf" + }, + { + "name": "ons.tenure.owned_outright@E07000241", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12711.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a68650a4d52a72f5d8fc94bf" + }, + { + "name": "ons.tenure.owned_outright@E07000242", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21140.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_42337c7f5a2110a147f3dd28" + }, + { + "name": "ons.tenure.owned_outright@E07000243", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9522.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_67c60f47c1b62d9676f50c8d" + }, + { + "name": "ons.tenure.owned_outright@E07000244", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49014.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_df5e779a69e5b88364de9b9e" + }, + { + "name": "ons.tenure.owned_outright@E07000245", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26398.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1a37bb323cda26e04b35697" + }, + { + "name": "ons.tenure.owned_outright@E08000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39475.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_50eac6be2ca01d340c5b9083" + }, + { + "name": "ons.tenure.owned_outright@E08000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27752.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8e9632a92847de5ba72662ac" + }, + { + "name": "ons.tenure.owned_outright@E08000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35423.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb2d690e589c8e763c042514" + }, + { + "name": "ons.tenure.owned_outright@E08000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29384.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d98f462e40f93b4164c9d366" + }, + { + "name": "ons.tenure.owned_outright@E08000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27411.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0805666ca1eddd375bf35b5c" + }, + { + "name": "ons.tenure.owned_outright@E08000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25294.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a570d7cd139e09e78ffb304" + }, + { + "name": "ons.tenure.owned_outright@E08000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46498.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a4873ce784d871974243c2f" + }, + { + "name": "ons.tenure.owned_outright@E08000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30363.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0b8c3a7cf50ef6fd3d1a922" + }, + { + "name": "ons.tenure.owned_outright@E08000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33149.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8650682615f66aba59818067" + }, + { + "name": "ons.tenure.owned_outright@E08000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49212.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e27f6012456cd80280efcbb7" + }, + { + "name": "ons.tenure.owned_outright@E08000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18902.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_68f0f44b40b0a5cd659895d8" + }, + { + "name": "ons.tenure.owned_outright@E08000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50393.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bece5ef45b49e289c3783cb8" + }, + { + "name": "ons.tenure.owned_outright@E08000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28023.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_43a0a0f78206ad642de2100f" + }, + { + "name": "ons.tenure.owned_outright@E08000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46426.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc188c5dc26fb55798515abb" + }, + { + "name": "ons.tenure.owned_outright@E08000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51333.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f050e8e480de805595205a48" + }, + { + "name": "ons.tenure.owned_outright@E08000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35620.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_181d7ef4f406efc5ff3ed51e" + }, + { + "name": "ons.tenure.owned_outright@E08000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44881.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b73ccfd224cd04837162ae32" + }, + { + "name": "ons.tenure.owned_outright@E08000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38318.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_209ae5c8ce5bf2fd0fc69854" + }, + { + "name": "ons.tenure.owned_outright@E08000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 71903.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dc83176b00c7dd1e38dc769" + }, + { + "name": "ons.tenure.owned_outright@E08000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30707.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4e3a4386ddf5c53e76b866d" + }, + { + "name": "ons.tenure.owned_outright@E08000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31038.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_43061f309d772dd97f2abffd" + }, + { + "name": "ons.tenure.owned_outright@E08000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20503.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1fe8f5ec75855e9535d2da38" + }, + { + "name": "ons.tenure.owned_outright@E08000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 38312.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_35790d78cb7e4e58e8e6f8f9" + }, + { + "name": "ons.tenure.owned_outright@E08000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 114970.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_84c87b3a722e3bb50afe78c6" + }, + { + "name": "ons.tenure.owned_outright@E08000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 40278.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_10b2b72bd23bd2d7d73d4759" + }, + { + "name": "ons.tenure.owned_outright@E08000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51133.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b5b1516ebc71b8b72724bc3" + }, + { + "name": "ons.tenure.owned_outright@E08000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35924.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8816206f61832dec48b27437" + }, + { + "name": "ons.tenure.owned_outright@E08000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35054.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58baa1394c995690f10ef548" + }, + { + "name": "ons.tenure.owned_outright@E08000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36296.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_34bd7d89f9b92728e9a019bb" + }, + { + "name": "ons.tenure.owned_outright@E08000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31345.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2ea7244c55ea448533269b0" + }, + { + "name": "ons.tenure.owned_outright@E08000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 66875.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_10ecb50f2782b97522b57437" + }, + { + "name": "ons.tenure.owned_outright@E08000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31269.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fb0f5fb7b79d2b78edb8527" + }, + { + "name": "ons.tenure.owned_outright@E08000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62352.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a416895b1c78ca2d220e6e0" + }, + { + "name": "ons.tenure.owned_outright@E08000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 95452.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cb2d4e689f2137bbf7f629e" + }, + { + "name": "ons.tenure.owned_outright@E08000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48566.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7562fe36b011a6b852551300" + }, + { + "name": "ons.tenure.owned_outright@E08000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27161.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb6b0c262c2b9a117499ad7d" + }, + { + "name": "ons.tenure.owned_outright@E09000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1114.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9b1798847ca5c7c0fb3f219" + }, + { + "name": "ons.tenure.owned_outright@E09000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11130.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fe8581d17b88b1fa8373c96" + }, + { + "name": "ons.tenure.owned_outright@E09000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39083.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c66689399a24b636bb5584f0" + }, + { + "name": "ons.tenure.owned_outright@E09000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31210.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_477581a5dd88183e1507b44a" + }, + { + "name": "ons.tenure.owned_outright@E09000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23933.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b892a5ac40cc5a2e9e6e2e1f" + }, + { + "name": "ons.tenure.owned_outright@E09000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44794.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_20b7560f19f097d8a5f295cc" + }, + { + "name": "ons.tenure.owned_outright@E09000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14780.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_810b92552345961534cc22b8" + }, + { + "name": "ons.tenure.owned_outright@E09000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36992.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6da421110d9f371512e21f0" + }, + { + "name": "ons.tenure.owned_outright@E09000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30275.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9133d76de5cd6da01d88452" + }, + { + "name": "ons.tenure.owned_outright@E09000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31740.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e2859b95c16cfe0a6463a8d" + }, + { + "name": "ons.tenure.owned_outright@E09000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18473.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_834fa050204866fc5ed1513e" + }, + { + "name": "ons.tenure.owned_outright@E09000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10263.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_212669224367ca853e315027" + }, + { + "name": "ons.tenure.owned_outright@E09000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12483.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecd11b7be567347278583ccd" + }, + { + "name": "ons.tenure.owned_outright@E09000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18141.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_71f0288b8a1765e9d27113ab" + }, + { + "name": "ons.tenure.owned_outright@E09000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26947.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_223ba01055009bfce2c85e70" + }, + { + "name": "ons.tenure.owned_outright@E09000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34918.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_719e5014398b1fe48823c313" + }, + { + "name": "ons.tenure.owned_outright@E09000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28994.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_416292b7e90592ea3b042cb9" + }, + { + "name": "ons.tenure.owned_outright@E09000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21761.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_795123e58595d96a320065fc" + }, + { + "name": "ons.tenure.owned_outright@E09000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11151.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f2bc2433b60d64613a786cf0" + }, + { + "name": "ons.tenure.owned_outright@E09000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13301.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_12e4b7de4344c4c0891ce86a" + }, + { + "name": "ons.tenure.owned_outright@E09000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18519.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3415f4810f7d7435d08eea7c" + }, + { + "name": "ons.tenure.owned_outright@E09000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16180.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f2402e87c1112ef5957ed0e" + }, + { + "name": "ons.tenure.owned_outright@E09000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18853.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc0d71b78e818629f898f2cb" + }, + { + "name": "ons.tenure.owned_outright@E09000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20695.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c257cea8d2ede2b56703be69" + }, + { + "name": "ons.tenure.owned_outright@E09000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14695.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f53e707b4c39cc51dedb8258" + }, + { + "name": "ons.tenure.owned_outright@E09000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27956.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_159b16ba2f977c6817a9259c" + }, + { + "name": "ons.tenure.owned_outright@E09000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24535.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b71c06f5341410603002ebec" + }, + { + "name": "ons.tenure.owned_outright@E09000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13879.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7f2921f148cd11bbd4362df2" + }, + { + "name": "ons.tenure.owned_outright@E09000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23400.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5dfcb31e69fd1094fc0ab2bb" + }, + { + "name": "ons.tenure.owned_outright@E09000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9424.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2d3fe70ab8f6d2a623f67f38" + }, + { + "name": "ons.tenure.owned_outright@E09000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20817.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_90975904b9978f40eb740594" + }, + { + "name": "ons.tenure.owned_outright@E09000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24410.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f919b0e11a039a05db2ba234" + }, + { + "name": "ons.tenure.owned_outright@E09000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15213.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5cea60f13931774a9e2e0d3" + }, + { + "name": "ons.tenure.owned_outright@N09000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20424.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff7043223d1d0d17d927a81c" + }, + { + "name": "ons.tenure.owned_outright@N09000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30128.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_40dd15c94f7b55f18512ab56" + }, + { + "name": "ons.tenure.owned_outright@N09000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37043.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_01f131fdae6ddf8e29e2efca" + }, + { + "name": "ons.tenure.owned_outright@N09000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22597.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a32c6443a8f20cc92afd6be" + }, + { + "name": "ons.tenure.owned_outright@N09000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18433.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_614926fe57f1cef1fa5eed9b" + }, + { + "name": "ons.tenure.owned_outright@N09000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19738.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f0474e3bbfd0e118e497d37b" + }, + { + "name": "ons.tenure.owned_outright@N09000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22024.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9df1fa563fe04b04eb3e91a" + }, + { + "name": "ons.tenure.owned_outright@N09000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22609.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5aa3c101e687144d17d21209" + }, + { + "name": "ons.tenure.owned_outright@N09000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20724.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_436b4bb250acd27955c18697" + }, + { + "name": "ons.tenure.owned_outright@N09000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26129.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0cd6f62996f84593c0bcaa62" + }, + { + "name": "ons.tenure.owned_outright@N09000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27220.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_373b342055e99c5b6c574225" + }, + { + "name": "ons.tenure.owned_outright@S12000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8146.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5df640b9c1c7af211f3d9b66" + }, + { + "name": "ons.tenure.owned_outright@S12000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30384.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c58fd51c5cb60450b58fe46b" + }, + { + "name": "ons.tenure.owned_outright@S12000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18854.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb9c6fc53ac5c0313491f991" + }, + { + "name": "ons.tenure.owned_outright@S12000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17202.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f58378713fc498294b8de04" + }, + { + "name": "ons.tenure.owned_outright@S12000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17721.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_16e21f5b60bce1587f78b307" + }, + { + "name": "ons.tenure.owned_outright@S12000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6646.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_11b4de55c92f4a401813e146" + }, + { + "name": "ons.tenure.owned_outright@S12000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23906.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f0fb5fe09ed61626ee99820" + }, + { + "name": "ons.tenure.owned_outright@S12000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46017.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e187388567d5eb9cc411aa30" + }, + { + "name": "ons.tenure.owned_outright@S12000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13478.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3c09e5dca9a1f91c245a0b3" + }, + { + "name": "ons.tenure.owned_outright@S12000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13075.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5eed6127daf0f2b0a9315367" + }, + { + "name": "ons.tenure.owned_outright@S12000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17308.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa6d576b460071d677c7c033" + }, + { + "name": "ons.tenure.owned_outright@S12000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23352.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_57214371ab63040498c6ba4d" + }, + { + "name": "ons.tenure.owned_outright@S12000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4956.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_4952e7303f5026ddc4197ed9" + }, + { + "name": "ons.tenure.owned_outright@S12000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21958.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_2383add4e51c774d872ce394" + }, + { + "name": "ons.tenure.owned_outright@S12000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4581.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_0aea40985c3b708f430d7284" + }, + { + "name": "ons.tenure.owned_outright@S12000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22233.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_945f7f1609a5e9a8f928a670" + }, + { + "name": "ons.tenure.owned_outright@S12000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 51518.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_3bad3aab0ac59b87382f79e7" + }, + { + "name": "ons.tenure.owned_outright@S12000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15119.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_3922514988c4babb3f8cacfa" + }, + { + "name": "ons.tenure.owned_outright@S12000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31367.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8666abd3312ddbf0d31d0e8" + }, + { + "name": "ons.tenure.owned_outright@S12000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46679.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_229e30b19b7ead3157e72cb4" + }, + { + "name": "ons.tenure.owned_outright@S12000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18483.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_551d5445c089dc99fb41ce23" + }, + { + "name": "ons.tenure.owned_outright@S12000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 72401.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e7c46ec35587df3742a0aa2" + }, + { + "name": "ons.tenure.owned_outright@S12000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28959.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_0b44a95420a5392625472175" + }, + { + "name": "ons.tenure.owned_outright@S12000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12671.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_8da679e63a072f4f57066f06" + }, + { + "name": "ons.tenure.owned_outright@S12000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24076.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce97ee5f49152a786574d924" + }, + { + "name": "ons.tenure.owned_outright@S12000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21553.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_356a7ff25657c767e50301b1" + }, + { + "name": "ons.tenure.owned_outright@S12000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19298.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e77c10f3fb9e92911befce5" + }, + { + "name": "ons.tenure.owned_outright@S12000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21385.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7256c454a7997da0b7361c6" + }, + { + "name": "ons.tenure.owned_outright@S12000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61016.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_28d42220ea89646923bdad58" + }, + { + "name": "ons.tenure.owned_outright@S12000048", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27866.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b84702c3800200d4bc5d46f" + }, + { + "name": "ons.tenure.owned_outright@S12000049", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 63764.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_83e90308cc5b21885d5bf195" + }, + { + "name": "ons.tenure.owned_outright@S12000050", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45160.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8fc6b97159b34268859715e" + }, + { + "name": "ons.tenure.owned_outright@W06000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13756.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecc937d3eb66dda3525664b9" + }, + { + "name": "ons.tenure.owned_outright@W06000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22214.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_07c579dc1fee051f5bbcf34e" + }, + { + "name": "ons.tenure.owned_outright@W06000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22759.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4fd847e7f77772f354f1a8a" + }, + { + "name": "ons.tenure.owned_outright@W06000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16828.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e4274a9098b0af4b5ac747b" + }, + { + "name": "ons.tenure.owned_outright@W06000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25945.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ebd9c45c068cc4a1390350d" + }, + { + "name": "ons.tenure.owned_outright@W06000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19947.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_15b002a0e96cc234d4b9e039" + }, + { + "name": "ons.tenure.owned_outright@W06000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14798.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_63857b0bbe38860ad09cfe42" + }, + { + "name": "ons.tenure.owned_outright@W06000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24647.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aca472e97af4a699a4ad56f" + }, + { + "name": "ons.tenure.owned_outright@W06000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35629.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f45ae04c19cdf945b256461" + }, + { + "name": "ons.tenure.owned_outright@W06000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37162.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0c6f7298b3f3e1b92000a158" + }, + { + "name": "ons.tenure.owned_outright@W06000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23850.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_72f8bbffe87964cb607cbd8d" + }, + { + "name": "ons.tenure.owned_outright@W06000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23670.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c41a127312829cc7f179b76" + }, + { + "name": "ons.tenure.owned_outright@W06000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22052.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58dc1fe3d065b0198a9b1793" + }, + { + "name": "ons.tenure.owned_outright@W06000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42072.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_adb75a1c7c3ad678c9ee6caa" + }, + { + "name": "ons.tenure.owned_outright@W06000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39686.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_421bbb64b38faa8df1eb9a42" + }, + { + "name": "ons.tenure.owned_outright@W06000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27449.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_47c4fe703c80b0c16ee5b756" + }, + { + "name": "ons.tenure.owned_outright@W06000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10564.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_05bdf22ac3df3b44e1cf0507" + }, + { + "name": "ons.tenure.owned_outright@W06000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13952.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d97a324757b02deef7bb380e" + }, + { + "name": "ons.tenure.owned_outright@W06000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17738.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c514b2b2db2cad31e6cddb26" + }, + { + "name": "ons.tenure.owned_outright@W06000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20172.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3ac6d87b14a0f28baf0b0d70" + }, + { + "name": "ons.tenure.owned_outright@W06000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28098.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db9110dc4d6e1f659a95b473" + }, + { + "name": "ons.tenure.owned_outright@W06000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9101.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8110b271000e9aa4e2c7fd9e" + } + ] + } + } + }, + "ons.tenure.owned_mortgage": { + "status": "active", + "geography_levels": { + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.tenure.owned_mortgage@E06000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11073.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d81452d995b9873505981009" + }, + { + "name": "ons.tenure.owned_mortgage@E06000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15913.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6bf4669cb646dee2492ea9e" + }, + { + "name": "ons.tenure.owned_mortgage@E06000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17205.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_74c5e23ace21553b6805f5a7" + }, + { + "name": "ons.tenure.owned_mortgage@E06000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27686.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6432d3ddd23b0895d9d25839" + }, + { + "name": "ons.tenure.owned_mortgage@E06000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14474.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dfa07f8814f493e6a515b438" + }, + { + "name": "ons.tenure.owned_mortgage@E06000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16744.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_394bb2d4a76a7d935879db79" + }, + { + "name": "ons.tenure.owned_mortgage@E06000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30246.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f30e543dfa9b5b5035189af4" + }, + { + "name": "ons.tenure.owned_mortgage@E06000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15958.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_839833d213de5e887d9cf836" + }, + { + "name": "ons.tenure.owned_mortgage@E06000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16886.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_008597f2364f787b16ad06c7" + }, + { + "name": "ons.tenure.owned_mortgage@E06000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29046.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3896449cd59abd9553abc76" + }, + { + "name": "ons.tenure.owned_mortgage@E06000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45518.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5383e16ec543ce1feb5c5155" + }, + { + "name": "ons.tenure.owned_mortgage@E06000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20211.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1982b70666aa60ecbf58c3bf" + }, + { + "name": "ons.tenure.owned_mortgage@E06000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21567.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d350256bea8557da9347eefa" + }, + { + "name": "ons.tenure.owned_mortgage@E06000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24182.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_99546a57649b928481ad92ee" + }, + { + "name": "ons.tenure.owned_mortgage@E06000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28985.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fa4c4229eafa8d32a7ea553" + }, + { + "name": "ons.tenure.owned_mortgage@E06000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28106.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7673d087a10e4c8885f1f7ef" + }, + { + "name": "ons.tenure.owned_mortgage@E06000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4555.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e573b33a5c70fefff38f37b8" + }, + { + "name": "ons.tenure.owned_mortgage@E06000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28375.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e2d4eed61dbc8d410d7bdf7" + }, + { + "name": "ons.tenure.owned_mortgage@E06000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19893.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9b543e7dc784c3361d7abb5" + }, + { + "name": "ons.tenure.owned_mortgage@E06000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22776.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e475cf512e5fdba42a5d54e" + }, + { + "name": "ons.tenure.owned_mortgage@E06000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29095.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_60b4269856515eb3e3cbe188" + }, + { + "name": "ons.tenure.owned_mortgage@E06000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22878.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3179914c1e44e0d0259e986c" + }, + { + "name": "ons.tenure.owned_mortgage@E06000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 55221.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f173616cd48008b94c7028c" + }, + { + "name": "ons.tenure.owned_mortgage@E06000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30532.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f7440df9cb724252e6af158" + }, + { + "name": "ons.tenure.owned_mortgage@E06000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42272.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_33dd3f6a16ad6f6649675f68" + }, + { + "name": "ons.tenure.owned_mortgage@E06000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32255.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5f7d2f49870472241c4d848" + }, + { + "name": "ons.tenure.owned_mortgage@E06000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15699.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_01e174e5fa1a983198d07c27" + }, + { + "name": "ons.tenure.owned_mortgage@E06000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33075.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2eb7419406bd5de69583ca2e" + }, + { + "name": "ons.tenure.owned_mortgage@E06000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24624.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_10b22607d2e76b36dc851824" + }, + { + "name": "ons.tenure.owned_mortgage@E06000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22281.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebf4f54b18972b7493d89f77" + }, + { + "name": "ons.tenure.owned_mortgage@E06000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23301.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f2310b9d6c3396e1a60ebd4" + }, + { + "name": "ons.tenure.owned_mortgage@E06000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25108.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbf1a4572d144d2e38335e17" + }, + { + "name": "ons.tenure.owned_mortgage@E06000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37734.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e12e46e24c71f157cea0ab41" + }, + { + "name": "ons.tenure.owned_mortgage@E06000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19053.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e43d003c88ec65217bd84013" + }, + { + "name": "ons.tenure.owned_mortgage@E06000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21828.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7348dc8b767636af5081d725" + }, + { + "name": "ons.tenure.owned_mortgage@E06000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18707.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_66d23dd0c80f6e88ddb25faf" + }, + { + "name": "ons.tenure.owned_mortgage@E06000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15186.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_775dd6232656317b5c069f59" + }, + { + "name": "ons.tenure.owned_mortgage@E06000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19913.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41e932ca8276d6f90fff2a1" + }, + { + "name": "ons.tenure.owned_mortgage@E06000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27647.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_22ca8f19226630a291b95a13" + }, + { + "name": "ons.tenure.owned_mortgage@E06000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34752.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_84681aa52e7d6d68fea97460" + }, + { + "name": "ons.tenure.owned_mortgage@E06000043", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31973.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d600b73c5a5b9736e1d006f8" + }, + { + "name": "ons.tenure.owned_mortgage@E06000044", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23066.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ef4bff930521fbfd6acf9b2" + }, + { + "name": "ons.tenure.owned_mortgage@E06000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25789.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9143e84148e47c6d5927a4d2" + }, + { + "name": "ons.tenure.owned_mortgage@E06000046", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15083.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b090c7c2edddb7d7833b734" + }, + { + "name": "ons.tenure.owned_mortgage@E06000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 65775.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_206d71a6087c01985c23ea5d" + }, + { + "name": "ons.tenure.owned_mortgage@E06000049", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 56455.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0722df31442d063db8b25cc7" + }, + { + "name": "ons.tenure.owned_mortgage@E06000050", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48336.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_698fbefcb8de30123b163e0c" + }, + { + "name": "ons.tenure.owned_mortgage@E06000051", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36522.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f36f328e9e04bdb6957578c" + }, + { + "name": "ons.tenure.owned_mortgage@E06000052", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 61299.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_360c12e1c7869b25c96ca378" + }, + { + "name": "ons.tenure.owned_mortgage@E06000053", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 98.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b84cb4df872e96ecab91a96e" + }, + { + "name": "ons.tenure.owned_mortgage@E06000054", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 63547.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_232725da06721f2b44fab9db" + }, + { + "name": "ons.tenure.owned_mortgage@E06000055", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23605.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_733e5128b229a482bc767565" + }, + { + "name": "ons.tenure.owned_mortgage@E06000056", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45305.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_898b07bfa53ad71baa2f0fc2" + }, + { + "name": "ons.tenure.owned_mortgage@E06000057", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39104.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e52f3daa708ecdfa7346cc26" + }, + { + "name": "ons.tenure.owned_mortgage@E06000058", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49485.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d31fdb5cf3892d68c613a2d" + }, + { + "name": "ons.tenure.owned_mortgage@E06000059", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41593.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_37aa18d24f1990c526515ddb" + }, + { + "name": "ons.tenure.owned_mortgage@E06000060", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 77026.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e0eb29a8d84848e8d6806db" + }, + { + "name": "ons.tenure.owned_mortgage@E06000061", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 49245.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_de8abfa64ca38bc5d67e2252" + }, + { + "name": "ons.tenure.owned_mortgage@E06000062", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 58173.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6baababcfc39b1336d875880" + }, + { + "name": "ons.tenure.owned_mortgage@E06000063", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34745.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_873c7f835460c67a8cccf48c" + }, + { + "name": "ons.tenure.owned_mortgage@E06000064", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27786.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_33d27b11083dfecc9c50168b" + }, + { + "name": "ons.tenure.owned_mortgage@E06000065", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 74473.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff39f2d515ef2e48e64e7a27" + }, + { + "name": "ons.tenure.owned_mortgage@E06000066", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 67815.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bea8f2ef947c4977ff70164c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10234.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_73cc7e78bf59c6f7f7735d5e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11822.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_93ae644f87a08a893f3ca6dd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12820.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb0226fbf44448007b77aced" + }, + { + "name": "ons.tenure.owned_mortgage@E07000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25402.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4696df14f48f510ca5e8abbd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21736.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dffb27a1a72b789d469a2be7" + }, + { + "name": "ons.tenure.owned_mortgage@E07000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17474.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d027a83cc815174e1240f896" + }, + { + "name": "ons.tenure.owned_mortgage@E07000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10873.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c49275860cf2c802964e5c3b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12824.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0fc6e3ff947863a9e675b21d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7824.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_82f702d927386eff156d078e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16285.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_25746adc1bba832802d36b84" + }, + { + "name": "ons.tenure.owned_mortgage@E07000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12562.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d859e82bbb956480255de36" + }, + { + "name": "ons.tenure.owned_mortgage@E07000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13467.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e5ef9d944b78af6cb34a521a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17321.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a9fe45c378f6c806f4d74a3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae2f98b54bdc4409049c7f25" + }, + { + "name": "ons.tenure.owned_mortgage@E07000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13703.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0023fbd93bc2cd6d5483eda1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9988.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b2d5e1e20e0a574165a6396" + }, + { + "name": "ons.tenure.owned_mortgage@E07000043", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11025.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9710396ea0ddc7ad321b1b6c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000044", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10008.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ad72a7ed09f4aaca8f74a1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16770.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_143f8ad7bf00cce7dff686bd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000046", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7316.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_069ad50e8d5ee9ee9c38e35e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6043.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a04f636bd9223ddf47bf8879" + }, + { + "name": "ons.tenure.owned_mortgage@E07000061", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10924.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_992804fdf6a210908fac58a3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000062", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10243.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba277798f1ff9bd553b9fd53" + }, + { + "name": "ons.tenure.owned_mortgage@E07000063", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12549.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6734cbf4a9763cca3fe6431e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000064", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10210.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_54c109cb59ea1e4b4d0c8cff" + }, + { + "name": "ons.tenure.owned_mortgage@E07000065", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22033.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_53a7f522133db7051873e95b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000066", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25268.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_690d889841786f766a18129c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000067", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21828.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e87cd7798c67dcaac60ce9fe" + }, + { + "name": "ons.tenure.owned_mortgage@E07000068", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11461.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2ef288ee1b2e10a18c9f629" + }, + { + "name": "ons.tenure.owned_mortgage@E07000069", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13000.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b5260217b09e65b795c7084" + }, + { + "name": "ons.tenure.owned_mortgage@E07000070", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25691.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0ce5d8e1b1c6a98dad1fecdb" + }, + { + "name": "ons.tenure.owned_mortgage@E07000071", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25352.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0d07c3ad414897e39940c21" + }, + { + "name": "ons.tenure.owned_mortgage@E07000072", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18807.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4f4286005a64ed7f46e3b45" + }, + { + "name": "ons.tenure.owned_mortgage@E07000073", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11622.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ceeb29c23b7df1c3c11b30d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000074", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9034.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a002302d365aa2f03da7241" + }, + { + "name": "ons.tenure.owned_mortgage@E07000075", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13102.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_255290030803555e3080b6e3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000076", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16704.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eb970c76f34eb8f74e7b7ab" + }, + { + "name": "ons.tenure.owned_mortgage@E07000077", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12909.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc0207987c2e4d3048bdf9b0" + }, + { + "name": "ons.tenure.owned_mortgage@E07000078", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15273.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da6079785357f0b24d06590c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000079", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10260.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1becd93a5e35c2a783f971b9" + }, + { + "name": "ons.tenure.owned_mortgage@E07000080", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10552.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_140a888dcbb39c843a8ff7b2" + }, + { + "name": "ons.tenure.owned_mortgage@E07000081", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17869.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_072e0d065af2bfe762764113" + }, + { + "name": "ons.tenure.owned_mortgage@E07000082", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16532.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fc949ff100900fb7434b125" + }, + { + "name": "ons.tenure.owned_mortgage@E07000083", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12975.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5e14b5c9e7849f6d8f840ee" + }, + { + "name": "ons.tenure.owned_mortgage@E07000084", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26170.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d2a0cb21ac0cf522fe0d2ec" + }, + { + "name": "ons.tenure.owned_mortgage@E07000085", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17391.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_735d3b2ab5bab7036a271f2d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000086", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20379.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cd5631e17d447dcb3b4a4af" + }, + { + "name": "ons.tenure.owned_mortgage@E07000087", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17037.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_afd32d892c856133c956cb10" + }, + { + "name": "ons.tenure.owned_mortgage@E07000088", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10535.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1e4e594b28ec171f03b7a690" + }, + { + "name": "ons.tenure.owned_mortgage@E07000089", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15304.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb815e07ee9c7f887ae90120" + }, + { + "name": "ons.tenure.owned_mortgage@E07000090", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15526.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f194e51bd6b471a4b3d2ce9b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000091", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21371.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58acf60edeafff7464407628" + }, + { + "name": "ons.tenure.owned_mortgage@E07000092", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13795.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5584f5384224d2d50a8bbed" + }, + { + "name": "ons.tenure.owned_mortgage@E07000093", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17974.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_60d29a27af463458917ee5b5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000094", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15270.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ca1bcd7643ba5caefd476cb" + }, + { + "name": "ons.tenure.owned_mortgage@E07000095", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14179.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc55f92aea7551727a8c4e76" + }, + { + "name": "ons.tenure.owned_mortgage@E07000096", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20937.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_413be396caecf0db947e6f61" + }, + { + "name": "ons.tenure.owned_mortgage@E07000098", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14172.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_440d7c0d38ab74aa1eff48e0" + }, + { + "name": "ons.tenure.owned_mortgage@E07000099", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17828.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da6816068edb340f3eefa11d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000102", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13334.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e31ffe3a4cf72e78ddb5911" + }, + { + "name": "ons.tenure.owned_mortgage@E07000103", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12268.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c583beb82eb1fb7dd899afd7" + }, + { + "name": "ons.tenure.owned_mortgage@E07000105", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17565.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2932a3001caa43deebd28bb0" + }, + { + "name": "ons.tenure.owned_mortgage@E07000106", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16836.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb65427fad94e70a7d0cceb1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000107", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17694.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d03cc9613f80fd43908d9ba" + }, + { + "name": "ons.tenure.owned_mortgage@E07000108", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13725.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_15acd0aad91d51c0a0e3f963" + }, + { + "name": "ons.tenure.owned_mortgage@E07000109", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12942.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c16301bc87eb50e69d91bc7e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000110", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23799.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e5df5d4e436175d1aaed10e" + }, + { + "name": "ons.tenure.owned_mortgage@E07000111", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16297.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d42b6cbad6c7abfaecd4388" + }, + { + "name": "ons.tenure.owned_mortgage@E07000112", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12841.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e411afd19796a22c353f212f" + }, + { + "name": "ons.tenure.owned_mortgage@E07000113", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19727.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9e596647caea449a96a9cfc" + }, + { + "name": "ons.tenure.owned_mortgage@E07000114", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15431.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_64003d59d40f79b63285ef20" + }, + { + "name": "ons.tenure.owned_mortgage@E07000115", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19126.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d4e5a8fb5a2c92c4a3d9e59" + }, + { + "name": "ons.tenure.owned_mortgage@E07000116", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15069.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2a31ee6706fafa2d4d4cfeb" + }, + { + "name": "ons.tenure.owned_mortgage@E07000117", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10785.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6bd6593bfed068ff7e2964a5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000118", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17598.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9bff5327aeb6f158fca114b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000119", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10575.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4434bf1bfa14c0bf81dc84d1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000120", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10027.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_52b3a9a5678f1cf91b4b7fcc" + }, + { + "name": "ons.tenure.owned_mortgage@E07000121", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17114.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ece8da490580d36ae835ea0" + }, + { + "name": "ons.tenure.owned_mortgage@E07000122", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10599.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e159846b2faf1b288db3693b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000123", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16524.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec6e57e44ce9d0bb00c9bcf" + }, + { + "name": "ons.tenure.owned_mortgage@E07000124", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8533.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a5755eec5b3391e03185056" + }, + { + "name": "ons.tenure.owned_mortgage@E07000125", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10190.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f90323d53855828ffda7cdcc" + }, + { + "name": "ons.tenure.owned_mortgage@E07000126", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17519.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7eb916a1507dea255e5be44" + }, + { + "name": "ons.tenure.owned_mortgage@E07000127", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15337.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_19a3bc5555e12999fc52f502" + }, + { + "name": "ons.tenure.owned_mortgage@E07000128", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14539.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8055c414f78629c93ae52442" + }, + { + "name": "ons.tenure.owned_mortgage@E07000129", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16150.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_62b5416f520a28cbf666b276" + }, + { + "name": "ons.tenure.owned_mortgage@E07000130", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23916.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5509a7431dbbe46b97281af4" + }, + { + "name": "ons.tenure.owned_mortgage@E07000131", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14148.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc8ba5fcef1fda15e2cf4bce" + }, + { + "name": "ons.tenure.owned_mortgage@E07000132", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17074.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea62f6b8e7fcba34a0b13e7d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000133", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6871.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c542822c8a1fdabe452a5910" + }, + { + "name": "ons.tenure.owned_mortgage@E07000134", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15690.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_511299bab0de10182d5a3575" + }, + { + "name": "ons.tenure.owned_mortgage@E07000135", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7304.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2da031017fe49e1e79ce95b5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000136", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7338.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d8338e3eae414ed81208d6a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000137", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13738.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e3a5c7cb957790fced26462" + }, + { + "name": "ons.tenure.owned_mortgage@E07000138", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10374.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7908b2da6f1da3a40ab3940b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000139", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16724.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f32c17e38cbfea0f1c9988fd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000140", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11717.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7449b9a13c7fe767bf5b86a3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000141", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19155.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc05c75ec6e2ca569d18fbb7" + }, + { + "name": "ons.tenure.owned_mortgage@E07000142", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12206.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4c23700bd867dae462de4549" + }, + { + "name": "ons.tenure.owned_mortgage@E07000143", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16335.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_730d48e563678e6358317947" + }, + { + "name": "ons.tenure.owned_mortgage@E07000144", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18088.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b881cb8ee20bad8f737308a1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000145", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10538.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd8574acc132271409e0f1d3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000146", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17150.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d071f4ff142bfafd3dc498aa" + }, + { + "name": "ons.tenure.owned_mortgage@E07000147", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9701.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba0e768d8543bcd9be6a3b41" + }, + { + "name": "ons.tenure.owned_mortgage@E07000148", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12793.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e25888579886651a2f96062a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000149", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19175.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d031a966743d0ed97b0b1598" + }, + { + "name": "ons.tenure.owned_mortgage@E07000170", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17266.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_713368ce1700ef205a55bcdd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000171", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15672.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ada5cb3137eb05a741d88b7c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000172", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15153.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bb714f1185dc5167218871a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000173", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17417.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_442e614f9166953404b635ee" + }, + { + "name": "ons.tenure.owned_mortgage@E07000174", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14088.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f03f2f4acf92d961640b5aec" + }, + { + "name": "ons.tenure.owned_mortgage@E07000175", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16268.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c101ac7dc791af80c7bd8702" + }, + { + "name": "ons.tenure.owned_mortgage@E07000176", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17253.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_54bad173d0f51b6595e272d7" + }, + { + "name": "ons.tenure.owned_mortgage@E07000177", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21408.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfce925fca4b19f70a56f7a0" + }, + { + "name": "ons.tenure.owned_mortgage@E07000178", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11042.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a7dcdec787436de8bbb56c2" + }, + { + "name": "ons.tenure.owned_mortgage@E07000179", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20015.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_07475bff2436f7be337f2ca8" + }, + { + "name": "ons.tenure.owned_mortgage@E07000180", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18398.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b73fe402d0cdc1db5b38e2f" + }, + { + "name": "ons.tenure.owned_mortgage@E07000181", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14082.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_498b8c5e7b2d787f6b4a43cd" + }, + { + "name": "ons.tenure.owned_mortgage@E07000192", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14438.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f5ec68e68e5f4f2ff42b0d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000193", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15583.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1d3f55440a0d9c60fcd49a5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000194", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14528.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7187fec861e01752f194fe34" + }, + { + "name": "ons.tenure.owned_mortgage@E07000195", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15716.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f29f7599cfb815ef4e17f4b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000196", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14049.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_df0982168232fabd3629b7ac" + }, + { + "name": "ons.tenure.owned_mortgage@E07000197", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab6463bf13c102b7958015e3" + }, + { + "name": "ons.tenure.owned_mortgage@E07000198", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12740.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd020e6e726df5aec1cdb8aa" + }, + { + "name": "ons.tenure.owned_mortgage@E07000199", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11070.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2a3e2faf4441cab8fd500d3d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000200", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11098.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_094fd9d676c38578d365856d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000202", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16182.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4049277bb8c9b5a1ecf7a5a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000203", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13607.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_62bfc84382151a0edb1b5bcc" + }, + { + "name": "ons.tenure.owned_mortgage@E07000207", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20832.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c869e4100d51d022b5bcc7ac" + }, + { + "name": "ons.tenure.owned_mortgage@E07000208", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11803.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_befe45d00a25731864ce6ef9" + }, + { + "name": "ons.tenure.owned_mortgage@E07000209", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17717.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_68f758dcc14de873d8566671" + }, + { + "name": "ons.tenure.owned_mortgage@E07000210", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12053.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_82dc688f570391cb4855df67" + }, + { + "name": "ons.tenure.owned_mortgage@E07000211", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22374.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a43dbed3b7ce94c88270eb2" + }, + { + "name": "ons.tenure.owned_mortgage@E07000212", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11710.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8bd82ae49486db56798bbe7" + }, + { + "name": "ons.tenure.owned_mortgage@E07000213", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14489.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fa90b4ce27de449d9a83e05" + }, + { + "name": "ons.tenure.owned_mortgage@E07000214", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c41f7da9066db7902ad69b37" + }, + { + "name": "ons.tenure.owned_mortgage@E07000215", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13203.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bda9df2f5825436e9b59e07" + }, + { + "name": "ons.tenure.owned_mortgage@E07000216", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17598.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c7d271dad0cfad432ef70d1" + }, + { + "name": "ons.tenure.owned_mortgage@E07000217", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14280.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c4aade9adf97360ed2c98f2" + }, + { + "name": "ons.tenure.owned_mortgage@E07000218", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8856.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_73ab05ef2810384daa419dcc" + }, + { + "name": "ons.tenure.owned_mortgage@E07000219", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18675.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3b466fe26d0c613f3d178897" + }, + { + "name": "ons.tenure.owned_mortgage@E07000220", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16012.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c7b46b04b6004b0ec4a4964" + }, + { + "name": "ons.tenure.owned_mortgage@E07000221", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_477654f1c6b2ab80f2c8e9db" + }, + { + "name": "ons.tenure.owned_mortgage@E07000222", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19541.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7c0f0d0d6c1382b374c1370" + }, + { + "name": "ons.tenure.owned_mortgage@E07000223", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8835.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1bb4c3faa657acbd699dc3d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000224", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19588.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_71cf1229a9f9f774b6f0bc4d" + }, + { + "name": "ons.tenure.owned_mortgage@E07000225", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12657.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a11d5fb0d05d1f784d8fff" + }, + { + "name": "ons.tenure.owned_mortgage@E07000226", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14423.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bd3bb3ebd2822a240f7bb70" + }, + { + "name": "ons.tenure.owned_mortgage@E07000227", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20583.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4298525b731ee20b1e3c1d14" + }, + { + "name": "ons.tenure.owned_mortgage@E07000228", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22754.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f744a8e2e100c384a8b1a6f" + }, + { + "name": "ons.tenure.owned_mortgage@E07000229", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15388.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d730a426e9e91078135cd025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000234", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14511.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_364c514cc61ceb218485d67c" + }, + { + "name": "ons.tenure.owned_mortgage@E07000235", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9020.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4ef251b35e4b7915b3bdf4a" + }, + { + "name": "ons.tenure.owned_mortgage@E07000236", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12184.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2a002da2b8085866bfa1a69" + }, + { + "name": "ons.tenure.owned_mortgage@E07000237", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13142.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_594ebf8573151c8fd2df81bf" + }, + { + "name": "ons.tenure.owned_mortgage@E07000238", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16997.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1233c92e42000d1c72bb0b5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000239", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12681.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccfd300b5ce73210ce4b832f" + }, + { + "name": "ons.tenure.owned_mortgage@E07000240", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21237.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_87bbc3bf2007d32b9d820d07" + }, + { + "name": "ons.tenure.owned_mortgage@E07000241", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13465.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_154bc4aaa87f7f2ba464ca4b" + }, + { + "name": "ons.tenure.owned_mortgage@E07000242", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21870.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_07a6e89a883b09691aab0cd5" + }, + { + "name": "ons.tenure.owned_mortgage@E07000243", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11282.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e81ab4aa0fde6db741e0a3ad" + }, + { + "name": "ons.tenure.owned_mortgage@E07000244", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27266.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cc1c7b3f2468dba85527737" + }, + { + "name": "ons.tenure.owned_mortgage@E07000245", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20991.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_37e8032cf6a63a14c7f52ef1" + }, + { + "name": "ons.tenure.owned_mortgage@E08000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33608.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_46fec83e00fce44165fd91dc" + }, + { + "name": "ons.tenure.owned_mortgage@E08000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26240.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c01e16457bdb7f633c41e0fd" + }, + { + "name": "ons.tenure.owned_mortgage@E08000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 44502.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1ed4e348b48a31c6e67530ba" + }, + { + "name": "ons.tenure.owned_mortgage@E08000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26845.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_47dbba681090ec3a67b76e71" + }, + { + "name": "ons.tenure.owned_mortgage@E08000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26966.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1d661275374786ced9435fb0" + }, + { + "name": "ons.tenure.owned_mortgage@E08000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28774.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2bac78bf1b26e41a3c1a2a96" + }, + { + "name": "ons.tenure.owned_mortgage@E08000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43527.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3452ad1ecb4cca4aa5f6f19c" + }, + { + "name": "ons.tenure.owned_mortgage@E08000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30158.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5dd4fa16f3d4db25e1f085a" + }, + { + "name": "ons.tenure.owned_mortgage@E08000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33238.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da190eaa8cdea887ee2fd163" + }, + { + "name": "ons.tenure.owned_mortgage@E08000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 45766.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b4e5c504bfdc0854e1d5689" + }, + { + "name": "ons.tenure.owned_mortgage@E08000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20384.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_54e8dc1a6a2f00a222d3a03e" + }, + { + "name": "ons.tenure.owned_mortgage@E08000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46648.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d1955be772fc250d176370c8" + }, + { + "name": "ons.tenure.owned_mortgage@E08000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24026.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80d49a34beacb9256c7df6a5" + }, + { + "name": "ons.tenure.owned_mortgage@E08000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35565.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ab370e7c25929995fffef33" + }, + { + "name": "ons.tenure.owned_mortgage@E08000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 41781.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_635272d091015f21c54acac4" + }, + { + "name": "ons.tenure.owned_mortgage@E08000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31733.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e785251306260f137a8cd1a" + }, + { + "name": "ons.tenure.owned_mortgage@E08000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39002.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_49ab76fe007266aff585189b" + }, + { + "name": "ons.tenure.owned_mortgage@E08000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34178.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e253d41eb0789ea89435d01" + }, + { + "name": "ons.tenure.owned_mortgage@E08000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 63274.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e9e3c662807b848a3ecbfc4" + }, + { + "name": "ons.tenure.owned_mortgage@E08000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29769.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7abdc2cc47532b310da261d0" + }, + { + "name": "ons.tenure.owned_mortgage@E08000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30233.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9a3d14482661e77cce3f799" + }, + { + "name": "ons.tenure.owned_mortgage@E08000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18152.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4700069f8176e37b16008750" + }, + { + "name": "ons.tenure.owned_mortgage@E08000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32680.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c74ea768d90cf54d05ce5792" + }, + { + "name": "ons.tenure.owned_mortgage@E08000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 108046.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1616c5f755ce63698921ed8d" + }, + { + "name": "ons.tenure.owned_mortgage@E08000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 36784.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db3d5653739729644e1830a" + }, + { + "name": "ons.tenure.owned_mortgage@E08000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39920.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_87f93f15e4415698d3e0b79b" + }, + { + "name": "ons.tenure.owned_mortgage@E08000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34080.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58bcb23d5a64ccdc335ce300" + }, + { + "name": "ons.tenure.owned_mortgage@E08000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29584.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_850c11e5085821891b99c782" + }, + { + "name": "ons.tenure.owned_mortgage@E08000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30293.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f52278993d04c43950b44df" + }, + { + "name": "ons.tenure.owned_mortgage@E08000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26465.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80e1b994d9072a5fc62ff351" + }, + { + "name": "ons.tenure.owned_mortgage@E08000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 62698.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f94683527dcaccdfee490f67" + }, + { + "name": "ons.tenure.owned_mortgage@E08000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27170.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bde6d18ee2e843bc1e779a5" + }, + { + "name": "ons.tenure.owned_mortgage@E08000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 54256.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1cc0a57ce89bc3a0cd48efa" + }, + { + "name": "ons.tenure.owned_mortgage@E08000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 99132.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_43e84d82941409d6068f73db" + }, + { + "name": "ons.tenure.owned_mortgage@E08000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 47260.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0f626b6c46222ecf92a3cb61" + }, + { + "name": "ons.tenure.owned_mortgage@E08000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24448.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c381e152e6445d160bed5ae3" + }, + { + "name": "ons.tenure.owned_mortgage@E09000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 680.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f964e4987cd295d4bcc6d59" + }, + { + "name": "ons.tenure.owned_mortgage@E09000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20189.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6e46271762507dbec1c8196" + }, + { + "name": "ons.tenure.owned_mortgage@E09000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 39324.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_49296cdf247d8c540659c13e" + }, + { + "name": "ons.tenure.owned_mortgage@E09000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 34207.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4500ed0c87284227e5a62567" + }, + { + "name": "ons.tenure.owned_mortgage@E09000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21660.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf1b2a0060d9542fccc4b43c" + }, + { + "name": "ons.tenure.owned_mortgage@E09000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48234.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9e6b95469ae0e49687021480" + }, + { + "name": "ons.tenure.owned_mortgage@E09000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12727.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e28a4bd40266bb0af620cdb" + }, + { + "name": "ons.tenure.owned_mortgage@E09000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 46675.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_acb861c583c846a6235507c6" + }, + { + "name": "ons.tenure.owned_mortgage@E09000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31539.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa2c83fac7711df90868e4d5" + }, + { + "name": "ons.tenure.owned_mortgage@E09000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31607.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd29db1b0dbb632f52c3b893" + }, + { + "name": "ons.tenure.owned_mortgage@E09000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28454.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_303c9e08026aaf936365dc38" + }, + { + "name": "ons.tenure.owned_mortgage@E09000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15803.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffcf5535fdafb99a41596df0" + }, + { + "name": "ons.tenure.owned_mortgage@E09000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13607.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3070c3a1ee428ed2d669ac21" + }, + { + "name": "ons.tenure.owned_mortgage@E09000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20975.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6df1a8fb9eb9f617275dfc38" + }, + { + "name": "ons.tenure.owned_mortgage@E09000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25743.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_02110dc8e81da85cf6156a20" + }, + { + "name": "ons.tenure.owned_mortgage@E09000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 35461.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e6278b1c2796a247d68f965" + }, + { + "name": "ons.tenure.owned_mortgage@E09000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32837.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a22b86ccee6c6bccbaf49d76" + }, + { + "name": "ons.tenure.owned_mortgage@E09000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25283.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb409dbec0cc4a5fd7afebb3" + }, + { + "name": "ons.tenure.owned_mortgage@E09000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14589.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a2db5a8a007939f358a4dfc" + }, + { + "name": "ons.tenure.owned_mortgage@E09000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7890.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d73bc5c3d6880dac6e483a76" + }, + { + "name": "ons.tenure.owned_mortgage@E09000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21418.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_39d2f13d50f4bccd443da616" + }, + { + "name": "ons.tenure.owned_mortgage@E09000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28289.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2459e22cd4db4494af35fb07" + }, + { + "name": "ons.tenure.owned_mortgage@E09000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 32377.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_410a9bbaf0fe2bfd45df9427" + }, + { + "name": "ons.tenure.owned_mortgage@E09000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24773.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5324d3e70ba78da2c494fd6f" + }, + { + "name": "ons.tenure.owned_mortgage@E09000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20884.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_11a5ecff40c1505530ff5686" + }, + { + "name": "ons.tenure.owned_mortgage@E09000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 31265.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffb25fc0abbb0a2369dd9c1c" + }, + { + "name": "ons.tenure.owned_mortgage@E09000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 25826.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ce1b7b1822c23516eddcc63" + }, + { + "name": "ons.tenure.owned_mortgage@E09000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23870.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdbeda61a576e8f81e7bf40a" + }, + { + "name": "ons.tenure.owned_mortgage@E09000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29647.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93720c54a3c96db91f546b7" + }, + { + "name": "ons.tenure.owned_mortgage@E09000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18459.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_33024709107d6031949ed0ce" + }, + { + "name": "ons.tenure.owned_mortgage@E09000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29539.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1b6216fa26cff0b134eb56f2" + }, + { + "name": "ons.tenure.owned_mortgage@E09000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 33915.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a8ac68d78ae0ad79be08313" + }, + { + "name": "ons.tenure.owned_mortgage@E09000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10749.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_06b617b24932602adba55b81" + }, + { + "name": "ons.tenure.owned_mortgage@N09000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21305.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f617719554f6a60f9a0453e" + }, + { + "name": "ons.tenure.owned_mortgage@N09000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27167.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba7996b03c290991a87f71fd" + }, + { + "name": "ons.tenure.owned_mortgage@N09000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37771.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eea0582e995df50940418d39" + }, + { + "name": "ons.tenure.owned_mortgage@N09000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15106.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7e3c042edfd9275433e2aa0" + }, + { + "name": "ons.tenure.owned_mortgage@N09000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16015.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_516017df696783af79c8a7f4" + }, + { + "name": "ons.tenure.owned_mortgage@N09000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11676.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_35279737f7aed3af4fac5287" + }, + { + "name": "ons.tenure.owned_mortgage@N09000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22164.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7edd161acaf13381c74ea053" + }, + { + "name": "ons.tenure.owned_mortgage@N09000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17278.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a8bc56901473aa7a800bfc7" + }, + { + "name": "ons.tenure.owned_mortgage@N09000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16102.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7576a085d6d812b8b9271cd1" + }, + { + "name": "ons.tenure.owned_mortgage@N09000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20440.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d85ff86368a66035c33c8ccd" + }, + { + "name": "ons.tenure.owned_mortgage@N09000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22832.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_45d879b99727025cc42c2f90" + }, + { + "name": "ons.tenure.owned_mortgage@S12000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6873.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1555a643e9b4c31cd2d6d21b" + }, + { + "name": "ons.tenure.owned_mortgage@S12000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15098.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_acd745c83bc7ec0a0abc6a9a" + }, + { + "name": "ons.tenure.owned_mortgage@S12000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16101.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_6419656c61fbc3060509fc89" + }, + { + "name": "ons.tenure.owned_mortgage@S12000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 15276.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_56ca362f7cf263ee244cfe02" + }, + { + "name": "ons.tenure.owned_mortgage@S12000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14911.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d5b4953815e420f956559fc" + }, + { + "name": "ons.tenure.owned_mortgage@S12000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2711.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_0a1be9cfdc4ab11f74830d60" + }, + { + "name": "ons.tenure.owned_mortgage@S12000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 23177.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f38559cfb5f002d665d95ffc" + }, + { + "name": "ons.tenure.owned_mortgage@S12000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 27943.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_774ae7fe7e2e4a6eac2a6336" + }, + { + "name": "ons.tenure.owned_mortgage@S12000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9991.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_039c3816dc4f10b54e24aa19" + }, + { + "name": "ons.tenure.owned_mortgage@S12000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14372.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_84f03c6619373af8895dca3a" + }, + { + "name": "ons.tenure.owned_mortgage@S12000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11325.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_130736134094462a3b5b8c9e" + }, + { + "name": "ons.tenure.owned_mortgage@S12000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16418.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_2617a9f6675da09760b153f4" + }, + { + "name": "ons.tenure.owned_mortgage@S12000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2301.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa2dacfc78dcc6bbafd0b392" + }, + { + "name": "ons.tenure.owned_mortgage@S12000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12648.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9896a51f0f6aed94f2b3bf6" + }, + { + "name": "ons.tenure.owned_mortgage@S12000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2547.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_721148a385bc196246d05f50" + }, + { + "name": "ons.tenure.owned_mortgage@S12000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14348.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c17c9469c69e6b5997e34445" + }, + { + "name": "ons.tenure.owned_mortgage@S12000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 50607.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c933e71921e8f9e1cdd7e66f" + }, + { + "name": "ons.tenure.owned_mortgage@S12000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11536.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_343072df3aad80eec3c92040" + }, + { + "name": "ons.tenure.owned_mortgage@S12000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29208.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_72d065c909c302cddc530dba" + }, + { + "name": "ons.tenure.owned_mortgage@S12000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37782.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2d889e3eba10095f3e7169f" + }, + { + "name": "ons.tenure.owned_mortgage@S12000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9464.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_cda68cd6ea39eb7ae5ae5ce8" + }, + { + "name": "ons.tenure.owned_mortgage@S12000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 68208.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_d75e5b97399ab1d7a6dfb39d" + }, + { + "name": "ons.tenure.owned_mortgage@S12000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28286.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_761df7f06da4d054a03a68aa" + }, + { + "name": "ons.tenure.owned_mortgage@S12000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11379.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c84d7151c83fcb71f0f2e1a" + }, + { + "name": "ons.tenure.owned_mortgage@S12000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 26995.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1647bda653da13ceba6f16d3" + }, + { + "name": "ons.tenure.owned_mortgage@S12000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14516.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_cfba8e13a36c54c1b8346dcf" + }, + { + "name": "ons.tenure.owned_mortgage@S12000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16244.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_b38ddff1e0733fc1383a8b13" + }, + { + "name": "ons.tenure.owned_mortgage@S12000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16681.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_74866a64e3bf6c26350210b6" + }, + { + "name": "ons.tenure.owned_mortgage@S12000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48438.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_fab0150c664c20b9aec39105" + }, + { + "name": "ons.tenure.owned_mortgage@S12000048", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18378.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1eb18e910199f569dea8b94e" + }, + { + "name": "ons.tenure.owned_mortgage@S12000049", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 71082.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dfec8e06d847fd5b3e1353c" + }, + { + "name": "ons.tenure.owned_mortgage@S12000050", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 48370.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe17515030f5d8951c0333c3" + }, + { + "name": "ons.tenure.owned_mortgage@W06000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7264.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1331be11d1e9185678bb738c" + }, + { + "name": "ons.tenure.owned_mortgage@W06000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11214.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_38b6e4e94a787538056670c5" + }, + { + "name": "ons.tenure.owned_mortgage@W06000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8ffc04d41454e308327a913" + }, + { + "name": "ons.tenure.owned_mortgage@W06000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11112.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e0423377bc8d2fba44dce9d" + }, + { + "name": "ons.tenure.owned_mortgage@W06000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 22074.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c5418a128d860f9c992d96f" + }, + { + "name": "ons.tenure.owned_mortgage@W06000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16271.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed70e233a5df4f24876d0d30" + }, + { + "name": "ons.tenure.owned_mortgage@W06000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6378.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba2b72d4450088aa26e28edd" + }, + { + "name": "ons.tenure.owned_mortgage@W06000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12556.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e477d969d14ae2eddec64f17" + }, + { + "name": "ons.tenure.owned_mortgage@W06000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21936.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b93ca506ed7fd87cd86274b" + }, + { + "name": "ons.tenure.owned_mortgage@W06000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 28224.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c669d5a7892351ce632d2920" + }, + { + "name": "ons.tenure.owned_mortgage@W06000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17661.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1cdf7a7c1a7769ae6075aed7" + }, + { + "name": "ons.tenure.owned_mortgage@W06000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 20291.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1aa82ec8ed3d687255e12761" + }, + { + "name": "ons.tenure.owned_mortgage@W06000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19231.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_0488af9ff5dbb4f93891b0b6" + }, + { + "name": "ons.tenure.owned_mortgage@W06000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 43355.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_60de908bd8d1a4afdfef8813" + }, + { + "name": "ons.tenure.owned_mortgage@W06000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 30943.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcd14f6f9f85cd1a07b38ed3" + }, + { + "name": "ons.tenure.owned_mortgage@W06000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24053.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4426c6ba93e56d47ed8cfae4" + }, + { + "name": "ons.tenure.owned_mortgage@W06000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7658.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_512a83391481fead525ce9e5" + }, + { + "name": "ons.tenure.owned_mortgage@W06000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11963.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_87f36d0dff1e81bf16d56f15" + }, + { + "name": "ons.tenure.owned_mortgage@W06000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11691.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fc9e1f379a734f460dc9554" + }, + { + "name": "ons.tenure.owned_mortgage@W06000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21387.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_729b9e05ea8ea9589c901b56" + }, + { + "name": "ons.tenure.owned_mortgage@W06000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 12586.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_286216b17d92a791ac0f5856" + }, + { + "name": "ons.tenure.owned_mortgage@W06000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7012.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_930f394c642182df07a015dc" + } + ] + } + } + }, + "ons.tenure.private_rent": { + "status": "active", + "geography_levels": { + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.tenure.private_rent@E06000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7194.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_804092eedb6ed5bdd7137423" + }, + { + "name": "ons.tenure.private_rent@E06000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12677.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b419e9ef7129e945aeef2eb5" + }, + { + "name": "ons.tenure.private_rent@E06000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9748.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9662e3e93871e57e20993198" + }, + { + "name": "ons.tenure.private_rent@E06000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14207.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5bbd8dfb73284d45296b0ac" + }, + { + "name": "ons.tenure.private_rent@E06000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10078.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_814be5d1b61a315d44192896" + }, + { + "name": "ons.tenure.private_rent@E06000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8018.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_48885294345abc9f2cd7285e" + }, + { + "name": "ons.tenure.private_rent@E06000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13773.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a27c91c4aac9b612aaa6f67" + }, + { + "name": "ons.tenure.private_rent@E06000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11850.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1f34ead6bf0ac7848b6a6d4c" + }, + { + "name": "ons.tenure.private_rent@E06000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20569.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_49baf9d7d77faba34aed9e85" + }, + { + "name": "ons.tenure.private_rent@E06000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27593.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2e2336aa2f645d8e06103d3" + }, + { + "name": "ons.tenure.private_rent@E06000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25732.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e404fe51886f3b3f49ef8151" + }, + { + "name": "ons.tenure.private_rent@E06000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15644.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4189ca810dfdfadcaf5b7cf" + }, + { + "name": "ons.tenure.private_rent@E06000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12555.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa1429c3e06b0632a200e4a0" + }, + { + "name": "ons.tenure.private_rent@E06000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17084.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca61c0b40560a33bba28115e" + }, + { + "name": "ons.tenure.private_rent@E06000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22453.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe7aa90c865db45e3bca0ec" + }, + { + "name": "ons.tenure.private_rent@E06000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37437.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e67345dddc5c0c370a0297c9" + }, + { + "name": "ons.tenure.private_rent@E06000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2790.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d60f0c931541b600b64e7ebe" + }, + { + "name": "ons.tenure.private_rent@E06000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35688.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f48984aa5e849078030f96" + }, + { + "name": "ons.tenure.private_rent@E06000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15605.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_97f0b14ba5e81cb4141f94fa" + }, + { + "name": "ons.tenure.private_rent@E06000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16197.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe6b88a8a98b6d4343cdb065" + }, + { + "name": "ons.tenure.private_rent@E06000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22400.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec7c73540425cfa25351b594" + }, + { + "name": "ons.tenure.private_rent@E06000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15309.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b90655efc800f47949511bf" + }, + { + "name": "ons.tenure.private_rent@E06000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 50213.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e190a5629cbac54f4169da05" + }, + { + "name": "ons.tenure.private_rent@E06000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17420.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cfebb07adcf6620e9129e0f" + }, + { + "name": "ons.tenure.private_rent@E06000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18588.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e48da3cd5fa289ca05460050" + }, + { + "name": "ons.tenure.private_rent@E06000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25921.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b98ca1ff58bcb62ba91f71d4" + }, + { + "name": "ons.tenure.private_rent@E06000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16767.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7ea961cf5e6ecb4d1174f19" + }, + { + "name": "ons.tenure.private_rent@E06000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18520.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6a14857fbd9515f79d01efaf" + }, + { + "name": "ons.tenure.private_rent@E06000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20612.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_76c41a83f3dafd9aadcf6057" + }, + { + "name": "ons.tenure.private_rent@E06000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22887.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d92f3c65c2eae6e604de131c" + }, + { + "name": "ons.tenure.private_rent@E06000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20759.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f803400300e5c93caa973098" + }, + { + "name": "ons.tenure.private_rent@E06000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12131.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_68c83fb0159971688d707e96" + }, + { + "name": "ons.tenure.private_rent@E06000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22491.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ccf6454833c04719a76ccbf5" + }, + { + "name": "ons.tenure.private_rent@E06000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7902.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1b395fdd4bbba82f21c6978" + }, + { + "name": "ons.tenure.private_rent@E06000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11431.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9d1c7b37527e670e7ff18bf" + }, + { + "name": "ons.tenure.private_rent@E06000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21623.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9364150bc3ae14cdcd4081e" + }, + { + "name": "ons.tenure.private_rent@E06000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16095.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec8e5c67a28bb5ea5caf436c" + }, + { + "name": "ons.tenure.private_rent@E06000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12553.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_81cbd21feb79bb27eb936c0c" + }, + { + "name": "ons.tenure.private_rent@E06000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9782.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_78c0fb80dc3916f5bc86b386" + }, + { + "name": "ons.tenure.private_rent@E06000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23656.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7dfd8587586ce932d1f00cd" + }, + { + "name": "ons.tenure.private_rent@E06000043", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39684.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8923c59cdfa2ce5a9f62205a" + }, + { + "name": "ons.tenure.private_rent@E06000044", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24669.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7afb5386567d4d439b18400f" + }, + { + "name": "ons.tenure.private_rent@E06000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29860.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fecd5b7221dd90d2f1598762" + }, + { + "name": "ons.tenure.private_rent@E06000046", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13380.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7e01ba79168a04e0b2cf47c" + }, + { + "name": "ons.tenure.private_rent@E06000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 40198.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a93c13a5adaa5c73859eedb9" + }, + { + "name": "ons.tenure.private_rent@E06000049", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27114.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2ca89d6d85c07c4c7ca5b35" + }, + { + "name": "ons.tenure.private_rent@E06000050", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24384.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_866df145d3dacda7eaf5cd71" + }, + { + "name": "ons.tenure.private_rent@E06000051", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24367.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3cfd5166f879396206dce74d" + }, + { + "name": "ons.tenure.private_rent@E06000052", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49371.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8cf07cab540a2960cf83e328" + }, + { + "name": "ons.tenure.private_rent@E06000053", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 344.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec640cffb4d2b2ef01bd807c" + }, + { + "name": "ons.tenure.private_rent@E06000054", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37422.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc923c8db18597a395484ddc" + }, + { + "name": "ons.tenure.private_rent@E06000055", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14316.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a652864ee0d09f222bd2f2ec" + }, + { + "name": "ons.tenure.private_rent@E06000056", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16567.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c68a78166e86e785762e25f7" + }, + { + "name": "ons.tenure.private_rent@E06000057", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24128.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_44b2f6b507b1ad066d5f572e" + }, + { + "name": "ons.tenure.private_rent@E06000058", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44152.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa5d76992003aaafd4cd8ba4" + }, + { + "name": "ons.tenure.private_rent@E06000059", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27612.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc174d5d90c0b815b68edd2c" + }, + { + "name": "ons.tenure.private_rent@E06000060", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34630.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9942a1ed34f5946d293b81bc" + }, + { + "name": "ons.tenure.private_rent@E06000061", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27455.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_45ad3c4626c03b1a367e2f37" + }, + { + "name": "ons.tenure.private_rent@E06000062", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33000.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8799703d081c4fd339f2fe2" + }, + { + "name": "ons.tenure.private_rent@E06000063", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17662.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cb8428eb0386490397db3d27" + }, + { + "name": "ons.tenure.private_rent@E06000064", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17685.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbbd192ec425ae46c9d9e50e" + }, + { + "name": "ons.tenure.private_rent@E06000065", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51164.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_79447483efe5b54b0f2636e9" + }, + { + "name": "ons.tenure.private_rent@E06000066", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44331.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd6b8debcfa2224849676848" + }, + { + "name": "ons.tenure.private_rent@E07000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc11cae9dee17f3eca9ee252" + }, + { + "name": "ons.tenure.private_rent@E07000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6120.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6da90b8740014df2cff33b45" + }, + { + "name": "ons.tenure.private_rent@E07000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8795.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1bcd2bacd0d142bda241b4a1" + }, + { + "name": "ons.tenure.private_rent@E07000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12897.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7df1476b9e21985f9e76fffc" + }, + { + "name": "ons.tenure.private_rent@E07000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9383.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae7ef39708603cee9a362f47" + }, + { + "name": "ons.tenure.private_rent@E07000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8235.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e09f934034225a97921cdac" + }, + { + "name": "ons.tenure.private_rent@E07000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6056.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_abcf7a2d390d00a8d88bb593" + }, + { + "name": "ons.tenure.private_rent@E07000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7781.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1f3b3704a5d92ff37d879c0" + }, + { + "name": "ons.tenure.private_rent@E07000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4650.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9a949eae20345319b410edf" + }, + { + "name": "ons.tenure.private_rent@E07000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8470.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0bf2dff29858aaabcf4cda0" + }, + { + "name": "ons.tenure.private_rent@E07000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6545.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ca3f968b1f2ff43746dd97d" + }, + { + "name": "ons.tenure.private_rent@E07000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4608.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f262b2f4e2d5fe24c298c5ff" + }, + { + "name": "ons.tenure.private_rent@E07000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6648.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_722ecc6b0306fb41fd079c8d" + }, + { + "name": "ons.tenure.private_rent@E07000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10697.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d50f6f7fca952e11d689b040" + }, + { + "name": "ons.tenure.private_rent@E07000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13107.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80cdb83a9c3feb790b6a2733" + }, + { + "name": "ons.tenure.private_rent@E07000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6612.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_728fa0db9cc6f00757b44cfd" + }, + { + "name": "ons.tenure.private_rent@E07000043", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8813.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ffe5d6de8d8c4853161a1ba" + }, + { + "name": "ons.tenure.private_rent@E07000044", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6326.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd92317a05365da7d27fb249" + }, + { + "name": "ons.tenure.private_rent@E07000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10683.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_70d803883ee9a6c15324ad6b" + }, + { + "name": "ons.tenure.private_rent@E07000046", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6152.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e41d694b3671f1db457c54de" + }, + { + "name": "ons.tenure.private_rent@E07000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4526.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecee1e271d622c3fca27fc15" + }, + { + "name": "ons.tenure.private_rent@E07000061", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12118.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e7ccf8cc5e0e73a76e474e6" + }, + { + "name": "ons.tenure.private_rent@E07000062", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11572.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d2e81e2be4f6d1944ebab815" + }, + { + "name": "ons.tenure.private_rent@E07000063", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7384.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8912aa5df97fe20163667067" + }, + { + "name": "ons.tenure.private_rent@E07000064", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6827.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_788eafdccdcc4204cbd813e7" + }, + { + "name": "ons.tenure.private_rent@E07000065", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9203.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d93fdb515fbd7af7a95151cc" + }, + { + "name": "ons.tenure.private_rent@E07000066", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10876.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e19c5e464b5efab004d09735" + }, + { + "name": "ons.tenure.private_rent@E07000067", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9795.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a155cbb748fdb99b83927d1d" + }, + { + "name": "ons.tenure.private_rent@E07000068", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5163.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6655274adbc037f7bf5538ac" + }, + { + "name": "ons.tenure.private_rent@E07000069", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5240.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d0ec254b2e7b0d70e76c363" + }, + { + "name": "ons.tenure.private_rent@E07000070", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11724.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_92bad355c3fd3024ce2c1cd5" + }, + { + "name": "ons.tenure.private_rent@E07000071", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17165.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e589ad2ef5e21a504f74d965" + }, + { + "name": "ons.tenure.private_rent@E07000072", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8147.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d2d5b05d5ab925163557a8e" + }, + { + "name": "ons.tenure.private_rent@E07000073", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5824.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4beb6809704c68606702162" + }, + { + "name": "ons.tenure.private_rent@E07000074", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3279.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fce27f90e5e6409390ffafdd" + }, + { + "name": "ons.tenure.private_rent@E07000075", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3805.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6030239ec5281384232cf458" + }, + { + "name": "ons.tenure.private_rent@E07000076", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13370.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_721d32f12e3fee7fc2fe7c07" + }, + { + "name": "ons.tenure.private_rent@E07000077", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5375.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff41aa2cebdfbc954f013002" + }, + { + "name": "ons.tenure.private_rent@E07000078", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12378.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9d2ded4d3ce787ca02a5848" + }, + { + "name": "ons.tenure.private_rent@E07000079", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7049.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a58cdb00b01667675dbde08a" + }, + { + "name": "ons.tenure.private_rent@E07000080", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5031.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_81505e5f5f0325f6d5466dbc" + }, + { + "name": "ons.tenure.private_rent@E07000081", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11803.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2aa82fa61b4b41b82e6d20f" + }, + { + "name": "ons.tenure.private_rent@E07000082", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7153.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9ff8702779b184f49c6de13" + }, + { + "name": "ons.tenure.private_rent@E07000083", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5841.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef9ae05ca65b4cd15bdeef08" + }, + { + "name": "ons.tenure.private_rent@E07000084", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11800.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f6da49b434d2f4e10259549b" + }, + { + "name": "ons.tenure.private_rent@E07000085", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6876.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4f317f52648cd8745ac94057" + }, + { + "name": "ons.tenure.private_rent@E07000086", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7936.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d43f0553a5868796257fc392" + }, + { + "name": "ons.tenure.private_rent@E07000087", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6106.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8473d09280f08f2a3289e56" + }, + { + "name": "ons.tenure.private_rent@E07000088", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6714.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f09eb86f8c81c529d95b3996" + }, + { + "name": "ons.tenure.private_rent@E07000089", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5442.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_902ca87de7deafaaa809fbc9" + }, + { + "name": "ons.tenure.private_rent@E07000090", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6655.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c9f194715befc18dc0b775f9" + }, + { + "name": "ons.tenure.private_rent@E07000091", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11124.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eccac803d12f57e3cacc9a1" + }, + { + "name": "ons.tenure.private_rent@E07000092", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8449.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc02d5f186b7feef0b3683dc" + }, + { + "name": "ons.tenure.private_rent@E07000093", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8070.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d95afc40a8be62e98a3f3e0" + }, + { + "name": "ons.tenure.private_rent@E07000094", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9096.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d32a7f13c50de2d41f8d6ada" + }, + { + "name": "ons.tenure.private_rent@E07000095", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6367.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ed6ab63f0f7613f487a32ee" + }, + { + "name": "ons.tenure.private_rent@E07000096", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9093.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca30325f9c03f225e4e725aa" + }, + { + "name": "ons.tenure.private_rent@E07000098", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7370.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef3b3a37d1915032e7655b6d" + }, + { + "name": "ons.tenure.private_rent@E07000099", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8722.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f006de4365d5fbcfbf609707" + }, + { + "name": "ons.tenure.private_rent@E07000102", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4956.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4f127b57815337f079650a9" + }, + { + "name": "ons.tenure.private_rent@E07000103", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11177.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f72c9f8812c13506f9ab824a" + }, + { + "name": "ons.tenure.private_rent@E07000105", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9499.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_991c4639ba8d65a5ea20e5e0" + }, + { + "name": "ons.tenure.private_rent@E07000106", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14024.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bee94764e3a6326ff7a0369f" + }, + { + "name": "ons.tenure.private_rent@E07000107", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8275.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0d0b8fb34d8cee758d8ace6" + }, + { + "name": "ons.tenure.private_rent@E07000108", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9595.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5742313a7f33d0356dad144" + }, + { + "name": "ons.tenure.private_rent@E07000109", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7950.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4a6e2e1881c0eb27b2396e9" + }, + { + "name": "ons.tenure.private_rent@E07000110", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12339.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f7773d29e6eb22af4fa9bf3" + }, + { + "name": "ons.tenure.private_rent@E07000111", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6548.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_68abaab6dd02a9bb74ff5ef5" + }, + { + "name": "ons.tenure.private_rent@E07000112", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10870.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7952ac3b3005f7492d227799" + }, + { + "name": "ons.tenure.private_rent@E07000113", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11102.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9b3779f644e4976a1e3769f0" + }, + { + "name": "ons.tenure.private_rent@E07000114", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16334.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_629df2132e9d131802520ab9" + }, + { + "name": "ons.tenure.private_rent@E07000115", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6694.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8148a2ba69b659b9d8167e48" + }, + { + "name": "ons.tenure.private_rent@E07000116", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9268.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f47df95f75136c335222f864" + }, + { + "name": "ons.tenure.private_rent@E07000117", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9696.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa9bae7a54396fac0b3ae801" + }, + { + "name": "ons.tenure.private_rent@E07000118", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6964.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6f7ba26f6061cbc75f550de7" + }, + { + "name": "ons.tenure.private_rent@E07000119", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7230.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5cce043b4af0fff05bc9ecc" + }, + { + "name": "ons.tenure.private_rent@E07000120", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8035.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_54cad89f3a70df6ca28c24e5" + }, + { + "name": "ons.tenure.private_rent@E07000121", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13029.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebfe8e9764ec5ad5f72c784e" + }, + { + "name": "ons.tenure.private_rent@E07000122", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8741.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2a1863144ea7b57545ee9d2" + }, + { + "name": "ons.tenure.private_rent@E07000123", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13333.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f8540601971f1660d71003f7" + }, + { + "name": "ons.tenure.private_rent@E07000124", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4003.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7856097c1e2ba4a242d41a2" + }, + { + "name": "ons.tenure.private_rent@E07000125", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5207.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_abfe98d13dfabfca6e790d3d" + }, + { + "name": "ons.tenure.private_rent@E07000126", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6217.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe197ef8f90f5abebdfaebab" + }, + { + "name": "ons.tenure.private_rent@E07000127", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6722.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe1bc00dd91456090567e4c4" + }, + { + "name": "ons.tenure.private_rent@E07000128", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9241.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da3ae74ffb21076273bd5f17" + }, + { + "name": "ons.tenure.private_rent@E07000129", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5449.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecfdaa2a919845440aa4865f" + }, + { + "name": "ons.tenure.private_rent@E07000130", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12814.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4e59f4c7c9be7b6d982d3219" + }, + { + "name": "ons.tenure.private_rent@E07000131", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5439.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4e9635b43dee8601436666c" + }, + { + "name": "ons.tenure.private_rent@E07000132", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7114.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f13a1ab9edbda0f27a71b8d0" + }, + { + "name": "ons.tenure.private_rent@E07000133", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3881.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdaa54b05dc40297c616af1b" + }, + { + "name": "ons.tenure.private_rent@E07000134", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6074.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e31f55a208d47769ffb695ea" + }, + { + "name": "ons.tenure.private_rent@E07000135", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3623.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec303576a2b1da9df546752e" + }, + { + "name": "ons.tenure.private_rent@E07000136", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5965.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a31ac7ee602bb36b62aa094" + }, + { + "name": "ons.tenure.private_rent@E07000137", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13110.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8986c9ea5350c4ec8d93b7db" + }, + { + "name": "ons.tenure.private_rent@E07000138", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e46b763f086b6b7960a3f41e" + }, + { + "name": "ons.tenure.private_rent@E07000139", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8164.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9f278c300568ecafe6ced138" + }, + { + "name": "ons.tenure.private_rent@E07000140", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6943.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_153143f7b3a7d241ea8294fc" + }, + { + "name": "ons.tenure.private_rent@E07000141", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11325.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf3429d465b677415d974ec8" + }, + { + "name": "ons.tenure.private_rent@E07000142", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7570.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9b87525fae930614827e519" + }, + { + "name": "ons.tenure.private_rent@E07000143", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10930.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8234611344b362a15e050beb" + }, + { + "name": "ons.tenure.private_rent@E07000144", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7095.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e3a492b7afe24113abd208c" + }, + { + "name": "ons.tenure.private_rent@E07000145", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9576.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c70f307429605d746975ee36" + }, + { + "name": "ons.tenure.private_rent@E07000146", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12704.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e0051adb09095e1e35b13dfc" + }, + { + "name": "ons.tenure.private_rent@E07000147", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8538.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce38c18006696e7c0041feab" + }, + { + "name": "ons.tenure.private_rent@E07000148", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17351.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6d84829b300d731e1dad825" + }, + { + "name": "ons.tenure.private_rent@E07000149", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8527.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_888b1f000ccbfca8b0074706" + }, + { + "name": "ons.tenure.private_rent@E07000170", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9297.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ffd234a62bc30653718be438" + }, + { + "name": "ons.tenure.private_rent@E07000171", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8351.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff1bea36071f61807fd76a00" + }, + { + "name": "ons.tenure.private_rent@E07000172", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8355.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f304cdf9fac2333c312b26cb" + }, + { + "name": "ons.tenure.private_rent@E07000173", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8191.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db161b17e10d9961124106eb" + }, + { + "name": "ons.tenure.private_rent@E07000174", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9065.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f80dc79107fef39fa0c1831b" + }, + { + "name": "ons.tenure.private_rent@E07000175", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8624.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1ab6c6b46eb84beb2c63686" + }, + { + "name": "ons.tenure.private_rent@E07000176", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7312.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ef3294fbc0814d7ddb9269c" + }, + { + "name": "ons.tenure.private_rent@E07000177", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13033.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c689044e7a3891638d124a36" + }, + { + "name": "ons.tenure.private_rent@E07000178", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17762.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f90b6eef838022d313517700" + }, + { + "name": "ons.tenure.private_rent@E07000179", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9784.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9ea91cffca5ed1c16b71704" + }, + { + "name": "ons.tenure.private_rent@E07000180", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9002.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dea7fd057823eb3702dd3148" + }, + { + "name": "ons.tenure.private_rent@E07000181", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8570.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9e7d9c8e187edfe3acaa6ea" + }, + { + "name": "ons.tenure.private_rent@E07000192", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6862.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6f98f9821c77466a85dc48c" + }, + { + "name": "ons.tenure.private_rent@E07000193", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9992.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5da454365b62bd16a8e7803" + }, + { + "name": "ons.tenure.private_rent@E07000194", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5817.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8278a2627589a53df3109f59" + }, + { + "name": "ons.tenure.private_rent@E07000195", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7735.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcc87c7a855a9d7fdd8a3e05" + }, + { + "name": "ons.tenure.private_rent@E07000196", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4873.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bfcfac667a4bd142765e96d1" + }, + { + "name": "ons.tenure.private_rent@E07000197", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9336.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_41440e905ff034115a718734" + }, + { + "name": "ons.tenure.private_rent@E07000198", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5373.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7ab24bca0c73df9d5de4c2b" + }, + { + "name": "ons.tenure.private_rent@E07000199", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4643.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c53a27d642b290fc1b196ad0" + }, + { + "name": "ons.tenure.private_rent@E07000200", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5959.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a20afbe2fc19f43e030ba58d" + }, + { + "name": "ons.tenure.private_rent@E07000202", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13664.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_507532639c7ddaa4253c2d60" + }, + { + "name": "ons.tenure.private_rent@E07000203", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6079.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0ce740b01c22d739f6b9a2e" + }, + { + "name": "ons.tenure.private_rent@E07000207", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9725.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c155662699c7e33a187fed2c" + }, + { + "name": "ons.tenure.private_rent@E07000208", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5048.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf8a099799227ca0eebcd747" + }, + { + "name": "ons.tenure.private_rent@E07000209", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10930.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_672e83cd0bbeddf506d1707e" + }, + { + "name": "ons.tenure.private_rent@E07000210", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5238.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c49b489584961c6f644d6511" + }, + { + "name": "ons.tenure.private_rent@E07000211", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9387.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_47d1c56ea5f032d3a923e29a" + }, + { + "name": "ons.tenure.private_rent@E07000212", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6652.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0c65fc61b8d5ce65af1174b" + }, + { + "name": "ons.tenure.private_rent@E07000213", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7487.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe192e8b4da0f155bcff7b13" + }, + { + "name": "ons.tenure.private_rent@E07000214", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5531.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a330dd007b3d7f5bca68a38d" + }, + { + "name": "ons.tenure.private_rent@E07000215", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4730.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe69d16b51f0d82710478b0d" + }, + { + "name": "ons.tenure.private_rent@E07000216", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7703.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c36cd68e04a7611cc2df3ea7" + }, + { + "name": "ons.tenure.private_rent@E07000217", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8738.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce04ec69bad0bb2f3adf1d86" + }, + { + "name": "ons.tenure.private_rent@E07000218", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4110.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf9e095c9ff2bf074a73062d" + }, + { + "name": "ons.tenure.private_rent@E07000219", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9399.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_81481641c5ce43fea7b1b538" + }, + { + "name": "ons.tenure.private_rent@E07000220", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8474.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_868a109c18a77157beb3ce68" + }, + { + "name": "ons.tenure.private_rent@E07000221", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8363.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c2f11b9ce9034da229cf564f" + }, + { + "name": "ons.tenure.private_rent@E07000222", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11910.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bfcbe362addf61abaea516f" + }, + { + "name": "ons.tenure.private_rent@E07000223", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4095.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3dc2fe752e196696a2a9bc8" + }, + { + "name": "ons.tenure.private_rent@E07000224", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13225.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd48f7347b3d57d29a8a979b" + }, + { + "name": "ons.tenure.private_rent@E07000225", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9807.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e128867dffbc97e1a7b7d0a4" + }, + { + "name": "ons.tenure.private_rent@E07000226", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9015.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c544a750ebfb4f5e79b177c" + }, + { + "name": "ons.tenure.private_rent@E07000227", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9055.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6fcd7b3a65a013c71f8a64e0" + }, + { + "name": "ons.tenure.private_rent@E07000228", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9710.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_942f5a75f83a59105360b148" + }, + { + "name": "ons.tenure.private_rent@E07000229", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10916.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4d8e110435df90baf06308a" + }, + { + "name": "ons.tenure.private_rent@E07000234", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4379.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f717d40533c108a3b15fa5b9" + }, + { + "name": "ons.tenure.private_rent@E07000235", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4653.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a65e3097fa7dbc316e429aa2" + }, + { + "name": "ons.tenure.private_rent@E07000236", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5243.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a56da9dc24eaeeccc27abfa0" + }, + { + "name": "ons.tenure.private_rent@E07000237", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9494.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa25a9da69f143389da3b30" + }, + { + "name": "ons.tenure.private_rent@E07000238", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7493.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6004ea3561a12546490886d0" + }, + { + "name": "ons.tenure.private_rent@E07000239", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7239.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2e1ce9b8f73ef0912d9f5291" + }, + { + "name": "ons.tenure.private_rent@E07000240", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9602.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ea2eac49788ec9e9802694c" + }, + { + "name": "ons.tenure.private_rent@E07000241", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7586.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e11408ce5d9b1d511d4dd3a9" + }, + { + "name": "ons.tenure.private_rent@E07000242", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd26a6d77659e4885cebe601" + }, + { + "name": "ons.tenure.private_rent@E07000243", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5470.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_60a3e2e545f192132c3e41c4" + }, + { + "name": "ons.tenure.private_rent@E07000244", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19485.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6b80d6a0ec6a018a264be45" + }, + { + "name": "ons.tenure.private_rent@E07000245", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17629.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee8259cc8bf06836d44117ff" + }, + { + "name": "ons.tenure.private_rent@E08000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21372.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_53a0a43881bbd782b5907955" + }, + { + "name": "ons.tenure.private_rent@E08000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14249.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39629ead1bbc25d75b0cba1" + }, + { + "name": "ons.tenure.private_rent@E08000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69403.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb0b27a6d8e69439a7fde76" + }, + { + "name": "ons.tenure.private_rent@E08000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16498.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5c8051b48628a150fc3e34a8" + }, + { + "name": "ons.tenure.private_rent@E08000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16503.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_debed00c90f34b2a4045f13f" + }, + { + "name": "ons.tenure.private_rent@E08000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30853.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_976c019c319fcea65b025c9b" + }, + { + "name": "ons.tenure.private_rent@E08000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18192.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbdf95b3a288a07baee0e490" + }, + { + "name": "ons.tenure.private_rent@E08000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17459.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_678ad942397a25b587b37de3" + }, + { + "name": "ons.tenure.private_rent@E08000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14744.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f06e886978fd437a3f69e158" + }, + { + "name": "ons.tenure.private_rent@E08000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22761.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bb800603a5c082f306827d94" + }, + { + "name": "ons.tenure.private_rent@E08000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9461.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_601eb4d26e71bff9a8eb1bc7" + }, + { + "name": "ons.tenure.private_rent@E08000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54067.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_78cd5ef328d7687df7a499ec" + }, + { + "name": "ons.tenure.private_rent@E08000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12264.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_54cdf71bac28c5553797aad8" + }, + { + "name": "ons.tenure.private_rent@E08000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22457.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a3c266d487736397deb7c66c" + }, + { + "name": "ons.tenure.private_rent@E08000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27091.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fadf036f42c9bab81307adf" + }, + { + "name": "ons.tenure.private_rent@E08000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18569.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a134b8eb8039f804e9ef594" + }, + { + "name": "ons.tenure.private_rent@E08000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25941.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_25203c96f8734bbd48e0130e" + }, + { + "name": "ons.tenure.private_rent@E08000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17035.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_854d340748c75fc116c18fe4" + }, + { + "name": "ons.tenure.private_rent@E08000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43424.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d25c19242183a9cf84199f07" + }, + { + "name": "ons.tenure.private_rent@E08000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27978.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6715034b8f9ccb4b202764b" + }, + { + "name": "ons.tenure.private_rent@E08000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14625.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b899a2f331a181e910cd7dfe" + }, + { + "name": "ons.tenure.private_rent@E08000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9025.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d0e09cfbca22608ed361b3c" + }, + { + "name": "ons.tenure.private_rent@E08000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18096.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc135c0d61450cb9913a0e28" + }, + { + "name": "ons.tenure.private_rent@E08000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 95719.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d566734d0dcb2910b2635290" + }, + { + "name": "ons.tenure.private_rent@E08000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33195.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_df6bceef472e047e3865f20f" + }, + { + "name": "ons.tenure.private_rent@E08000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18940.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ea9f8aaa6d2cd6aca69e64bb" + }, + { + "name": "ons.tenure.private_rent@E08000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24237.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecf68f870917dd63883411de" + }, + { + "name": "ons.tenure.private_rent@E08000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11496.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc8e5a047be7c51b81ce010c" + }, + { + "name": "ons.tenure.private_rent@E08000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18336.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3452888520a57f3b574641f" + }, + { + "name": "ons.tenure.private_rent@E08000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20006.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d606cdee741f332ba039f69c" + }, + { + "name": "ons.tenure.private_rent@E08000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48278.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_57f53d253caa5b5f30ecb6a5" + }, + { + "name": "ons.tenure.private_rent@E08000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18437.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7d2a58af5f3135550f664dc8" + }, + { + "name": "ons.tenure.private_rent@E08000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33942.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6ac5019935493bc78d457293" + }, + { + "name": "ons.tenure.private_rent@E08000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 74402.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7fc458117377b2c8ca4d8cc" + }, + { + "name": "ons.tenure.private_rent@E08000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22754.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_deb0768c899f4d9fb9398106" + }, + { + "name": "ons.tenure.private_rent@E08000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14584.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c1701bd443efafbab720ac98" + }, + { + "name": "ons.tenure.private_rent@E09000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2373.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_764eb754b5652fed302878fe" + }, + { + "name": "ons.tenure.private_rent@E09000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17890.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4dcfe51b3bb62cf092e7661" + }, + { + "name": "ons.tenure.private_rent@E09000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 48705.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a77c3553ae9b162ea9faf911" + }, + { + "name": "ons.tenure.private_rent@E09000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14578.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_1c9bcc7b450f72593912fa3f" + }, + { + "name": "ons.tenure.private_rent@E09000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42726.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdc0c6f077be60d89209312b" + }, + { + "name": "ons.tenure.private_rent@E09000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23661.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7707944409d3bdd81015b3aa" + }, + { + "name": "ons.tenure.private_rent@E09000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33012.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f132db6a40e58be2e9108b7f" + }, + { + "name": "ons.tenure.private_rent@E09000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39441.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7d559ad741ce60856f1278b" + }, + { + "name": "ons.tenure.private_rent@E09000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45490.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6563c1d9db0c75b64d65bc6" + }, + { + "name": "ons.tenure.private_rent@E09000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35388.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b7109bd814435fd9a44ee598" + }, + { + "name": "ons.tenure.private_rent@E09000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29088.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bf6e400db1b42fa4cbc4566" + }, + { + "name": "ons.tenure.private_rent@E09000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34147.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_94039554fda9c6c5c9ecaf6a" + }, + { + "name": "ons.tenure.private_rent@E09000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29558.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bdd1699ee6d1fb3f518cfb2" + }, + { + "name": "ons.tenure.private_rent@E09000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37376.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2ec7401ecd6a04e485b109e" + }, + { + "name": "ons.tenure.private_rent@E09000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_33ddd4307e08044d8073e0ce" + }, + { + "name": "ons.tenure.private_rent@E09000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16019.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_78b9842f0a7ec0c74777f900" + }, + { + "name": "ons.tenure.private_rent@E09000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28276.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8bd9465dbdfdac88cf15a8c" + }, + { + "name": "ons.tenure.private_rent@E09000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31788.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3f9e5f173b9b407b84aa8eeb" + }, + { + "name": "ons.tenure.private_rent@E09000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30079.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8356eb6d08271aa3bdd8b1a5" + }, + { + "name": "ons.tenure.private_rent@E09000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26460.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b9c1f0ad5bc9abbb277b8a5b" + }, + { + "name": "ons.tenure.private_rent@E09000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17911.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_66ac3c4998838210a19fc323" + }, + { + "name": "ons.tenure.private_rent@E09000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42329.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3c2da22a8763367827c46a73" + }, + { + "name": "ons.tenure.private_rent@E09000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33289.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b724f842de6c03dde15e6622" + }, + { + "name": "ons.tenure.private_rent@E09000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23748.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8bc4ba54530b21a6c3313531" + }, + { + "name": "ons.tenure.private_rent@E09000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 44479.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9deadb8d7da63ce86567fc60" + }, + { + "name": "ons.tenure.private_rent@E09000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31576.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1c40115d4e5377b34d97976" + }, + { + "name": "ons.tenure.private_rent@E09000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19970.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3e6a681f83a6584d6de48f74" + }, + { + "name": "ons.tenure.private_rent@E09000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 37506.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5fa6fc83441572654dcbd08b" + }, + { + "name": "ons.tenure.private_rent@E09000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16683.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_414f1861627ee4830b3fad02" + }, + { + "name": "ons.tenure.private_rent@E09000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46000.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ba8160310e2d8937fbdc2b3" + }, + { + "name": "ons.tenure.private_rent@E09000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28593.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1aa2baf29fd0751cf69ee22" + }, + { + "name": "ons.tenure.private_rent@E09000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49830.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3829ea04c199b4d127e048b7" + }, + { + "name": "ons.tenure.private_rent@E09000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 41065.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5a2ee56021936e7133cb49b0" + }, + { + "name": "ons.tenure.private_rent@N09000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 8251.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8329184ff1cbb7eb80bca49" + }, + { + "name": "ons.tenure.private_rent@N09000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 15706.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3e002db1f3dda6b76ef7b50" + }, + { + "name": "ons.tenure.private_rent@N09000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 30657.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ceafa331a5f5953938d53682" + }, + { + "name": "ons.tenure.private_rent@N09000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 10296.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9276dde700d344154ffcfe78" + }, + { + "name": "ons.tenure.private_rent@N09000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 10933.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f721e17dc21709e1873f5d63" + }, + { + "name": "ons.tenure.private_rent@N09000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 8472.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4f947f2a5d34dc4f83d1c64" + }, + { + "name": "ons.tenure.private_rent@N09000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 6754.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b18b639989b4bc26939c164b" + }, + { + "name": "ons.tenure.private_rent@N09000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 9388.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe7f3e4bf986a17ea592db98" + }, + { + "name": "ons.tenure.private_rent@N09000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 10198.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca4a7057bb963237f2f76a59" + }, + { + "name": "ons.tenure.private_rent@N09000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 12333.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8e19df805c8c5882206f144" + }, + { + "name": "ons.tenure.private_rent@N09000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 5, + "matched_fact_count_at_or_before_period": 5, + "resolved_period": 2025, + "resolved_value": 9448.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b029df9c7322b26e3e1060d6" + }, + { + "name": "ons.tenure.private_rent@S12000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2128.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_61e80ae0fa6070f8b8eb7c56" + }, + { + "name": "ons.tenure.private_rent@S12000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9506.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0e500d13cc99de04b3d92fb" + }, + { + "name": "ons.tenure.private_rent@S12000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5282.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f64a690b1c866fea7f62e59" + }, + { + "name": "ons.tenure.private_rent@S12000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4169.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e05713df4e87b77272b090c7" + }, + { + "name": "ons.tenure.private_rent@S12000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2281.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e99d721c0650b69a52e59509" + }, + { + "name": "ons.tenure.private_rent@S12000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 726.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_71d61ab167c534373bb965a2" + }, + { + "name": "ons.tenure.private_rent@S12000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5982.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_d3006b5d8690f2878bb1679f" + }, + { + "name": "ons.tenure.private_rent@S12000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11924.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c0fea2a4169c28c3371fdc23" + }, + { + "name": "ons.tenure.private_rent@S12000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3968.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_743c2cf7ffbbad762e7196ce" + }, + { + "name": "ons.tenure.private_rent@S12000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3146.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_34198abf31c82d7caab86459" + }, + { + "name": "ons.tenure.private_rent@S12000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5134.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_df00845115f1fbcc8b4a7ad5" + }, + { + "name": "ons.tenure.private_rent@S12000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6360.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f69f88bd7b9e0358af04a917" + }, + { + "name": "ons.tenure.private_rent@S12000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1021.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_39b910367a63f3a1f094abd7" + }, + { + "name": "ons.tenure.private_rent@S12000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7629.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce79ba1903df616e203c100b" + }, + { + "name": "ons.tenure.private_rent@S12000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 737.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_7643e0bd3e1da2b7890f22a1" + }, + { + "name": "ons.tenure.private_rent@S12000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5542.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e50c652b5c73743ef2a43d91" + }, + { + "name": "ons.tenure.private_rent@S12000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14084.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f350a7f94f0729e134e1c50f" + }, + { + "name": "ons.tenure.private_rent@S12000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5138.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a9628abd73f5d1d6fd3def5" + }, + { + "name": "ons.tenure.private_rent@S12000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21708.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_50357e579f609d2ba35ffb38" + }, + { + "name": "ons.tenure.private_rent@S12000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10503.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6539648f5c2d6182e4fe188" + }, + { + "name": "ons.tenure.private_rent@S12000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4867.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e64e19c90ba6af605b5fa697" + }, + { + "name": "ons.tenure.private_rent@S12000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 55135.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c0ba28d07f54c12d2da2a33" + }, + { + "name": "ons.tenure.private_rent@S12000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9555.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_66d628963e69420cab08ed91" + }, + { + "name": "ons.tenure.private_rent@S12000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3474.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb5092d61ed953197a7cfd4c" + }, + { + "name": "ons.tenure.private_rent@S12000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7378.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_85f976b9fef4f868ae9f7e53" + }, + { + "name": "ons.tenure.private_rent@S12000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6406.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8b3a34218c9fc3c27f28b5a" + }, + { + "name": "ons.tenure.private_rent@S12000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14727.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_23ff3e5a5bbb346e83ab5190" + }, + { + "name": "ons.tenure.private_rent@S12000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2681.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_98afbdce6a276259053978bc" + }, + { + "name": "ons.tenure.private_rent@S12000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19632.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_7dbd19c568c9e4e71f7d9502" + }, + { + "name": "ons.tenure.private_rent@S12000048", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9617.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_fadadb70f8636aef7dbd08c7" + }, + { + "name": "ons.tenure.private_rent@S12000049", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 49579.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_96a5120e8f0a57ff9cb40698" + }, + { + "name": "ons.tenure.private_rent@S12000050", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13021.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_7601c4636522ae0ef0fd51a0" + }, + { + "name": "ons.tenure.private_rent@W06000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4799.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa49e26c05095975f41736e9" + }, + { + "name": "ons.tenure.private_rent@W06000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8865.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f00a664e943e3fe636b779d9" + }, + { + "name": "ons.tenure.private_rent@W06000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9920.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9ff19349963f0fced64ff398" + }, + { + "name": "ons.tenure.private_rent@W06000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8492.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d4d4b93914f7500cda24bf77" + }, + { + "name": "ons.tenure.private_rent@W06000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8839.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c591bec23837043fcbdca45e" + }, + { + "name": "ons.tenure.private_rent@W06000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9166.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7437d86cc71a047b209cc9b0" + }, + { + "name": "ons.tenure.private_rent@W06000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6371.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dc4543c457afa1ab11fec2ea" + }, + { + "name": "ons.tenure.private_rent@W06000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9114.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a79d77516bfeefe1e4b1b117" + }, + { + "name": "ons.tenure.private_rent@W06000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12171.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d82bb15f4e266f32226b919d" + }, + { + "name": "ons.tenure.private_rent@W06000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18901.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6dfdc8830f7664d0a936214" + }, + { + "name": "ons.tenure.private_rent@W06000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8652.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4852c13600ee5f84a733f9b" + }, + { + "name": "ons.tenure.private_rent@W06000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9526.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7c692876abfecee4934c390" + }, + { + "name": "ons.tenure.private_rent@W06000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8977.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c956ccd4d26aadda95855e4b" + }, + { + "name": "ons.tenure.private_rent@W06000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35785.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cdb50e854b032397aa433ec7" + }, + { + "name": "ons.tenure.private_rent@W06000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18238.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cac929c49f2d570eb4bb8ddd" + }, + { + "name": "ons.tenure.private_rent@W06000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10154.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dccfcdc158c8f28fb30b335b" + }, + { + "name": "ons.tenure.private_rent@W06000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4847.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d62b44ad8fbf6d7062ea1bf3" + }, + { + "name": "ons.tenure.private_rent@W06000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8671e513a445901f289eb8dc" + }, + { + "name": "ons.tenure.private_rent@W06000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5582.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5feb5c0669dfd88c7fec3d3b" + }, + { + "name": "ons.tenure.private_rent@W06000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11019.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e276e8b82a2c6b5fb716ab41" + }, + { + "name": "ons.tenure.private_rent@W06000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10760.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4141dbf5688387a4f0d3fc19" + }, + { + "name": "ons.tenure.private_rent@W06000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a10223da180c99e66ee7cf18" + } + ] + } + } + }, + "ons.tenure.social_rent": { + "status": "active", + "geography_levels": { + "local_authority": { + "status": "active", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.tenure.social_rent@E06000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9594.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced43fd99a66f9a79acc716b" + }, + { + "name": "ons.tenure.social_rent@E06000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14006.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fa0f213f3aa7daee25e8b880" + }, + { + "name": "ons.tenure.social_rent@E06000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11649.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_74816aad34bfee5fc60e1c18" + }, + { + "name": "ons.tenure.social_rent@E06000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13673.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_742a4ef8c9e7cd3087378879" + }, + { + "name": "ons.tenure.social_rent@E06000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7931.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a4150deed44d6d32ffda6add" + }, + { + "name": "ons.tenure.social_rent@E06000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13619.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_14e1d5bee7a04564da1ec72d" + }, + { + "name": "ons.tenure.social_rent@E06000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13842.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_adef397f030eca7b1bb7e14f" + }, + { + "name": "ons.tenure.social_rent@E06000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11031.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca5b0b24809a8b67d90681da" + }, + { + "name": "ons.tenure.social_rent@E06000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6700.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2ec6c2bb7ec4a21d485c519d" + }, + { + "name": "ons.tenure.social_rent@E06000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31167.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_633071955fc1752d4fe30695" + }, + { + "name": "ons.tenure.social_rent@E06000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14280.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c61d98e83b5531486e22a901" + }, + { + "name": "ons.tenure.social_rent@E06000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9191.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc1feb02bd1a7eb08dd77b55" + }, + { + "name": "ons.tenure.social_rent@E06000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10953.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fd92219220e225aebcfd6502" + }, + { + "name": "ons.tenure.social_rent@E06000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11924.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_711b8637d960adbc64392f30" + }, + { + "name": "ons.tenure.social_rent@E06000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19851.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d81d413c7946ae026056c392" + }, + { + "name": "ons.tenure.social_rent@E06000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c3f28a2d9e072014a8d3dbc" + }, + { + "name": "ons.tenure.social_rent@E06000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1819.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a85314395da7256ac01eb073" + }, + { + "name": "ons.tenure.social_rent@E06000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31796.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff368a7377dc8fb35798cfa8" + }, + { + "name": "ons.tenure.social_rent@E06000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11309.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_22c7d50fc4f4b6745a5fab48" + }, + { + "name": "ons.tenure.social_rent@E06000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13784.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_de86638030acc8062efa2773" + }, + { + "name": "ons.tenure.social_rent@E06000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24569.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a9f6c4b9462133feb2fbac89" + }, + { + "name": "ons.tenure.social_rent@E06000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11363.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf35293755fa5efc7a6e2b9e" + }, + { + "name": "ons.tenure.social_rent@E06000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35879.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd0a2b8456526e0eec02c1ee" + }, + { + "name": "ons.tenure.social_rent@E06000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8714.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c766e15a9e430eed871c2089" + }, + { + "name": "ons.tenure.social_rent@E06000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12738.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f436bc863eded2be9676ac96" + }, + { + "name": "ons.tenure.social_rent@E06000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21111.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_819175a9fec34e33f9c17b68" + }, + { + "name": "ons.tenure.social_rent@E06000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5225.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f237d43c2b6a0682b46c3e58" + }, + { + "name": "ons.tenure.social_rent@E06000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14944.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_be24d520637c0272fe49b293" + }, + { + "name": "ons.tenure.social_rent@E06000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15760.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebe2b221cdd22c3880079de8" + }, + { + "name": "ons.tenure.social_rent@E06000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12923.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_42b572c6c3e7d9c40021fd9c" + }, + { + "name": "ons.tenure.social_rent@E06000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9019.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc434f0b7d43d5d2e56203e" + }, + { + "name": "ons.tenure.social_rent@E06000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11733.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eec11572df9bdd89c9b9834d" + }, + { + "name": "ons.tenure.social_rent@E06000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15130.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e954f9a7e3085e99a4fe1463" + }, + { + "name": "ons.tenure.social_rent@E06000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7889.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b88b960e536eff8a01f56009" + }, + { + "name": "ons.tenure.social_rent@E06000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9305.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd62c40c090877e4872030a1" + }, + { + "name": "ons.tenure.social_rent@E06000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10924.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4b4a419b7772fe374677729" + }, + { + "name": "ons.tenure.social_rent@E06000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10266.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6d7db0dab6d6c87125fbf51" + }, + { + "name": "ons.tenure.social_rent@E06000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7655.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ebede22d91607a418ab9d6d0" + }, + { + "name": "ons.tenure.social_rent@E06000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5331.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6c8299261c586e3beeffa9c7" + }, + { + "name": "ons.tenure.social_rent@E06000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20448.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6344c0d80b392a65e980dfe" + }, + { + "name": "ons.tenure.social_rent@E06000043", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18051.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ead85a363229bdd3cda5d146" + }, + { + "name": "ons.tenure.social_rent@E06000044", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15507.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc13a8f2d0010f5689241780" + }, + { + "name": "ons.tenure.social_rent@E06000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22397.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_da20dcabd57a4f5eaeb22ee5" + }, + { + "name": "ons.tenure.social_rent@E06000046", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7057.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c718bf3f14f786d36eebc92" + }, + { + "name": "ons.tenure.social_rent@E06000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 46858.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e2b4e784e489e7133b917473" + }, + { + "name": "ons.tenure.social_rent@E06000049", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20243.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_35fc9b71bfcbba5c2d7bb9dc" + }, + { + "name": "ons.tenure.social_rent@E06000050", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22710.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1459ccb78c364cd004fa42a" + }, + { + "name": "ons.tenure.social_rent@E06000051", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18169.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe3f8de85ffba9cc2fd1d72f" + }, + { + "name": "ons.tenure.social_rent@E06000052", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32039.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_97aa1f3de0c6729a847d403a" + }, + { + "name": "ons.tenure.social_rent@E06000053", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 162.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80b859f9007a31bf8a3f404d" + }, + { + "name": "ons.tenure.social_rent@E06000054", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31228.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8f419ab10a36b0cf92ccf1b" + }, + { + "name": "ons.tenure.social_rent@E06000055", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12200.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b62e8c69fe4207c74860605b" + }, + { + "name": "ons.tenure.social_rent@E06000056", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16077.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9c56492b56a241d39cddfebe" + }, + { + "name": "ons.tenure.social_rent@E06000057", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26085.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_38f86b76985a9794da96e8cc" + }, + { + "name": "ons.tenure.social_rent@E06000058", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19102.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec8c73a256fc8ed312df8e2" + }, + { + "name": "ons.tenure.social_rent@E06000059", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20836.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b79fd9f9d6a18a68cba23acd" + }, + { + "name": "ons.tenure.social_rent@E06000060", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 28535.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc188c3122257f1ea505ebd2" + }, + { + "name": "ons.tenure.social_rent@E06000061", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22671.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fe440ec453bba9843ae34571" + }, + { + "name": "ons.tenure.social_rent@E06000062", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24811.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a713df9745839e2589ddffef" + }, + { + "name": "ons.tenure.social_rent@E06000063", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21014.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_93db8dbba3b1a8986ef12bae" + }, + { + "name": "ons.tenure.social_rent@E06000064", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11105.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d0714763b0fb50953946b9ce" + }, + { + "name": "ons.tenure.social_rent@E06000065", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32516.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f9a27527994f1ecb83fd810" + }, + { + "name": "ons.tenure.social_rent@E06000066", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34287.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0ce672e6b629cfa7ae3fe96" + }, + { + "name": "ons.tenure.social_rent@E07000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11890.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a787ac168b7367dc5671d92a" + }, + { + "name": "ons.tenure.social_rent@E07000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5200.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5906cf0cf40980b47e7c8317" + }, + { + "name": "ons.tenure.social_rent@E07000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5581.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6802aac5b35a4d922f156ef2" + }, + { + "name": "ons.tenure.social_rent@E07000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9886.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_31a7e47b40a572980a23cab0" + }, + { + "name": "ons.tenure.social_rent@E07000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9696.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3aa1a4447fc3dd1b45333f02" + }, + { + "name": "ons.tenure.social_rent@E07000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7169.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_223bde22818759d3d8c05ca1" + }, + { + "name": "ons.tenure.social_rent@E07000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5762.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_caea8895c54a45bc8153e4ff" + }, + { + "name": "ons.tenure.social_rent@E07000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9967.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8aa5aa165dbcbe70b4840155" + }, + { + "name": "ons.tenure.social_rent@E07000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4075.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f25f62f1f0bcc15dbce90e7d" + }, + { + "name": "ons.tenure.social_rent@E07000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6398.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6468fa795a38fcd95bdb6d3e" + }, + { + "name": "ons.tenure.social_rent@E07000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4957.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b773dc53e31be3861646b403" + }, + { + "name": "ons.tenure.social_rent@E07000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8597.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9f541ca9d8bb06749991aa0" + }, + { + "name": "ons.tenure.social_rent@E07000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4466.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d42033e40b591614f8791d27" + }, + { + "name": "ons.tenure.social_rent@E07000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6898.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_528080b32a4767bb836a7ff3" + }, + { + "name": "ons.tenure.social_rent@E07000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8727.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9407bac1f5ca55d430cc1706" + }, + { + "name": "ons.tenure.social_rent@E07000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4504.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6d86105fa860154712097934" + }, + { + "name": "ons.tenure.social_rent@E07000043", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4811.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3079b997281f2704e461ad54" + }, + { + "name": "ons.tenure.social_rent@E07000044", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4653.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_93ba7fa7660bb906154f2dd1" + }, + { + "name": "ons.tenure.social_rent@E07000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5694.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6b77cdf3e1ec2cd28704d54" + }, + { + "name": "ons.tenure.social_rent@E07000046", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2847.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf19af1faa68be028f702657" + }, + { + "name": "ons.tenure.social_rent@E07000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2495.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae048d0fe36d7a034df561fe" + }, + { + "name": "ons.tenure.social_rent@E07000061", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5940.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e58456f62131e1bb3253955b" + }, + { + "name": "ons.tenure.social_rent@E07000062", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5771.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bf7ca2d8ef123ede98545cf" + }, + { + "name": "ons.tenure.social_rent@E07000063", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4774.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db5e8b001d4174b527099486" + }, + { + "name": "ons.tenure.social_rent@E07000064", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4293.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b789de3d73e2842a5ef2a9a" + }, + { + "name": "ons.tenure.social_rent@E07000065", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5701.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbcc7c66776de67cb39d2f94" + }, + { + "name": "ons.tenure.social_rent@E07000066", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16213.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b67051d1081d4937239556f3" + }, + { + "name": "ons.tenure.social_rent@E07000067", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10593.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7bcb4eb1f3a0d6f812838aac" + }, + { + "name": "ons.tenure.social_rent@E07000068", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3660.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b4b73e8b3bd86c7266cbf0d6" + }, + { + "name": "ons.tenure.social_rent@E07000069", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2051.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_633ef800a230d597d5a8c45e" + }, + { + "name": "ons.tenure.social_rent@E07000070", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10017.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9b4de248c5a57152d8f4aed" + }, + { + "name": "ons.tenure.social_rent@E07000071", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10585.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d9073da881b9a3cec85124c" + }, + { + "name": "ons.tenure.social_rent@E07000072", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7993.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5ff36ef51a58335912d6d5e" + }, + { + "name": "ons.tenure.social_rent@E07000073", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11097.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a12abbac81379528bad7b5b5" + }, + { + "name": "ons.tenure.social_rent@E07000074", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3132.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7432b2d8201fa6df56808df6" + }, + { + "name": "ons.tenure.social_rent@E07000075", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2871.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_493162c7c164f6f625c4ed49" + }, + { + "name": "ons.tenure.social_rent@E07000076", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5506.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba67f8735632a884c947f188" + }, + { + "name": "ons.tenure.social_rent@E07000077", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4809.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd78c17b6d9c3cd9d55d9a33" + }, + { + "name": "ons.tenure.social_rent@E07000078", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6432.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c6e7448ef1b6d62f0c63b3c6" + }, + { + "name": "ons.tenure.social_rent@E07000079", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6232.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d58d59eb4f4c2e9883d0548c" + }, + { + "name": "ons.tenure.social_rent@E07000080", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4836.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff86f5aa6fee2b6819fb193" + }, + { + "name": "ons.tenure.social_rent@E07000081", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7537.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_70aef8bcae840fc7eb5e8ef1" + }, + { + "name": "ons.tenure.social_rent@E07000082", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6430.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aea4c9a9b66b1d2281fb85d1" + }, + { + "name": "ons.tenure.social_rent@E07000083", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5198.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_977d34ea5e6d68e00c249834" + }, + { + "name": "ons.tenure.social_rent@E07000084", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13711.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6c70ec06ef916e8bcb9edd8" + }, + { + "name": "ons.tenure.social_rent@E07000085", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6607.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c1656f987f1f33efb4d9387" + }, + { + "name": "ons.tenure.social_rent@E07000086", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7430.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9079495a681cf2f1872aaa53" + }, + { + "name": "ons.tenure.social_rent@E07000087", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3959.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5690d14381c875dd58e5e9d8" + }, + { + "name": "ons.tenure.social_rent@E07000088", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5862.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3a26bcae6691ade2bb35240" + }, + { + "name": "ons.tenure.social_rent@E07000089", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3514.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_967c19a3281e1188ed734d18" + }, + { + "name": "ons.tenure.social_rent@E07000090", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9989.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a621684f70a457adbe3f1329" + }, + { + "name": "ons.tenure.social_rent@E07000091", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8367.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e3262370fd3546af81ff4e0a" + }, + { + "name": "ons.tenure.social_rent@E07000092", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6369.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dd92d1b0d7e6bcbaae15f2e4" + }, + { + "name": "ons.tenure.social_rent@E07000093", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7842.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b6da49aae9ccd33c03ca8835" + }, + { + "name": "ons.tenure.social_rent@E07000094", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7937.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4391e4d4f837fda311a46a1" + }, + { + "name": "ons.tenure.social_rent@E07000095", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5683.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f656666eae868487f70ac532" + }, + { + "name": "ons.tenure.social_rent@E07000096", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13320.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca58175b6fd37f0bf79597f9" + }, + { + "name": "ons.tenure.social_rent@E07000098", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7401.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2b291f8703512316a29eea2b" + }, + { + "name": "ons.tenure.social_rent@E07000099", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10594.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd161ac0610de0b3ca4a8e0" + }, + { + "name": "ons.tenure.social_rent@E07000102", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5467.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e760574bf6f566b1718130e6" + }, + { + "name": "ons.tenure.social_rent@E07000103", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6172.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_787c224d60e84fa6c9f6fe36" + }, + { + "name": "ons.tenure.social_rent@E07000105", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7501.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c9eb3f96e71527b7ef67144" + }, + { + "name": "ons.tenure.social_rent@E07000106", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7800.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7093d610816f83bb4073706" + }, + { + "name": "ons.tenure.social_rent@E07000107", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6314.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a18c4e392488303d8804126f" + }, + { + "name": "ons.tenure.social_rent@E07000108", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7039.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb5e517f75443156f1e2973a" + }, + { + "name": "ons.tenure.social_rent@E07000109", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7270.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_adf80dbece62b8dd9a3bbafd" + }, + { + "name": "ons.tenure.social_rent@E07000110", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9507.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80dc509cb40b1310db5ec139" + }, + { + "name": "ons.tenure.social_rent@E07000111", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6465.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cf855c53235d4512c975b5b5" + }, + { + "name": "ons.tenure.social_rent@E07000112", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5251.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_850ee8d155956a3c6974b7bf" + }, + { + "name": "ons.tenure.social_rent@E07000113", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8041.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab7181a0f988fa2a0a05e8d9" + }, + { + "name": "ons.tenure.social_rent@E07000114", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7396.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f05dae42ac562e6e616397df" + }, + { + "name": "ons.tenure.social_rent@E07000115", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8255.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b924b633416b337778311f0f" + }, + { + "name": "ons.tenure.social_rent@E07000116", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7029.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e87bf01ee0ec65717f6f02ac" + }, + { + "name": "ons.tenure.social_rent@E07000117", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6209.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_74b6a74b637a88518bd34f01" + }, + { + "name": "ons.tenure.social_rent@E07000118", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6637.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d9618cf8a6872b2fa7a8c9f4" + }, + { + "name": "ons.tenure.social_rent@E07000119", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3134.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f95887dc750fbe66d8aeafe1" + }, + { + "name": "ons.tenure.social_rent@E07000120", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4711.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b0f29015903174af998f8640" + }, + { + "name": "ons.tenure.social_rent@E07000121", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6153.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c76735c46b6c4e2c3311f245" + }, + { + "name": "ons.tenure.social_rent@E07000122", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4491.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ecbc3aeb41c1c1429be978a6" + }, + { + "name": "ons.tenure.social_rent@E07000123", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10983.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6e7e80497aa5e149e2ddd8a0" + }, + { + "name": "ons.tenure.social_rent@E07000124", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2151.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8a546d61c083352dbd32b79c" + }, + { + "name": "ons.tenure.social_rent@E07000125", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4514.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8b57a9de23e144e094788995" + }, + { + "name": "ons.tenure.social_rent@E07000126", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5039.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f1ec06065b72054b87e8fbb" + }, + { + "name": "ons.tenure.social_rent@E07000127", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6958.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e57c85aa296bd99d71b7d5b9" + }, + { + "name": "ons.tenure.social_rent@E07000128", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3871.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef2a6cde841edc03e6cdb9de" + }, + { + "name": "ons.tenure.social_rent@E07000129", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3497.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dce7242d70def5b5eab13220" + }, + { + "name": "ons.tenure.social_rent@E07000130", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8632.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba35e3e0cb11ce295c5bce94" + }, + { + "name": "ons.tenure.social_rent@E07000131", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3531.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2cfd9d331d528047ff7a1f4a" + }, + { + "name": "ons.tenure.social_rent@E07000132", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5049.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c12f8f30e75e3b212b21cb23" + }, + { + "name": "ons.tenure.social_rent@E07000133", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2416.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e376db2d1c858dd8f7a5c7ad" + }, + { + "name": "ons.tenure.social_rent@E07000134", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6089.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9cfe1511c1b8addadfeaae31" + }, + { + "name": "ons.tenure.social_rent@E07000135", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 1793.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a547c9bd595ae850df5a1b7a" + }, + { + "name": "ons.tenure.social_rent@E07000136", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5726.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e1ce3f580ae53f4bd0f47bef" + }, + { + "name": "ons.tenure.social_rent@E07000137", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7295.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9fede8a9771ee8aad1830fcf" + }, + { + "name": "ons.tenure.social_rent@E07000138", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8953.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_50304e45025b8fbda95b11db" + }, + { + "name": "ons.tenure.social_rent@E07000139", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5113.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8f1fdd778046fa5144d0542b" + }, + { + "name": "ons.tenure.social_rent@E07000140", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4936.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a35665d8ef64242c912875e4" + }, + { + "name": "ons.tenure.social_rent@E07000141", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7851.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9377605bee46cf5cf839803c" + }, + { + "name": "ons.tenure.social_rent@E07000142", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4605.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_27148da0fc40dc3bdc808c48" + }, + { + "name": "ons.tenure.social_rent@E07000143", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8507.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8d00139372e5cf8d7da75b5a" + }, + { + "name": "ons.tenure.social_rent@E07000144", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5619.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8852b9a61fb06dc9f10ed87" + }, + { + "name": "ons.tenure.social_rent@E07000145", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7213.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d6f7f3c60fbadb5efe13d1ab" + }, + { + "name": "ons.tenure.social_rent@E07000146", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9180.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f327b91db7568fbf0942391e" + }, + { + "name": "ons.tenure.social_rent@E07000147", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6275.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1a8cec9c4f676db2f04f3e7" + }, + { + "name": "ons.tenure.social_rent@E07000148", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19518.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f9364731dec77210c4847521" + }, + { + "name": "ons.tenure.social_rent@E07000149", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7184.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8aa73681fe94ba0cfc58a8f" + }, + { + "name": "ons.tenure.social_rent@E07000170", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8130.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e6400b6fe630feac38af2b6" + }, + { + "name": "ons.tenure.social_rent@E07000171", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7697.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dbd040659ed890c6b9faa5ac" + }, + { + "name": "ons.tenure.social_rent@E07000172", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5337.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3581bc34a072bc9d12a04c15" + }, + { + "name": "ons.tenure.social_rent@E07000173", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4995.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ab1a014793243c6ab016a3e5" + }, + { + "name": "ons.tenure.social_rent@E07000174", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7865.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddc9e128246245177f5eb295" + }, + { + "name": "ons.tenure.social_rent@E07000175", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7413.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_802b1134a1b33d84ddbdc0fa" + }, + { + "name": "ons.tenure.social_rent@E07000176", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4273.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f070d6f07c7b2b409a7a092b" + }, + { + "name": "ons.tenure.social_rent@E07000177", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8742.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1d70c55c3275a512dcc5657" + }, + { + "name": "ons.tenure.social_rent@E07000178", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11554.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b629c39f1b318da4a0b5a69f" + }, + { + "name": "ons.tenure.social_rent@E07000179", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7386.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc189a081c3c01d1b7b6df28" + }, + { + "name": "ons.tenure.social_rent@E07000180", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8206.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5332785e432334aac2c9131f" + }, + { + "name": "ons.tenure.social_rent@E07000181", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6363.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e8d5f8d942ac9910ce4c1a2b" + }, + { + "name": "ons.tenure.social_rent@E07000192", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7031.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a068389ca5963fd0c151de01" + }, + { + "name": "ons.tenure.social_rent@E07000193", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6634.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bc157f8ebcada01488a0f96c" + }, + { + "name": "ons.tenure.social_rent@E07000194", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5932.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f22e8f6ca62155aa72683e49" + }, + { + "name": "ons.tenure.social_rent@E07000195", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9142.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c78916f48b978f7d5c2af118" + }, + { + "name": "ons.tenure.social_rent@E07000196", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6471.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f32a84f6facedf5cebab36a3" + }, + { + "name": "ons.tenure.social_rent@E07000197", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8146.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dafc54342206a4a896440f1" + }, + { + "name": "ons.tenure.social_rent@E07000198", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3653.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ee7e458e43a587645d1ef5d8" + }, + { + "name": "ons.tenure.social_rent@E07000199", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5926.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ef9650a68a21144aebc581b2" + }, + { + "name": "ons.tenure.social_rent@E07000200", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5333.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dffd1a021126977ead0a38c" + }, + { + "name": "ons.tenure.social_rent@E07000202", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12368.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_df1fc61736b8fcbb8a821cc0" + }, + { + "name": "ons.tenure.social_rent@E07000203", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5011.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_69b1c264b4ca6412be5af72f" + }, + { + "name": "ons.tenure.social_rent@E07000207", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5608.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e348d84896cd31eeae7efd5c" + }, + { + "name": "ons.tenure.social_rent@E07000208", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 2743.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aee36b66394b2f33c480b19e" + }, + { + "name": "ons.tenure.social_rent@E07000209", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7066.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_80066ceaf1d2b28fa05041d1" + }, + { + "name": "ons.tenure.social_rent@E07000210", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4327.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9d63b998a606651786f9b1bf" + }, + { + "name": "ons.tenure.social_rent@E07000211", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6907.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_88ec1e0bd458f842a7a1f280" + }, + { + "name": "ons.tenure.social_rent@E07000212", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4499.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b2ccfa1a11e5c5f6637f5fa5" + }, + { + "name": "ons.tenure.social_rent@E07000213", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5296.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_544303ff8c5833fc7378dbbb" + }, + { + "name": "ons.tenure.social_rent@E07000214", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3449.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_422077e1d9f24d4616381704" + }, + { + "name": "ons.tenure.social_rent@E07000215", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3939.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cec5ad8010221c3b068e37b3" + }, + { + "name": "ons.tenure.social_rent@E07000216", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6427.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b5e8b45a52cb84f8571f75a0" + }, + { + "name": "ons.tenure.social_rent@E07000217", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4792.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_967202aeba7141e8d4cb480e" + }, + { + "name": "ons.tenure.social_rent@E07000218", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3752.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f417194dd37cd05035f786b9" + }, + { + "name": "ons.tenure.social_rent@E07000219", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8157.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f79dff997b4a4f3272a8de87" + }, + { + "name": "ons.tenure.social_rent@E07000220", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6074.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e9b5e26b3c78fc31c4d50e20" + }, + { + "name": "ons.tenure.social_rent@E07000221", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7906.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d8a25b0d7c7c11ff6f7adcc1" + }, + { + "name": "ons.tenure.social_rent@E07000222", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8804.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f1df485c3f0bc6ba12855bfc" + }, + { + "name": "ons.tenure.social_rent@E07000223", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3436.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7408d40aeaa4543a046422c" + }, + { + "name": "ons.tenure.social_rent@E07000224", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6774.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db24311306fbee41874d3fc7" + }, + { + "name": "ons.tenure.social_rent@E07000225", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8157.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ddedf473601a090ae74eea31" + }, + { + "name": "ons.tenure.social_rent@E07000226", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 10432.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c42ed7e2c702176c4bdf8707" + }, + { + "name": "ons.tenure.social_rent@E07000227", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7155.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c00d92f7a54e157b360c84af" + }, + { + "name": "ons.tenure.social_rent@E07000228", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6812.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6eb0b78884dc9cda8701f301" + }, + { + "name": "ons.tenure.social_rent@E07000229", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4845.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e7622f5ab7e14133dbebe96a" + }, + { + "name": "ons.tenure.social_rent@E07000234", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4417.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a8ba952b807e04bd0eb22ba1" + }, + { + "name": "ons.tenure.social_rent@E07000235", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5001.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fc93890610336742b8a0c3bf" + }, + { + "name": "ons.tenure.social_rent@E07000236", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7331.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3db593f78e19b758293ec5d6" + }, + { + "name": "ons.tenure.social_rent@E07000237", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7269.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f02d52b168d02f291f900edb" + }, + { + "name": "ons.tenure.social_rent@E07000238", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8954.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9048a78e1caa834722a70f51" + }, + { + "name": "ons.tenure.social_rent@E07000239", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6411.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d00457c52f9b61ddc465c63f" + }, + { + "name": "ons.tenure.social_rent@E07000240", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7187.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cc93a60abeb0e8c0c5c4b4d1" + }, + { + "name": "ons.tenure.social_rent@E07000241", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11714.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb06ce13ceb131512a5bb587" + }, + { + "name": "ons.tenure.social_rent@E07000242", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8111.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_672e5cf78ce4a010154bd45a" + }, + { + "name": "ons.tenure.social_rent@E07000243", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9594.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7ec5645d38f469a85aaac89" + }, + { + "name": "ons.tenure.social_rent@E07000244", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14477.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f59da57bfe69cbb91fc8a982" + }, + { + "name": "ons.tenure.social_rent@E07000245", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12735.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d0f76bd52c1cb1c0017642c" + }, + { + "name": "ons.tenure.social_rent@E08000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23555.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3a384a1d8726e349a8dbd3fb" + }, + { + "name": "ons.tenure.social_rent@E08000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12044.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4a49cb5caf13cb839e756fc5" + }, + { + "name": "ons.tenure.social_rent@E08000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 63276.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_36f5b0d115cd86718d8b4d48" + }, + { + "name": "ons.tenure.social_rent@E08000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19760.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5ba460050df128f17517a952" + }, + { + "name": "ons.tenure.social_rent@E08000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18815.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ca08e0f3e5accb3321ab9e82" + }, + { + "name": "ons.tenure.social_rent@E08000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 29227.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c8e9e6af72c2ed9e754a65b8" + }, + { + "name": "ons.tenure.social_rent@E08000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16849.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed5c6012e072bfe51771ca88" + }, + { + "name": "ons.tenure.social_rent@E08000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21125.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_5449b5298e06bebf33184a67" + }, + { + "name": "ons.tenure.social_rent@E08000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14419.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9eabf24afae166a95490bd28" + }, + { + "name": "ons.tenure.social_rent@E08000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24333.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a2836cadc5f155c5c53a7c6c" + }, + { + "name": "ons.tenure.social_rent@E08000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 16687.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eeff42ec7079af7b74871f0f" + }, + { + "name": "ons.tenure.social_rent@E08000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 54758.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_aba0f33fdd79854fa0e2b70f" + }, + { + "name": "ons.tenure.social_rent@E08000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 15993.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c3f21750d92b193bccc7532b" + }, + { + "name": "ons.tenure.social_rent@E08000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17735.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e168acd5482a3c7616d7beaf" + }, + { + "name": "ons.tenure.social_rent@E08000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22065.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_986b9a830d25b4aeabd9c9d7" + }, + { + "name": "ons.tenure.social_rent@E08000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21294.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_baaa009d94e8211269cb54b6" + }, + { + "name": "ons.tenure.social_rent@E08000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22694.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_869efc6303be56eed42b904b" + }, + { + "name": "ons.tenure.social_rent@E08000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23545.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bf70de081db6d1ee8d16a2a8" + }, + { + "name": "ons.tenure.social_rent@E08000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 52334.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fdb4ff05386915442083de0b" + }, + { + "name": "ons.tenure.social_rent@E08000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33476.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e4aaec4d296c5b6d3bb23bc4" + }, + { + "name": "ons.tenure.social_rent@E08000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 19765.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_818743b09612392df00b61af" + }, + { + "name": "ons.tenure.social_rent@E08000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20208.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8c4c05051c6464935f40f7f" + }, + { + "name": "ons.tenure.social_rent@E08000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32554.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7a2355ed48605e996bae6e03" + }, + { + "name": "ons.tenure.social_rent@E08000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 99499.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c07e1a4533cc9f1be93cae5b" + }, + { + "name": "ons.tenure.social_rent@E08000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22766.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae6e04ac05767c5009940318" + }, + { + "name": "ons.tenure.social_rent@E08000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26021.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eaa04f154dfc8a224f25d70e" + }, + { + "name": "ons.tenure.social_rent@E08000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 34612.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff73b45db7f2531909ee55ec" + }, + { + "name": "ons.tenure.social_rent@E08000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12532.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9bd96eb9c0692cf712b36d5d" + }, + { + "name": "ons.tenure.social_rent@E08000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26576.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7c980b2c61c8d5a6cd8c8ea7" + }, + { + "name": "ons.tenure.social_rent@E08000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26484.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8dbe78fe0960d0375b824a8c" + }, + { + "name": "ons.tenure.social_rent@E08000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 30731.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d5f6fcf87b0b3d43144d3132" + }, + { + "name": "ons.tenure.social_rent@E08000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13170.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ad261fad8c6356e229662696" + }, + { + "name": "ons.tenure.social_rent@E08000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26288.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_11038a12f6299d0d7debe740" + }, + { + "name": "ons.tenure.social_rent@E08000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 69742.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8492927422c79aa6d647774f" + }, + { + "name": "ons.tenure.social_rent@E08000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 33188.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c7d3e34b351a9231c90b89fe" + }, + { + "name": "ons.tenure.social_rent@E08000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22334.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f75417878016b4b5ce5bced3" + }, + { + "name": "ons.tenure.social_rent@E09000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 730.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_93316fdf6f7f3ded3be5271b" + }, + { + "name": "ons.tenure.social_rent@E09000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23273.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_58eca24a1b682f7e90fc6bb4" + }, + { + "name": "ons.tenure.social_rent@E09000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20034.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4db642f2f8fa72f29792ebc2" + }, + { + "name": "ons.tenure.social_rent@E09000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13977.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_63c9046d5986f69bb873f3ce" + }, + { + "name": "ons.tenure.social_rent@E09000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27876.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9a228595d86684c3e0cd61e3" + }, + { + "name": "ons.tenure.social_rent@E09000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17926.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f5534bda590be6040fee66ae" + }, + { + "name": "ons.tenure.social_rent@E09000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 31250.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_cd5f78dc17c2f32df7745ee6" + }, + { + "name": "ons.tenure.social_rent@E09000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 27371.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f306df978531c8cc30edbb41" + }, + { + "name": "ons.tenure.social_rent@E09000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 23382.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d96aaf18bb0d9166e4eed9f7" + }, + { + "name": "ons.tenure.social_rent@E09000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20573.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_61dcfa36b2e9d40c2b2e7a9c" + }, + { + "name": "ons.tenure.social_rent@E09000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35327.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_db720c0b448faaa8c6d79e2e" + }, + { + "name": "ons.tenure.social_rent@E09000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 42945.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e24448ad9ac9b3aa87ac5e58" + }, + { + "name": "ons.tenure.social_rent@E09000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 24231.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4869fa2b22d962ae85a081c7" + }, + { + "name": "ons.tenure.social_rent@E09000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26474.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c329431602be23b5eb0f8e6c" + }, + { + "name": "ons.tenure.social_rent@E09000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9298.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd8d4aeb6d62d8a87361af86" + }, + { + "name": "ons.tenure.social_rent@E09000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13807.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fff61ec4f1781f55337d24b4" + }, + { + "name": "ons.tenure.social_rent@E09000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 17613.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f446ffa213f770f05d7edffc" + }, + { + "name": "ons.tenure.social_rent@E09000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 21618.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b1ee820bde554a16f51064a4" + }, + { + "name": "ons.tenure.social_rent@E09000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 38787.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c0ea87c23d19b8e861b1b35" + }, + { + "name": "ons.tenure.social_rent@E09000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 18430.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fb5bae5ffbdcdb56bb7d379e" + }, + { + "name": "ons.tenure.social_rent@E09000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7244.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ff767efd2f8db8999ba82443" + }, + { + "name": "ons.tenure.social_rent@E09000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 45243.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b3d21b23e7ce9272a2bc41cc" + }, + { + "name": "ons.tenure.social_rent@E09000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 35753.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_66b2866d912fba5d4441a77c" + }, + { + "name": "ons.tenure.social_rent@E09000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11599.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_322d464bce16bb9298316bf0" + }, + { + "name": "ons.tenure.social_rent@E09000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 32390.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_dcdb2c893412266077be9862" + }, + { + "name": "ons.tenure.social_rent@E09000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11707.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ce9af017d5b2616c5a016518" + }, + { + "name": "ons.tenure.social_rent@E09000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9752.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_9dbf759a2a9422d69e502385" + }, + { + "name": "ons.tenure.social_rent@E09000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 51991.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_eba735f9390a04ffc5bba36a" + }, + { + "name": "ons.tenure.social_rent@E09000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11667.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_808411194d250a416f2b6e0b" + }, + { + "name": "ons.tenure.social_rent@E09000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 43237.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ae3293037d0993cf005fb63a" + }, + { + "name": "ons.tenure.social_rent@E09000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 22099.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a7068f557e7d763f21d41cf9" + }, + { + "name": "ons.tenure.social_rent@E09000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26544.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7ce050d7d2fdca93490a3b36" + }, + { + "name": "ons.tenure.social_rent@E09000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 26810.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c5c010a9a81f75c436a8a775" + }, + { + "name": "ons.tenure.social_rent@N09000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7613.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ec4e5e84ac9c57693b332d87" + }, + { + "name": "ons.tenure.social_rent@N09000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8890.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_78d06e5c199c9bf80d60f9ba" + }, + { + "name": "ons.tenure.social_rent@N09000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 39217.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f77b66c1c781fff1b1634b98" + }, + { + "name": "ons.tenure.social_rent@N09000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7712.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7fd8863ed19c148f8b35dff7" + }, + { + "name": "ons.tenure.social_rent@N09000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 13830.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_fbe84b9c3c52a47ffb9fd24c" + }, + { + "name": "ons.tenure.social_rent@N09000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4308.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_b189bce4bb530e661e600c1c" + }, + { + "name": "ons.tenure.social_rent@N09000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7402.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_e47dfb8192c59b591b09a301" + }, + { + "name": "ons.tenure.social_rent@N09000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7168.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a864b97d294e5ddc3bb7a8c3" + }, + { + "name": "ons.tenure.social_rent@N09000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5093.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_2f50c7eeb35a4cb54d82f58e" + }, + { + "name": "ons.tenure.social_rent@N09000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7356.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_68318fc0a6735bb301661554" + }, + { + "name": "ons.tenure.social_rent@N09000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8876.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ba031d343d9abb800b08f5b0" + }, + { + "name": "ons.tenure.social_rent@S12000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 6447.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_42ed49f61968e92bdc138f96" + }, + { + "name": "ons.tenure.social_rent@S12000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 13519.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_38937638aac0d99ae408d13d" + }, + { + "name": "ons.tenure.social_rent@S12000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14257.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f7c4abfa30a860098159ceba" + }, + { + "name": "ons.tenure.social_rent@S12000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10918.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_eb2b204ba2d9c26af64df314" + }, + { + "name": "ons.tenure.social_rent@S12000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 4275.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f4a24566152fd68c030203c4" + }, + { + "name": "ons.tenure.social_rent@S12000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2178.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_3138da7650c06be790b47e66" + }, + { + "name": "ons.tenure.social_rent@S12000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18021.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_0d23b8ada4c4df39d716bfff" + }, + { + "name": "ons.tenure.social_rent@S12000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 21731.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5d5847d5eb23c382f151d850" + }, + { + "name": "ons.tenure.social_rent@S12000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9399.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5b0728e40624ca538135df7c" + }, + { + "name": "ons.tenure.social_rent@S12000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9446.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_7e39cf50f5a3b74b31b32944" + }, + { + "name": "ons.tenure.social_rent@S12000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 8287.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_da5afaeb6366f54acdf02092" + }, + { + "name": "ons.tenure.social_rent@S12000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 16946.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_ac37e17e0173adf97f9ef6f8" + }, + { + "name": "ons.tenure.social_rent@S12000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 1795.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_a406a4144c6eef8e6bf10d62" + }, + { + "name": "ons.tenure.social_rent@S12000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11631.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1194fd43829b2e362363caeb" + }, + { + "name": "ons.tenure.social_rent@S12000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 2406.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_a1ff33a79d08f73546d654f2" + }, + { + "name": "ons.tenure.social_rent@S12000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 9380.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_f011c7429d5fbf5d3360ba70" + }, + { + "name": "ons.tenure.social_rent@S12000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 29045.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5f81a957369e167e2d0fe04e" + }, + { + "name": "ons.tenure.social_rent@S12000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7654.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_6601c3f7d8d80977e7cb5e3a" + }, + { + "name": "ons.tenure.social_rent@S12000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 24507.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_5adcbaca5e17658476f12385" + }, + { + "name": "ons.tenure.social_rent@S12000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 17848.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_8ac7237ac69db5554f61bfc8" + }, + { + "name": "ons.tenure.social_rent@S12000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 7976.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a63e361d87afb9e5471e7f2" + }, + { + "name": "ons.tenure.social_rent@S12000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37484.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_4ebaedd154daa5acef6ea096" + }, + { + "name": "ons.tenure.social_rent@S12000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18413.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_60909e6df6835cbdbfc8cd8f" + }, + { + "name": "ons.tenure.social_rent@S12000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 14386.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_78e2b017b6daf0ecb27a2054" + }, + { + "name": "ons.tenure.social_rent@S12000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 19587.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_01d62499c7d4eda198f9c988" + }, + { + "name": "ons.tenure.social_rent@S12000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 10490.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_c47fbc3b852188efe73c051a" + }, + { + "name": "ons.tenure.social_rent@S12000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 18335.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_b8891547f06fae1d29865f93" + }, + { + "name": "ons.tenure.social_rent@S12000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 5045.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7bc1eb2bd2ddacbb8cd6b01" + }, + { + "name": "ons.tenure.social_rent@S12000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 37071.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_8c24c15743c2bf2882190ca2" + }, + { + "name": "ons.tenure.social_rent@S12000048", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 11503.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_74a0d9b94eca480f34d245c0" + }, + { + "name": "ons.tenure.social_rent@S12000049", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 102410.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_1a1e462373c8e993399c81b0" + }, + { + "name": "ons.tenure.social_rent@S12000050", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "active", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 1, + "resolved_period": 2025, + "resolved_value": 42133.0, + "resolved_fact_period": "2022", + "resolved_fact_key": "ledger_aggregate_fact_v2_e6ee6a7fdbd5b79f8c048231" + }, + { + "name": "ons.tenure.social_rent@W06000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 4820.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d833be66afd09d76e914fb15" + }, + { + "name": "ons.tenure.social_rent@W06000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8557.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c32f46430b1285773c7afce5" + }, + { + "name": "ons.tenure.social_rent@W06000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 6257.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f875a9f0327d5808309bc733" + }, + { + "name": "ons.tenure.social_rent@W06000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5648.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ced97754b31411fc81acbab9" + }, + { + "name": "ons.tenure.social_rent@W06000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9714.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f39a67983592e57bf4ad54fc" + }, + { + "name": "ons.tenure.social_rent@W06000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12161.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_3d3773d95d7dd19a44e31f55" + }, + { + "name": "ons.tenure.social_rent@W06000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 3239.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_be9636bd92523051fd9d41fa" + }, + { + "name": "ons.tenure.social_rent@W06000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8994.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed6629adf1c3d916b276bf33" + }, + { + "name": "ons.tenure.social_rent@W06000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11698.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_be57701a255a8aa289a1157b" + }, + { + "name": "ons.tenure.social_rent@W06000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 20045.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bdd9bd5d180d1dbf6aa3c6b6" + }, + { + "name": "ons.tenure.social_rent@W06000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 11999.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_bd88e849f4be87057321df7d" + }, + { + "name": "ons.tenure.social_rent@W06000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8674.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_ed6c588bb818132936fdc0a7" + }, + { + "name": "ons.tenure.social_rent@W06000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7023.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_91fb9ba52df14f4c977fffa9" + }, + { + "name": "ons.tenure.social_rent@W06000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 25278.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_faa2ead528ed505e69eb2981" + }, + { + "name": "ons.tenure.social_rent@W06000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14175.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_c4501ade457d9f178632ced9" + }, + { + "name": "ons.tenure.social_rent@W06000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 14323.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_4bb584d5af48ed3211d07ba4" + }, + { + "name": "ons.tenure.social_rent@W06000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 7194.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_d7b4898455add8be14d59cd6" + }, + { + "name": "ons.tenure.social_rent@W06000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 9575.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_6b6bacba07514a493bb3e995" + }, + { + "name": "ons.tenure.social_rent@W06000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5743.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_46c1bc67e033bd856165a35a" + }, + { + "name": "ons.tenure.social_rent@W06000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 12864.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_f257a3e035d8e194c68856dc" + }, + { + "name": "ons.tenure.social_rent@W06000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 8481.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_a74fac385b1354b4dc827979" + }, + { + "name": "ons.tenure.social_rent@W06000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "active", + "matched_fact_count_overall": 2, + "matched_fact_count_at_or_before_period": 2, + "resolved_period": 2025, + "resolved_value": 5626.0, + "resolved_fact_period": "2021", + "resolved_fact_key": "ledger_aggregate_fact_v2_7caa116689ede7995985c123" + } + ] + } + } + }, + "ons.rent.private_rent": { + "status": "multiple_deferrals", + "geography_levels": { + "local_authority": { + "status": "multiple_deferrals", + "candidate_count": 361, + "candidates": [ + { + "name": "ons.rent.private_rent@E06000001", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000001", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000002", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000002", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000003", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000003", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000004", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000004", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000005", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000006", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000007", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000007", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000008", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000009", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000010", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000011", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000012", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000012", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000013", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000013", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000014", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000014", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000015", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000015", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000016", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000016", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000017", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000017", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000018", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000018", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000019", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000019", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000020", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000020", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000021", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000021", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000022", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000022", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000023", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000023", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000024", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000024", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000025", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000025", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000026", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000026", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000027", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000027", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000030", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000030", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000031", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000031", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000032", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000032", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000033", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000033", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000034", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000034", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000035", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000035", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000036", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000036", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000037", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000037", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000038", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000038", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000039", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000039", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000040", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000040", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000041", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000041", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000042", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000042", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000043", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000043", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000044", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000044", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000045", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000045", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000046", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000046", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000047", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000047", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000049", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000049", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000050", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000050", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000051", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000051", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000052", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000052", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000053", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000053", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_english_lad_absent", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001." + }, + { + "name": "ons.rent.private_rent@E06000054", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000054", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000055", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000055", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000056", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000056", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000057", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000057", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000058", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000058", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000059", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000059", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000060", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000060", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000061", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000061", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000062", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000062", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000063", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000063", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000064", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000064", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000065", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000065", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E06000066", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000066", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000008", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000009", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000010", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000011", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000012", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000012", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000032", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000032", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000033", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000033", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000034", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000034", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000035", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000035", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000036", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000036", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000037", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000037", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000038", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000038", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000039", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000039", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000040", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000040", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000041", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000041", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000042", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000042", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000043", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000043", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000044", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000044", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000045", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000045", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000046", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000046", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000047", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000047", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000061", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000061", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000062", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000062", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000063", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000063", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000064", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000064", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000065", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000065", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000066", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000066", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000067", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000067", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000068", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000068", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000069", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000069", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000070", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000070", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000071", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000071", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000072", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000072", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000073", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000073", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000074", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000074", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000075", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000075", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000076", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000076", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000077", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000077", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000078", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000078", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000079", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000079", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000080", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000080", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000081", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000081", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000082", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000082", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000083", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000083", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000084", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000084", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000085", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000085", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000086", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000086", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000087", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000087", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000088", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000088", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000089", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000089", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000090", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000090", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000091", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000091", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000092", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000092", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000093", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000093", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000094", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000094", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000095", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000095", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000096", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000096", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000098", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000098", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000099", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000099", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000102", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000102", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000103", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000103", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000105", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000105", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000106", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000106", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000107", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000107", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000108", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000108", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000109", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000109", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000110", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000110", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000111", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000111", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000112", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000112", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000113", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000113", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000114", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000114", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000115", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000115", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000116", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000116", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000117", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000117", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000118", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000118", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000119", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000119", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000120", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000120", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000121", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000121", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000122", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000122", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000123", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000123", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000124", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000124", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000125", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000125", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000126", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000126", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000127", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000127", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000128", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000128", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000129", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000129", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000130", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000130", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000131", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000131", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000132", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000132", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000133", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000133", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000134", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000134", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000135", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000135", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000136", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000136", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000137", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000137", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000138", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000138", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000139", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000139", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000140", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000140", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000141", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000141", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000142", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000142", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000143", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000143", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000144", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000144", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000145", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000145", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000146", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000146", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000147", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000147", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000148", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000148", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000149", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000149", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000170", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000170", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000171", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000171", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000172", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000172", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000173", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000173", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000174", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000174", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000175", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000175", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000176", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000176", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000177", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000177", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000178", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000178", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000179", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000179", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000180", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000180", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000181", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000181", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000192", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000192", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000193", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000193", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000194", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000194", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000195", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000195", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000196", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000196", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000197", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000197", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000198", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000198", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000199", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000199", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000200", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000200", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000202", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000202", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000203", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000203", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000207", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000207", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000208", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000208", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000209", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000209", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000210", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000210", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000211", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000211", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000212", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000212", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000213", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000213", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000214", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000214", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000215", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000215", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000216", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000216", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000217", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000217", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000218", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000218", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000219", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000219", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000220", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000220", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000221", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000221", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000222", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000222", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000223", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000223", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000224", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000224", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000225", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000225", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000226", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000226", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000227", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000227", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000228", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000228", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000229", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000229", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000234", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000234", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000235", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000235", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000236", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000236", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000237", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000237", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000238", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000238", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000239", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000239", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000240", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000240", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000241", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000241", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000242", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000242", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000243", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000243", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000244", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000244", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E07000245", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000245", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000001", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000001", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000002", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000002", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000003", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000003", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000004", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000004", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000005", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000006", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000007", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000007", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000008", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000009", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000010", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000011", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000012", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000012", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000013", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000013", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000014", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000014", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000015", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000015", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000016", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000016", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_english_lad_absent", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001." + }, + { + "name": "ons.rent.private_rent@E08000017", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000017", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000018", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000018", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000019", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_english_lad_absent", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001." + }, + { + "name": "ons.rent.private_rent@E08000021", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000021", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000022", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000022", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000023", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000023", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000024", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000024", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000025", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000025", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000026", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000026", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000027", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000027", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000028", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000028", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000029", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000029", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000030", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000030", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000031", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000031", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000032", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000032", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000033", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000033", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000034", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000034", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000035", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000035", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000036", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000036", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E08000037", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000037", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000001", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_english_lad_absent", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001." + }, + { + "name": "ons.rent.private_rent@E09000002", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000002", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000003", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000003", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000004", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000004", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000005", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000006", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000007", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000007", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000008", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000009", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000010", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000011", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000012", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000012", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000013", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000013", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000014", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000014", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000015", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000015", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000016", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000016", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000017", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000017", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000018", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000018", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000019", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000019", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000020", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000020", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000021", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000021", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000022", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000022", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000023", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000023", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000024", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000024", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000025", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000025", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000026", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000026", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000027", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000027", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000028", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000028", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000029", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000029", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000030", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000030", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000031", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000031", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000032", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000032", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@E09000033", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000033", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@N09000001", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000001", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000002", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000002", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000003", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000003", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000004", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000004", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000007", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000007", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000009", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@N09000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_ni_absent", + "signed_rationale": "ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows." + }, + { + "name": "ons.rent.private_rent@S12000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000005", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000006", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000008", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000010", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000011", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000013", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000013", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000014", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000014", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000017", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000017", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000018", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000018", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000019", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000019", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000020", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000020", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000021", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000021", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000023", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000023", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000026", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000026", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000027", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000027", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000028", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000028", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000029", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000029", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000030", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000030", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000033", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000033", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000034", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000034", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000035", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000035", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000036", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000036", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000038", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000038", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000039", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000039", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000040", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000040", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000041", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000041", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000042", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000042", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000045", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000045", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000047", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000047", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000048", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000048", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000049", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000049", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@S12000050", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000050", + "status": "no_fact_for_area", + "matched_fact_count_overall": 0, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_for_area", + "signed_reason_id": "private_rent_pipr_scotland_brma_grain", + "signed_rationale": "ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain." + }, + { + "name": "ons.rent.private_rent@W06000001", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000001", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000002", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000002", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000003", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000003", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000004", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000004", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000005", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000005", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000006", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000006", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000008", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000008", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000009", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000009", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000010", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000010", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000011", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000011", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000012", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000012", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000013", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000013", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000014", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000014", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000015", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000015", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000016", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000016", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000018", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000018", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000019", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000019", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000020", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000020", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000021", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000021", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000022", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000022", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000023", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000023", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + }, + { + "name": "ons.rent.private_rent@W06000024", + "target_id": "ons.rent.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000024", + "status": "no_fact_at_or_before_period", + "matched_fact_count_overall": 1, + "matched_fact_count_at_or_before_period": 0, + "error": "ledger_reference_compile_status_no_fact_at_or_before_period", + "signed_reason_id": "private_rent_pipr_after_target_period", + "signed_rationale": "ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run." + } + ] + } + } + } + } +} 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 new file mode 100644 index 00000000..3fbdbcf7 --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/local_target_references.json @@ -0,0 +1,364582 @@ +{ + "country": "uk", + "description": "UK local-area Ledger target references for constituency and local-authority calibration. Rows are generated from the local rows in uk_population_targets.json and local_area_crosswalk.json: name is target_id@geography_id, ledger_selector is the contract selector plus geography_level/geography_id pins, entity and measure come from the policyengine binding, and observed values stay in Ledger facts. Deferred area absences are recorded in the membership report.", + "allowed_value_operations": [ + "identity", + "sum", + "calendar_year_average", + "latest_plateau", + "count_x_mean" + ], + "target_references": [ + { + "name": "hmrc.self_employment_income.amount@E14001063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001150", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001151", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001152", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001153", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001154", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001155", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001156", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001157", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001158", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001159", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001160", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001161", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001162", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001163", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001164", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001165", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001166", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001167", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001168", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001169", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001182", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001183", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001184", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001185", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001186", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001187", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001188", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001189", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001190", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001191", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001201", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001204", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001205", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001206", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001230", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001231", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001232", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001233", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001246", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001247", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001248", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001249", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001250", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001251", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001252", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001253", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001254", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001255", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001256", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001257", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001258", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001259", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001260", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001261", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001262", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001263", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001264", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001265", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001266", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001267", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001268", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001269", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001270", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001271", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001272", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001273", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001274", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001275", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001276", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001277", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001278", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001279", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001280", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001281", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001282", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001283", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001284", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001285", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001286", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001287", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001288", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001289", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001290", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001291", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001292", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001293", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001294", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001295", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001296", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001297", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001298", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001299", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001300", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001301", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001302", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001303", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001304", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001305", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001306", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001307", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001308", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001309", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001310", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001311", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001312", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001313", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001314", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001315", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001316", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001317", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001318", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001319", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001320", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001321", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001322", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001323", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001324", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001325", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001326", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001327", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001328", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001329", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001330", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001331", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001332", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001333", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001334", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001335", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001336", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001337", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001338", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001339", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001340", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001341", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001342", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001343", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001344", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001345", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001346", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001347", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001348", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001349", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001350", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001351", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001352", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001353", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001354", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001355", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001356", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001357", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001358", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001359", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001360", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001361", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001362", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001363", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001364", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001365", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001366", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001367", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001368", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001369", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001370", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001371", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001372", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001373", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001374", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001375", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001376", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001377", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001378", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001379", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001380", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001381", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001382", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001383", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001384", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001385", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001386", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001387", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001388", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001389", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001390", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001391", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001392", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001393", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001394", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001395", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001396", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001397", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001398", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001399", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001400", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001401", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001402", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001403", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001404", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001405", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001406", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001407", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001408", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001409", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001410", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001411", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001412", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001413", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001414", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001415", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001417", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001418", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001419", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001420", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001421", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001422", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001423", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001424", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001425", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001426", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001427", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001428", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001429", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001430", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001431", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001432", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001433", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001434", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001435", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001436", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001437", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001438", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001439", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001440", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001441", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001442", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001443", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001444", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001445", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001446", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001447", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001448", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001449", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001450", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001451", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001452", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001453", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001454", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001455", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001456", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001457", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001458", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001459", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001460", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001461", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001462", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001463", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001464", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001465", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001466", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001467", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001468", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001469", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001470", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001471", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001472", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001473", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001474", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001475", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001476", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001477", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001478", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001479", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001480", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001481", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001482", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001483", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001484", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001485", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001486", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001487", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001488", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001489", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001490", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001491", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001492", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001493", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001494", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001495", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001496", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001497", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001498", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001499", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001500", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001501", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001502", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001503", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001504", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001505", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001506", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001507", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001508", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001509", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001510", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001511", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001512", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001513", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001514", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001515", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001516", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001517", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001518", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001519", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001520", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001521", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001522", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001523", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001524", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001525", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001526", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001527", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001528", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001529", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001530", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001531", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001532", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001533", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001534", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001535", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001536", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001537", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001538", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001539", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001540", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001541", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001542", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001543", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001544", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001545", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001546", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001547", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001548", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001549", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001550", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001551", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001552", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001553", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001554", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001555", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001556", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001557", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001558", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001559", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001560", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001561", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001562", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001563", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001564", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001565", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001566", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001567", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001568", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001569", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001570", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001571", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001572", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001573", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001574", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001575", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001576", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001577", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001578", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001579", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001580", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001581", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001582", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001583", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001584", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001585", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001586", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001587", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001588", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001589", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001590", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001591", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001592", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001593", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001594", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001595", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001596", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001597", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001598", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001599", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001600", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001601", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001602", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001603", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001604", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E14001605", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N05000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S14000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000052", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000054", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000055", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000056", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000057", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000058", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000059", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E06000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E07000245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E08000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@E09000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@N09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@S12000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.amount@W06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.self_employment_income.count@E14001063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001150", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001151", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001152", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001153", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001154", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001155", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001156", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001157", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001158", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001159", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001160", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001161", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001162", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001163", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001164", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001165", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001166", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001167", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001168", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001169", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001182", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001183", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001184", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001185", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001186", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001187", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001188", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001189", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001190", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001191", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001201", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001204", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001205", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001206", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001230", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001231", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001232", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001233", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001246", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001247", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001248", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001249", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001250", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001251", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001252", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001253", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001254", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001255", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001256", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001257", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001258", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001259", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001260", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001261", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001262", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001263", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001264", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001265", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001266", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001267", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001268", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001269", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001270", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001271", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001272", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001273", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001274", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001275", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001276", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001277", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001278", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001279", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001280", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001281", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001282", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001283", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001284", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001285", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001286", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001287", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001288", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001289", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001290", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001291", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001292", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001293", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001294", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001295", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001296", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001297", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001298", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001299", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001300", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001301", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001302", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001303", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001304", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001305", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001306", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001307", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001308", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001309", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001310", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001311", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001312", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001313", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001314", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001315", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001316", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001317", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001318", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001319", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001320", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001321", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001322", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001323", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001324", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001325", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001326", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001327", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001328", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001329", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001330", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001331", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001332", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001333", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001334", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001335", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001336", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001337", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001338", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001339", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001340", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001341", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001342", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001343", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001344", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001345", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001346", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001347", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001348", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001349", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001350", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001351", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001352", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001353", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001354", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001355", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001356", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001357", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001358", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001359", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001360", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001361", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001362", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001363", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001364", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001365", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001366", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001367", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001368", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001369", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001370", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001371", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001372", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001373", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001374", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001375", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001376", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001377", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001378", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001379", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001380", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001381", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001382", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001383", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001384", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001385", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001386", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001387", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001388", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001389", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001390", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001391", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001392", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001393", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001394", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001395", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001396", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001397", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001398", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001399", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001400", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001401", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001402", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001403", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001404", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001405", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001406", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001407", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001408", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001409", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001410", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001411", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001412", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001413", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001414", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001415", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001416", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001417", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001418", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001419", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001420", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001421", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001422", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001423", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001424", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001425", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001426", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001427", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001428", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001429", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001430", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001431", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001432", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001433", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001434", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001435", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001436", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001437", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001438", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001439", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001440", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001441", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001442", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001443", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001444", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001445", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001446", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001447", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001448", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001449", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001450", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001451", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001452", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001453", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001454", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001455", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001456", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001457", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001458", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001459", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001460", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001461", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001462", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001463", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001464", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001465", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001466", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001467", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001468", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001469", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001470", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001471", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001472", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001473", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001474", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001475", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001476", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001477", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001478", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001479", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001480", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001481", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001482", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001483", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001484", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001485", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001486", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001487", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001488", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001489", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001490", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001491", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001492", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001493", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001494", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001495", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001496", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001497", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001498", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001499", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001500", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001501", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001502", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001503", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001504", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001505", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001506", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001507", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001508", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001509", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001510", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001511", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001512", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001513", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001514", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001515", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001516", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001517", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001518", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001519", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001520", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001521", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001522", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001523", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001524", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001525", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001526", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001527", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001528", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001529", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001530", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001531", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001532", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001533", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001534", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001535", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001536", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001537", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001538", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001539", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001540", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001541", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001542", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001543", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001544", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001545", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001546", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001547", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001548", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001549", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001550", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001551", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001552", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001553", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001554", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001555", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001556", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001557", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001558", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001559", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001560", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001561", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001562", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001563", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001564", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001565", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001566", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001567", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001568", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001569", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001570", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001571", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001572", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001573", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001574", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001575", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001576", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001577", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001578", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001579", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001580", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001581", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001582", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001583", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001584", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001585", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001586", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001587", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001588", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001589", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001590", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001591", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001592", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001593", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001594", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001595", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001596", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001597", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001598", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001599", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001600", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001601", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001602", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001603", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001604", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "hmrc.self_employment_income.count@E14001605", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + } + }, + { + "name": "hmrc.self_employment_income.count@N05000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "hmrc.self_employment_income.count@S14000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "hmrc.self_employment_income.count@W07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000052", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000054", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000055", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000056", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000057", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000058", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000059", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + } + }, + { + "name": "hmrc.self_employment_income.count@E06000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + } + }, + { + "name": "hmrc.self_employment_income.count@E07000245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + } + }, + { + "name": "hmrc.self_employment_income.count@E08000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + } + }, + { + "name": "hmrc.self_employment_income.count@E09000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + } + }, + { + "name": "hmrc.self_employment_income.count@N09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + } + }, + { + "name": "hmrc.self_employment_income.count@S12000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + } + }, + { + "name": "hmrc.self_employment_income.count@W06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "hmrc/self_employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.self_employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + } + }, + { + "name": "hmrc.employment_income.amount@E14001063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001150", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001151", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001152", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001153", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001154", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001155", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001156", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001157", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001158", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001159", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001160", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001161", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001162", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001163", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001164", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001165", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001166", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001167", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001168", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001169", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001182", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001183", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001184", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001185", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001186", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001187", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001188", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001189", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001190", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001191", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001201", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001204", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001205", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001206", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001230", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001231", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001232", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001233", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001246", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001247", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001248", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001249", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001250", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001251", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001252", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001253", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001254", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001255", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001256", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001257", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001258", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001259", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001260", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001261", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001262", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001263", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001264", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001265", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001266", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001267", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001268", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001269", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001270", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001271", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001272", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001273", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001274", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001275", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001276", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001277", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001278", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001279", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001280", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001281", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001282", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001283", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001284", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001285", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001286", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001287", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001288", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001289", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001290", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001291", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001292", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001293", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001294", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001295", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001296", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001297", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001298", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001299", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001300", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001301", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001302", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001303", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001304", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001305", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001306", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001307", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001308", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001309", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001310", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001311", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001312", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001313", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001314", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001315", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001316", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001317", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001318", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001319", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001320", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001321", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001322", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001323", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001324", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001325", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001326", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001327", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001328", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001329", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001330", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001331", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001332", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001333", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001334", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001335", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001336", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001337", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001338", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001339", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001340", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001341", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001342", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001343", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001344", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001345", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001346", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001347", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001348", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001349", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001350", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001351", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001352", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001353", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001354", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001355", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001356", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001357", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001358", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001359", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001360", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001361", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001362", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001363", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001364", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001365", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001366", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001367", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001368", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001369", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001370", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001371", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001372", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001373", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001374", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001375", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001376", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001377", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001378", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001379", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001380", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001381", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001382", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001383", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001384", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001385", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001386", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001387", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001388", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001389", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001390", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001391", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001392", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001393", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001394", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001395", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001396", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001397", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001398", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001399", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001400", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001401", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001402", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001403", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001404", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001405", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001406", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001407", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001408", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001409", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001410", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001411", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001412", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001413", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001414", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001415", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001416", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001417", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001418", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001419", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001420", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001421", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001422", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001423", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001424", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001425", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001426", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001427", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001428", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001429", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001430", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001431", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001432", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001433", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001434", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001435", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001436", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001437", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001438", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001439", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001440", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001441", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001442", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001443", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001444", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001445", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001446", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001447", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001448", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001449", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001450", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001451", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001452", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001453", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001454", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001455", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001456", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001457", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001458", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001459", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001460", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001461", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001462", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001463", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001464", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001465", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001466", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001467", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001468", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001469", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001470", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001471", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001472", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001473", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001474", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001475", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001476", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001477", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001478", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001479", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001480", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001481", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001482", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001483", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001484", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001485", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001486", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001487", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001488", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001489", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001490", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001491", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001492", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001493", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001494", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001495", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001496", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001497", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001498", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001499", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001500", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001501", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001502", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001503", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001504", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001505", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001506", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001507", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001508", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001509", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001510", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001511", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001512", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001513", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001514", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001515", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001516", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001517", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001518", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001519", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001520", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001521", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001522", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001523", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001524", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001525", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001526", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001527", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001528", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001529", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001530", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001531", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001532", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001533", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001534", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001535", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001536", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001537", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001538", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001539", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001540", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001541", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001542", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001543", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001544", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001545", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001546", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001547", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001548", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001549", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001550", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001551", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001552", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001553", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001554", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001555", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001556", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001557", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001558", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001559", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001560", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001561", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001562", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001563", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001564", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001565", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001566", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001567", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001568", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001569", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001570", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001571", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001572", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001573", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001574", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001575", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001576", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001577", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001578", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001579", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001580", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001581", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001582", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001583", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001584", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001585", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001586", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001587", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001588", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001589", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001590", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001591", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001592", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001593", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001594", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001595", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001596", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001597", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001598", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001599", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001600", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001601", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001602", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001603", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001604", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E14001605", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N05000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S14000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000052", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000054", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000055", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000056", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000057", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000058", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000059", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E06000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E07000245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E08000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@E09000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@N09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@S12000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.amount@W06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/amount", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.amount", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "count_x_mean" + }, + { + "name": "hmrc.employment_income.count@E14001063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "hmrc.employment_income.count@E14001064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "hmrc.employment_income.count@E14001065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "hmrc.employment_income.count@E14001066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "hmrc.employment_income.count@E14001067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "hmrc.employment_income.count@E14001068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "hmrc.employment_income.count@E14001069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "hmrc.employment_income.count@E14001070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "hmrc.employment_income.count@E14001071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "hmrc.employment_income.count@E14001072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "hmrc.employment_income.count@E14001073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "hmrc.employment_income.count@E14001074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "hmrc.employment_income.count@E14001075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "hmrc.employment_income.count@E14001076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "hmrc.employment_income.count@E14001077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "hmrc.employment_income.count@E14001078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "hmrc.employment_income.count@E14001079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "hmrc.employment_income.count@E14001080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "hmrc.employment_income.count@E14001081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "hmrc.employment_income.count@E14001082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "hmrc.employment_income.count@E14001083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "hmrc.employment_income.count@E14001084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "hmrc.employment_income.count@E14001085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "hmrc.employment_income.count@E14001086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "hmrc.employment_income.count@E14001087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "hmrc.employment_income.count@E14001088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "hmrc.employment_income.count@E14001089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "hmrc.employment_income.count@E14001090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "hmrc.employment_income.count@E14001091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "hmrc.employment_income.count@E14001092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "hmrc.employment_income.count@E14001093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "hmrc.employment_income.count@E14001094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "hmrc.employment_income.count@E14001095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "hmrc.employment_income.count@E14001096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "hmrc.employment_income.count@E14001097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "hmrc.employment_income.count@E14001098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "hmrc.employment_income.count@E14001099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "hmrc.employment_income.count@E14001100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "hmrc.employment_income.count@E14001101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "hmrc.employment_income.count@E14001102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "hmrc.employment_income.count@E14001103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "hmrc.employment_income.count@E14001104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "hmrc.employment_income.count@E14001105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "hmrc.employment_income.count@E14001106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "hmrc.employment_income.count@E14001107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "hmrc.employment_income.count@E14001108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "hmrc.employment_income.count@E14001109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "hmrc.employment_income.count@E14001110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "hmrc.employment_income.count@E14001111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "hmrc.employment_income.count@E14001112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "hmrc.employment_income.count@E14001113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "hmrc.employment_income.count@E14001114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "hmrc.employment_income.count@E14001115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "hmrc.employment_income.count@E14001116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "hmrc.employment_income.count@E14001117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "hmrc.employment_income.count@E14001118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "hmrc.employment_income.count@E14001119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "hmrc.employment_income.count@E14001120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "hmrc.employment_income.count@E14001121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "hmrc.employment_income.count@E14001122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "hmrc.employment_income.count@E14001123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "hmrc.employment_income.count@E14001124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "hmrc.employment_income.count@E14001125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "hmrc.employment_income.count@E14001126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "hmrc.employment_income.count@E14001127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "hmrc.employment_income.count@E14001128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "hmrc.employment_income.count@E14001129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "hmrc.employment_income.count@E14001130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "hmrc.employment_income.count@E14001131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "hmrc.employment_income.count@E14001132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "hmrc.employment_income.count@E14001133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "hmrc.employment_income.count@E14001134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "hmrc.employment_income.count@E14001135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "hmrc.employment_income.count@E14001136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "hmrc.employment_income.count@E14001137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "hmrc.employment_income.count@E14001138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "hmrc.employment_income.count@E14001139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "hmrc.employment_income.count@E14001140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "hmrc.employment_income.count@E14001141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "hmrc.employment_income.count@E14001142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "hmrc.employment_income.count@E14001143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "hmrc.employment_income.count@E14001144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "hmrc.employment_income.count@E14001145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "hmrc.employment_income.count@E14001146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "hmrc.employment_income.count@E14001147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "hmrc.employment_income.count@E14001148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "hmrc.employment_income.count@E14001149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "hmrc.employment_income.count@E14001150", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "hmrc.employment_income.count@E14001151", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "hmrc.employment_income.count@E14001152", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "hmrc.employment_income.count@E14001153", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "hmrc.employment_income.count@E14001154", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "hmrc.employment_income.count@E14001155", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "hmrc.employment_income.count@E14001156", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "hmrc.employment_income.count@E14001157", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "hmrc.employment_income.count@E14001158", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "hmrc.employment_income.count@E14001159", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "hmrc.employment_income.count@E14001160", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "hmrc.employment_income.count@E14001161", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "hmrc.employment_income.count@E14001162", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "hmrc.employment_income.count@E14001163", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "hmrc.employment_income.count@E14001164", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "hmrc.employment_income.count@E14001165", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "hmrc.employment_income.count@E14001166", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "hmrc.employment_income.count@E14001167", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "hmrc.employment_income.count@E14001168", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "hmrc.employment_income.count@E14001169", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "hmrc.employment_income.count@E14001170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "hmrc.employment_income.count@E14001171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "hmrc.employment_income.count@E14001172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "hmrc.employment_income.count@E14001173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "hmrc.employment_income.count@E14001174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "hmrc.employment_income.count@E14001175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "hmrc.employment_income.count@E14001176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "hmrc.employment_income.count@E14001177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "hmrc.employment_income.count@E14001178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "hmrc.employment_income.count@E14001179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "hmrc.employment_income.count@E14001180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "hmrc.employment_income.count@E14001181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "hmrc.employment_income.count@E14001182", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "hmrc.employment_income.count@E14001183", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "hmrc.employment_income.count@E14001184", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "hmrc.employment_income.count@E14001185", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "hmrc.employment_income.count@E14001186", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "hmrc.employment_income.count@E14001187", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "hmrc.employment_income.count@E14001188", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "hmrc.employment_income.count@E14001189", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "hmrc.employment_income.count@E14001190", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "hmrc.employment_income.count@E14001191", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "hmrc.employment_income.count@E14001192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "hmrc.employment_income.count@E14001193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "hmrc.employment_income.count@E14001194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "hmrc.employment_income.count@E14001195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "hmrc.employment_income.count@E14001196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "hmrc.employment_income.count@E14001197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "hmrc.employment_income.count@E14001198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "hmrc.employment_income.count@E14001199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "hmrc.employment_income.count@E14001200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "hmrc.employment_income.count@E14001201", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "hmrc.employment_income.count@E14001202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "hmrc.employment_income.count@E14001203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "hmrc.employment_income.count@E14001204", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "hmrc.employment_income.count@E14001205", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "hmrc.employment_income.count@E14001206", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "hmrc.employment_income.count@E14001207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "hmrc.employment_income.count@E14001208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "hmrc.employment_income.count@E14001209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "hmrc.employment_income.count@E14001210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "hmrc.employment_income.count@E14001211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "hmrc.employment_income.count@E14001212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "hmrc.employment_income.count@E14001213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "hmrc.employment_income.count@E14001214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "hmrc.employment_income.count@E14001215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "hmrc.employment_income.count@E14001216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "hmrc.employment_income.count@E14001217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "hmrc.employment_income.count@E14001218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "hmrc.employment_income.count@E14001219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "hmrc.employment_income.count@E14001220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "hmrc.employment_income.count@E14001221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "hmrc.employment_income.count@E14001222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "hmrc.employment_income.count@E14001223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "hmrc.employment_income.count@E14001224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "hmrc.employment_income.count@E14001225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "hmrc.employment_income.count@E14001226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "hmrc.employment_income.count@E14001227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "hmrc.employment_income.count@E14001228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "hmrc.employment_income.count@E14001229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "hmrc.employment_income.count@E14001230", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "hmrc.employment_income.count@E14001231", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "hmrc.employment_income.count@E14001232", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "hmrc.employment_income.count@E14001233", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "hmrc.employment_income.count@E14001234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "hmrc.employment_income.count@E14001235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "hmrc.employment_income.count@E14001236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "hmrc.employment_income.count@E14001237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "hmrc.employment_income.count@E14001238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "hmrc.employment_income.count@E14001239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "hmrc.employment_income.count@E14001240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "hmrc.employment_income.count@E14001241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "hmrc.employment_income.count@E14001242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "hmrc.employment_income.count@E14001243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "hmrc.employment_income.count@E14001244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "hmrc.employment_income.count@E14001245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "hmrc.employment_income.count@E14001246", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "hmrc.employment_income.count@E14001247", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "hmrc.employment_income.count@E14001248", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "hmrc.employment_income.count@E14001249", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "hmrc.employment_income.count@E14001250", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "hmrc.employment_income.count@E14001251", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "hmrc.employment_income.count@E14001252", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "hmrc.employment_income.count@E14001253", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "hmrc.employment_income.count@E14001254", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "hmrc.employment_income.count@E14001255", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "hmrc.employment_income.count@E14001256", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "hmrc.employment_income.count@E14001257", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "hmrc.employment_income.count@E14001258", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "hmrc.employment_income.count@E14001259", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "hmrc.employment_income.count@E14001260", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "hmrc.employment_income.count@E14001261", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "hmrc.employment_income.count@E14001262", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "hmrc.employment_income.count@E14001263", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "hmrc.employment_income.count@E14001264", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "hmrc.employment_income.count@E14001265", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "hmrc.employment_income.count@E14001266", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "hmrc.employment_income.count@E14001267", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "hmrc.employment_income.count@E14001268", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "hmrc.employment_income.count@E14001269", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "hmrc.employment_income.count@E14001270", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "hmrc.employment_income.count@E14001271", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "hmrc.employment_income.count@E14001272", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "hmrc.employment_income.count@E14001273", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "hmrc.employment_income.count@E14001274", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "hmrc.employment_income.count@E14001275", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "hmrc.employment_income.count@E14001276", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "hmrc.employment_income.count@E14001277", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "hmrc.employment_income.count@E14001278", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "hmrc.employment_income.count@E14001279", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "hmrc.employment_income.count@E14001280", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "hmrc.employment_income.count@E14001281", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "hmrc.employment_income.count@E14001282", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "hmrc.employment_income.count@E14001283", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "hmrc.employment_income.count@E14001284", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "hmrc.employment_income.count@E14001285", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "hmrc.employment_income.count@E14001286", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "hmrc.employment_income.count@E14001287", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "hmrc.employment_income.count@E14001288", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "hmrc.employment_income.count@E14001289", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "hmrc.employment_income.count@E14001290", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "hmrc.employment_income.count@E14001291", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "hmrc.employment_income.count@E14001292", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "hmrc.employment_income.count@E14001293", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "hmrc.employment_income.count@E14001294", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "hmrc.employment_income.count@E14001295", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "hmrc.employment_income.count@E14001296", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "hmrc.employment_income.count@E14001297", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "hmrc.employment_income.count@E14001298", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "hmrc.employment_income.count@E14001299", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "hmrc.employment_income.count@E14001300", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "hmrc.employment_income.count@E14001301", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "hmrc.employment_income.count@E14001302", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "hmrc.employment_income.count@E14001303", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "hmrc.employment_income.count@E14001304", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "hmrc.employment_income.count@E14001305", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "hmrc.employment_income.count@E14001306", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "hmrc.employment_income.count@E14001307", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "hmrc.employment_income.count@E14001308", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "hmrc.employment_income.count@E14001309", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "hmrc.employment_income.count@E14001310", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "hmrc.employment_income.count@E14001311", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "hmrc.employment_income.count@E14001312", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "hmrc.employment_income.count@E14001313", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "hmrc.employment_income.count@E14001314", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "hmrc.employment_income.count@E14001315", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "hmrc.employment_income.count@E14001316", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "hmrc.employment_income.count@E14001317", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "hmrc.employment_income.count@E14001318", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "hmrc.employment_income.count@E14001319", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "hmrc.employment_income.count@E14001320", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "hmrc.employment_income.count@E14001321", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "hmrc.employment_income.count@E14001322", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "hmrc.employment_income.count@E14001323", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "hmrc.employment_income.count@E14001324", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "hmrc.employment_income.count@E14001325", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "hmrc.employment_income.count@E14001326", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "hmrc.employment_income.count@E14001327", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "hmrc.employment_income.count@E14001328", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "hmrc.employment_income.count@E14001329", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "hmrc.employment_income.count@E14001330", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "hmrc.employment_income.count@E14001331", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "hmrc.employment_income.count@E14001332", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "hmrc.employment_income.count@E14001333", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "hmrc.employment_income.count@E14001334", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "hmrc.employment_income.count@E14001335", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "hmrc.employment_income.count@E14001336", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "hmrc.employment_income.count@E14001337", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "hmrc.employment_income.count@E14001338", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "hmrc.employment_income.count@E14001339", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "hmrc.employment_income.count@E14001340", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "hmrc.employment_income.count@E14001341", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "hmrc.employment_income.count@E14001342", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "hmrc.employment_income.count@E14001343", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "hmrc.employment_income.count@E14001344", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "hmrc.employment_income.count@E14001345", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "hmrc.employment_income.count@E14001346", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "hmrc.employment_income.count@E14001347", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "hmrc.employment_income.count@E14001348", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "hmrc.employment_income.count@E14001349", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "hmrc.employment_income.count@E14001350", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "hmrc.employment_income.count@E14001351", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "hmrc.employment_income.count@E14001352", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "hmrc.employment_income.count@E14001353", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "hmrc.employment_income.count@E14001354", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "hmrc.employment_income.count@E14001355", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "hmrc.employment_income.count@E14001356", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "hmrc.employment_income.count@E14001357", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "hmrc.employment_income.count@E14001358", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "hmrc.employment_income.count@E14001359", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "hmrc.employment_income.count@E14001360", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "hmrc.employment_income.count@E14001361", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "hmrc.employment_income.count@E14001362", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "hmrc.employment_income.count@E14001363", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "hmrc.employment_income.count@E14001364", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "hmrc.employment_income.count@E14001365", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "hmrc.employment_income.count@E14001366", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "hmrc.employment_income.count@E14001367", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "hmrc.employment_income.count@E14001368", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "hmrc.employment_income.count@E14001369", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "hmrc.employment_income.count@E14001370", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "hmrc.employment_income.count@E14001371", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "hmrc.employment_income.count@E14001372", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "hmrc.employment_income.count@E14001373", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "hmrc.employment_income.count@E14001374", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "hmrc.employment_income.count@E14001375", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "hmrc.employment_income.count@E14001376", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "hmrc.employment_income.count@E14001377", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "hmrc.employment_income.count@E14001378", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "hmrc.employment_income.count@E14001379", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "hmrc.employment_income.count@E14001380", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "hmrc.employment_income.count@E14001381", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "hmrc.employment_income.count@E14001382", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "hmrc.employment_income.count@E14001383", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "hmrc.employment_income.count@E14001384", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "hmrc.employment_income.count@E14001385", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "hmrc.employment_income.count@E14001386", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "hmrc.employment_income.count@E14001387", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "hmrc.employment_income.count@E14001388", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "hmrc.employment_income.count@E14001389", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "hmrc.employment_income.count@E14001390", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "hmrc.employment_income.count@E14001391", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "hmrc.employment_income.count@E14001392", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "hmrc.employment_income.count@E14001393", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "hmrc.employment_income.count@E14001394", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "hmrc.employment_income.count@E14001395", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "hmrc.employment_income.count@E14001396", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "hmrc.employment_income.count@E14001397", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "hmrc.employment_income.count@E14001398", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "hmrc.employment_income.count@E14001399", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "hmrc.employment_income.count@E14001400", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "hmrc.employment_income.count@E14001401", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "hmrc.employment_income.count@E14001402", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "hmrc.employment_income.count@E14001403", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "hmrc.employment_income.count@E14001404", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "hmrc.employment_income.count@E14001405", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "hmrc.employment_income.count@E14001406", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "hmrc.employment_income.count@E14001407", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "hmrc.employment_income.count@E14001408", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "hmrc.employment_income.count@E14001409", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "hmrc.employment_income.count@E14001410", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "hmrc.employment_income.count@E14001411", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "hmrc.employment_income.count@E14001412", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "hmrc.employment_income.count@E14001413", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "hmrc.employment_income.count@E14001414", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "hmrc.employment_income.count@E14001415", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "hmrc.employment_income.count@E14001416", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "hmrc.employment_income.count@E14001417", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "hmrc.employment_income.count@E14001418", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "hmrc.employment_income.count@E14001419", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "hmrc.employment_income.count@E14001420", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "hmrc.employment_income.count@E14001421", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "hmrc.employment_income.count@E14001422", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "hmrc.employment_income.count@E14001423", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "hmrc.employment_income.count@E14001424", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "hmrc.employment_income.count@E14001425", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "hmrc.employment_income.count@E14001426", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "hmrc.employment_income.count@E14001427", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "hmrc.employment_income.count@E14001428", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "hmrc.employment_income.count@E14001429", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "hmrc.employment_income.count@E14001430", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "hmrc.employment_income.count@E14001431", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "hmrc.employment_income.count@E14001432", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "hmrc.employment_income.count@E14001433", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "hmrc.employment_income.count@E14001434", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "hmrc.employment_income.count@E14001435", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "hmrc.employment_income.count@E14001436", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "hmrc.employment_income.count@E14001437", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "hmrc.employment_income.count@E14001438", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "hmrc.employment_income.count@E14001439", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "hmrc.employment_income.count@E14001440", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "hmrc.employment_income.count@E14001441", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "hmrc.employment_income.count@E14001442", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "hmrc.employment_income.count@E14001443", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "hmrc.employment_income.count@E14001444", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "hmrc.employment_income.count@E14001445", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "hmrc.employment_income.count@E14001446", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "hmrc.employment_income.count@E14001447", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "hmrc.employment_income.count@E14001448", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "hmrc.employment_income.count@E14001449", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "hmrc.employment_income.count@E14001450", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "hmrc.employment_income.count@E14001451", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "hmrc.employment_income.count@E14001452", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "hmrc.employment_income.count@E14001453", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "hmrc.employment_income.count@E14001454", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "hmrc.employment_income.count@E14001455", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "hmrc.employment_income.count@E14001456", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "hmrc.employment_income.count@E14001457", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "hmrc.employment_income.count@E14001458", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "hmrc.employment_income.count@E14001459", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "hmrc.employment_income.count@E14001460", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "hmrc.employment_income.count@E14001461", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "hmrc.employment_income.count@E14001462", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "hmrc.employment_income.count@E14001463", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "hmrc.employment_income.count@E14001464", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "hmrc.employment_income.count@E14001465", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "hmrc.employment_income.count@E14001466", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "hmrc.employment_income.count@E14001467", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "hmrc.employment_income.count@E14001468", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "hmrc.employment_income.count@E14001469", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "hmrc.employment_income.count@E14001470", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "hmrc.employment_income.count@E14001471", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "hmrc.employment_income.count@E14001472", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "hmrc.employment_income.count@E14001473", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "hmrc.employment_income.count@E14001474", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "hmrc.employment_income.count@E14001475", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "hmrc.employment_income.count@E14001476", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "hmrc.employment_income.count@E14001477", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "hmrc.employment_income.count@E14001478", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "hmrc.employment_income.count@E14001479", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "hmrc.employment_income.count@E14001480", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "hmrc.employment_income.count@E14001481", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "hmrc.employment_income.count@E14001482", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "hmrc.employment_income.count@E14001483", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "hmrc.employment_income.count@E14001484", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "hmrc.employment_income.count@E14001485", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "hmrc.employment_income.count@E14001486", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "hmrc.employment_income.count@E14001487", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "hmrc.employment_income.count@E14001488", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "hmrc.employment_income.count@E14001489", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "hmrc.employment_income.count@E14001490", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "hmrc.employment_income.count@E14001491", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "hmrc.employment_income.count@E14001492", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "hmrc.employment_income.count@E14001493", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "hmrc.employment_income.count@E14001494", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "hmrc.employment_income.count@E14001495", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "hmrc.employment_income.count@E14001496", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "hmrc.employment_income.count@E14001497", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "hmrc.employment_income.count@E14001498", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "hmrc.employment_income.count@E14001499", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "hmrc.employment_income.count@E14001500", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "hmrc.employment_income.count@E14001501", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "hmrc.employment_income.count@E14001502", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "hmrc.employment_income.count@E14001503", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "hmrc.employment_income.count@E14001504", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "hmrc.employment_income.count@E14001505", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "hmrc.employment_income.count@E14001506", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "hmrc.employment_income.count@E14001507", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "hmrc.employment_income.count@E14001508", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "hmrc.employment_income.count@E14001509", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "hmrc.employment_income.count@E14001510", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "hmrc.employment_income.count@E14001511", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "hmrc.employment_income.count@E14001512", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "hmrc.employment_income.count@E14001513", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "hmrc.employment_income.count@E14001514", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "hmrc.employment_income.count@E14001515", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "hmrc.employment_income.count@E14001516", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "hmrc.employment_income.count@E14001517", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "hmrc.employment_income.count@E14001518", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "hmrc.employment_income.count@E14001519", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "hmrc.employment_income.count@E14001520", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "hmrc.employment_income.count@E14001521", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "hmrc.employment_income.count@E14001522", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "hmrc.employment_income.count@E14001523", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "hmrc.employment_income.count@E14001524", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "hmrc.employment_income.count@E14001525", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "hmrc.employment_income.count@E14001526", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "hmrc.employment_income.count@E14001527", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "hmrc.employment_income.count@E14001528", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "hmrc.employment_income.count@E14001529", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "hmrc.employment_income.count@E14001530", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "hmrc.employment_income.count@E14001531", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "hmrc.employment_income.count@E14001532", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "hmrc.employment_income.count@E14001533", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "hmrc.employment_income.count@E14001534", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "hmrc.employment_income.count@E14001535", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "hmrc.employment_income.count@E14001536", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "hmrc.employment_income.count@E14001537", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "hmrc.employment_income.count@E14001538", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "hmrc.employment_income.count@E14001539", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "hmrc.employment_income.count@E14001540", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "hmrc.employment_income.count@E14001541", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "hmrc.employment_income.count@E14001542", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "hmrc.employment_income.count@E14001543", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "hmrc.employment_income.count@E14001544", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "hmrc.employment_income.count@E14001545", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "hmrc.employment_income.count@E14001546", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "hmrc.employment_income.count@E14001547", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "hmrc.employment_income.count@E14001548", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "hmrc.employment_income.count@E14001549", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "hmrc.employment_income.count@E14001550", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "hmrc.employment_income.count@E14001551", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "hmrc.employment_income.count@E14001552", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "hmrc.employment_income.count@E14001553", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "hmrc.employment_income.count@E14001554", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "hmrc.employment_income.count@E14001555", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "hmrc.employment_income.count@E14001556", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "hmrc.employment_income.count@E14001557", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "hmrc.employment_income.count@E14001558", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "hmrc.employment_income.count@E14001559", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "hmrc.employment_income.count@E14001560", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "hmrc.employment_income.count@E14001561", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "hmrc.employment_income.count@E14001562", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "hmrc.employment_income.count@E14001563", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "hmrc.employment_income.count@E14001564", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "hmrc.employment_income.count@E14001565", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "hmrc.employment_income.count@E14001566", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "hmrc.employment_income.count@E14001567", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "hmrc.employment_income.count@E14001568", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "hmrc.employment_income.count@E14001569", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "hmrc.employment_income.count@E14001570", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "hmrc.employment_income.count@E14001571", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "hmrc.employment_income.count@E14001572", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "hmrc.employment_income.count@E14001573", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "hmrc.employment_income.count@E14001574", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "hmrc.employment_income.count@E14001575", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "hmrc.employment_income.count@E14001576", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "hmrc.employment_income.count@E14001577", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "hmrc.employment_income.count@E14001578", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "hmrc.employment_income.count@E14001579", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "hmrc.employment_income.count@E14001580", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "hmrc.employment_income.count@E14001581", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "hmrc.employment_income.count@E14001582", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "hmrc.employment_income.count@E14001583", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "hmrc.employment_income.count@E14001584", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "hmrc.employment_income.count@E14001585", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "hmrc.employment_income.count@E14001586", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "hmrc.employment_income.count@E14001587", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "hmrc.employment_income.count@E14001588", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "hmrc.employment_income.count@E14001589", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "hmrc.employment_income.count@E14001590", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "hmrc.employment_income.count@E14001591", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "hmrc.employment_income.count@E14001592", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "hmrc.employment_income.count@E14001593", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "hmrc.employment_income.count@E14001594", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "hmrc.employment_income.count@E14001595", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "hmrc.employment_income.count@E14001596", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "hmrc.employment_income.count@E14001597", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "hmrc.employment_income.count@E14001598", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "hmrc.employment_income.count@E14001599", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "hmrc.employment_income.count@E14001600", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "hmrc.employment_income.count@E14001601", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "hmrc.employment_income.count@E14001602", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "hmrc.employment_income.count@E14001603", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "hmrc.employment_income.count@E14001604", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "hmrc.employment_income.count@E14001605", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "hmrc.employment_income.count@N05000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + } + }, + { + "name": "hmrc.employment_income.count@N05000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + } + }, + { + "name": "hmrc.employment_income.count@N05000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + } + }, + { + "name": "hmrc.employment_income.count@N05000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + } + }, + { + "name": "hmrc.employment_income.count@N05000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + } + }, + { + "name": "hmrc.employment_income.count@N05000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + } + }, + { + "name": "hmrc.employment_income.count@N05000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + } + }, + { + "name": "hmrc.employment_income.count@N05000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + } + }, + { + "name": "hmrc.employment_income.count@N05000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + } + }, + { + "name": "hmrc.employment_income.count@N05000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + } + }, + { + "name": "hmrc.employment_income.count@N05000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + } + }, + { + "name": "hmrc.employment_income.count@N05000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + } + }, + { + "name": "hmrc.employment_income.count@N05000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + } + }, + { + "name": "hmrc.employment_income.count@N05000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + } + }, + { + "name": "hmrc.employment_income.count@N05000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + } + }, + { + "name": "hmrc.employment_income.count@N05000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + } + }, + { + "name": "hmrc.employment_income.count@N05000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + } + }, + { + "name": "hmrc.employment_income.count@N05000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + } + }, + { + "name": "hmrc.employment_income.count@S14000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "hmrc.employment_income.count@S14000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "hmrc.employment_income.count@S14000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "hmrc.employment_income.count@S14000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "hmrc.employment_income.count@S14000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "hmrc.employment_income.count@S14000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "hmrc.employment_income.count@S14000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "hmrc.employment_income.count@S14000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "hmrc.employment_income.count@S14000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "hmrc.employment_income.count@S14000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "hmrc.employment_income.count@S14000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "hmrc.employment_income.count@S14000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "hmrc.employment_income.count@S14000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "hmrc.employment_income.count@S14000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "hmrc.employment_income.count@S14000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "hmrc.employment_income.count@S14000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "hmrc.employment_income.count@S14000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "hmrc.employment_income.count@S14000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "hmrc.employment_income.count@S14000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "hmrc.employment_income.count@S14000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "hmrc.employment_income.count@S14000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "hmrc.employment_income.count@S14000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "hmrc.employment_income.count@S14000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "hmrc.employment_income.count@S14000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "hmrc.employment_income.count@S14000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "hmrc.employment_income.count@S14000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "hmrc.employment_income.count@S14000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "hmrc.employment_income.count@S14000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "hmrc.employment_income.count@S14000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "hmrc.employment_income.count@S14000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "hmrc.employment_income.count@S14000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "hmrc.employment_income.count@S14000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "hmrc.employment_income.count@S14000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "hmrc.employment_income.count@S14000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "hmrc.employment_income.count@S14000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "hmrc.employment_income.count@S14000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "hmrc.employment_income.count@S14000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "hmrc.employment_income.count@S14000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "hmrc.employment_income.count@S14000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "hmrc.employment_income.count@S14000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "hmrc.employment_income.count@S14000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "hmrc.employment_income.count@S14000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "hmrc.employment_income.count@S14000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "hmrc.employment_income.count@S14000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "hmrc.employment_income.count@S14000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "hmrc.employment_income.count@S14000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "hmrc.employment_income.count@S14000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "hmrc.employment_income.count@S14000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "hmrc.employment_income.count@S14000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "hmrc.employment_income.count@S14000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "hmrc.employment_income.count@S14000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "hmrc.employment_income.count@S14000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "hmrc.employment_income.count@S14000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "hmrc.employment_income.count@S14000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "hmrc.employment_income.count@S14000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "hmrc.employment_income.count@S14000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "hmrc.employment_income.count@S14000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "hmrc.employment_income.count@W07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "hmrc.employment_income.count@W07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "hmrc.employment_income.count@W07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "hmrc.employment_income.count@W07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "hmrc.employment_income.count@W07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "hmrc.employment_income.count@W07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "hmrc.employment_income.count@W07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "hmrc.employment_income.count@W07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "hmrc.employment_income.count@W07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "hmrc.employment_income.count@W07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "hmrc.employment_income.count@W07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "hmrc.employment_income.count@W07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "hmrc.employment_income.count@W07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "hmrc.employment_income.count@W07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "hmrc.employment_income.count@W07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "hmrc.employment_income.count@W07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "hmrc.employment_income.count@W07000097", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "hmrc.employment_income.count@W07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "hmrc.employment_income.count@W07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "hmrc.employment_income.count@W07000100", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "hmrc.employment_income.count@W07000101", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "hmrc.employment_income.count@W07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "hmrc.employment_income.count@W07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "hmrc.employment_income.count@W07000104", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "hmrc.employment_income.count@W07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "hmrc.employment_income.count@W07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "hmrc.employment_income.count@W07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "hmrc.employment_income.count@W07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "hmrc.employment_income.count@W07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "hmrc.employment_income.count@W07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "hmrc.employment_income.count@W07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "hmrc.employment_income.count@W07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "hmrc.employment_income.count@E06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + } + }, + { + "name": "hmrc.employment_income.count@E06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + } + }, + { + "name": "hmrc.employment_income.count@E06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + } + }, + { + "name": "hmrc.employment_income.count@E06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + } + }, + { + "name": "hmrc.employment_income.count@E06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + } + }, + { + "name": "hmrc.employment_income.count@E06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + } + }, + { + "name": "hmrc.employment_income.count@E06000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + } + }, + { + "name": "hmrc.employment_income.count@E06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + } + }, + { + "name": "hmrc.employment_income.count@E06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + } + }, + { + "name": "hmrc.employment_income.count@E06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + } + }, + { + "name": "hmrc.employment_income.count@E06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + } + }, + { + "name": "hmrc.employment_income.count@E06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + } + }, + { + "name": "hmrc.employment_income.count@E06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + } + }, + { + "name": "hmrc.employment_income.count@E06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + } + }, + { + "name": "hmrc.employment_income.count@E06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + } + }, + { + "name": "hmrc.employment_income.count@E06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + } + }, + { + "name": "hmrc.employment_income.count@E06000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + } + }, + { + "name": "hmrc.employment_income.count@E06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + } + }, + { + "name": "hmrc.employment_income.count@E06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + } + }, + { + "name": "hmrc.employment_income.count@E06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + } + }, + { + "name": "hmrc.employment_income.count@E06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + } + }, + { + "name": "hmrc.employment_income.count@E06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + } + }, + { + "name": "hmrc.employment_income.count@E06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + } + }, + { + "name": "hmrc.employment_income.count@E06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + } + }, + { + "name": "hmrc.employment_income.count@E06000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + } + }, + { + "name": "hmrc.employment_income.count@E06000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + } + }, + { + "name": "hmrc.employment_income.count@E06000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + } + }, + { + "name": "hmrc.employment_income.count@E06000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + } + }, + { + "name": "hmrc.employment_income.count@E06000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + } + }, + { + "name": "hmrc.employment_income.count@E06000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + } + }, + { + "name": "hmrc.employment_income.count@E06000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + } + }, + { + "name": "hmrc.employment_income.count@E06000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + } + }, + { + "name": "hmrc.employment_income.count@E06000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + } + }, + { + "name": "hmrc.employment_income.count@E06000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + } + }, + { + "name": "hmrc.employment_income.count@E06000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + } + }, + { + "name": "hmrc.employment_income.count@E06000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + } + }, + { + "name": "hmrc.employment_income.count@E06000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + } + }, + { + "name": "hmrc.employment_income.count@E06000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + } + }, + { + "name": "hmrc.employment_income.count@E06000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + } + }, + { + "name": "hmrc.employment_income.count@E06000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + } + }, + { + "name": "hmrc.employment_income.count@E06000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + } + }, + { + "name": "hmrc.employment_income.count@E06000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + } + }, + { + "name": "hmrc.employment_income.count@E06000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + } + }, + { + "name": "hmrc.employment_income.count@E06000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + } + }, + { + "name": "hmrc.employment_income.count@E06000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + } + }, + { + "name": "hmrc.employment_income.count@E06000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + } + }, + { + "name": "hmrc.employment_income.count@E06000051", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + } + }, + { + "name": "hmrc.employment_income.count@E06000052", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + } + }, + { + "name": "hmrc.employment_income.count@E06000054", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + } + }, + { + "name": "hmrc.employment_income.count@E06000055", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + } + }, + { + "name": "hmrc.employment_income.count@E06000056", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + } + }, + { + "name": "hmrc.employment_income.count@E06000057", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + } + }, + { + "name": "hmrc.employment_income.count@E06000058", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + } + }, + { + "name": "hmrc.employment_income.count@E06000059", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + } + }, + { + "name": "hmrc.employment_income.count@E06000060", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + } + }, + { + "name": "hmrc.employment_income.count@E06000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + } + }, + { + "name": "hmrc.employment_income.count@E06000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + } + }, + { + "name": "hmrc.employment_income.count@E06000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + } + }, + { + "name": "hmrc.employment_income.count@E06000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + } + }, + { + "name": "hmrc.employment_income.count@E06000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + } + }, + { + "name": "hmrc.employment_income.count@E06000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + } + }, + { + "name": "hmrc.employment_income.count@E07000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + } + }, + { + "name": "hmrc.employment_income.count@E07000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + } + }, + { + "name": "hmrc.employment_income.count@E07000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + } + }, + { + "name": "hmrc.employment_income.count@E07000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + } + }, + { + "name": "hmrc.employment_income.count@E07000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + } + }, + { + "name": "hmrc.employment_income.count@E07000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + } + }, + { + "name": "hmrc.employment_income.count@E07000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + } + }, + { + "name": "hmrc.employment_income.count@E07000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + } + }, + { + "name": "hmrc.employment_income.count@E07000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + } + }, + { + "name": "hmrc.employment_income.count@E07000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + } + }, + { + "name": "hmrc.employment_income.count@E07000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + } + }, + { + "name": "hmrc.employment_income.count@E07000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + } + }, + { + "name": "hmrc.employment_income.count@E07000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + } + }, + { + "name": "hmrc.employment_income.count@E07000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + } + }, + { + "name": "hmrc.employment_income.count@E07000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + } + }, + { + "name": "hmrc.employment_income.count@E07000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + } + }, + { + "name": "hmrc.employment_income.count@E07000043", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + } + }, + { + "name": "hmrc.employment_income.count@E07000044", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + } + }, + { + "name": "hmrc.employment_income.count@E07000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + } + }, + { + "name": "hmrc.employment_income.count@E07000046", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + } + }, + { + "name": "hmrc.employment_income.count@E07000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + } + }, + { + "name": "hmrc.employment_income.count@E07000061", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + } + }, + { + "name": "hmrc.employment_income.count@E07000062", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + } + }, + { + "name": "hmrc.employment_income.count@E07000063", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + } + }, + { + "name": "hmrc.employment_income.count@E07000064", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + } + }, + { + "name": "hmrc.employment_income.count@E07000065", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + } + }, + { + "name": "hmrc.employment_income.count@E07000066", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + } + }, + { + "name": "hmrc.employment_income.count@E07000067", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + } + }, + { + "name": "hmrc.employment_income.count@E07000068", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + } + }, + { + "name": "hmrc.employment_income.count@E07000069", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + } + }, + { + "name": "hmrc.employment_income.count@E07000070", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + } + }, + { + "name": "hmrc.employment_income.count@E07000071", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + } + }, + { + "name": "hmrc.employment_income.count@E07000072", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + } + }, + { + "name": "hmrc.employment_income.count@E07000073", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + } + }, + { + "name": "hmrc.employment_income.count@E07000074", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + } + }, + { + "name": "hmrc.employment_income.count@E07000075", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + } + }, + { + "name": "hmrc.employment_income.count@E07000076", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + } + }, + { + "name": "hmrc.employment_income.count@E07000077", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + } + }, + { + "name": "hmrc.employment_income.count@E07000078", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + } + }, + { + "name": "hmrc.employment_income.count@E07000079", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + } + }, + { + "name": "hmrc.employment_income.count@E07000080", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + } + }, + { + "name": "hmrc.employment_income.count@E07000081", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + } + }, + { + "name": "hmrc.employment_income.count@E07000082", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + } + }, + { + "name": "hmrc.employment_income.count@E07000083", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + } + }, + { + "name": "hmrc.employment_income.count@E07000084", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + } + }, + { + "name": "hmrc.employment_income.count@E07000085", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + } + }, + { + "name": "hmrc.employment_income.count@E07000086", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + } + }, + { + "name": "hmrc.employment_income.count@E07000087", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + } + }, + { + "name": "hmrc.employment_income.count@E07000088", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + } + }, + { + "name": "hmrc.employment_income.count@E07000089", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + } + }, + { + "name": "hmrc.employment_income.count@E07000090", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + } + }, + { + "name": "hmrc.employment_income.count@E07000091", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + } + }, + { + "name": "hmrc.employment_income.count@E07000092", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + } + }, + { + "name": "hmrc.employment_income.count@E07000093", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + } + }, + { + "name": "hmrc.employment_income.count@E07000094", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + } + }, + { + "name": "hmrc.employment_income.count@E07000095", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + } + }, + { + "name": "hmrc.employment_income.count@E07000096", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + } + }, + { + "name": "hmrc.employment_income.count@E07000098", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + } + }, + { + "name": "hmrc.employment_income.count@E07000099", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + } + }, + { + "name": "hmrc.employment_income.count@E07000102", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + } + }, + { + "name": "hmrc.employment_income.count@E07000103", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + } + }, + { + "name": "hmrc.employment_income.count@E07000105", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + } + }, + { + "name": "hmrc.employment_income.count@E07000106", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + } + }, + { + "name": "hmrc.employment_income.count@E07000107", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + } + }, + { + "name": "hmrc.employment_income.count@E07000108", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + } + }, + { + "name": "hmrc.employment_income.count@E07000109", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + } + }, + { + "name": "hmrc.employment_income.count@E07000110", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + } + }, + { + "name": "hmrc.employment_income.count@E07000111", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + } + }, + { + "name": "hmrc.employment_income.count@E07000112", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + } + }, + { + "name": "hmrc.employment_income.count@E07000113", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + } + }, + { + "name": "hmrc.employment_income.count@E07000114", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + } + }, + { + "name": "hmrc.employment_income.count@E07000115", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + } + }, + { + "name": "hmrc.employment_income.count@E07000116", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + } + }, + { + "name": "hmrc.employment_income.count@E07000117", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + } + }, + { + "name": "hmrc.employment_income.count@E07000118", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + } + }, + { + "name": "hmrc.employment_income.count@E07000119", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + } + }, + { + "name": "hmrc.employment_income.count@E07000120", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + } + }, + { + "name": "hmrc.employment_income.count@E07000121", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + } + }, + { + "name": "hmrc.employment_income.count@E07000122", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + } + }, + { + "name": "hmrc.employment_income.count@E07000123", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + } + }, + { + "name": "hmrc.employment_income.count@E07000124", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + } + }, + { + "name": "hmrc.employment_income.count@E07000125", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + } + }, + { + "name": "hmrc.employment_income.count@E07000126", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + } + }, + { + "name": "hmrc.employment_income.count@E07000127", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + } + }, + { + "name": "hmrc.employment_income.count@E07000128", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + } + }, + { + "name": "hmrc.employment_income.count@E07000129", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + } + }, + { + "name": "hmrc.employment_income.count@E07000130", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + } + }, + { + "name": "hmrc.employment_income.count@E07000131", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + } + }, + { + "name": "hmrc.employment_income.count@E07000132", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + } + }, + { + "name": "hmrc.employment_income.count@E07000133", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + } + }, + { + "name": "hmrc.employment_income.count@E07000134", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + } + }, + { + "name": "hmrc.employment_income.count@E07000135", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + } + }, + { + "name": "hmrc.employment_income.count@E07000136", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + } + }, + { + "name": "hmrc.employment_income.count@E07000137", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + } + }, + { + "name": "hmrc.employment_income.count@E07000138", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + } + }, + { + "name": "hmrc.employment_income.count@E07000139", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + } + }, + { + "name": "hmrc.employment_income.count@E07000140", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + } + }, + { + "name": "hmrc.employment_income.count@E07000141", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + } + }, + { + "name": "hmrc.employment_income.count@E07000142", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + } + }, + { + "name": "hmrc.employment_income.count@E07000143", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + } + }, + { + "name": "hmrc.employment_income.count@E07000144", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + } + }, + { + "name": "hmrc.employment_income.count@E07000145", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + } + }, + { + "name": "hmrc.employment_income.count@E07000146", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + } + }, + { + "name": "hmrc.employment_income.count@E07000147", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + } + }, + { + "name": "hmrc.employment_income.count@E07000148", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + } + }, + { + "name": "hmrc.employment_income.count@E07000149", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + } + }, + { + "name": "hmrc.employment_income.count@E07000170", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + } + }, + { + "name": "hmrc.employment_income.count@E07000171", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + } + }, + { + "name": "hmrc.employment_income.count@E07000172", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + } + }, + { + "name": "hmrc.employment_income.count@E07000173", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + } + }, + { + "name": "hmrc.employment_income.count@E07000174", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + } + }, + { + "name": "hmrc.employment_income.count@E07000175", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + } + }, + { + "name": "hmrc.employment_income.count@E07000176", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + } + }, + { + "name": "hmrc.employment_income.count@E07000177", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + } + }, + { + "name": "hmrc.employment_income.count@E07000178", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + } + }, + { + "name": "hmrc.employment_income.count@E07000179", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + } + }, + { + "name": "hmrc.employment_income.count@E07000180", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + } + }, + { + "name": "hmrc.employment_income.count@E07000181", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + } + }, + { + "name": "hmrc.employment_income.count@E07000192", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + } + }, + { + "name": "hmrc.employment_income.count@E07000193", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + } + }, + { + "name": "hmrc.employment_income.count@E07000194", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + } + }, + { + "name": "hmrc.employment_income.count@E07000195", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + } + }, + { + "name": "hmrc.employment_income.count@E07000196", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + } + }, + { + "name": "hmrc.employment_income.count@E07000197", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + } + }, + { + "name": "hmrc.employment_income.count@E07000198", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + } + }, + { + "name": "hmrc.employment_income.count@E07000199", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + } + }, + { + "name": "hmrc.employment_income.count@E07000200", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + } + }, + { + "name": "hmrc.employment_income.count@E07000202", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + } + }, + { + "name": "hmrc.employment_income.count@E07000203", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + } + }, + { + "name": "hmrc.employment_income.count@E07000207", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + } + }, + { + "name": "hmrc.employment_income.count@E07000208", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + } + }, + { + "name": "hmrc.employment_income.count@E07000209", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + } + }, + { + "name": "hmrc.employment_income.count@E07000210", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + } + }, + { + "name": "hmrc.employment_income.count@E07000211", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + } + }, + { + "name": "hmrc.employment_income.count@E07000212", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + } + }, + { + "name": "hmrc.employment_income.count@E07000213", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + } + }, + { + "name": "hmrc.employment_income.count@E07000214", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + } + }, + { + "name": "hmrc.employment_income.count@E07000215", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + } + }, + { + "name": "hmrc.employment_income.count@E07000216", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + } + }, + { + "name": "hmrc.employment_income.count@E07000217", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + } + }, + { + "name": "hmrc.employment_income.count@E07000218", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + } + }, + { + "name": "hmrc.employment_income.count@E07000219", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + } + }, + { + "name": "hmrc.employment_income.count@E07000220", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + } + }, + { + "name": "hmrc.employment_income.count@E07000221", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + } + }, + { + "name": "hmrc.employment_income.count@E07000222", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + } + }, + { + "name": "hmrc.employment_income.count@E07000223", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + } + }, + { + "name": "hmrc.employment_income.count@E07000224", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + } + }, + { + "name": "hmrc.employment_income.count@E07000225", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + } + }, + { + "name": "hmrc.employment_income.count@E07000226", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + } + }, + { + "name": "hmrc.employment_income.count@E07000227", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + } + }, + { + "name": "hmrc.employment_income.count@E07000228", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + } + }, + { + "name": "hmrc.employment_income.count@E07000229", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + } + }, + { + "name": "hmrc.employment_income.count@E07000234", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + } + }, + { + "name": "hmrc.employment_income.count@E07000235", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + } + }, + { + "name": "hmrc.employment_income.count@E07000236", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + } + }, + { + "name": "hmrc.employment_income.count@E07000237", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + } + }, + { + "name": "hmrc.employment_income.count@E07000238", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + } + }, + { + "name": "hmrc.employment_income.count@E07000239", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + } + }, + { + "name": "hmrc.employment_income.count@E07000240", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + } + }, + { + "name": "hmrc.employment_income.count@E07000241", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + } + }, + { + "name": "hmrc.employment_income.count@E07000242", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + } + }, + { + "name": "hmrc.employment_income.count@E07000243", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + } + }, + { + "name": "hmrc.employment_income.count@E07000244", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + } + }, + { + "name": "hmrc.employment_income.count@E07000245", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + } + }, + { + "name": "hmrc.employment_income.count@E08000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + } + }, + { + "name": "hmrc.employment_income.count@E08000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + } + }, + { + "name": "hmrc.employment_income.count@E08000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + } + }, + { + "name": "hmrc.employment_income.count@E08000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + } + }, + { + "name": "hmrc.employment_income.count@E08000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + } + }, + { + "name": "hmrc.employment_income.count@E08000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + } + }, + { + "name": "hmrc.employment_income.count@E08000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + } + }, + { + "name": "hmrc.employment_income.count@E08000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + } + }, + { + "name": "hmrc.employment_income.count@E08000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + } + }, + { + "name": "hmrc.employment_income.count@E08000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + } + }, + { + "name": "hmrc.employment_income.count@E08000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + } + }, + { + "name": "hmrc.employment_income.count@E08000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + } + }, + { + "name": "hmrc.employment_income.count@E08000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + } + }, + { + "name": "hmrc.employment_income.count@E08000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + } + }, + { + "name": "hmrc.employment_income.count@E08000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + } + }, + { + "name": "hmrc.employment_income.count@E08000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + } + }, + { + "name": "hmrc.employment_income.count@E08000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + } + }, + { + "name": "hmrc.employment_income.count@E08000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + } + }, + { + "name": "hmrc.employment_income.count@E08000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + } + }, + { + "name": "hmrc.employment_income.count@E08000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + } + }, + { + "name": "hmrc.employment_income.count@E08000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + } + }, + { + "name": "hmrc.employment_income.count@E08000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + } + }, + { + "name": "hmrc.employment_income.count@E08000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + } + }, + { + "name": "hmrc.employment_income.count@E08000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + } + }, + { + "name": "hmrc.employment_income.count@E08000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + } + }, + { + "name": "hmrc.employment_income.count@E08000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + } + }, + { + "name": "hmrc.employment_income.count@E08000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + } + }, + { + "name": "hmrc.employment_income.count@E08000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + } + }, + { + "name": "hmrc.employment_income.count@E08000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + } + }, + { + "name": "hmrc.employment_income.count@E08000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + } + }, + { + "name": "hmrc.employment_income.count@E08000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + } + }, + { + "name": "hmrc.employment_income.count@E08000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + } + }, + { + "name": "hmrc.employment_income.count@E08000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + } + }, + { + "name": "hmrc.employment_income.count@E08000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + } + }, + { + "name": "hmrc.employment_income.count@E08000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + } + }, + { + "name": "hmrc.employment_income.count@E08000037", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + } + }, + { + "name": "hmrc.employment_income.count@E09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + } + }, + { + "name": "hmrc.employment_income.count@E09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + } + }, + { + "name": "hmrc.employment_income.count@E09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + } + }, + { + "name": "hmrc.employment_income.count@E09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + } + }, + { + "name": "hmrc.employment_income.count@E09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + } + }, + { + "name": "hmrc.employment_income.count@E09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + } + }, + { + "name": "hmrc.employment_income.count@E09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + } + }, + { + "name": "hmrc.employment_income.count@E09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + } + }, + { + "name": "hmrc.employment_income.count@E09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + } + }, + { + "name": "hmrc.employment_income.count@E09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + } + }, + { + "name": "hmrc.employment_income.count@E09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + } + }, + { + "name": "hmrc.employment_income.count@E09000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + } + }, + { + "name": "hmrc.employment_income.count@E09000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + } + }, + { + "name": "hmrc.employment_income.count@E09000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + } + }, + { + "name": "hmrc.employment_income.count@E09000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + } + }, + { + "name": "hmrc.employment_income.count@E09000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + } + }, + { + "name": "hmrc.employment_income.count@E09000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + } + }, + { + "name": "hmrc.employment_income.count@E09000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + } + }, + { + "name": "hmrc.employment_income.count@E09000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + } + }, + { + "name": "hmrc.employment_income.count@E09000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + } + }, + { + "name": "hmrc.employment_income.count@E09000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + } + }, + { + "name": "hmrc.employment_income.count@E09000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + } + }, + { + "name": "hmrc.employment_income.count@E09000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + } + }, + { + "name": "hmrc.employment_income.count@E09000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + } + }, + { + "name": "hmrc.employment_income.count@E09000025", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + } + }, + { + "name": "hmrc.employment_income.count@E09000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + } + }, + { + "name": "hmrc.employment_income.count@E09000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + } + }, + { + "name": "hmrc.employment_income.count@E09000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + } + }, + { + "name": "hmrc.employment_income.count@E09000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + } + }, + { + "name": "hmrc.employment_income.count@E09000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + } + }, + { + "name": "hmrc.employment_income.count@E09000031", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + } + }, + { + "name": "hmrc.employment_income.count@E09000032", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + } + }, + { + "name": "hmrc.employment_income.count@E09000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + } + }, + { + "name": "hmrc.employment_income.count@N09000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + } + }, + { + "name": "hmrc.employment_income.count@N09000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + } + }, + { + "name": "hmrc.employment_income.count@N09000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + } + }, + { + "name": "hmrc.employment_income.count@N09000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + } + }, + { + "name": "hmrc.employment_income.count@N09000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + } + }, + { + "name": "hmrc.employment_income.count@N09000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + } + }, + { + "name": "hmrc.employment_income.count@N09000007", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + } + }, + { + "name": "hmrc.employment_income.count@N09000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + } + }, + { + "name": "hmrc.employment_income.count@N09000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + } + }, + { + "name": "hmrc.employment_income.count@N09000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + } + }, + { + "name": "hmrc.employment_income.count@N09000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + } + }, + { + "name": "hmrc.employment_income.count@S12000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + } + }, + { + "name": "hmrc.employment_income.count@S12000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + } + }, + { + "name": "hmrc.employment_income.count@S12000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + } + }, + { + "name": "hmrc.employment_income.count@S12000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + } + }, + { + "name": "hmrc.employment_income.count@S12000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + } + }, + { + "name": "hmrc.employment_income.count@S12000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + } + }, + { + "name": "hmrc.employment_income.count@S12000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + } + }, + { + "name": "hmrc.employment_income.count@S12000017", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + } + }, + { + "name": "hmrc.employment_income.count@S12000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + } + }, + { + "name": "hmrc.employment_income.count@S12000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + } + }, + { + "name": "hmrc.employment_income.count@S12000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + } + }, + { + "name": "hmrc.employment_income.count@S12000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + } + }, + { + "name": "hmrc.employment_income.count@S12000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + } + }, + { + "name": "hmrc.employment_income.count@S12000026", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + } + }, + { + "name": "hmrc.employment_income.count@S12000027", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + } + }, + { + "name": "hmrc.employment_income.count@S12000028", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + } + }, + { + "name": "hmrc.employment_income.count@S12000029", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + } + }, + { + "name": "hmrc.employment_income.count@S12000030", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + } + }, + { + "name": "hmrc.employment_income.count@S12000033", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + } + }, + { + "name": "hmrc.employment_income.count@S12000034", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + } + }, + { + "name": "hmrc.employment_income.count@S12000035", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + } + }, + { + "name": "hmrc.employment_income.count@S12000036", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + } + }, + { + "name": "hmrc.employment_income.count@S12000038", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + } + }, + { + "name": "hmrc.employment_income.count@S12000039", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + } + }, + { + "name": "hmrc.employment_income.count@S12000040", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + } + }, + { + "name": "hmrc.employment_income.count@S12000041", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + } + }, + { + "name": "hmrc.employment_income.count@S12000042", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + } + }, + { + "name": "hmrc.employment_income.count@S12000045", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + } + }, + { + "name": "hmrc.employment_income.count@S12000047", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + } + }, + { + "name": "hmrc.employment_income.count@S12000048", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + } + }, + { + "name": "hmrc.employment_income.count@S12000049", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + } + }, + { + "name": "hmrc.employment_income.count@S12000050", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + } + }, + { + "name": "hmrc.employment_income.count@W06000001", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + } + }, + { + "name": "hmrc.employment_income.count@W06000002", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + } + }, + { + "name": "hmrc.employment_income.count@W06000003", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + } + }, + { + "name": "hmrc.employment_income.count@W06000004", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + } + }, + { + "name": "hmrc.employment_income.count@W06000005", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + } + }, + { + "name": "hmrc.employment_income.count@W06000006", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + } + }, + { + "name": "hmrc.employment_income.count@W06000008", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + } + }, + { + "name": "hmrc.employment_income.count@W06000009", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + } + }, + { + "name": "hmrc.employment_income.count@W06000010", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + } + }, + { + "name": "hmrc.employment_income.count@W06000011", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + } + }, + { + "name": "hmrc.employment_income.count@W06000012", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + } + }, + { + "name": "hmrc.employment_income.count@W06000013", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + } + }, + { + "name": "hmrc.employment_income.count@W06000014", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + } + }, + { + "name": "hmrc.employment_income.count@W06000015", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + } + }, + { + "name": "hmrc.employment_income.count@W06000016", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + } + }, + { + "name": "hmrc.employment_income.count@W06000018", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + } + }, + { + "name": "hmrc.employment_income.count@W06000019", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + } + }, + { + "name": "hmrc.employment_income.count@W06000020", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + } + }, + { + "name": "hmrc.employment_income.count@W06000021", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + } + }, + { + "name": "hmrc.employment_income.count@W06000022", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + } + }, + { + "name": "hmrc.employment_income.count@W06000023", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + } + }, + { + "name": "hmrc.employment_income.count@W06000024", + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "hmrc/employment_income/count", + "family": "hmrc", + "period": 2025, + "metadata": { + "contract_target_id": "hmrc.employment_income.count", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + } + }, + { + "name": "ons.age.0_10@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.0_10@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/0_10", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.0_10", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.10_20@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/10_20", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.10_20", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.20_30@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/20_30", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.20_30", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.30_40@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/30_40", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.30_40", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.40_50@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/40_50", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.40_50", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.50_60@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/50_60", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.50_60", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.60_70@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/60_70", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.60_70", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001150", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001151", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001152", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001153", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001154", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001155", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001156", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001157", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001158", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001159", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001160", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001161", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001162", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001163", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001164", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001165", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001166", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001167", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001168", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001169", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001182", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001183", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001184", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001185", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001186", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001187", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001188", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001189", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001190", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001191", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001201", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001204", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001205", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001206", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001230", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001231", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001232", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001233", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001246", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001247", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001248", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001249", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001250", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001251", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001252", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001253", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001254", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001255", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001256", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001257", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001258", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001259", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001260", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001261", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001262", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001263", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001264", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001265", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001266", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001267", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001268", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001269", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001270", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001271", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001272", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001273", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001274", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001275", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001276", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001277", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001278", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001279", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001280", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001281", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001282", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001283", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001284", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001285", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001286", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001287", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001288", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001289", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001290", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001291", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001292", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001293", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001294", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001295", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001296", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001297", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001298", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001299", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001300", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001301", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001302", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001303", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001304", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001305", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001306", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001307", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001308", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001309", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001310", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001311", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001312", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001313", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001314", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001315", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001316", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001317", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001318", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001319", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001320", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001321", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001322", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001323", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001324", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001325", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001326", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001327", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001328", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001329", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001330", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001331", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001332", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001333", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001334", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001335", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001336", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001337", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001338", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001339", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001340", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001341", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001342", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001343", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001344", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001345", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001346", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001347", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001348", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001349", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001350", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001351", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001352", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001353", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001354", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001355", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001356", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001357", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001358", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001359", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001360", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001361", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001362", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001363", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001364", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001365", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001366", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001367", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001368", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001369", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001370", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001371", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001372", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001373", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001374", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001375", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001376", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001377", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001378", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001379", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001380", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001381", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001382", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001383", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001384", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001385", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001386", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001387", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001388", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001389", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001390", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001391", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001392", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001393", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001394", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001395", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001396", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001397", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001398", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001399", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001400", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001401", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001402", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001403", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001404", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001405", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001406", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001407", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001408", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001409", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001410", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001411", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001412", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001413", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001414", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001415", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001416", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001417", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001418", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001419", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001420", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001421", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001422", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001423", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001424", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001425", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001426", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001427", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001428", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001429", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001430", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001431", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001432", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001433", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001434", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001435", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001436", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001437", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001438", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001439", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001440", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001441", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001442", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001443", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001444", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001445", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001446", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001447", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001448", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001449", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001450", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001451", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001452", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001453", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001454", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001455", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001456", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001457", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001458", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001459", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001460", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001461", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001462", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001463", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001464", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001465", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001466", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001467", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001468", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001469", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001470", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001471", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001472", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001473", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001474", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001475", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001476", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001477", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001478", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001479", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001480", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001481", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001482", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001483", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001484", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001485", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001486", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001487", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001488", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001489", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001490", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001491", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001492", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001493", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001494", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001495", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001496", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001497", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001498", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001499", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001500", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001501", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001502", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001503", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001504", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001505", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001506", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001507", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001508", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001509", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001510", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001511", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001512", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001513", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001514", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001515", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001516", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001517", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001518", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001519", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001520", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001521", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001522", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001523", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001524", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001525", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001526", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001527", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001528", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001529", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001530", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001531", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001532", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001533", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001534", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001535", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001536", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001537", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001538", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001539", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001540", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001541", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001542", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001543", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001544", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001545", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001546", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001547", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001548", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001549", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001550", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001551", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001552", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001553", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001554", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001555", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001556", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001557", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001558", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001559", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001560", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001561", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001562", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001563", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001564", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001565", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001566", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001567", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001568", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001569", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001570", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001571", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001572", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001573", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001574", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001575", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001576", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001577", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001578", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001579", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001580", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001581", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001582", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001583", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001584", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001585", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001586", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001587", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001588", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001589", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001590", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001591", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001592", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001593", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001594", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001595", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001596", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001597", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001598", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001599", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001600", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001601", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001602", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001603", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001604", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E14001605", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N05000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "N05000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S14000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000097", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000100", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000101", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000104", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000051", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000052", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000053", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000054", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000055", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000056", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000057", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000058", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000059", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000060", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E06000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000043", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000044", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000046", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000061", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000062", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000063", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000064", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000065", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000066", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000067", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000068", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000069", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000070", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000071", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000072", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000073", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000074", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000075", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000076", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000077", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000078", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000079", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000080", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000081", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000082", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000083", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000084", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000085", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000086", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000087", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000088", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000089", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000090", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000091", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000092", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000093", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000094", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000095", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000096", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000098", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000099", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000102", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000103", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000105", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000106", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000107", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000108", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000109", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000110", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000111", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000112", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000113", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000114", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000115", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000116", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000117", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000118", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000119", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000120", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000121", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000122", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000123", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000124", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000125", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000126", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000127", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000128", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000129", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000130", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000131", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000132", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000133", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000134", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000135", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000136", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000137", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000138", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000139", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000140", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000141", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000142", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000143", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000144", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000145", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000146", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000147", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000148", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000149", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000170", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000171", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000172", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000173", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000174", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000175", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000176", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000177", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000178", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000179", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000180", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000181", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000192", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000193", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000194", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000195", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000196", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000197", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000198", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000199", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000200", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000202", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000203", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000207", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000208", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000209", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000210", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000211", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000212", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000213", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000214", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000215", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000216", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000217", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000218", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000219", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000220", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000221", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000222", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000223", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000224", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000225", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000226", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000227", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000228", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000229", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000234", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000235", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000236", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000237", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000238", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000239", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000240", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000241", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000242", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000243", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000244", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E07000245", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E08000037", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000025", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000031", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000032", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@E09000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000007", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@N09000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000017", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000026", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000027", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000028", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000029", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000030", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000033", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000034", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000035", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000036", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000038", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000039", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000040", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000041", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000042", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000045", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000047", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000048", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000049", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@S12000050", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000001", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000002", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000003", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000004", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000005", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000006", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000008", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000009", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000010", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000011", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000012", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000013", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000014", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000015", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000016", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000018", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000019", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000020", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000021", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000022", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000023", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.age.70_80@W06000024", + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "person", + "measure": "age/70_80", + "family": "ons_population", + "period": 2025, + "metadata": { + "contract_target_id": "ons.age.70_80", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area@E14001063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "dwp.uc.households_by_area@E14001064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "dwp.uc.households_by_area@E14001065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "dwp.uc.households_by_area@E14001066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "dwp.uc.households_by_area@E14001067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "dwp.uc.households_by_area@E14001068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "dwp.uc.households_by_area@E14001069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "dwp.uc.households_by_area@E14001070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "dwp.uc.households_by_area@E14001071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "dwp.uc.households_by_area@E14001072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "dwp.uc.households_by_area@E14001073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "dwp.uc.households_by_area@E14001074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "dwp.uc.households_by_area@E14001075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "dwp.uc.households_by_area@E14001076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "dwp.uc.households_by_area@E14001077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "dwp.uc.households_by_area@E14001078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "dwp.uc.households_by_area@E14001079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "dwp.uc.households_by_area@E14001080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "dwp.uc.households_by_area@E14001081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "dwp.uc.households_by_area@E14001082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "dwp.uc.households_by_area@E14001083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "dwp.uc.households_by_area@E14001084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "dwp.uc.households_by_area@E14001085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "dwp.uc.households_by_area@E14001086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "dwp.uc.households_by_area@E14001087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "dwp.uc.households_by_area@E14001088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "dwp.uc.households_by_area@E14001089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "dwp.uc.households_by_area@E14001090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "dwp.uc.households_by_area@E14001091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "dwp.uc.households_by_area@E14001092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "dwp.uc.households_by_area@E14001093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "dwp.uc.households_by_area@E14001094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "dwp.uc.households_by_area@E14001095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "dwp.uc.households_by_area@E14001096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "dwp.uc.households_by_area@E14001097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "dwp.uc.households_by_area@E14001098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "dwp.uc.households_by_area@E14001099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "dwp.uc.households_by_area@E14001100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "dwp.uc.households_by_area@E14001101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "dwp.uc.households_by_area@E14001102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "dwp.uc.households_by_area@E14001103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "dwp.uc.households_by_area@E14001104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "dwp.uc.households_by_area@E14001105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "dwp.uc.households_by_area@E14001106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "dwp.uc.households_by_area@E14001107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "dwp.uc.households_by_area@E14001108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "dwp.uc.households_by_area@E14001109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "dwp.uc.households_by_area@E14001110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "dwp.uc.households_by_area@E14001111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "dwp.uc.households_by_area@E14001112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "dwp.uc.households_by_area@E14001113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "dwp.uc.households_by_area@E14001114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "dwp.uc.households_by_area@E14001115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "dwp.uc.households_by_area@E14001116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "dwp.uc.households_by_area@E14001117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "dwp.uc.households_by_area@E14001118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "dwp.uc.households_by_area@E14001119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "dwp.uc.households_by_area@E14001120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "dwp.uc.households_by_area@E14001121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "dwp.uc.households_by_area@E14001122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "dwp.uc.households_by_area@E14001123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "dwp.uc.households_by_area@E14001124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "dwp.uc.households_by_area@E14001125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "dwp.uc.households_by_area@E14001126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "dwp.uc.households_by_area@E14001127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "dwp.uc.households_by_area@E14001128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "dwp.uc.households_by_area@E14001129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "dwp.uc.households_by_area@E14001130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "dwp.uc.households_by_area@E14001131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "dwp.uc.households_by_area@E14001132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "dwp.uc.households_by_area@E14001133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "dwp.uc.households_by_area@E14001134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "dwp.uc.households_by_area@E14001135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "dwp.uc.households_by_area@E14001136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "dwp.uc.households_by_area@E14001137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "dwp.uc.households_by_area@E14001138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "dwp.uc.households_by_area@E14001139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "dwp.uc.households_by_area@E14001140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "dwp.uc.households_by_area@E14001141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "dwp.uc.households_by_area@E14001142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "dwp.uc.households_by_area@E14001143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "dwp.uc.households_by_area@E14001144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "dwp.uc.households_by_area@E14001145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "dwp.uc.households_by_area@E14001146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "dwp.uc.households_by_area@E14001147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "dwp.uc.households_by_area@E14001148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "dwp.uc.households_by_area@E14001149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "dwp.uc.households_by_area@E14001150", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "dwp.uc.households_by_area@E14001151", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "dwp.uc.households_by_area@E14001152", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "dwp.uc.households_by_area@E14001153", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "dwp.uc.households_by_area@E14001154", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "dwp.uc.households_by_area@E14001155", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "dwp.uc.households_by_area@E14001156", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "dwp.uc.households_by_area@E14001157", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "dwp.uc.households_by_area@E14001158", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "dwp.uc.households_by_area@E14001159", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "dwp.uc.households_by_area@E14001160", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "dwp.uc.households_by_area@E14001161", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "dwp.uc.households_by_area@E14001162", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "dwp.uc.households_by_area@E14001163", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "dwp.uc.households_by_area@E14001164", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "dwp.uc.households_by_area@E14001165", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "dwp.uc.households_by_area@E14001166", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "dwp.uc.households_by_area@E14001167", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "dwp.uc.households_by_area@E14001168", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "dwp.uc.households_by_area@E14001169", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "dwp.uc.households_by_area@E14001170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "dwp.uc.households_by_area@E14001171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "dwp.uc.households_by_area@E14001172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "dwp.uc.households_by_area@E14001173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "dwp.uc.households_by_area@E14001174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "dwp.uc.households_by_area@E14001175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "dwp.uc.households_by_area@E14001176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "dwp.uc.households_by_area@E14001177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "dwp.uc.households_by_area@E14001178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "dwp.uc.households_by_area@E14001179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "dwp.uc.households_by_area@E14001180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "dwp.uc.households_by_area@E14001181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "dwp.uc.households_by_area@E14001182", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "dwp.uc.households_by_area@E14001183", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "dwp.uc.households_by_area@E14001184", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "dwp.uc.households_by_area@E14001185", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "dwp.uc.households_by_area@E14001186", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "dwp.uc.households_by_area@E14001187", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "dwp.uc.households_by_area@E14001188", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "dwp.uc.households_by_area@E14001189", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "dwp.uc.households_by_area@E14001190", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "dwp.uc.households_by_area@E14001191", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "dwp.uc.households_by_area@E14001192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "dwp.uc.households_by_area@E14001193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "dwp.uc.households_by_area@E14001194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "dwp.uc.households_by_area@E14001195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "dwp.uc.households_by_area@E14001196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "dwp.uc.households_by_area@E14001197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "dwp.uc.households_by_area@E14001198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "dwp.uc.households_by_area@E14001199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "dwp.uc.households_by_area@E14001200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "dwp.uc.households_by_area@E14001201", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "dwp.uc.households_by_area@E14001202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "dwp.uc.households_by_area@E14001203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "dwp.uc.households_by_area@E14001204", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "dwp.uc.households_by_area@E14001205", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "dwp.uc.households_by_area@E14001206", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "dwp.uc.households_by_area@E14001207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "dwp.uc.households_by_area@E14001208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "dwp.uc.households_by_area@E14001209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "dwp.uc.households_by_area@E14001210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "dwp.uc.households_by_area@E14001211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "dwp.uc.households_by_area@E14001212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "dwp.uc.households_by_area@E14001213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "dwp.uc.households_by_area@E14001214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "dwp.uc.households_by_area@E14001215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "dwp.uc.households_by_area@E14001216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "dwp.uc.households_by_area@E14001217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "dwp.uc.households_by_area@E14001218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "dwp.uc.households_by_area@E14001219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "dwp.uc.households_by_area@E14001220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "dwp.uc.households_by_area@E14001221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "dwp.uc.households_by_area@E14001222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "dwp.uc.households_by_area@E14001223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "dwp.uc.households_by_area@E14001224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "dwp.uc.households_by_area@E14001225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "dwp.uc.households_by_area@E14001226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "dwp.uc.households_by_area@E14001227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "dwp.uc.households_by_area@E14001228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "dwp.uc.households_by_area@E14001229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "dwp.uc.households_by_area@E14001230", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "dwp.uc.households_by_area@E14001231", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "dwp.uc.households_by_area@E14001232", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "dwp.uc.households_by_area@E14001233", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "dwp.uc.households_by_area@E14001234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "dwp.uc.households_by_area@E14001235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "dwp.uc.households_by_area@E14001236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "dwp.uc.households_by_area@E14001237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "dwp.uc.households_by_area@E14001238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "dwp.uc.households_by_area@E14001239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "dwp.uc.households_by_area@E14001240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "dwp.uc.households_by_area@E14001241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "dwp.uc.households_by_area@E14001242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "dwp.uc.households_by_area@E14001243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "dwp.uc.households_by_area@E14001244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "dwp.uc.households_by_area@E14001245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "dwp.uc.households_by_area@E14001246", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "dwp.uc.households_by_area@E14001247", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "dwp.uc.households_by_area@E14001248", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "dwp.uc.households_by_area@E14001249", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "dwp.uc.households_by_area@E14001250", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "dwp.uc.households_by_area@E14001251", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "dwp.uc.households_by_area@E14001252", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "dwp.uc.households_by_area@E14001253", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "dwp.uc.households_by_area@E14001254", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "dwp.uc.households_by_area@E14001255", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "dwp.uc.households_by_area@E14001256", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "dwp.uc.households_by_area@E14001257", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "dwp.uc.households_by_area@E14001258", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "dwp.uc.households_by_area@E14001259", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "dwp.uc.households_by_area@E14001260", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "dwp.uc.households_by_area@E14001261", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "dwp.uc.households_by_area@E14001262", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "dwp.uc.households_by_area@E14001263", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "dwp.uc.households_by_area@E14001264", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "dwp.uc.households_by_area@E14001265", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "dwp.uc.households_by_area@E14001266", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "dwp.uc.households_by_area@E14001267", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "dwp.uc.households_by_area@E14001268", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "dwp.uc.households_by_area@E14001269", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "dwp.uc.households_by_area@E14001270", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "dwp.uc.households_by_area@E14001271", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "dwp.uc.households_by_area@E14001272", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "dwp.uc.households_by_area@E14001273", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "dwp.uc.households_by_area@E14001274", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "dwp.uc.households_by_area@E14001275", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "dwp.uc.households_by_area@E14001276", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "dwp.uc.households_by_area@E14001277", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "dwp.uc.households_by_area@E14001278", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "dwp.uc.households_by_area@E14001279", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "dwp.uc.households_by_area@E14001280", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "dwp.uc.households_by_area@E14001281", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "dwp.uc.households_by_area@E14001282", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "dwp.uc.households_by_area@E14001283", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "dwp.uc.households_by_area@E14001284", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "dwp.uc.households_by_area@E14001285", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "dwp.uc.households_by_area@E14001286", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "dwp.uc.households_by_area@E14001287", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "dwp.uc.households_by_area@E14001288", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "dwp.uc.households_by_area@E14001289", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "dwp.uc.households_by_area@E14001290", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "dwp.uc.households_by_area@E14001291", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "dwp.uc.households_by_area@E14001292", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "dwp.uc.households_by_area@E14001293", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "dwp.uc.households_by_area@E14001294", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "dwp.uc.households_by_area@E14001295", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "dwp.uc.households_by_area@E14001296", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "dwp.uc.households_by_area@E14001297", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "dwp.uc.households_by_area@E14001298", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "dwp.uc.households_by_area@E14001299", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "dwp.uc.households_by_area@E14001300", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "dwp.uc.households_by_area@E14001301", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "dwp.uc.households_by_area@E14001302", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "dwp.uc.households_by_area@E14001303", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "dwp.uc.households_by_area@E14001304", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "dwp.uc.households_by_area@E14001305", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "dwp.uc.households_by_area@E14001306", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "dwp.uc.households_by_area@E14001307", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "dwp.uc.households_by_area@E14001308", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "dwp.uc.households_by_area@E14001309", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "dwp.uc.households_by_area@E14001310", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "dwp.uc.households_by_area@E14001311", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "dwp.uc.households_by_area@E14001312", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "dwp.uc.households_by_area@E14001313", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "dwp.uc.households_by_area@E14001314", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "dwp.uc.households_by_area@E14001315", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "dwp.uc.households_by_area@E14001316", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "dwp.uc.households_by_area@E14001317", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "dwp.uc.households_by_area@E14001318", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "dwp.uc.households_by_area@E14001319", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "dwp.uc.households_by_area@E14001320", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "dwp.uc.households_by_area@E14001321", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "dwp.uc.households_by_area@E14001322", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "dwp.uc.households_by_area@E14001323", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "dwp.uc.households_by_area@E14001324", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "dwp.uc.households_by_area@E14001325", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "dwp.uc.households_by_area@E14001326", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "dwp.uc.households_by_area@E14001327", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "dwp.uc.households_by_area@E14001328", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "dwp.uc.households_by_area@E14001329", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "dwp.uc.households_by_area@E14001330", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "dwp.uc.households_by_area@E14001331", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "dwp.uc.households_by_area@E14001332", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "dwp.uc.households_by_area@E14001333", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "dwp.uc.households_by_area@E14001334", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "dwp.uc.households_by_area@E14001335", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "dwp.uc.households_by_area@E14001336", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "dwp.uc.households_by_area@E14001337", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "dwp.uc.households_by_area@E14001338", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "dwp.uc.households_by_area@E14001339", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "dwp.uc.households_by_area@E14001340", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "dwp.uc.households_by_area@E14001341", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "dwp.uc.households_by_area@E14001342", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "dwp.uc.households_by_area@E14001343", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "dwp.uc.households_by_area@E14001344", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "dwp.uc.households_by_area@E14001345", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "dwp.uc.households_by_area@E14001346", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "dwp.uc.households_by_area@E14001347", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "dwp.uc.households_by_area@E14001348", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "dwp.uc.households_by_area@E14001349", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "dwp.uc.households_by_area@E14001350", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "dwp.uc.households_by_area@E14001351", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "dwp.uc.households_by_area@E14001352", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "dwp.uc.households_by_area@E14001353", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "dwp.uc.households_by_area@E14001354", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "dwp.uc.households_by_area@E14001355", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "dwp.uc.households_by_area@E14001356", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "dwp.uc.households_by_area@E14001357", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "dwp.uc.households_by_area@E14001358", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "dwp.uc.households_by_area@E14001359", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "dwp.uc.households_by_area@E14001360", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "dwp.uc.households_by_area@E14001361", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "dwp.uc.households_by_area@E14001362", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "dwp.uc.households_by_area@E14001363", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "dwp.uc.households_by_area@E14001364", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "dwp.uc.households_by_area@E14001365", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "dwp.uc.households_by_area@E14001366", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "dwp.uc.households_by_area@E14001367", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "dwp.uc.households_by_area@E14001368", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "dwp.uc.households_by_area@E14001369", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "dwp.uc.households_by_area@E14001370", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "dwp.uc.households_by_area@E14001371", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "dwp.uc.households_by_area@E14001372", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "dwp.uc.households_by_area@E14001373", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "dwp.uc.households_by_area@E14001374", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "dwp.uc.households_by_area@E14001375", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "dwp.uc.households_by_area@E14001376", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "dwp.uc.households_by_area@E14001377", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "dwp.uc.households_by_area@E14001378", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "dwp.uc.households_by_area@E14001379", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "dwp.uc.households_by_area@E14001380", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "dwp.uc.households_by_area@E14001381", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "dwp.uc.households_by_area@E14001382", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "dwp.uc.households_by_area@E14001383", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "dwp.uc.households_by_area@E14001384", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "dwp.uc.households_by_area@E14001385", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "dwp.uc.households_by_area@E14001386", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "dwp.uc.households_by_area@E14001387", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "dwp.uc.households_by_area@E14001388", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "dwp.uc.households_by_area@E14001389", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "dwp.uc.households_by_area@E14001390", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "dwp.uc.households_by_area@E14001391", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "dwp.uc.households_by_area@E14001392", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "dwp.uc.households_by_area@E14001393", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "dwp.uc.households_by_area@E14001394", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "dwp.uc.households_by_area@E14001395", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "dwp.uc.households_by_area@E14001396", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "dwp.uc.households_by_area@E14001397", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "dwp.uc.households_by_area@E14001398", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "dwp.uc.households_by_area@E14001399", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "dwp.uc.households_by_area@E14001400", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "dwp.uc.households_by_area@E14001401", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "dwp.uc.households_by_area@E14001402", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "dwp.uc.households_by_area@E14001403", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "dwp.uc.households_by_area@E14001404", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "dwp.uc.households_by_area@E14001405", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "dwp.uc.households_by_area@E14001406", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "dwp.uc.households_by_area@E14001407", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "dwp.uc.households_by_area@E14001408", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "dwp.uc.households_by_area@E14001409", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "dwp.uc.households_by_area@E14001410", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "dwp.uc.households_by_area@E14001411", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "dwp.uc.households_by_area@E14001412", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "dwp.uc.households_by_area@E14001413", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "dwp.uc.households_by_area@E14001414", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "dwp.uc.households_by_area@E14001415", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "dwp.uc.households_by_area@E14001416", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "dwp.uc.households_by_area@E14001417", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "dwp.uc.households_by_area@E14001418", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "dwp.uc.households_by_area@E14001419", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "dwp.uc.households_by_area@E14001420", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "dwp.uc.households_by_area@E14001421", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "dwp.uc.households_by_area@E14001422", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "dwp.uc.households_by_area@E14001423", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "dwp.uc.households_by_area@E14001424", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "dwp.uc.households_by_area@E14001425", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "dwp.uc.households_by_area@E14001426", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "dwp.uc.households_by_area@E14001427", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "dwp.uc.households_by_area@E14001428", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "dwp.uc.households_by_area@E14001429", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "dwp.uc.households_by_area@E14001430", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "dwp.uc.households_by_area@E14001431", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "dwp.uc.households_by_area@E14001432", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "dwp.uc.households_by_area@E14001433", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "dwp.uc.households_by_area@E14001434", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "dwp.uc.households_by_area@E14001435", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "dwp.uc.households_by_area@E14001436", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "dwp.uc.households_by_area@E14001437", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "dwp.uc.households_by_area@E14001438", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "dwp.uc.households_by_area@E14001439", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "dwp.uc.households_by_area@E14001440", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "dwp.uc.households_by_area@E14001441", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "dwp.uc.households_by_area@E14001442", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "dwp.uc.households_by_area@E14001443", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "dwp.uc.households_by_area@E14001444", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "dwp.uc.households_by_area@E14001445", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "dwp.uc.households_by_area@E14001446", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "dwp.uc.households_by_area@E14001447", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "dwp.uc.households_by_area@E14001448", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "dwp.uc.households_by_area@E14001449", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "dwp.uc.households_by_area@E14001450", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "dwp.uc.households_by_area@E14001451", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "dwp.uc.households_by_area@E14001452", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "dwp.uc.households_by_area@E14001453", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "dwp.uc.households_by_area@E14001454", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "dwp.uc.households_by_area@E14001455", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "dwp.uc.households_by_area@E14001456", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "dwp.uc.households_by_area@E14001457", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "dwp.uc.households_by_area@E14001458", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "dwp.uc.households_by_area@E14001459", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "dwp.uc.households_by_area@E14001460", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "dwp.uc.households_by_area@E14001461", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "dwp.uc.households_by_area@E14001462", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "dwp.uc.households_by_area@E14001463", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "dwp.uc.households_by_area@E14001464", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "dwp.uc.households_by_area@E14001465", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "dwp.uc.households_by_area@E14001466", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "dwp.uc.households_by_area@E14001467", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "dwp.uc.households_by_area@E14001468", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "dwp.uc.households_by_area@E14001469", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "dwp.uc.households_by_area@E14001470", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "dwp.uc.households_by_area@E14001471", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "dwp.uc.households_by_area@E14001472", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "dwp.uc.households_by_area@E14001473", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "dwp.uc.households_by_area@E14001474", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "dwp.uc.households_by_area@E14001475", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "dwp.uc.households_by_area@E14001476", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "dwp.uc.households_by_area@E14001477", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "dwp.uc.households_by_area@E14001478", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "dwp.uc.households_by_area@E14001479", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "dwp.uc.households_by_area@E14001480", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "dwp.uc.households_by_area@E14001481", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "dwp.uc.households_by_area@E14001482", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "dwp.uc.households_by_area@E14001483", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "dwp.uc.households_by_area@E14001484", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "dwp.uc.households_by_area@E14001485", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "dwp.uc.households_by_area@E14001486", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "dwp.uc.households_by_area@E14001487", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "dwp.uc.households_by_area@E14001488", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "dwp.uc.households_by_area@E14001489", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "dwp.uc.households_by_area@E14001490", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "dwp.uc.households_by_area@E14001491", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "dwp.uc.households_by_area@E14001492", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "dwp.uc.households_by_area@E14001493", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "dwp.uc.households_by_area@E14001494", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "dwp.uc.households_by_area@E14001495", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "dwp.uc.households_by_area@E14001496", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "dwp.uc.households_by_area@E14001497", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "dwp.uc.households_by_area@E14001498", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "dwp.uc.households_by_area@E14001499", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "dwp.uc.households_by_area@E14001500", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "dwp.uc.households_by_area@E14001501", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "dwp.uc.households_by_area@E14001502", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "dwp.uc.households_by_area@E14001503", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "dwp.uc.households_by_area@E14001504", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "dwp.uc.households_by_area@E14001505", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "dwp.uc.households_by_area@E14001506", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "dwp.uc.households_by_area@E14001507", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "dwp.uc.households_by_area@E14001508", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "dwp.uc.households_by_area@E14001509", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "dwp.uc.households_by_area@E14001510", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "dwp.uc.households_by_area@E14001511", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "dwp.uc.households_by_area@E14001512", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "dwp.uc.households_by_area@E14001513", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "dwp.uc.households_by_area@E14001514", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "dwp.uc.households_by_area@E14001515", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "dwp.uc.households_by_area@E14001516", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "dwp.uc.households_by_area@E14001517", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "dwp.uc.households_by_area@E14001518", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "dwp.uc.households_by_area@E14001519", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "dwp.uc.households_by_area@E14001520", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "dwp.uc.households_by_area@E14001521", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "dwp.uc.households_by_area@E14001522", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "dwp.uc.households_by_area@E14001523", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "dwp.uc.households_by_area@E14001524", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "dwp.uc.households_by_area@E14001525", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "dwp.uc.households_by_area@E14001526", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "dwp.uc.households_by_area@E14001527", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "dwp.uc.households_by_area@E14001528", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "dwp.uc.households_by_area@E14001529", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "dwp.uc.households_by_area@E14001530", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "dwp.uc.households_by_area@E14001531", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "dwp.uc.households_by_area@E14001532", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "dwp.uc.households_by_area@E14001533", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "dwp.uc.households_by_area@E14001534", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "dwp.uc.households_by_area@E14001535", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "dwp.uc.households_by_area@E14001536", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "dwp.uc.households_by_area@E14001537", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "dwp.uc.households_by_area@E14001538", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "dwp.uc.households_by_area@E14001539", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "dwp.uc.households_by_area@E14001540", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "dwp.uc.households_by_area@E14001541", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "dwp.uc.households_by_area@E14001542", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "dwp.uc.households_by_area@E14001543", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "dwp.uc.households_by_area@E14001544", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "dwp.uc.households_by_area@E14001545", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "dwp.uc.households_by_area@E14001546", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "dwp.uc.households_by_area@E14001547", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "dwp.uc.households_by_area@E14001548", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "dwp.uc.households_by_area@E14001549", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "dwp.uc.households_by_area@E14001550", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "dwp.uc.households_by_area@E14001551", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "dwp.uc.households_by_area@E14001552", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "dwp.uc.households_by_area@E14001553", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "dwp.uc.households_by_area@E14001554", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "dwp.uc.households_by_area@E14001555", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "dwp.uc.households_by_area@E14001556", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "dwp.uc.households_by_area@E14001557", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "dwp.uc.households_by_area@E14001558", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "dwp.uc.households_by_area@E14001559", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "dwp.uc.households_by_area@E14001560", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "dwp.uc.households_by_area@E14001561", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "dwp.uc.households_by_area@E14001562", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "dwp.uc.households_by_area@E14001563", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "dwp.uc.households_by_area@E14001564", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "dwp.uc.households_by_area@E14001565", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "dwp.uc.households_by_area@E14001566", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "dwp.uc.households_by_area@E14001567", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "dwp.uc.households_by_area@E14001568", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "dwp.uc.households_by_area@E14001569", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "dwp.uc.households_by_area@E14001570", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "dwp.uc.households_by_area@E14001571", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "dwp.uc.households_by_area@E14001572", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "dwp.uc.households_by_area@E14001573", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "dwp.uc.households_by_area@E14001574", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "dwp.uc.households_by_area@E14001575", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "dwp.uc.households_by_area@E14001576", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "dwp.uc.households_by_area@E14001577", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "dwp.uc.households_by_area@E14001578", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "dwp.uc.households_by_area@E14001579", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "dwp.uc.households_by_area@E14001580", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "dwp.uc.households_by_area@E14001581", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "dwp.uc.households_by_area@E14001582", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "dwp.uc.households_by_area@E14001583", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "dwp.uc.households_by_area@E14001584", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "dwp.uc.households_by_area@E14001585", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "dwp.uc.households_by_area@E14001586", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "dwp.uc.households_by_area@E14001587", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "dwp.uc.households_by_area@E14001588", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "dwp.uc.households_by_area@E14001589", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "dwp.uc.households_by_area@E14001590", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "dwp.uc.households_by_area@E14001591", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "dwp.uc.households_by_area@E14001592", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "dwp.uc.households_by_area@E14001593", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "dwp.uc.households_by_area@E14001594", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "dwp.uc.households_by_area@E14001595", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "dwp.uc.households_by_area@E14001596", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "dwp.uc.households_by_area@E14001597", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "dwp.uc.households_by_area@E14001598", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "dwp.uc.households_by_area@E14001599", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "dwp.uc.households_by_area@E14001600", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "dwp.uc.households_by_area@E14001601", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "dwp.uc.households_by_area@E14001602", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "dwp.uc.households_by_area@E14001603", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "dwp.uc.households_by_area@E14001604", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "dwp.uc.households_by_area@E14001605", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "dwp.uc.households_by_area@S14000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "dwp.uc.households_by_area@S14000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "dwp.uc.households_by_area@S14000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "dwp.uc.households_by_area@S14000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "dwp.uc.households_by_area@S14000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "dwp.uc.households_by_area@S14000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "dwp.uc.households_by_area@S14000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "dwp.uc.households_by_area@S14000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "dwp.uc.households_by_area@S14000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "dwp.uc.households_by_area@S14000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "dwp.uc.households_by_area@S14000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "dwp.uc.households_by_area@S14000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "dwp.uc.households_by_area@S14000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "dwp.uc.households_by_area@S14000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "dwp.uc.households_by_area@S14000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "dwp.uc.households_by_area@S14000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "dwp.uc.households_by_area@S14000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "dwp.uc.households_by_area@S14000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "dwp.uc.households_by_area@S14000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "dwp.uc.households_by_area@S14000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "dwp.uc.households_by_area@S14000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "dwp.uc.households_by_area@S14000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "dwp.uc.households_by_area@S14000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "dwp.uc.households_by_area@S14000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "dwp.uc.households_by_area@S14000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "dwp.uc.households_by_area@S14000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "dwp.uc.households_by_area@S14000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "dwp.uc.households_by_area@S14000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "dwp.uc.households_by_area@S14000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "dwp.uc.households_by_area@S14000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "dwp.uc.households_by_area@S14000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "dwp.uc.households_by_area@S14000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "dwp.uc.households_by_area@S14000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "dwp.uc.households_by_area@S14000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "dwp.uc.households_by_area@S14000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "dwp.uc.households_by_area@S14000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "dwp.uc.households_by_area@S14000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "dwp.uc.households_by_area@S14000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "dwp.uc.households_by_area@S14000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "dwp.uc.households_by_area@S14000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "dwp.uc.households_by_area@S14000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "dwp.uc.households_by_area@S14000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "dwp.uc.households_by_area@S14000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "dwp.uc.households_by_area@S14000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "dwp.uc.households_by_area@S14000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "dwp.uc.households_by_area@S14000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "dwp.uc.households_by_area@S14000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "dwp.uc.households_by_area@S14000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "dwp.uc.households_by_area@S14000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "dwp.uc.households_by_area@S14000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "dwp.uc.households_by_area@S14000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "dwp.uc.households_by_area@S14000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "dwp.uc.households_by_area@S14000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "dwp.uc.households_by_area@S14000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "dwp.uc.households_by_area@S14000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "dwp.uc.households_by_area@S14000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "dwp.uc.households_by_area@S14000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "dwp.uc.households_by_area@W07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "dwp.uc.households_by_area@W07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "dwp.uc.households_by_area@W07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "dwp.uc.households_by_area@W07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "dwp.uc.households_by_area@W07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "dwp.uc.households_by_area@W07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "dwp.uc.households_by_area@W07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "dwp.uc.households_by_area@W07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "dwp.uc.households_by_area@W07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "dwp.uc.households_by_area@W07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "dwp.uc.households_by_area@W07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "dwp.uc.households_by_area@W07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "dwp.uc.households_by_area@W07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "dwp.uc.households_by_area@W07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "dwp.uc.households_by_area@W07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "dwp.uc.households_by_area@W07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "dwp.uc.households_by_area@W07000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "dwp.uc.households_by_area@W07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "dwp.uc.households_by_area@W07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "dwp.uc.households_by_area@W07000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "dwp.uc.households_by_area@W07000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "dwp.uc.households_by_area@W07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "dwp.uc.households_by_area@W07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "dwp.uc.households_by_area@W07000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "dwp.uc.households_by_area@W07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "dwp.uc.households_by_area@W07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "dwp.uc.households_by_area@W07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "dwp.uc.households_by_area@W07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "dwp.uc.households_by_area@W07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "dwp.uc.households_by_area@W07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "dwp.uc.households_by_area@W07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "dwp.uc.households_by_area@W07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "dwp.uc.households_by_area@E06000001", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + } + }, + { + "name": "dwp.uc.households_by_area@E06000002", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + } + }, + { + "name": "dwp.uc.households_by_area@E06000003", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + } + }, + { + "name": "dwp.uc.households_by_area@E06000004", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + } + }, + { + "name": "dwp.uc.households_by_area@E06000005", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + } + }, + { + "name": "dwp.uc.households_by_area@E06000006", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + } + }, + { + "name": "dwp.uc.households_by_area@E06000007", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + } + }, + { + "name": "dwp.uc.households_by_area@E06000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + } + }, + { + "name": "dwp.uc.households_by_area@E06000009", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + } + }, + { + "name": "dwp.uc.households_by_area@E06000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + } + }, + { + "name": "dwp.uc.households_by_area@E06000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + } + }, + { + "name": "dwp.uc.households_by_area@E06000012", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + } + }, + { + "name": "dwp.uc.households_by_area@E06000013", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + } + }, + { + "name": "dwp.uc.households_by_area@E06000014", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + } + }, + { + "name": "dwp.uc.households_by_area@E06000015", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + } + }, + { + "name": "dwp.uc.households_by_area@E06000016", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + } + }, + { + "name": "dwp.uc.households_by_area@E06000017", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + } + }, + { + "name": "dwp.uc.households_by_area@E06000018", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + } + }, + { + "name": "dwp.uc.households_by_area@E06000019", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + } + }, + { + "name": "dwp.uc.households_by_area@E06000020", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + } + }, + { + "name": "dwp.uc.households_by_area@E06000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + } + }, + { + "name": "dwp.uc.households_by_area@E06000022", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + } + }, + { + "name": "dwp.uc.households_by_area@E06000023", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + } + }, + { + "name": "dwp.uc.households_by_area@E06000024", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + } + }, + { + "name": "dwp.uc.households_by_area@E06000025", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + } + }, + { + "name": "dwp.uc.households_by_area@E06000026", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + } + }, + { + "name": "dwp.uc.households_by_area@E06000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + } + }, + { + "name": "dwp.uc.households_by_area@E06000030", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + } + }, + { + "name": "dwp.uc.households_by_area@E06000031", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + } + }, + { + "name": "dwp.uc.households_by_area@E06000032", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + } + }, + { + "name": "dwp.uc.households_by_area@E06000033", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + } + }, + { + "name": "dwp.uc.households_by_area@E06000034", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + } + }, + { + "name": "dwp.uc.households_by_area@E06000035", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + } + }, + { + "name": "dwp.uc.households_by_area@E06000036", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + } + }, + { + "name": "dwp.uc.households_by_area@E06000037", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + } + }, + { + "name": "dwp.uc.households_by_area@E06000038", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + } + }, + { + "name": "dwp.uc.households_by_area@E06000039", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + } + }, + { + "name": "dwp.uc.households_by_area@E06000040", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + } + }, + { + "name": "dwp.uc.households_by_area@E06000041", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + } + }, + { + "name": "dwp.uc.households_by_area@E06000042", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + } + }, + { + "name": "dwp.uc.households_by_area@E06000043", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + } + }, + { + "name": "dwp.uc.households_by_area@E06000044", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + } + }, + { + "name": "dwp.uc.households_by_area@E06000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + } + }, + { + "name": "dwp.uc.households_by_area@E06000046", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + } + }, + { + "name": "dwp.uc.households_by_area@E06000047", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + } + }, + { + "name": "dwp.uc.households_by_area@E06000049", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + } + }, + { + "name": "dwp.uc.households_by_area@E06000050", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + } + }, + { + "name": "dwp.uc.households_by_area@E06000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + } + }, + { + "name": "dwp.uc.households_by_area@E06000052", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + } + }, + { + "name": "dwp.uc.households_by_area@E06000053", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + } + }, + { + "name": "dwp.uc.households_by_area@E06000054", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + } + }, + { + "name": "dwp.uc.households_by_area@E06000055", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + } + }, + { + "name": "dwp.uc.households_by_area@E06000056", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + } + }, + { + "name": "dwp.uc.households_by_area@E06000057", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + } + }, + { + "name": "dwp.uc.households_by_area@E06000058", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + } + }, + { + "name": "dwp.uc.households_by_area@E06000059", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + } + }, + { + "name": "dwp.uc.households_by_area@E06000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + } + }, + { + "name": "dwp.uc.households_by_area@E06000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + } + }, + { + "name": "dwp.uc.households_by_area@E06000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + } + }, + { + "name": "dwp.uc.households_by_area@E06000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + } + }, + { + "name": "dwp.uc.households_by_area@E06000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + } + }, + { + "name": "dwp.uc.households_by_area@E06000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + } + }, + { + "name": "dwp.uc.households_by_area@E06000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + } + }, + { + "name": "dwp.uc.households_by_area@E07000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + } + }, + { + "name": "dwp.uc.households_by_area@E07000009", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + } + }, + { + "name": "dwp.uc.households_by_area@E07000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + } + }, + { + "name": "dwp.uc.households_by_area@E07000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + } + }, + { + "name": "dwp.uc.households_by_area@E07000012", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + } + }, + { + "name": "dwp.uc.households_by_area@E07000032", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + } + }, + { + "name": "dwp.uc.households_by_area@E07000033", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + } + }, + { + "name": "dwp.uc.households_by_area@E07000034", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + } + }, + { + "name": "dwp.uc.households_by_area@E07000035", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + } + }, + { + "name": "dwp.uc.households_by_area@E07000036", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + } + }, + { + "name": "dwp.uc.households_by_area@E07000037", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + } + }, + { + "name": "dwp.uc.households_by_area@E07000038", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + } + }, + { + "name": "dwp.uc.households_by_area@E07000039", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + } + }, + { + "name": "dwp.uc.households_by_area@E07000040", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + } + }, + { + "name": "dwp.uc.households_by_area@E07000041", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + } + }, + { + "name": "dwp.uc.households_by_area@E07000042", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + } + }, + { + "name": "dwp.uc.households_by_area@E07000043", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + } + }, + { + "name": "dwp.uc.households_by_area@E07000044", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + } + }, + { + "name": "dwp.uc.households_by_area@E07000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + } + }, + { + "name": "dwp.uc.households_by_area@E07000046", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + } + }, + { + "name": "dwp.uc.households_by_area@E07000047", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + } + }, + { + "name": "dwp.uc.households_by_area@E07000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + } + }, + { + "name": "dwp.uc.households_by_area@E07000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + } + }, + { + "name": "dwp.uc.households_by_area@E07000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + } + }, + { + "name": "dwp.uc.households_by_area@E07000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + } + }, + { + "name": "dwp.uc.households_by_area@E07000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + } + }, + { + "name": "dwp.uc.households_by_area@E07000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + } + }, + { + "name": "dwp.uc.households_by_area@E07000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + } + }, + { + "name": "dwp.uc.households_by_area@E07000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + } + }, + { + "name": "dwp.uc.households_by_area@E07000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + } + }, + { + "name": "dwp.uc.households_by_area@E07000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + } + }, + { + "name": "dwp.uc.households_by_area@E07000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + } + }, + { + "name": "dwp.uc.households_by_area@E07000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + } + }, + { + "name": "dwp.uc.households_by_area@E07000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + } + }, + { + "name": "dwp.uc.households_by_area@E07000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + } + }, + { + "name": "dwp.uc.households_by_area@E07000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + } + }, + { + "name": "dwp.uc.households_by_area@E07000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + } + }, + { + "name": "dwp.uc.households_by_area@E07000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + } + }, + { + "name": "dwp.uc.households_by_area@E07000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + } + }, + { + "name": "dwp.uc.households_by_area@E07000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + } + }, + { + "name": "dwp.uc.households_by_area@E07000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + } + }, + { + "name": "dwp.uc.households_by_area@E07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + } + }, + { + "name": "dwp.uc.households_by_area@E07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + } + }, + { + "name": "dwp.uc.households_by_area@E07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + } + }, + { + "name": "dwp.uc.households_by_area@E07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + } + }, + { + "name": "dwp.uc.households_by_area@E07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + } + }, + { + "name": "dwp.uc.households_by_area@E07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + } + }, + { + "name": "dwp.uc.households_by_area@E07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + } + }, + { + "name": "dwp.uc.households_by_area@E07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + } + }, + { + "name": "dwp.uc.households_by_area@E07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + } + }, + { + "name": "dwp.uc.households_by_area@E07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + } + }, + { + "name": "dwp.uc.households_by_area@E07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + } + }, + { + "name": "dwp.uc.households_by_area@E07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + } + }, + { + "name": "dwp.uc.households_by_area@E07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + } + }, + { + "name": "dwp.uc.households_by_area@E07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + } + }, + { + "name": "dwp.uc.households_by_area@E07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + } + }, + { + "name": "dwp.uc.households_by_area@E07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + } + }, + { + "name": "dwp.uc.households_by_area@E07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + } + }, + { + "name": "dwp.uc.households_by_area@E07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + } + }, + { + "name": "dwp.uc.households_by_area@E07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + } + }, + { + "name": "dwp.uc.households_by_area@E07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + } + }, + { + "name": "dwp.uc.households_by_area@E07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + } + }, + { + "name": "dwp.uc.households_by_area@E07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + } + }, + { + "name": "dwp.uc.households_by_area@E07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + } + }, + { + "name": "dwp.uc.households_by_area@E07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + } + }, + { + "name": "dwp.uc.households_by_area@E07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + } + }, + { + "name": "dwp.uc.households_by_area@E07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + } + }, + { + "name": "dwp.uc.households_by_area@E07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + } + }, + { + "name": "dwp.uc.households_by_area@E07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + } + }, + { + "name": "dwp.uc.households_by_area@E07000113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + } + }, + { + "name": "dwp.uc.households_by_area@E07000114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + } + }, + { + "name": "dwp.uc.households_by_area@E07000115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + } + }, + { + "name": "dwp.uc.households_by_area@E07000116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + } + }, + { + "name": "dwp.uc.households_by_area@E07000117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + } + }, + { + "name": "dwp.uc.households_by_area@E07000118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + } + }, + { + "name": "dwp.uc.households_by_area@E07000119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + } + }, + { + "name": "dwp.uc.households_by_area@E07000120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + } + }, + { + "name": "dwp.uc.households_by_area@E07000121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + } + }, + { + "name": "dwp.uc.households_by_area@E07000122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + } + }, + { + "name": "dwp.uc.households_by_area@E07000123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + } + }, + { + "name": "dwp.uc.households_by_area@E07000124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + } + }, + { + "name": "dwp.uc.households_by_area@E07000125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + } + }, + { + "name": "dwp.uc.households_by_area@E07000126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + } + }, + { + "name": "dwp.uc.households_by_area@E07000127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + } + }, + { + "name": "dwp.uc.households_by_area@E07000128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + } + }, + { + "name": "dwp.uc.households_by_area@E07000129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + } + }, + { + "name": "dwp.uc.households_by_area@E07000130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + } + }, + { + "name": "dwp.uc.households_by_area@E07000131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + } + }, + { + "name": "dwp.uc.households_by_area@E07000132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + } + }, + { + "name": "dwp.uc.households_by_area@E07000133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + } + }, + { + "name": "dwp.uc.households_by_area@E07000134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + } + }, + { + "name": "dwp.uc.households_by_area@E07000135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + } + }, + { + "name": "dwp.uc.households_by_area@E07000136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + } + }, + { + "name": "dwp.uc.households_by_area@E07000137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + } + }, + { + "name": "dwp.uc.households_by_area@E07000138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + } + }, + { + "name": "dwp.uc.households_by_area@E07000139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + } + }, + { + "name": "dwp.uc.households_by_area@E07000140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + } + }, + { + "name": "dwp.uc.households_by_area@E07000141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + } + }, + { + "name": "dwp.uc.households_by_area@E07000142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + } + }, + { + "name": "dwp.uc.households_by_area@E07000143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + } + }, + { + "name": "dwp.uc.households_by_area@E07000144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + } + }, + { + "name": "dwp.uc.households_by_area@E07000145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + } + }, + { + "name": "dwp.uc.households_by_area@E07000146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + } + }, + { + "name": "dwp.uc.households_by_area@E07000147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + } + }, + { + "name": "dwp.uc.households_by_area@E07000148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + } + }, + { + "name": "dwp.uc.households_by_area@E07000149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + } + }, + { + "name": "dwp.uc.households_by_area@E07000170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + } + }, + { + "name": "dwp.uc.households_by_area@E07000171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + } + }, + { + "name": "dwp.uc.households_by_area@E07000172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + } + }, + { + "name": "dwp.uc.households_by_area@E07000173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + } + }, + { + "name": "dwp.uc.households_by_area@E07000174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + } + }, + { + "name": "dwp.uc.households_by_area@E07000175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + } + }, + { + "name": "dwp.uc.households_by_area@E07000176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + } + }, + { + "name": "dwp.uc.households_by_area@E07000177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + } + }, + { + "name": "dwp.uc.households_by_area@E07000178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + } + }, + { + "name": "dwp.uc.households_by_area@E07000179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + } + }, + { + "name": "dwp.uc.households_by_area@E07000180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + } + }, + { + "name": "dwp.uc.households_by_area@E07000181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + } + }, + { + "name": "dwp.uc.households_by_area@E07000192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + } + }, + { + "name": "dwp.uc.households_by_area@E07000193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + } + }, + { + "name": "dwp.uc.households_by_area@E07000194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + } + }, + { + "name": "dwp.uc.households_by_area@E07000195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + } + }, + { + "name": "dwp.uc.households_by_area@E07000196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + } + }, + { + "name": "dwp.uc.households_by_area@E07000197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + } + }, + { + "name": "dwp.uc.households_by_area@E07000198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + } + }, + { + "name": "dwp.uc.households_by_area@E07000199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + } + }, + { + "name": "dwp.uc.households_by_area@E07000200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + } + }, + { + "name": "dwp.uc.households_by_area@E07000202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + } + }, + { + "name": "dwp.uc.households_by_area@E07000203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + } + }, + { + "name": "dwp.uc.households_by_area@E07000207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + } + }, + { + "name": "dwp.uc.households_by_area@E07000208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + } + }, + { + "name": "dwp.uc.households_by_area@E07000209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + } + }, + { + "name": "dwp.uc.households_by_area@E07000210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + } + }, + { + "name": "dwp.uc.households_by_area@E07000211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + } + }, + { + "name": "dwp.uc.households_by_area@E07000212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + } + }, + { + "name": "dwp.uc.households_by_area@E07000213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + } + }, + { + "name": "dwp.uc.households_by_area@E07000214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + } + }, + { + "name": "dwp.uc.households_by_area@E07000215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + } + }, + { + "name": "dwp.uc.households_by_area@E07000216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + } + }, + { + "name": "dwp.uc.households_by_area@E07000217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + } + }, + { + "name": "dwp.uc.households_by_area@E07000218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + } + }, + { + "name": "dwp.uc.households_by_area@E07000219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + } + }, + { + "name": "dwp.uc.households_by_area@E07000220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + } + }, + { + "name": "dwp.uc.households_by_area@E07000221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + } + }, + { + "name": "dwp.uc.households_by_area@E07000222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + } + }, + { + "name": "dwp.uc.households_by_area@E07000223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + } + }, + { + "name": "dwp.uc.households_by_area@E07000224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + } + }, + { + "name": "dwp.uc.households_by_area@E07000225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + } + }, + { + "name": "dwp.uc.households_by_area@E07000226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + } + }, + { + "name": "dwp.uc.households_by_area@E07000227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + } + }, + { + "name": "dwp.uc.households_by_area@E07000228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + } + }, + { + "name": "dwp.uc.households_by_area@E07000229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + } + }, + { + "name": "dwp.uc.households_by_area@E07000234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + } + }, + { + "name": "dwp.uc.households_by_area@E07000235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + } + }, + { + "name": "dwp.uc.households_by_area@E07000236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + } + }, + { + "name": "dwp.uc.households_by_area@E07000237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + } + }, + { + "name": "dwp.uc.households_by_area@E07000238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + } + }, + { + "name": "dwp.uc.households_by_area@E07000239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + } + }, + { + "name": "dwp.uc.households_by_area@E07000240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + } + }, + { + "name": "dwp.uc.households_by_area@E07000241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + } + }, + { + "name": "dwp.uc.households_by_area@E07000242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + } + }, + { + "name": "dwp.uc.households_by_area@E07000243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + } + }, + { + "name": "dwp.uc.households_by_area@E07000244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + } + }, + { + "name": "dwp.uc.households_by_area@E07000245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + } + }, + { + "name": "dwp.uc.households_by_area@E08000001", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + } + }, + { + "name": "dwp.uc.households_by_area@E08000002", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + } + }, + { + "name": "dwp.uc.households_by_area@E08000003", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + } + }, + { + "name": "dwp.uc.households_by_area@E08000004", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + } + }, + { + "name": "dwp.uc.households_by_area@E08000005", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + } + }, + { + "name": "dwp.uc.households_by_area@E08000006", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + } + }, + { + "name": "dwp.uc.households_by_area@E08000007", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + } + }, + { + "name": "dwp.uc.households_by_area@E08000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + } + }, + { + "name": "dwp.uc.households_by_area@E08000009", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + } + }, + { + "name": "dwp.uc.households_by_area@E08000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + } + }, + { + "name": "dwp.uc.households_by_area@E08000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + } + }, + { + "name": "dwp.uc.households_by_area@E08000012", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + } + }, + { + "name": "dwp.uc.households_by_area@E08000013", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + } + }, + { + "name": "dwp.uc.households_by_area@E08000014", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + } + }, + { + "name": "dwp.uc.households_by_area@E08000015", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + } + }, + { + "name": "dwp.uc.households_by_area@E08000016", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + } + }, + { + "name": "dwp.uc.households_by_area@E08000017", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + } + }, + { + "name": "dwp.uc.households_by_area@E08000018", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + } + }, + { + "name": "dwp.uc.households_by_area@E08000019", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + } + }, + { + "name": "dwp.uc.households_by_area@E08000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + } + }, + { + "name": "dwp.uc.households_by_area@E08000022", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + } + }, + { + "name": "dwp.uc.households_by_area@E08000023", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + } + }, + { + "name": "dwp.uc.households_by_area@E08000024", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + } + }, + { + "name": "dwp.uc.households_by_area@E08000025", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + } + }, + { + "name": "dwp.uc.households_by_area@E08000026", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + } + }, + { + "name": "dwp.uc.households_by_area@E08000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + } + }, + { + "name": "dwp.uc.households_by_area@E08000028", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + } + }, + { + "name": "dwp.uc.households_by_area@E08000029", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + } + }, + { + "name": "dwp.uc.households_by_area@E08000030", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + } + }, + { + "name": "dwp.uc.households_by_area@E08000031", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + } + }, + { + "name": "dwp.uc.households_by_area@E08000032", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + } + }, + { + "name": "dwp.uc.households_by_area@E08000033", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + } + }, + { + "name": "dwp.uc.households_by_area@E08000034", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + } + }, + { + "name": "dwp.uc.households_by_area@E08000035", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + } + }, + { + "name": "dwp.uc.households_by_area@E08000036", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + } + }, + { + "name": "dwp.uc.households_by_area@E08000037", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + } + }, + { + "name": "dwp.uc.households_by_area@E09000001", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + } + }, + { + "name": "dwp.uc.households_by_area@E09000002", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + } + }, + { + "name": "dwp.uc.households_by_area@E09000003", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + } + }, + { + "name": "dwp.uc.households_by_area@E09000004", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + } + }, + { + "name": "dwp.uc.households_by_area@E09000005", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + } + }, + { + "name": "dwp.uc.households_by_area@E09000006", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + } + }, + { + "name": "dwp.uc.households_by_area@E09000007", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + } + }, + { + "name": "dwp.uc.households_by_area@E09000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + } + }, + { + "name": "dwp.uc.households_by_area@E09000009", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + } + }, + { + "name": "dwp.uc.households_by_area@E09000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + } + }, + { + "name": "dwp.uc.households_by_area@E09000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + } + }, + { + "name": "dwp.uc.households_by_area@E09000012", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + } + }, + { + "name": "dwp.uc.households_by_area@E09000013", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + } + }, + { + "name": "dwp.uc.households_by_area@E09000014", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + } + }, + { + "name": "dwp.uc.households_by_area@E09000015", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + } + }, + { + "name": "dwp.uc.households_by_area@E09000016", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + } + }, + { + "name": "dwp.uc.households_by_area@E09000017", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + } + }, + { + "name": "dwp.uc.households_by_area@E09000018", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + } + }, + { + "name": "dwp.uc.households_by_area@E09000019", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + } + }, + { + "name": "dwp.uc.households_by_area@E09000020", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + } + }, + { + "name": "dwp.uc.households_by_area@E09000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + } + }, + { + "name": "dwp.uc.households_by_area@E09000022", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + } + }, + { + "name": "dwp.uc.households_by_area@E09000023", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + } + }, + { + "name": "dwp.uc.households_by_area@E09000024", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + } + }, + { + "name": "dwp.uc.households_by_area@E09000025", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + } + }, + { + "name": "dwp.uc.households_by_area@E09000026", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + } + }, + { + "name": "dwp.uc.households_by_area@E09000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + } + }, + { + "name": "dwp.uc.households_by_area@E09000028", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + } + }, + { + "name": "dwp.uc.households_by_area@E09000029", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + } + }, + { + "name": "dwp.uc.households_by_area@E09000030", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + } + }, + { + "name": "dwp.uc.households_by_area@E09000031", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + } + }, + { + "name": "dwp.uc.households_by_area@E09000032", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + } + }, + { + "name": "dwp.uc.households_by_area@E09000033", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + } + }, + { + "name": "dwp.uc.households_by_area@S12000005", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + } + }, + { + "name": "dwp.uc.households_by_area@S12000006", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + } + }, + { + "name": "dwp.uc.households_by_area@S12000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + } + }, + { + "name": "dwp.uc.households_by_area@S12000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + } + }, + { + "name": "dwp.uc.households_by_area@S12000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + } + }, + { + "name": "dwp.uc.households_by_area@S12000013", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + } + }, + { + "name": "dwp.uc.households_by_area@S12000014", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + } + }, + { + "name": "dwp.uc.households_by_area@S12000017", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + } + }, + { + "name": "dwp.uc.households_by_area@S12000018", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + } + }, + { + "name": "dwp.uc.households_by_area@S12000019", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + } + }, + { + "name": "dwp.uc.households_by_area@S12000020", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + } + }, + { + "name": "dwp.uc.households_by_area@S12000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + } + }, + { + "name": "dwp.uc.households_by_area@S12000023", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + } + }, + { + "name": "dwp.uc.households_by_area@S12000026", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + } + }, + { + "name": "dwp.uc.households_by_area@S12000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + } + }, + { + "name": "dwp.uc.households_by_area@S12000028", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + } + }, + { + "name": "dwp.uc.households_by_area@S12000029", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + } + }, + { + "name": "dwp.uc.households_by_area@S12000030", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + } + }, + { + "name": "dwp.uc.households_by_area@S12000033", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + } + }, + { + "name": "dwp.uc.households_by_area@S12000034", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + } + }, + { + "name": "dwp.uc.households_by_area@S12000035", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + } + }, + { + "name": "dwp.uc.households_by_area@S12000036", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + } + }, + { + "name": "dwp.uc.households_by_area@S12000038", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + } + }, + { + "name": "dwp.uc.households_by_area@S12000039", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + } + }, + { + "name": "dwp.uc.households_by_area@S12000040", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + } + }, + { + "name": "dwp.uc.households_by_area@S12000041", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + } + }, + { + "name": "dwp.uc.households_by_area@S12000042", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + } + }, + { + "name": "dwp.uc.households_by_area@S12000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + } + }, + { + "name": "dwp.uc.households_by_area@S12000047", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + } + }, + { + "name": "dwp.uc.households_by_area@S12000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + } + }, + { + "name": "dwp.uc.households_by_area@S12000049", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + } + }, + { + "name": "dwp.uc.households_by_area@S12000050", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + } + }, + { + "name": "dwp.uc.households_by_area@W06000001", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + } + }, + { + "name": "dwp.uc.households_by_area@W06000002", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + } + }, + { + "name": "dwp.uc.households_by_area@W06000003", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + } + }, + { + "name": "dwp.uc.households_by_area@W06000004", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + } + }, + { + "name": "dwp.uc.households_by_area@W06000005", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + } + }, + { + "name": "dwp.uc.households_by_area@W06000006", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + } + }, + { + "name": "dwp.uc.households_by_area@W06000008", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + } + }, + { + "name": "dwp.uc.households_by_area@W06000009", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + } + }, + { + "name": "dwp.uc.households_by_area@W06000010", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + } + }, + { + "name": "dwp.uc.households_by_area@W06000011", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + } + }, + { + "name": "dwp.uc.households_by_area@W06000012", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + } + }, + { + "name": "dwp.uc.households_by_area@W06000013", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + } + }, + { + "name": "dwp.uc.households_by_area@W06000014", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + } + }, + { + "name": "dwp.uc.households_by_area@W06000015", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + } + }, + { + "name": "dwp.uc.households_by_area@W06000016", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + } + }, + { + "name": "dwp.uc.households_by_area@W06000018", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + } + }, + { + "name": "dwp.uc.households_by_area@W06000019", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + } + }, + { + "name": "dwp.uc.households_by_area@W06000020", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + } + }, + { + "name": "dwp.uc.households_by_area@W06000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + } + }, + { + "name": "dwp.uc.households_by_area@W06000022", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + } + }, + { + "name": "dwp.uc.households_by_area@W06000023", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + } + }, + { + "name": "dwp.uc.households_by_area@W06000024", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ], + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "benunit", + "measure": "uc_households", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001150", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001151", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001152", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001153", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001154", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001155", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001156", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001157", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001158", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001159", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001160", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001161", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001162", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001163", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001164", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001165", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001166", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001167", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001168", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001169", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001182", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001183", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001184", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001185", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001186", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001187", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001188", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001189", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001190", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001191", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001201", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001204", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001205", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001206", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001230", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001231", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001232", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001233", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001246", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001247", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001248", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001249", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001250", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001251", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001252", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001253", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001254", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001255", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001256", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001257", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001258", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001259", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001260", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001261", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001262", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001263", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001264", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001265", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001266", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001267", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001268", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001269", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001270", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001271", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001272", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001273", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001274", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001275", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001276", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001277", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001278", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001279", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001280", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001281", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001282", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001283", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001284", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001285", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001286", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001287", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001288", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001289", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001290", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001291", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001292", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001293", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001294", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001295", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001296", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001297", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001298", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001299", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001300", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001301", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001302", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001303", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001304", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001305", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001306", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001307", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001308", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001309", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001310", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001311", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001312", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001313", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001314", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001315", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001316", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001317", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001318", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001319", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001320", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001321", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001322", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001323", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001324", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001325", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001326", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001327", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001328", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001329", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001330", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001331", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001332", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001333", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001334", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001335", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001336", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001337", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001338", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001339", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001340", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001341", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001342", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001343", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001344", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001345", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001346", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001347", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001348", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001349", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001350", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001351", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001352", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001353", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001354", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001355", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001356", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001357", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001358", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001359", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001360", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001361", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001362", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001363", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001364", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001365", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001366", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001367", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001368", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001369", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001370", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001371", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001372", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001373", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001374", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001375", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001376", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001377", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001378", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001379", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001380", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001381", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001382", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001383", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001384", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001385", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001386", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001387", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001388", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001389", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001390", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001391", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001392", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001393", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001394", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001395", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001396", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001397", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001398", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001399", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001400", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001401", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001402", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001403", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001404", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001405", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001406", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001407", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001408", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001409", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001410", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001411", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001412", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001413", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001414", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001415", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001416", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001417", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001418", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001419", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001420", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001421", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001422", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001423", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001424", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001425", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001426", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001427", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001428", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001429", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001430", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001431", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001432", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001433", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001434", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001435", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001436", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001437", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001438", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001439", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001440", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001441", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001442", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001443", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001444", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001445", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001446", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001447", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001448", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001449", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001450", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001451", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001452", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001453", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001454", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001455", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001456", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001457", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001458", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001459", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001460", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001461", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001462", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001463", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001464", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001465", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001466", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001467", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001468", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001469", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001470", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001471", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001472", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001473", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001474", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001475", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001476", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001477", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001478", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001479", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001480", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001481", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001482", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001483", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001484", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001485", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001486", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001487", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001488", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001489", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001490", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001491", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001492", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001493", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001494", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001495", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001496", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001497", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001498", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001499", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001500", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001501", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001502", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001503", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001504", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001505", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001506", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001507", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001508", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001509", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001510", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001511", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001512", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001513", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001514", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001515", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001516", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001517", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001518", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001519", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001520", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001521", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001522", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001523", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001524", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001525", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001526", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001527", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001528", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001529", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001530", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001531", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001532", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001533", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001534", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001535", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001536", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001537", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001538", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001539", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001540", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001541", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001542", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001543", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001544", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001545", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001546", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001547", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001548", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001549", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001550", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001551", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001552", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001553", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001554", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001555", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001556", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001557", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001558", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001559", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001560", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001561", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001562", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001563", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001564", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001565", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001566", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001567", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001568", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001569", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001570", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001571", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001572", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001573", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001574", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001575", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001576", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001577", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001578", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001579", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001580", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001581", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001582", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001583", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001584", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001585", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001586", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001587", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001588", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001589", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001590", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001591", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001592", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001593", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001594", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001595", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001596", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001597", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001598", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001599", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001600", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001601", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001602", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001603", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001604", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001605", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "household", + "measure": "uc_hh_0_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_0", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001150", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001151", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001152", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001153", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001154", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001155", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001156", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001157", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001158", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001159", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001160", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001161", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001162", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001163", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001164", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001165", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001166", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001167", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001168", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001169", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001182", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001183", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001184", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001185", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001186", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001187", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001188", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001189", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001190", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001191", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001201", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001204", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001205", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001206", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001230", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001231", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001232", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001233", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001246", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001247", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001248", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001249", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001250", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001251", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001252", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001253", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001254", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001255", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001256", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001257", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001258", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001259", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001260", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001261", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001262", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001263", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001264", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001265", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001266", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001267", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001268", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001269", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001270", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001271", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001272", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001273", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001274", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001275", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001276", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001277", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001278", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001279", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001280", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001281", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001282", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001283", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001284", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001285", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001286", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001287", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001288", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001289", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001290", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001291", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001292", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001293", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001294", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001295", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001296", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001297", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001298", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001299", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001300", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001301", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001302", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001303", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001304", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001305", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001306", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001307", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001308", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001309", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001310", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001311", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001312", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001313", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001314", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001315", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001316", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001317", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001318", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001319", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001320", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001321", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001322", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001323", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001324", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001325", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001326", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001327", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001328", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001329", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001330", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001331", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001332", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001333", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001334", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001335", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001336", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001337", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001338", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001339", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001340", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001341", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001342", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001343", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001344", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001345", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001346", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001347", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001348", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001349", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001350", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001351", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001352", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001353", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001354", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001355", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001356", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001357", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001358", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001359", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001360", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001361", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001362", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001363", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001364", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001365", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001366", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001367", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001368", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001369", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001370", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001371", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001372", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001373", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001374", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001375", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001376", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001377", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001378", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001379", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001380", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001381", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001382", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001383", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001384", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001385", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001386", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001387", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001388", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001389", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001390", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001391", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001392", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001393", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001394", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001395", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001396", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001397", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001398", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001399", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001400", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001401", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001402", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001403", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001404", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001405", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001406", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001407", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001408", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001409", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001410", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001411", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001412", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001413", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001414", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001415", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001416", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001417", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001418", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001419", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001420", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001421", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001422", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001423", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001424", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001425", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001426", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001427", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001428", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001429", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001430", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001431", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001432", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001433", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001434", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001435", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001436", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001437", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001438", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001439", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001440", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001441", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001442", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001443", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001444", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001445", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001446", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001447", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001448", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001449", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001450", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001451", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001452", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001453", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001454", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001455", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001456", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001457", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001458", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001459", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001460", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001461", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001462", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001463", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001464", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001465", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001466", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001467", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001468", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001469", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001470", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001471", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001472", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001473", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001474", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001475", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001476", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001477", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001478", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001479", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001480", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001481", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001482", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001483", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001484", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001485", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001486", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001487", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001488", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001489", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001490", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001491", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001492", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001493", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001494", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001495", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001496", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001497", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001498", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001499", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001500", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001501", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001502", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001503", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001504", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001505", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001506", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001507", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001508", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001509", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001510", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001511", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001512", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001513", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001514", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001515", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001516", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001517", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001518", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001519", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001520", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001521", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001522", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001523", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001524", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001525", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001526", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001527", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001528", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001529", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001530", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001531", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001532", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001533", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001534", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001535", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001536", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001537", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001538", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001539", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001540", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001541", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001542", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001543", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001544", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001545", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001546", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001547", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001548", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001549", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001550", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001551", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001552", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001553", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001554", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001555", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001556", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001557", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001558", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001559", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001560", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001561", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001562", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001563", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001564", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001565", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001566", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001567", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001568", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001569", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001570", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001571", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001572", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001573", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001574", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001575", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001576", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001577", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001578", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001579", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001580", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001581", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001582", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001583", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001584", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001585", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001586", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001587", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001588", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001589", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001590", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001591", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001592", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001593", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001594", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001595", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001596", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001597", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001598", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001599", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001600", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001601", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001602", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001603", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001604", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001605", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "household", + "measure": "uc_hh_1_child", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_1", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001150", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001151", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001152", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001153", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001154", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001155", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001156", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001157", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001158", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001159", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001160", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001161", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001162", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001163", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001164", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001165", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001166", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001167", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001168", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001169", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001182", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001183", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001184", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001185", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001186", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001187", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001188", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001189", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001190", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001191", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001201", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001204", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001205", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001206", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001230", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001231", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001232", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001233", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001246", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001247", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001248", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001249", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001250", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001251", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001252", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001253", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001254", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001255", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001256", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001257", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001258", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001259", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001260", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001261", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001262", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001263", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001264", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001265", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001266", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001267", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001268", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001269", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001270", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001271", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001272", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001273", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001274", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001275", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001276", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001277", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001278", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001279", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001280", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001281", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001282", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001283", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001284", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001285", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001286", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001287", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001288", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001289", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001290", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001291", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001292", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001293", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001294", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001295", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001296", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001297", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001298", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001299", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001300", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001301", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001302", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001303", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001304", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001305", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001306", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001307", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001308", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001309", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001310", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001311", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001312", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001313", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001314", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001315", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001316", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001317", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001318", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001319", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001320", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001321", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001322", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001323", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001324", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001325", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001326", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001327", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001328", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001329", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001330", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001331", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001332", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001333", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001334", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001335", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001336", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001337", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001338", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001339", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001340", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001341", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001342", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001343", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001344", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001345", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001346", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001347", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001348", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001349", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001350", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001351", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001352", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001353", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001354", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001355", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001356", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001357", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001358", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001359", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001360", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001361", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001362", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001363", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001364", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001365", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001366", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001367", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001368", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001369", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001370", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001371", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001372", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001373", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001374", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001375", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001376", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001377", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001378", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001379", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001380", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001381", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001382", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001383", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001384", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001385", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001386", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001387", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001388", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001389", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001390", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001391", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001392", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001393", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001394", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001395", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001396", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001397", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001398", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001399", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001400", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001401", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001402", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001403", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001404", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001405", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001406", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001407", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001408", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001409", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001410", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001411", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001412", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001413", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001414", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001415", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001416", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001417", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001418", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001419", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001420", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001421", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001422", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001423", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001424", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001425", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001426", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001427", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001428", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001429", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001430", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001431", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001432", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001433", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001434", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001435", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001436", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001437", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001438", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001439", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001440", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001441", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001442", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001443", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001444", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001445", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001446", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001447", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001448", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001449", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001450", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001451", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001452", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001453", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001454", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001455", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001456", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001457", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001458", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001459", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001460", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001461", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001462", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001463", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001464", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001465", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001466", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001467", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001468", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001469", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001470", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001471", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001472", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001473", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001474", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001475", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001476", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001477", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001478", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001479", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001480", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001481", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001482", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001483", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001484", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001485", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001486", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001487", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001488", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001489", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001490", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001491", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001492", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001493", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001494", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001495", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001496", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001497", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001498", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001499", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001500", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001501", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001502", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001503", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001504", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001505", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001506", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001507", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001508", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001509", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001510", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001511", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001512", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001513", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001514", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001515", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001516", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001517", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001518", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001519", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001520", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001521", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001522", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001523", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001524", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001525", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001526", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001527", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001528", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001529", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001530", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001531", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001532", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001533", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001534", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001535", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001536", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001537", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001538", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001539", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001540", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001541", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001542", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001543", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001544", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001545", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001546", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001547", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001548", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001549", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001550", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001551", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001552", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001553", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001554", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001555", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001556", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001557", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001558", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001559", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001560", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001561", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001562", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001563", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001564", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001565", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001566", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001567", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001568", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001569", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001570", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001571", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001572", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001573", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001574", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001575", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001576", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001577", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001578", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001579", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001580", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001581", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001582", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001583", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001584", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001585", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001586", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001587", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001588", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001589", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001590", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001591", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001592", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001593", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001594", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001595", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001596", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001597", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001598", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001599", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001600", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001601", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001602", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001603", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001604", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001605", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + } + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "household", + "measure": "uc_hh_2_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_2", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + } + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001063" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001064" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001065" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001066" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001067" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001068" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001069" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001070" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001071" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001072" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001073" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001074" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001075" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001076" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001077" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001078" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001079" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001080" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001081" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001082" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001083" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001084" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001085" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001086" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001087" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001088" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001089" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001090" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001091" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001092" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001093" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001094" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001095" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001096" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001097" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001098" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001099" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001100" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001101" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001102" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001103" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001104" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001105" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001106" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001107" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001108" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001109" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001110" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001111" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001112" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001113", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001113" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001114", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001114" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001115", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001115" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001116", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001116" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001117", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001117" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001118", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001118" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001119", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001119" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001120", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001120" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001121", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001121" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001122", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001122" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001123", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001123" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001124", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001124" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001125", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001125" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001126", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001126" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001127", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001127" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001128", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001128" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001129", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001129" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001130", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001130" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001131", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001131" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001132", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001132" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001133", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001133" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001134", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001134" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001135", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001135" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001136", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001136" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001137", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001137" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001138", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001138" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001139", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001139" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001140", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001140" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001141", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001141" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001142", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001142" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001143", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001143" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001144", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001144" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001145", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001145" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001146", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001146" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001147", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001147" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001148", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001148" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001149", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001149" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001150", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001150" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001151", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001151" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001152", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001152" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001153", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001153" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001154", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001154" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001155", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001155" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001156", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001156" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001157", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001157" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001158", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001158" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001159", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001159" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001160", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001160" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001161", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001161" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001162", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001162" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001163", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001163" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001164", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001164" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001165", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001165" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001166", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001166" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001167", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001167" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001168", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001168" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001169", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001169" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001170", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001170" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001171", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001171" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001172", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001172" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001173", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001173" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001174", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001174" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001175", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001175" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001176", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001176" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001177", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001177" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001178", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001178" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001179", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001179" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001180", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001180" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001181", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001181" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001182", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001182" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001183", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001183" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001184", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001184" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001185", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001185" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001186", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001186" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001187", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001187" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001188", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001188" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001189", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001189" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001190", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001190" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001191", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001191" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001192", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001192" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001193", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001193" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001194", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001194" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001195", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001195" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001196", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001196" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001197", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001197" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001198", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001198" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001199", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001199" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001200", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001200" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001201", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001201" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001202", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001202" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001203", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001203" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001204", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001204" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001205", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001205" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001206", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001206" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001207", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001207" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001208", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001208" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001209", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001209" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001210", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001210" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001211", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001211" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001212", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001212" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001213", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001213" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001214", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001214" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001215", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001215" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001216", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001216" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001217", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001217" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001218", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001218" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001219", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001219" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001220", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001220" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001221", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001221" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001222", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001222" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001223", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001223" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001224", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001224" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001225", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001225" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001226", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001226" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001227", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001227" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001228", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001228" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001229", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001229" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001230", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001230" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001231", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001231" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001232", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001232" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001233", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001233" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001234", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001234" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001235", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001235" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001236", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001236" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001237", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001237" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001238", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001238" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001239", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001239" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001240", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001240" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001241", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001241" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001242", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001242" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001243", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001243" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001244", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001244" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001245", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001245" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001246", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001246" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001247", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001247" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001248", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001248" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001249", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001249" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001250", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001250" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001251", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001251" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001252", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001252" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001253", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001253" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001254", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001254" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001255", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001255" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001256", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001256" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001257", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001257" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001258", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001258" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001259", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001259" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001260", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001260" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001261", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001261" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001262", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001262" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001263", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001263" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001264", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001264" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001265", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001265" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001266", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001266" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001267", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001267" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001268", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001268" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001269", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001269" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001270", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001270" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001271", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001271" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001272", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001272" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001273", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001273" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001274", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001274" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001275", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001275" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001276", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001276" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001277", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001277" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001278", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001278" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001279", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001279" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001280", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001280" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001281", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001281" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001282", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001282" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001283", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001283" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001284", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001284" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001285", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001285" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001286", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001286" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001287", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001287" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001288", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001288" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001289", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001289" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001290", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001290" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001291", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001291" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001292", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001292" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001293", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001293" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001294", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001294" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001295", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001295" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001296", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001296" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001297", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001297" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001298", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001298" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001299", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001299" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001300", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001300" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001301", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001301" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001302", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001302" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001303", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001303" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001304", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001304" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001305", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001305" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001306", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001306" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001307", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001307" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001308", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001308" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001309", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001309" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001310", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001310" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001311", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001311" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001312", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001312" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001313", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001313" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001314", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001314" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001315", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001315" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001316", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001316" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001317", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001317" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001318", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001318" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001319", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001319" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001320", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001320" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001321", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001321" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001322", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001322" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001323", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001323" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001324", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001324" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001325", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001325" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001326", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001326" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001327", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001327" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001328", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001328" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001329", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001329" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001330", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001330" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001331", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001331" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001332", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001332" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001333", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001333" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001334", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001334" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001335", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001335" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001336", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001336" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001337", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001337" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001338", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001338" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001339", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001339" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001340", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001340" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001341", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001341" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001342", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001342" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001343", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001343" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001344", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001344" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001345", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001345" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001346", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001346" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001347", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001347" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001348", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001348" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001349", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001349" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001350", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001350" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001351", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001351" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001352", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001352" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001353", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001353" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001354", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001354" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001355", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001355" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001356", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001356" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001357", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001357" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001358", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001358" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001359", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001359" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001360", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001360" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001361", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001361" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001362", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001362" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001363", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001363" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001364", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001364" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001365", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001365" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001366", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001366" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001367", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001367" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001368", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001368" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001369", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001369" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001370", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001370" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001371", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001371" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001372", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001372" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001373", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001373" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001374", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001374" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001375", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001375" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001376", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001376" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001377", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001377" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001378", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001378" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001379", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001379" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001380", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001380" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001381", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001381" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001382", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001382" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001383", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001383" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001384", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001384" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001385", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001385" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001386", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001386" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001387", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001387" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001388", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001388" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001389", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001389" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001390", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001390" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001391", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001391" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001392", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001392" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001393", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001393" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001394", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001394" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001395", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001395" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001396", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001396" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001397", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001397" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001398", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001398" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001399", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001399" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001400", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001400" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001401", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001401" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001402", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001402" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001403", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001403" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001404", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001404" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001405", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001405" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001406", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001406" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001407", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001407" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001408", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001408" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001409", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001409" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001410", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001410" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001411", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001411" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001412", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001412" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001413", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001413" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001414", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001414" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001415", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001415" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001416", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001416" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001417", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001417" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001418", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001418" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001419", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001419" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001420", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001420" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001421", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001421" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001422", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001422" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001423", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001423" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001424", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001424" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001425", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001425" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001426", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001426" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001427", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001427" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001428", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001428" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001429", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001429" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001430", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001430" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001431", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001431" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001432", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001432" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001433", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001433" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001434", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001434" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001435", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001435" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001436", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001436" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001437", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001437" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001438", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001438" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001439", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001439" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001440", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001440" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001441", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001441" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001442", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001442" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001443", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001443" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001444", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001444" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001445", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001445" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001446", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001446" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001447", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001447" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001448", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001448" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001449", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001449" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001450", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001450" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001451", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001451" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001452", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001452" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001453", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001453" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001454", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001454" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001455", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001455" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001456", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001456" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001457", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001457" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001458", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001458" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001459", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001459" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001460", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001460" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001461", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001461" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001462", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001462" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001463", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001463" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001464", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001464" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001465", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001465" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001466", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001466" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001467", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001467" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001468", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001468" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001469", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001469" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001470", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001470" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001471", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001471" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001472", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001472" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001473", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001473" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001474", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001474" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001475", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001475" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001476", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001476" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001477", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001477" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001478", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001478" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001479", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001479" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001480", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001480" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001481", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001481" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001482", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001482" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001483", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001483" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001484", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001484" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001485", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001485" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001486", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001486" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001487", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001487" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001488", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001488" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001489", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001489" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001490", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001490" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001491", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001491" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001492", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001492" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001493", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001493" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001494", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001494" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001495", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001495" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001496", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001496" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001497", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001497" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001498", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001498" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001499", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001499" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001500", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001500" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001501", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001501" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001502", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001502" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001503", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001503" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001504", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001504" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001505", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001505" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001506", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001506" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001507", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001507" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001508", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001508" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001509", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001509" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001510", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001510" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001511", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001511" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001512", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001512" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001513", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001513" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001514", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001514" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001515", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001515" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001516", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001516" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001517", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001517" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001518", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001518" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001519", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001519" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001520", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001520" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001521", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001521" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001522", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001522" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001523", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001523" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001524", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001524" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001525", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001525" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001526", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001526" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001527", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001527" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001528", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001528" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001529", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001529" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001530", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001530" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001531", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001531" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001532", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001532" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001533", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001533" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001534", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001534" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001535", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001535" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001536", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001536" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001537", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001537" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001538", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001538" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001539", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001539" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001540", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001540" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001541", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001541" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001542", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001542" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001543", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001543" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001544", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001544" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001545", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001545" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001546", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001546" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001547", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001547" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001548", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001548" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001549", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001549" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001550", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001550" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001551", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001551" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001552", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001552" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001553", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001553" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001554", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001554" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001555", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001555" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001556", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001556" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001557", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001557" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001558", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001558" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001559", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001559" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001560", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001560" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001561", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001561" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001562", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001562" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001563", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001563" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001564", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001564" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001565", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001565" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001566", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001566" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001567", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001567" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001568", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001568" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001569", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001569" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001570", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001570" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001571", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001571" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001572", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001572" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001573", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001573" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001574", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001574" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001575", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001575" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001576", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001576" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001577", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001577" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001578", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001578" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001579", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001579" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001580", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001580" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001581", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001581" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001582", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001582" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001583", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001583" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001584", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001584" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001585", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001585" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001586", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001586" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001587", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001587" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001588", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001588" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001589", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001589" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001590", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001590" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001591", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001591" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001592", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001592" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001593", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001593" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001594", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001594" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001595", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001595" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001596", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001596" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001597", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001597" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001598", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001598" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001599", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001599" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001600", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001600" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001601", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001601" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001602", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001602" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001603", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001603" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001604", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001604" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001605", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "E14001605" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000021", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000021" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000027", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000027" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000045", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000045" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000048", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000048" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000051", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000051" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000060", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000060" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000061", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000061" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000062", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000062" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000063", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000063" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000064", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000064" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000065", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000065" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000066", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000066" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000067", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000067" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000068", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000068" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000069", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000069" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000070", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000070" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000071", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000071" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000072", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000072" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000073", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000073" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000074", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000074" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000075", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000075" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000076", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000076" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000077", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000077" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000078", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000078" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000079", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000079" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000080", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000080" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000081" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000082" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000083" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000084" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000085" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000086" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000087" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000088" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000089" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000090" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000091" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000092" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000093" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000094" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000095" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000096" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000097" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000098" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000099" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000100" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000101" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000102" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000103" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000104" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000105" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000106" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000107" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000108" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000109" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000110" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "S14000111" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000081", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000081" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000082", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000082" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000083", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000083" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000084", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000084" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000085", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000085" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000086", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000086" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000087", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000087" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000088", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000088" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000089", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000089" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000090", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000090" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000091", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000091" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000092", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000092" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000093", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000093" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000094", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000094" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000095", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000095" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000096", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000096" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000097", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000097" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000098", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000098" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000099", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000099" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000100", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000100" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000101", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000101" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000102", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000102" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000103", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000103" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000104", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000104" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000105", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000105" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000106", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000106" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000107", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000107" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000108", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000108" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000109", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000109" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000110", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000110" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000111", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000111" + }, + "value_operation": "sum" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000112", + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "entity": "household", + "measure": "uc_hh_3plus_children", + "family": "dwp_universal_credit", + "period": 2025, + "metadata": { + "contract_target_id": "dwp.uc.households_by_area_children_3plus", + "measure_kind": "prepared_column", + "geography_level": "constituency", + "geography_id": "W07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.owned_outright@E06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + } + }, + { + "name": "ons.tenure.owned_outright@E06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + } + }, + { + "name": "ons.tenure.owned_outright@E06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + } + }, + { + "name": "ons.tenure.owned_outright@E06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + } + }, + { + "name": "ons.tenure.owned_outright@E06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + } + }, + { + "name": "ons.tenure.owned_outright@E06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + } + }, + { + "name": "ons.tenure.owned_outright@E06000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + } + }, + { + "name": "ons.tenure.owned_outright@E06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + } + }, + { + "name": "ons.tenure.owned_outright@E06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + } + }, + { + "name": "ons.tenure.owned_outright@E06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + } + }, + { + "name": "ons.tenure.owned_outright@E06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + } + }, + { + "name": "ons.tenure.owned_outright@E06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + } + }, + { + "name": "ons.tenure.owned_outright@E06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + } + }, + { + "name": "ons.tenure.owned_outright@E06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + } + }, + { + "name": "ons.tenure.owned_outright@E06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + } + }, + { + "name": "ons.tenure.owned_outright@E06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + } + }, + { + "name": "ons.tenure.owned_outright@E06000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + } + }, + { + "name": "ons.tenure.owned_outright@E06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + } + }, + { + "name": "ons.tenure.owned_outright@E06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + } + }, + { + "name": "ons.tenure.owned_outright@E06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + } + }, + { + "name": "ons.tenure.owned_outright@E06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + } + }, + { + "name": "ons.tenure.owned_outright@E06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + } + }, + { + "name": "ons.tenure.owned_outright@E06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + } + }, + { + "name": "ons.tenure.owned_outright@E06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + } + }, + { + "name": "ons.tenure.owned_outright@E06000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + } + }, + { + "name": "ons.tenure.owned_outright@E06000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + } + }, + { + "name": "ons.tenure.owned_outright@E06000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + } + }, + { + "name": "ons.tenure.owned_outright@E06000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + } + }, + { + "name": "ons.tenure.owned_outright@E06000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + } + }, + { + "name": "ons.tenure.owned_outright@E06000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + } + }, + { + "name": "ons.tenure.owned_outright@E06000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + } + }, + { + "name": "ons.tenure.owned_outright@E06000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + } + }, + { + "name": "ons.tenure.owned_outright@E06000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + } + }, + { + "name": "ons.tenure.owned_outright@E06000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + } + }, + { + "name": "ons.tenure.owned_outright@E06000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + } + }, + { + "name": "ons.tenure.owned_outright@E06000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + } + }, + { + "name": "ons.tenure.owned_outright@E06000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + } + }, + { + "name": "ons.tenure.owned_outright@E06000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + } + }, + { + "name": "ons.tenure.owned_outright@E06000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + } + }, + { + "name": "ons.tenure.owned_outright@E06000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + } + }, + { + "name": "ons.tenure.owned_outright@E06000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + } + }, + { + "name": "ons.tenure.owned_outright@E06000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + } + }, + { + "name": "ons.tenure.owned_outright@E06000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + } + }, + { + "name": "ons.tenure.owned_outright@E06000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + } + }, + { + "name": "ons.tenure.owned_outright@E06000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + } + }, + { + "name": "ons.tenure.owned_outright@E06000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + } + }, + { + "name": "ons.tenure.owned_outright@E06000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + } + }, + { + "name": "ons.tenure.owned_outright@E06000051", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + } + }, + { + "name": "ons.tenure.owned_outright@E06000052", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + } + }, + { + "name": "ons.tenure.owned_outright@E06000053", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + } + }, + { + "name": "ons.tenure.owned_outright@E06000054", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + } + }, + { + "name": "ons.tenure.owned_outright@E06000055", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + } + }, + { + "name": "ons.tenure.owned_outright@E06000056", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + } + }, + { + "name": "ons.tenure.owned_outright@E06000057", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + } + }, + { + "name": "ons.tenure.owned_outright@E06000058", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + } + }, + { + "name": "ons.tenure.owned_outright@E06000059", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + } + }, + { + "name": "ons.tenure.owned_outright@E06000060", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + } + }, + { + "name": "ons.tenure.owned_outright@E06000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + } + }, + { + "name": "ons.tenure.owned_outright@E06000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + } + }, + { + "name": "ons.tenure.owned_outright@E06000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + } + }, + { + "name": "ons.tenure.owned_outright@E06000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + } + }, + { + "name": "ons.tenure.owned_outright@E06000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + } + }, + { + "name": "ons.tenure.owned_outright@E06000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + } + }, + { + "name": "ons.tenure.owned_outright@E07000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + } + }, + { + "name": "ons.tenure.owned_outright@E07000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + } + }, + { + "name": "ons.tenure.owned_outright@E07000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + } + }, + { + "name": "ons.tenure.owned_outright@E07000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + } + }, + { + "name": "ons.tenure.owned_outright@E07000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + } + }, + { + "name": "ons.tenure.owned_outright@E07000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + } + }, + { + "name": "ons.tenure.owned_outright@E07000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + } + }, + { + "name": "ons.tenure.owned_outright@E07000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + } + }, + { + "name": "ons.tenure.owned_outright@E07000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + } + }, + { + "name": "ons.tenure.owned_outright@E07000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + } + }, + { + "name": "ons.tenure.owned_outright@E07000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + } + }, + { + "name": "ons.tenure.owned_outright@E07000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + } + }, + { + "name": "ons.tenure.owned_outright@E07000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + } + }, + { + "name": "ons.tenure.owned_outright@E07000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + } + }, + { + "name": "ons.tenure.owned_outright@E07000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + } + }, + { + "name": "ons.tenure.owned_outright@E07000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + } + }, + { + "name": "ons.tenure.owned_outright@E07000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + } + }, + { + "name": "ons.tenure.owned_outright@E07000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + } + }, + { + "name": "ons.tenure.owned_outright@E07000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + } + }, + { + "name": "ons.tenure.owned_outright@E07000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + } + }, + { + "name": "ons.tenure.owned_outright@E07000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + } + }, + { + "name": "ons.tenure.owned_outright@E07000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + } + }, + { + "name": "ons.tenure.owned_outright@E07000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + } + }, + { + "name": "ons.tenure.owned_outright@E07000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + } + }, + { + "name": "ons.tenure.owned_outright@E07000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + } + }, + { + "name": "ons.tenure.owned_outright@E07000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + } + }, + { + "name": "ons.tenure.owned_outright@E07000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + } + }, + { + "name": "ons.tenure.owned_outright@E07000067", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + } + }, + { + "name": "ons.tenure.owned_outright@E07000068", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + } + }, + { + "name": "ons.tenure.owned_outright@E07000069", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + } + }, + { + "name": "ons.tenure.owned_outright@E07000070", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + } + }, + { + "name": "ons.tenure.owned_outright@E07000071", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + } + }, + { + "name": "ons.tenure.owned_outright@E07000072", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + } + }, + { + "name": "ons.tenure.owned_outright@E07000073", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + } + }, + { + "name": "ons.tenure.owned_outright@E07000074", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + } + }, + { + "name": "ons.tenure.owned_outright@E07000075", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + } + }, + { + "name": "ons.tenure.owned_outright@E07000076", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + } + }, + { + "name": "ons.tenure.owned_outright@E07000077", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + } + }, + { + "name": "ons.tenure.owned_outright@E07000078", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + } + }, + { + "name": "ons.tenure.owned_outright@E07000079", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + } + }, + { + "name": "ons.tenure.owned_outright@E07000080", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + } + }, + { + "name": "ons.tenure.owned_outright@E07000081", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + } + }, + { + "name": "ons.tenure.owned_outright@E07000082", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + } + }, + { + "name": "ons.tenure.owned_outright@E07000083", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + } + }, + { + "name": "ons.tenure.owned_outright@E07000084", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + } + }, + { + "name": "ons.tenure.owned_outright@E07000085", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + } + }, + { + "name": "ons.tenure.owned_outright@E07000086", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + } + }, + { + "name": "ons.tenure.owned_outright@E07000087", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + } + }, + { + "name": "ons.tenure.owned_outright@E07000088", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + } + }, + { + "name": "ons.tenure.owned_outright@E07000089", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + } + }, + { + "name": "ons.tenure.owned_outright@E07000090", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + } + }, + { + "name": "ons.tenure.owned_outright@E07000091", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + } + }, + { + "name": "ons.tenure.owned_outright@E07000092", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + } + }, + { + "name": "ons.tenure.owned_outright@E07000093", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + } + }, + { + "name": "ons.tenure.owned_outright@E07000094", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + } + }, + { + "name": "ons.tenure.owned_outright@E07000095", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + } + }, + { + "name": "ons.tenure.owned_outright@E07000096", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + } + }, + { + "name": "ons.tenure.owned_outright@E07000098", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + } + }, + { + "name": "ons.tenure.owned_outright@E07000099", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + } + }, + { + "name": "ons.tenure.owned_outright@E07000102", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + } + }, + { + "name": "ons.tenure.owned_outright@E07000103", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + } + }, + { + "name": "ons.tenure.owned_outright@E07000105", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + } + }, + { + "name": "ons.tenure.owned_outright@E07000106", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + } + }, + { + "name": "ons.tenure.owned_outright@E07000107", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + } + }, + { + "name": "ons.tenure.owned_outright@E07000108", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + } + }, + { + "name": "ons.tenure.owned_outright@E07000109", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + } + }, + { + "name": "ons.tenure.owned_outright@E07000110", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + } + }, + { + "name": "ons.tenure.owned_outright@E07000111", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + } + }, + { + "name": "ons.tenure.owned_outright@E07000112", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + } + }, + { + "name": "ons.tenure.owned_outright@E07000113", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + } + }, + { + "name": "ons.tenure.owned_outright@E07000114", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + } + }, + { + "name": "ons.tenure.owned_outright@E07000115", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + } + }, + { + "name": "ons.tenure.owned_outright@E07000116", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + } + }, + { + "name": "ons.tenure.owned_outright@E07000117", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + } + }, + { + "name": "ons.tenure.owned_outright@E07000118", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + } + }, + { + "name": "ons.tenure.owned_outright@E07000119", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + } + }, + { + "name": "ons.tenure.owned_outright@E07000120", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + } + }, + { + "name": "ons.tenure.owned_outright@E07000121", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + } + }, + { + "name": "ons.tenure.owned_outright@E07000122", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + } + }, + { + "name": "ons.tenure.owned_outright@E07000123", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + } + }, + { + "name": "ons.tenure.owned_outright@E07000124", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + } + }, + { + "name": "ons.tenure.owned_outright@E07000125", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + } + }, + { + "name": "ons.tenure.owned_outright@E07000126", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + } + }, + { + "name": "ons.tenure.owned_outright@E07000127", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + } + }, + { + "name": "ons.tenure.owned_outright@E07000128", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + } + }, + { + "name": "ons.tenure.owned_outright@E07000129", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + } + }, + { + "name": "ons.tenure.owned_outright@E07000130", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + } + }, + { + "name": "ons.tenure.owned_outright@E07000131", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + } + }, + { + "name": "ons.tenure.owned_outright@E07000132", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + } + }, + { + "name": "ons.tenure.owned_outright@E07000133", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + } + }, + { + "name": "ons.tenure.owned_outright@E07000134", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + } + }, + { + "name": "ons.tenure.owned_outright@E07000135", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + } + }, + { + "name": "ons.tenure.owned_outright@E07000136", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + } + }, + { + "name": "ons.tenure.owned_outright@E07000137", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + } + }, + { + "name": "ons.tenure.owned_outright@E07000138", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + } + }, + { + "name": "ons.tenure.owned_outright@E07000139", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + } + }, + { + "name": "ons.tenure.owned_outright@E07000140", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + } + }, + { + "name": "ons.tenure.owned_outright@E07000141", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + } + }, + { + "name": "ons.tenure.owned_outright@E07000142", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + } + }, + { + "name": "ons.tenure.owned_outright@E07000143", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + } + }, + { + "name": "ons.tenure.owned_outright@E07000144", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + } + }, + { + "name": "ons.tenure.owned_outright@E07000145", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + } + }, + { + "name": "ons.tenure.owned_outright@E07000146", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + } + }, + { + "name": "ons.tenure.owned_outright@E07000147", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + } + }, + { + "name": "ons.tenure.owned_outright@E07000148", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + } + }, + { + "name": "ons.tenure.owned_outright@E07000149", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + } + }, + { + "name": "ons.tenure.owned_outright@E07000170", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + } + }, + { + "name": "ons.tenure.owned_outright@E07000171", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + } + }, + { + "name": "ons.tenure.owned_outright@E07000172", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + } + }, + { + "name": "ons.tenure.owned_outright@E07000173", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + } + }, + { + "name": "ons.tenure.owned_outright@E07000174", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + } + }, + { + "name": "ons.tenure.owned_outright@E07000175", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + } + }, + { + "name": "ons.tenure.owned_outright@E07000176", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + } + }, + { + "name": "ons.tenure.owned_outright@E07000177", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + } + }, + { + "name": "ons.tenure.owned_outright@E07000178", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + } + }, + { + "name": "ons.tenure.owned_outright@E07000179", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + } + }, + { + "name": "ons.tenure.owned_outright@E07000180", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + } + }, + { + "name": "ons.tenure.owned_outright@E07000181", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + } + }, + { + "name": "ons.tenure.owned_outright@E07000192", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + } + }, + { + "name": "ons.tenure.owned_outright@E07000193", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + } + }, + { + "name": "ons.tenure.owned_outright@E07000194", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + } + }, + { + "name": "ons.tenure.owned_outright@E07000195", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + } + }, + { + "name": "ons.tenure.owned_outright@E07000196", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + } + }, + { + "name": "ons.tenure.owned_outright@E07000197", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + } + }, + { + "name": "ons.tenure.owned_outright@E07000198", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + } + }, + { + "name": "ons.tenure.owned_outright@E07000199", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + } + }, + { + "name": "ons.tenure.owned_outright@E07000200", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + } + }, + { + "name": "ons.tenure.owned_outright@E07000202", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + } + }, + { + "name": "ons.tenure.owned_outright@E07000203", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + } + }, + { + "name": "ons.tenure.owned_outright@E07000207", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + } + }, + { + "name": "ons.tenure.owned_outright@E07000208", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + } + }, + { + "name": "ons.tenure.owned_outright@E07000209", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + } + }, + { + "name": "ons.tenure.owned_outright@E07000210", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + } + }, + { + "name": "ons.tenure.owned_outright@E07000211", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + } + }, + { + "name": "ons.tenure.owned_outright@E07000212", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + } + }, + { + "name": "ons.tenure.owned_outright@E07000213", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + } + }, + { + "name": "ons.tenure.owned_outright@E07000214", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + } + }, + { + "name": "ons.tenure.owned_outright@E07000215", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + } + }, + { + "name": "ons.tenure.owned_outright@E07000216", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + } + }, + { + "name": "ons.tenure.owned_outright@E07000217", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + } + }, + { + "name": "ons.tenure.owned_outright@E07000218", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + } + }, + { + "name": "ons.tenure.owned_outright@E07000219", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + } + }, + { + "name": "ons.tenure.owned_outright@E07000220", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + } + }, + { + "name": "ons.tenure.owned_outright@E07000221", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + } + }, + { + "name": "ons.tenure.owned_outright@E07000222", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + } + }, + { + "name": "ons.tenure.owned_outright@E07000223", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + } + }, + { + "name": "ons.tenure.owned_outright@E07000224", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + } + }, + { + "name": "ons.tenure.owned_outright@E07000225", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + } + }, + { + "name": "ons.tenure.owned_outright@E07000226", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + } + }, + { + "name": "ons.tenure.owned_outright@E07000227", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + } + }, + { + "name": "ons.tenure.owned_outright@E07000228", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + } + }, + { + "name": "ons.tenure.owned_outright@E07000229", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + } + }, + { + "name": "ons.tenure.owned_outright@E07000234", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + } + }, + { + "name": "ons.tenure.owned_outright@E07000235", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + } + }, + { + "name": "ons.tenure.owned_outright@E07000236", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + } + }, + { + "name": "ons.tenure.owned_outright@E07000237", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + } + }, + { + "name": "ons.tenure.owned_outright@E07000238", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + } + }, + { + "name": "ons.tenure.owned_outright@E07000239", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + } + }, + { + "name": "ons.tenure.owned_outright@E07000240", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + } + }, + { + "name": "ons.tenure.owned_outright@E07000241", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + } + }, + { + "name": "ons.tenure.owned_outright@E07000242", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + } + }, + { + "name": "ons.tenure.owned_outright@E07000243", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + } + }, + { + "name": "ons.tenure.owned_outright@E07000244", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + } + }, + { + "name": "ons.tenure.owned_outright@E07000245", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + } + }, + { + "name": "ons.tenure.owned_outright@E08000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + } + }, + { + "name": "ons.tenure.owned_outright@E08000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + } + }, + { + "name": "ons.tenure.owned_outright@E08000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + } + }, + { + "name": "ons.tenure.owned_outright@E08000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + } + }, + { + "name": "ons.tenure.owned_outright@E08000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + } + }, + { + "name": "ons.tenure.owned_outright@E08000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + } + }, + { + "name": "ons.tenure.owned_outright@E08000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + } + }, + { + "name": "ons.tenure.owned_outright@E08000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + } + }, + { + "name": "ons.tenure.owned_outright@E08000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + } + }, + { + "name": "ons.tenure.owned_outright@E08000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + } + }, + { + "name": "ons.tenure.owned_outright@E08000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + } + }, + { + "name": "ons.tenure.owned_outright@E08000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + } + }, + { + "name": "ons.tenure.owned_outright@E08000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + } + }, + { + "name": "ons.tenure.owned_outright@E08000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + } + }, + { + "name": "ons.tenure.owned_outright@E08000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + } + }, + { + "name": "ons.tenure.owned_outright@E08000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + } + }, + { + "name": "ons.tenure.owned_outright@E08000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + } + }, + { + "name": "ons.tenure.owned_outright@E08000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + } + }, + { + "name": "ons.tenure.owned_outright@E08000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + } + }, + { + "name": "ons.tenure.owned_outright@E08000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + } + }, + { + "name": "ons.tenure.owned_outright@E08000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + } + }, + { + "name": "ons.tenure.owned_outright@E08000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + } + }, + { + "name": "ons.tenure.owned_outright@E08000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + } + }, + { + "name": "ons.tenure.owned_outright@E08000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + } + }, + { + "name": "ons.tenure.owned_outright@E08000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + } + }, + { + "name": "ons.tenure.owned_outright@E08000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + } + }, + { + "name": "ons.tenure.owned_outright@E08000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + } + }, + { + "name": "ons.tenure.owned_outright@E08000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + } + }, + { + "name": "ons.tenure.owned_outright@E08000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + } + }, + { + "name": "ons.tenure.owned_outright@E08000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + } + }, + { + "name": "ons.tenure.owned_outright@E08000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + } + }, + { + "name": "ons.tenure.owned_outright@E08000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + } + }, + { + "name": "ons.tenure.owned_outright@E08000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + } + }, + { + "name": "ons.tenure.owned_outright@E08000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + } + }, + { + "name": "ons.tenure.owned_outright@E08000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + } + }, + { + "name": "ons.tenure.owned_outright@E08000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + } + }, + { + "name": "ons.tenure.owned_outright@E09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + } + }, + { + "name": "ons.tenure.owned_outright@E09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + } + }, + { + "name": "ons.tenure.owned_outright@E09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + } + }, + { + "name": "ons.tenure.owned_outright@E09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + } + }, + { + "name": "ons.tenure.owned_outright@E09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + } + }, + { + "name": "ons.tenure.owned_outright@E09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + } + }, + { + "name": "ons.tenure.owned_outright@E09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + } + }, + { + "name": "ons.tenure.owned_outright@E09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + } + }, + { + "name": "ons.tenure.owned_outright@E09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + } + }, + { + "name": "ons.tenure.owned_outright@E09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + } + }, + { + "name": "ons.tenure.owned_outright@E09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + } + }, + { + "name": "ons.tenure.owned_outright@E09000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + } + }, + { + "name": "ons.tenure.owned_outright@E09000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + } + }, + { + "name": "ons.tenure.owned_outright@E09000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + } + }, + { + "name": "ons.tenure.owned_outright@E09000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + } + }, + { + "name": "ons.tenure.owned_outright@E09000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + } + }, + { + "name": "ons.tenure.owned_outright@E09000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + } + }, + { + "name": "ons.tenure.owned_outright@E09000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + } + }, + { + "name": "ons.tenure.owned_outright@E09000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + } + }, + { + "name": "ons.tenure.owned_outright@E09000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + } + }, + { + "name": "ons.tenure.owned_outright@E09000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + } + }, + { + "name": "ons.tenure.owned_outright@E09000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + } + }, + { + "name": "ons.tenure.owned_outright@E09000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + } + }, + { + "name": "ons.tenure.owned_outright@E09000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + } + }, + { + "name": "ons.tenure.owned_outright@E09000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + } + }, + { + "name": "ons.tenure.owned_outright@E09000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + } + }, + { + "name": "ons.tenure.owned_outright@E09000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + } + }, + { + "name": "ons.tenure.owned_outright@E09000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + } + }, + { + "name": "ons.tenure.owned_outright@E09000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + } + }, + { + "name": "ons.tenure.owned_outright@E09000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + } + }, + { + "name": "ons.tenure.owned_outright@E09000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + } + }, + { + "name": "ons.tenure.owned_outright@E09000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + } + }, + { + "name": "ons.tenure.owned_outright@E09000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + } + }, + { + "name": "ons.tenure.owned_outright@N09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + } + }, + { + "name": "ons.tenure.owned_outright@N09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + } + }, + { + "name": "ons.tenure.owned_outright@N09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + } + }, + { + "name": "ons.tenure.owned_outright@N09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + } + }, + { + "name": "ons.tenure.owned_outright@N09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + } + }, + { + "name": "ons.tenure.owned_outright@N09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + } + }, + { + "name": "ons.tenure.owned_outright@N09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + } + }, + { + "name": "ons.tenure.owned_outright@N09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + } + }, + { + "name": "ons.tenure.owned_outright@N09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + } + }, + { + "name": "ons.tenure.owned_outright@N09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + } + }, + { + "name": "ons.tenure.owned_outright@N09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + } + }, + { + "name": "ons.tenure.owned_outright@S12000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + } + }, + { + "name": "ons.tenure.owned_outright@S12000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + } + }, + { + "name": "ons.tenure.owned_outright@S12000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + } + }, + { + "name": "ons.tenure.owned_outright@S12000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + } + }, + { + "name": "ons.tenure.owned_outright@S12000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + } + }, + { + "name": "ons.tenure.owned_outright@S12000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + } + }, + { + "name": "ons.tenure.owned_outright@S12000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + } + }, + { + "name": "ons.tenure.owned_outright@S12000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + } + }, + { + "name": "ons.tenure.owned_outright@S12000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + } + }, + { + "name": "ons.tenure.owned_outright@S12000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + } + }, + { + "name": "ons.tenure.owned_outright@S12000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + } + }, + { + "name": "ons.tenure.owned_outright@S12000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + } + }, + { + "name": "ons.tenure.owned_outright@S12000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + } + }, + { + "name": "ons.tenure.owned_outright@S12000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + } + }, + { + "name": "ons.tenure.owned_outright@S12000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + } + }, + { + "name": "ons.tenure.owned_outright@S12000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + } + }, + { + "name": "ons.tenure.owned_outright@S12000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + } + }, + { + "name": "ons.tenure.owned_outright@S12000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + } + }, + { + "name": "ons.tenure.owned_outright@S12000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + } + }, + { + "name": "ons.tenure.owned_outright@S12000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + } + }, + { + "name": "ons.tenure.owned_outright@S12000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + } + }, + { + "name": "ons.tenure.owned_outright@S12000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + } + }, + { + "name": "ons.tenure.owned_outright@S12000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + } + }, + { + "name": "ons.tenure.owned_outright@S12000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + } + }, + { + "name": "ons.tenure.owned_outright@S12000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + } + }, + { + "name": "ons.tenure.owned_outright@S12000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + } + }, + { + "name": "ons.tenure.owned_outright@S12000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + } + }, + { + "name": "ons.tenure.owned_outright@S12000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + } + }, + { + "name": "ons.tenure.owned_outright@S12000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + } + }, + { + "name": "ons.tenure.owned_outright@S12000048", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + } + }, + { + "name": "ons.tenure.owned_outright@S12000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + } + }, + { + "name": "ons.tenure.owned_outright@S12000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + } + }, + { + "name": "ons.tenure.owned_outright@W06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + } + }, + { + "name": "ons.tenure.owned_outright@W06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + } + }, + { + "name": "ons.tenure.owned_outright@W06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + } + }, + { + "name": "ons.tenure.owned_outright@W06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + } + }, + { + "name": "ons.tenure.owned_outright@W06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + } + }, + { + "name": "ons.tenure.owned_outright@W06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + } + }, + { + "name": "ons.tenure.owned_outright@W06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + } + }, + { + "name": "ons.tenure.owned_outright@W06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + } + }, + { + "name": "ons.tenure.owned_outright@W06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + } + }, + { + "name": "ons.tenure.owned_outright@W06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + } + }, + { + "name": "ons.tenure.owned_outright@W06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + } + }, + { + "name": "ons.tenure.owned_outright@W06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + } + }, + { + "name": "ons.tenure.owned_outright@W06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + } + }, + { + "name": "ons.tenure.owned_outright@W06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + } + }, + { + "name": "ons.tenure.owned_outright@W06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + } + }, + { + "name": "ons.tenure.owned_outright@W06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + } + }, + { + "name": "ons.tenure.owned_outright@W06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + } + }, + { + "name": "ons.tenure.owned_outright@W06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + } + }, + { + "name": "ons.tenure.owned_outright@W06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + } + }, + { + "name": "ons.tenure.owned_outright@W06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + } + }, + { + "name": "ons.tenure.owned_outright@W06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + } + }, + { + "name": "ons.tenure.owned_outright@W06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "household", + "measure": "tenure/owned_outright", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_outright", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000051", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000052", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000053", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000054", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000055", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000056", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000057", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000058", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000059", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000060", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + } + }, + { + "name": "ons.tenure.owned_mortgage@E06000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000067", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000068", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000069", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000070", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000071", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000072", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000073", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000074", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000075", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000076", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000077", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000078", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000079", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000080", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000081", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000082", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000083", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000084", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000085", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000086", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000087", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000088", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000089", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000090", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000091", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000092", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000093", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000094", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000095", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000096", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000098", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000099", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000102", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000103", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000105", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000106", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000107", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000108", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000109", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000110", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000111", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000112", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000113", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000114", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000115", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000116", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000117", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000118", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000119", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000120", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000121", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000122", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000123", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000124", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000125", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000126", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000127", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000128", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000129", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000130", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000131", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000132", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000133", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000134", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000135", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000136", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000137", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000138", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000139", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000140", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000141", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000142", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000143", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000144", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000145", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000146", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000147", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000148", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000149", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000170", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000171", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000172", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000173", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000174", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000175", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000176", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000177", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000178", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000179", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000180", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000181", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000192", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000193", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000194", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000195", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000196", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000197", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000198", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000199", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000200", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000202", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000203", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000207", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000208", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000209", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000210", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000211", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000212", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000213", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000214", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000215", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000216", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000217", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000218", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000219", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000220", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000221", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000222", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000223", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000224", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000225", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000226", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000227", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000228", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000229", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000234", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000235", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000236", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000237", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000238", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000239", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000240", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000241", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000242", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000243", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000244", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + } + }, + { + "name": "ons.tenure.owned_mortgage@E07000245", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + } + }, + { + "name": "ons.tenure.owned_mortgage@E08000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + } + }, + { + "name": "ons.tenure.owned_mortgage@E09000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@N09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000048", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + } + }, + { + "name": "ons.tenure.owned_mortgage@S12000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + } + }, + { + "name": "ons.tenure.owned_mortgage@W06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "household", + "measure": "tenure/owned_mortgage", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.owned_mortgage", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + } + }, + { + "name": "ons.tenure.private_rent@E06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000051", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000052", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000053", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000054", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000055", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000056", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000057", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000058", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000059", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000060", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E06000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000067", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000068", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000069", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000070", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000071", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000072", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000073", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000074", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000075", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000076", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000077", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000078", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000079", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000080", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000081", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000082", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000083", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000084", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000085", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000086", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000087", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000088", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000089", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000090", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000091", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000092", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000093", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000094", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000095", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000096", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000098", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000099", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000102", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000103", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000105", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000106", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000107", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000108", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000109", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000110", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000111", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000112", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000113", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000114", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000115", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000116", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000117", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000118", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000119", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000120", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000121", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000122", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000123", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000124", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000125", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000126", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000127", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000128", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000129", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000130", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000131", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000132", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000133", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000134", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000135", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000136", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000137", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000138", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000139", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000140", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000141", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000142", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000143", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000144", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000145", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000146", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000147", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000148", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000149", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000170", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000171", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000172", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000173", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000174", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000175", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000176", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000177", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000178", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000179", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000180", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000181", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000192", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000193", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000194", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000195", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000196", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000197", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000198", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000199", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000200", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000202", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000203", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000207", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000208", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000209", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000210", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000211", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000212", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000213", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000214", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000215", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000216", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000217", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000218", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000219", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000220", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000221", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000222", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000223", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000224", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000225", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000226", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000227", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000228", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000229", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000234", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000235", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000236", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000237", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000238", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000239", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000240", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000241", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000242", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000243", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000244", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E07000245", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E08000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@E09000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@N09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000048", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@S12000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.private_rent@W06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "household", + "measure": "tenure/private_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.private_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000051", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000051" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000052", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000052" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000053", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000053" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000054", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000054" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000055", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000055" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000056", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000056" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000057", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000057" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000058", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000058" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000059", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000059" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000060", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000060" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E06000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E06000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000043", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000043" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000044", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000044" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000046", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000046" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000061", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000061" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000062", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000062" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000063", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000063" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000064", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000064" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000065", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000065" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000066", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000066" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000067", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000067" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000068", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000068" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000069", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000069" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000070", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000070" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000071", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000071" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000072", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000072" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000073", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000073" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000074", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000074" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000075", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000075" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000076", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000076" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000077", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000077" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000078", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000078" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000079", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000079" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000080", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000080" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000081", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000081" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000082", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000082" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000083", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000083" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000084", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000084" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000085", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000085" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000086", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000086" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000087", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000087" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000088", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000088" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000089", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000089" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000090", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000090" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000091", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000091" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000092", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000092" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000093", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000093" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000094", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000094" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000095", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000095" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000096", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000096" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000098", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000098" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000099", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000099" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000102", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000102" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000103", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000103" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000105", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000105" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000106", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000106" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000107", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000107" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000108", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000108" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000109", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000109" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000110", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000110" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000111", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000111" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000112", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000112" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000113", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000113" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000114", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000114" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000115", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000115" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000116", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000116" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000117", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000117" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000118", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000118" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000119", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000119" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000120", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000120" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000121", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000121" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000122", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000122" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000123", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000123" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000124", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000124" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000125", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000125" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000126", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000126" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000127", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000127" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000128", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000128" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000129", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000129" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000130", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000130" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000131", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000131" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000132", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000132" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000133", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000133" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000134", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000134" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000135", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000135" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000136", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000136" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000137", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000137" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000138", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000138" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000139", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000139" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000140", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000140" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000141", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000141" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000142", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000142" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000143", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000143" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000144", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000144" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000145", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000145" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000146", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000146" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000147", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000147" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000148", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000148" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000149", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000149" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000170", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000170" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000171", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000171" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000172", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000172" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000173", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000173" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000174", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000174" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000175", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000175" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000176", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000176" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000177", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000177" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000178", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000178" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000179", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000179" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000180", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000180" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000181", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000181" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000192", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000192" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000193", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000193" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000194", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000194" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000195", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000195" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000196", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000196" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000197", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000197" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000198", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000198" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000199", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000199" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000200", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000200" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000202", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000202" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000203", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000203" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000207", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000207" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000208", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000208" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000209", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000209" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000210", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000210" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000211", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000211" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000212", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000212" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000213", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000213" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000214", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000214" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000215", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000215" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000216", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000216" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000217", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000217" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000218", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000218" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000219", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000219" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000220", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000220" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000221", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000221" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000222", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000222" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000223", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000223" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000224", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000224" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000225", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000225" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000226", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000226" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000227", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000227" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000228", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000228" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000229", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000229" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000234", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000234" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000235", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000235" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000236", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000236" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000237", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000237" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000238", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000238" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000239", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000239" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000240", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000240" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000241", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000241" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000242", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000242" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000243", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000243" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000244", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000244" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E07000245", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E07000245" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E08000037", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E08000037" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000024" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000025", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000025" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000031", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000031" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000032", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000032" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@E09000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "E09000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000007", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000007" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@N09000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "N09000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000017", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000017" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000026", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000026" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000027", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000027" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000028", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000028" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000029", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000029" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000030", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000030" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000033", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000033" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000034", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000034" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000035", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000035" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000036", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000036" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000038", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000038" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000039", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000039" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000040", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000040" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000041", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000041" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000042", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000042" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000045", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000045" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000047", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000047" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000048", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000048" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000049", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000049" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@S12000050", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "S12000050" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000001", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000001" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000002", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000002" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000003", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000003" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000004", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000004" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000005", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000005" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000006", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000006" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000008", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000008" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000009", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000009" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000010", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000010" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000011", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000011" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000012", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000012" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000013", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000013" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000014", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000014" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000015", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000015" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000016", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000016" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000018", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000018" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000019", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000019" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000020", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000020" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000021", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000021" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000022", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000022" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000023", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000023" + }, + "value_operation": "sum" + }, + { + "name": "ons.tenure.social_rent@W06000024", + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "entity": "household", + "measure": "tenure/social_rent", + "family": "ons_housing", + "period": 2025, + "metadata": { + "contract_target_id": "ons.tenure.social_rent", + "measure_kind": "prepared_column", + "geography_level": "local_authority", + "geography_id": "W06000024" + }, + "value_operation": "sum" + } + ] +} diff --git a/packages/microcosm-build/src/microcosm/build/uk/target_references.json b/packages/microcosm-build/src/microcosm/build/uk/target_references.json index 8c72eaf8..d7cdb07f 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/target_references.json +++ b/packages/microcosm-build/src/microcosm/build/uk/target_references.json @@ -1,6 +1,6 @@ { "country": "uk", - "description": "UK active-subset Ledger target references for the FRS 2024-25 line. Rows are generated from uk_national_targets.json: name is the contract target_id or an incumbent-compatible fan-out row name; ledger_selector is the contract selector plus geography pins; entity is from_entity, then map_to, then household; measure is the prepared-column metric name or fan-out row name; family is the contract family; period is 2025 (opening-year convention for the FRS 2024-25 survey line). Observed values stay in Ledger facts and resolve by identity unless the reference declares value_operation=sum for a genuine multi-fact residue. Deferred classes and geography-pin decisions are recorded in uk/target_reference_membership.json. metadata.measure_kind records that measures are prepared columns produced from the contract binding payload referenced by metadata.contract_target_id.", + "description": "UK active-subset Ledger target references for the FRS 2024-25 line. Rows are generated from the national rows in uk_population_targets.json: name is the contract target_id or an incumbent-compatible fan-out row name; ledger_selector is the contract selector plus geography pins; entity is from_entity, then map_to, then household; measure is the prepared-column metric name or fan-out row name; family is the contract family; period is 2025 (opening-year convention for the FRS 2024-25 survey line). Observed values stay in Ledger facts and resolve by identity unless the reference declares value_operation=sum for a genuine multi-fact residue. Deferred classes and geography-pin decisions are recorded in uk/target_reference_membership.json. metadata.measure_kind records that measures are prepared columns produced from the contract binding payload referenced by metadata.contract_target_id.", "allowed_value_operations": [ "identity", "sum", diff --git a/packages/microcosm-build/src/microcosm/build/uk/uk_firms_targets.json b/packages/microcosm-build/src/microcosm/build/uk/uk_firms_targets.json new file mode 100644 index 00000000..87bbe4f3 --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/uk_firms_targets.json @@ -0,0 +1,351 @@ +{ + "schema_version": 1, + "country": "uk", + "description": "UK firm calibration contract: value-free target declarations over Chronicle facts. Selection contracts live in Microcosm per the chronicle#166 ruling (2026-08-13): Chronicle is a facts-only layer; Microcosm owns the active firm target selectors and backend bindings while observed values resolve from Chronicle consumer facts.", + "allowed_value_operations": [ + "identity" + ], + "resolution_defaults": { + "base_period_policy": "latest_not_after_build_base_period", + "operation": "sum", + "assertion_policy": "observed_only" + }, + "profile_parity": { + "source_profile": "PolicyEngine/chronicle:policyengine_chronicle/target_profiles/uk_firms.json", + "source_profile_commit": "8ed39e4e65620c990b09f780edffe1e0782c8001", + "source_profile_sha256": "430608748af92516fd26602935d97286f4771554cf4c1fd7bc3906f354f4afb8", + "source_schema_version": "policyengine_ledger.target_profile.v1", + "source_profile_id": "uk_firms", + "source_target_count": 8, + "contract_target_count": 8, + "selector_rename": "chronicle_selector -> ledger_selector" + }, + "targets": [ + { + "target_id": "ons.uk_business.enterprise_count.turnover_bands", + "family": "ons_uk_business", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "groupby_dimension": "uk.firm.annual_turnover" + }, + "bindings": { + "microcosm": { + "metric_name": "ons/uk_business/enterprise_count/turnover_bands", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variable": "annual_turnover" + }, + "axiom": { + "metric_name": "ons/uk_business/enterprise_count/turnover_bands", + "status": "pending", + "value_rule": "uk.firm.count" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "enterprise_count", + "record_set_id": "ons.uk_business.cy2025.enterprise_count.by_turnover_band", + "groupby_dimension": "uk.firm.annual_turnover" + } + }, + { + "target_id": "ons.uk_business.enterprise_count.employment_bands", + "family": "ons_uk_business", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "groupby_dimension": "uk.firm.employees" + }, + "bindings": { + "microcosm": { + "metric_name": "ons/uk_business/enterprise_count/employment_bands", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variable": "employment" + }, + "axiom": { + "metric_name": "ons/uk_business/enterprise_count/employment_bands", + "status": "pending", + "value_rule": "uk.firm.count" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "enterprise_count", + "record_set_id": "ons.uk_business.cy2025.enterprise_count.by_employment_band", + "groupby_dimension": "uk.firm.employees" + } + }, + { + "target_id": "hmrc.vat.registered_trader_count.turnover_bands", + "family": "hmrc_vat", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "groupby_dimension": "uk.firm.annual_turnover", + "filters": [ + { + "concept": "uk.firm.vat_registered", + "operator": "==", + "value": true + } + ] + }, + "bindings": { + "microcosm": { + "metric_name": "hmrc/vat/registered_trader_count/turnover_bands", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variable": "annual_turnover", + "filters": [ + { + "variable": "vat_registered", + "operator": "==", + "value": true + } + ] + }, + "axiom": { + "metric_name": "hmrc/vat/registered_trader_count/turnover_bands", + "status": "pending", + "value_rule": "uk.firm.count", + "filter_rule": "uk:policies/govuk/vat#firm_vat_registered" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "vat_registered_trader_count", + "record_set_id": "hmrc.vat.fy2024_25.registered_trader_count.by_turnover_band", + "groupby_dimension": "uk.firm.annual_turnover" + } + }, + { + "target_id": "hmrc.vat.net_liability.turnover_bands", + "family": "hmrc_vat", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.tax.vat.net_liability", + "groupby_dimension": "uk.firm.annual_turnover", + "filters": [ + { + "concept": "uk.firm.vat_registered", + "operator": "==", + "value": true + } + ] + }, + "bindings": { + "microcosm": { + "metric_name": "hmrc/vat/net_liability/turnover_bands", + "value_variable": "vat_liability", + "from_entity": "firm", + "groupby_variable": "annual_turnover", + "filters": [ + { + "variable": "vat_registered", + "operator": "==", + "value": true + } + ] + }, + "axiom": { + "metric_name": "hmrc/vat/net_liability/turnover_bands", + "status": "pending", + "value_rule": "uk:policies/govuk/vat#net_vat_liability", + "filter_rule": "uk:policies/govuk/vat#firm_vat_registered" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "net_vat_liability", + "record_set_id": "hmrc.vat.fy2024_25.net_liability.by_turnover_band", + "groupby_dimension": "uk.firm.annual_turnover" + } + }, + { + "target_id": "ons.uk_business.enterprise_count.sic_turnover_bands", + "family": "ons_uk_business", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "dimensions": [ + "uk.firm.sic_code", + "uk.firm.turnover_band" + ] + }, + "bindings": { + "microcosm": { + "metric_name": "ons/uk_business/enterprise_count/sic_turnover_bands", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variables": [ + "sic_code", + "annual_turnover" + ] + }, + "axiom": { + "metric_name": "ons/uk_business/enterprise_count/sic_turnover_bands", + "status": "pending", + "value_rule": "uk.firm.count" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "enterprise_count", + "record_set_id": "ons.uk_business.cy2025.enterprise_count.by_sic_turnover_band", + "dimensions": [ + "uk.firm.sic_code", + "uk.firm.turnover_band" + ] + } + }, + { + "target_id": "ons.uk_business.enterprise_count.sic_employment_bands", + "family": "ons_uk_business", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "dimensions": [ + "uk.firm.sic_code", + "uk.firm.employment_band" + ] + }, + "bindings": { + "microcosm": { + "metric_name": "ons/uk_business/enterprise_count/sic_employment_bands", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variables": [ + "sic_code", + "employment" + ] + }, + "axiom": { + "metric_name": "ons/uk_business/enterprise_count/sic_employment_bands", + "status": "pending", + "value_rule": "uk.firm.count" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "enterprise_count", + "record_set_id": "ons.uk_business.cy2025.enterprise_count.by_sic_employment_band", + "dimensions": [ + "uk.firm.sic_code", + "uk.firm.employment_band" + ] + } + }, + { + "target_id": "hmrc.vat.registered_trader_count.sic_sectors", + "family": "hmrc_vat", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.firm.count", + "groupby_dimension": "uk.firm.sic_code", + "filters": [ + { + "concept": "uk.firm.vat_registered", + "operator": "==", + "value": true + } + ] + }, + "bindings": { + "microcosm": { + "metric_name": "hmrc/vat/registered_trader_count/sic_sectors", + "value_variable": "firm_count", + "from_entity": "firm", + "groupby_variable": "sic_code", + "filters": [ + { + "variable": "vat_registered", + "operator": "==", + "value": true + } + ] + }, + "axiom": { + "metric_name": "hmrc/vat/registered_trader_count/sic_sectors", + "status": "pending", + "value_rule": "uk.firm.count", + "filter_rule": "uk:policies/govuk/vat#firm_vat_registered" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "vat_registered_trader_count", + "record_set_id": "hmrc.vat.fy2024_25.registered_trader_count.by_sic", + "groupby_dimension": "uk.firm.sic_code" + } + }, + { + "target_id": "hmrc.vat.net_liability.sic_sectors", + "family": "hmrc_vat", + "geography_levels": [ + "country" + ], + "measurement": { + "entity": "firm", + "concept": "uk.tax.vat.net_liability", + "groupby_dimension": "uk.firm.sic_code", + "filters": [ + { + "concept": "uk.firm.vat_registered", + "operator": "==", + "value": true + } + ] + }, + "bindings": { + "microcosm": { + "metric_name": "hmrc/vat/net_liability/sic_sectors", + "value_variable": "vat_liability", + "from_entity": "firm", + "groupby_variable": "sic_code", + "filters": [ + { + "variable": "vat_registered", + "operator": "==", + "value": true + } + ] + }, + "axiom": { + "metric_name": "hmrc/vat/net_liability/sic_sectors", + "status": "pending", + "value_rule": "uk:policies/govuk/vat#net_vat_liability", + "filter_rule": "uk:policies/govuk/vat#firm_vat_registered" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "net_vat_liability", + "record_set_id": "hmrc.vat.fy2024_25.net_liability.by_sic", + "groupby_dimension": "uk.firm.sic_code" + } + } + ] +} 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 1fe47831..dc1b1df3 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 @@ -407,11 +407,19 @@ "la" ], "latest_vintage": "tax year 2023 to 2024 (published 2026-04-29)", - "notes": "Unbanded area statistics \u2014 a different surface from the 208 banded Total Income facts held fenced by the national adjudication. The constituency vintage used by each table edition must be pinned at binding time (2024 boundaries vs earlier). Historical table layouts publish taxpayer counts with mean/median amounts; whether published amount totals exist, or the amount metric needs a declared count-times-mean construction with rounding-error bounds, must be verified when the exact tables are pinned.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "Unbanded area statistics in the pinned Ledger fact feed supply the local HMRC count targets directly and the amount targets via the signed count_x_mean construction. The feed publishes SPI target count/mean measures for 650/650 constituencies except self_employment_income_mean at E14001416 (so that one amount row is signed deferred), and for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows. This remains a different surface from the 208 banded Total Income facts held fenced by the national adjudication.", "product": "Personal incomes statistics, tables 3.12 to 3.15a: income and tax by county and region, by borough/district/unitary authority, and by Parliamentary constituency (Survey of Personal Incomes).", "publisher": "HM Revenue & Customs", "source_id": "hmrc_personal_incomes_constituency_la", - "status": "documented_unpinned", + "status": "pinned_in_ledger_facts", "url": "https://www.gov.uk/government/collections/personal-incomes-statistics", "verified_on": "2026-07-22" }, @@ -420,11 +428,19 @@ "constituency" ], "latest_vintage": "mid-2022 on this page; estimates for 2012 onwards now released via Nomis (ONS notice dated 2024-11-25)", - "notes": "Binding must pin the Nomis release carrying 2024-constituency (PCON24) estimates to match the geography ladder's constituency vintage, plus the Scotland/Northern Ireland equivalents. Mid-year estimates cover the total usual-resident population \u2014 see the population_universe_private_households adjudication.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "The pinned Ledger fact feed carries the PCON24 constituency population age specs for all 650 constituencies across the ONS, NRS, and NISRA publisher legs. Mid-year estimates cover the total usual-resident population \u2014 see the population_universe_private_households adjudication.", "product": "Parliamentary constituency mid-year population estimates (England and Wales), by year of age.", "publisher": "Office for National Statistics", "source_id": "ons_pcon_population_by_age", - "status": "documented_unpinned", + "status": "pinned_in_ledger_facts", "url": "https://www.ons.gov.uk/peoplepopulationandcommunity/populationandmigration/populationestimates/datasets/parliamentaryconstituencymidyearpopulationestimates", "verified_on": "2026-07-22" }, @@ -433,11 +449,19 @@ "la" ], "latest_vintage": "mid-2024", - "notes": "UK-wide coverage at local-authority grain. Covers the total usual-resident population \u2014 see the population_universe_private_households adjudication.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "The pinned Ledger fact feed carries local-authority population age specs for all 361 crosswalk local authorities. Covers the total usual-resident population \u2014 see the population_universe_private_households adjudication.", "product": "Mid-year population estimates by single year of age, local authority and above (UK), rebased to Census 2021/2022.", "publisher": "Office for National Statistics (via Nomis)", "source_id": "nomis_lad_population_single_year_age", - "status": "documented_unpinned", + "status": "pinned_in_ledger_facts", "url": "https://www.nomisweb.co.uk/datasets/pestsyoala", "verified_on": "2026-07-22" }, @@ -489,11 +513,19 @@ "la" ], "latest_vintage": "UC statistics release cadence per DWP schedule (next noted release 2026-08-18 at verification)", - "notes": "Exact table definitions (households vs people, child-count bands, constituency vintage) are chosen inside the tool and must be pinned per tabulation at binding time. DWP UC official statistics cover Great Britain: Northern Ireland Universal Credit statistics are published separately by the NI Department for Communities and are not yet documented here, so NI has no declared supplier for this family. DWP counts UC claim households \u2014 see the uc_unit_vs_household_grain adjudication.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "The pinned Ledger fact feed carries DWP Stat-Xplore UC household facts for 632/650 constituencies and 350/361 local authorities, plus the four constituency child-bucket specs. DWP UC official statistics in this feed cover Great Britain; the 18 Northern Ireland constituencies and 11 Northern Ireland local authorities are signed deferred. DWP counts UC claim households \u2014 see the uc_unit_vs_household_grain adjudication.", "product": "Stat-Xplore Universal Credit statistics: households and people on UC, tabulated by Westminster parliamentary constituency or local authority, with family-type/child breakdowns built as custom tabulations.", "publisher": "Department for Work and Pensions", "source_id": "dwp_stat_xplore_uc", - "status": "documented_unpinned", + "status": "pinned_in_ledger_facts", "url": "https://stat-xplore.dwp.gov.uk/webapi/jsf/dataCatalogueExplorer.xhtml", "verified_on": "2026-07-22" }, @@ -502,11 +534,21 @@ "msoa" ], "latest_vintage": "financial year ending 2023", - "notes": "Model-based estimates built from the Family Resources Survey \u2014 see the frs_model_based_target_circularity adjudication. The BHC and AHC measures are independently modelled and not directly comparable \u2014 see the ons_bhc_ahc_noncomparable adjudication. MSOA-to-local-authority aggregation method must be declared at binding time; England and Wales only.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "Model-based estimates built from the Family Resources Survey \u2014 see the frs_model_based_target_circularity adjudication. The BHC and AHC measures are independently modelled and not directly comparable \u2014 see the ons_bhc_ahc_noncomparable adjudication. MSOA-to-local-authority aggregation is signed deferred for this run; England and Wales only.", "product": "Income estimates for small areas, England and Wales: mean household income at MSOA grain for four measures, including net equivalised disposable income before and after housing costs.", "publisher": "Office for National Statistics", + "signed_rationale": "The pinned Ledger fact feed carries ONS equivalised-income facts at MSOA grain, not local-authority grain; the local-authority mean aggregation design is deferred.", + "signed_reason_id": "msoa_mean_to_la_deferred", "source_id": "ons_small_area_income_msoa", - "status": "documented_unpinned", + "status": "signed_deferred", "url": "https://www.ons.gov.uk/peoplepopulationandcommunity/personalandhouseholdfinances/incomeandwealth/bulletins/smallareamodelbasedincomeestimates/financialyearending2023", "verified_on": "2026-07-22" }, @@ -516,11 +558,19 @@ "la" ], "latest_vintage": "Census Day 2021-03-21", - "notes": "England and Wales only; Scotland's Census 2022 and Northern Ireland's Census 2021 tenure tables need separate pinning for full-UK coverage. Census tenure classes must be crosswalked to the runtime's four tenure metrics explicitly.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "The pinned Ledger fact feed carries tenure specs for all 361 crosswalk local authorities across ONS Census 2021, NRS Census 2022, and NISRA Census 2021 publisher legs. Private-rent and social-rent tenure rows are additive over publisher-native subclasses and compile through the signed sum operation.", "product": "Census 2021 table TS054 (tenure of household), England and Wales, OA best-fit to higher geographies.", "publisher": "Office for National Statistics (via Nomis)", "source_id": "census2021_ts054_tenure", - "status": "documented_unpinned", + "status": "pinned_in_ledger_facts", "url": "https://www.nomisweb.co.uk/datasets/c2021ts054", "verified_on": "2026-07-22" }, @@ -529,11 +579,21 @@ "la" ], "latest_vintage": "release of 2026-07-22 at verification", - "notes": "The dataset landing page was verified. PIPR publishes average rent price levels, not additive rent totals, and per the PIPR QMI its local-authority granularity applies to England and Wales with different geographies for Scotland and Northern Ireland \u2014 so the runtime's additive private-rent metric needs a declared count-times-mean construction and a declared Scotland/NI treatment when the exact table is pinned.", + "ledger_fact_pin": { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "build": "build-bundle --suite uk -> build-consumer-artifact", + "facts_sha256": "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "source_commit": "33ca98a", + "source_repo": "PolicyEngine/chronicle" + }, + "notes": "PIPR publishes average rent price levels, not additive rent totals. The staged feed's LA rows are signed deferred for the 2025 local target compile because every matching England/Wales LA fact is period 2026-06 and the remaining crosswalk areas lack LA-grain facts.", "product": "Price Index of Private Rents (PIPR), UK: monthly price statistics \u2014 rent indices, annual change, and price levels.", "publisher": "Office for National Statistics", + "signed_rationale": "The pinned Ledger fact feed carries PIPR LA facts at 2026-06 for 314 crosswalk England/Wales local authorities, which are after the 2025 target period; four English crosswalk local authorities are absent, Scotland is BRMA statistical_scope grain, and Northern Ireland has no LA rows.", + "signed_reason_id": "private_rent_pipr_partial_coverage_2025", "source_id": "ons_pipr_private_rents", - "status": "documented_unpinned", + "status": "signed_deferred", "url": "https://www.ons.gov.uk/economy/inflationandpriceindices/datasets/priceindexofprivaterentsukmonthlypricestatistics", "verified_on": "2026-07-22" } @@ -542,6 +602,8 @@ "bound_in_code": "The household-side metric is computed by local_targets.compute_household_metrics today.", "documented_unpinned": "The official product exists and was verified at the recorded URL on verified_on, but no exact table, vintage, or hash is pinned; binding work pins it per family.", "pinned_in_ladder": "The product is downloaded and sha-pinned per build by the UK OA ladder artifact tool, which records every source hash in the artifact metadata; target values derive from the artifact's own sums.", - "review_required_before_binding": "The fence is a reviewed adjudication requirement enforced by the rowwise doctrine solve (local_rowwise.require_adjudicated_uk_local_binding): binding a family whose fences lack an in-force entry in local_binding_adjudications.json is refused before any solve runs." + "pinned_in_ledger_facts": "The official product's target facts are present in the sha-pinned Ledger consumer fact feed recorded on the source row.", + "review_required_before_binding": "The fence is a reviewed adjudication requirement enforced by the rowwise doctrine solve (local_rowwise.require_adjudicated_uk_local_binding): binding a family whose fences lack an in-force entry in local_binding_adjudications.json is refused before any solve runs.", + "signed_deferred": "The official product is present or documented, but this target surface does not bind it in the current compile; the source row carries signed_reason_id and signed_rationale." } } diff --git a/packages/microcosm-build/src/microcosm/build/uk/uk_national_targets.json b/packages/microcosm-build/src/microcosm/build/uk/uk_population_targets.json similarity index 86% rename from packages/microcosm-build/src/microcosm/build/uk/uk_national_targets.json rename to packages/microcosm-build/src/microcosm/build/uk/uk_population_targets.json index 9aff2983..3523e4e2 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/uk_national_targets.json +++ b/packages/microcosm-build/src/microcosm/build/uk/uk_population_targets.json @@ -1,9 +1,10 @@ { "schema_version": 1, "country": "uk", - "description": "UK national calibration contract: value-free target declarations over Chronicle facts. Selection contracts live in Microcosm per the chronicle#166 ruling (2026-08-13): Chronicle is a facts-only layer; Microcosm owns which facts are targets, how they bind to the model, and the active subset. Observed values resolve from a hash-pinned Chronicle consumer-facts artifact at build time (identity only). Compilation to TargetSpec rows, the UK mapping module, and the metric providers for the declarative counterfactual kinds are microcosm#622; the calibration seam is microcosm#623. The ledger_selector vocabulary is shared with typed LedgerTargetReference rows; this contract's dimension_values, groupby_dimension, and list-form dimensions extend it with the chronicle#164 selector semantics implemented in ledger_targets.py. groupby_dimension is the chronicle spelling of the fact's layout.groupby_dimension.", + "description": "UK population calibration contract: value-free national and local-geography target declarations over Chronicle facts. Selection contracts live in Microcosm per the chronicle#166 ruling (2026-08-13): Chronicle is a facts-only layer; Microcosm owns which facts are targets and how they bind to the model. This resource consolidates the former national and local-geography contracts into one population contract while preserving both target levels and their provenance accounting blocks. Observed values resolve from hash-pinned Chronicle consumer-facts artifacts at build time.", "allowed_value_operations": [ - "identity" + "identity", + "sum" ], "resolution_defaults": { "base_period_policy": "latest_not_after_build_base_period", @@ -709,7 +710,582 @@ "two_child_limit_year_surface": "Chronicle's 15 dwp/uc/two_child_limit/* facts are the April-2025 publication (period month 2025-04) and are the only TCL facts; there are no 2026 Ledger facts. At 12a1e028, the incumbent pins the same published numbers at {2026}, so at calibration year 2025 Ledger activates all 15 TCL targets while the incumbent drops them from the 652-row union to the 637-row effective surface; the 2026 effective surface remains 652. The same 12a1e028 refresh adds the new incumbent dwp/uc/households row. Fixture B treats the 15 TCL rows as enumerated ledger-side additions.", "geography_level_order_canonicalization": "The 9 voa.council_tax_stock.* rows use country, region order to match the rest of the contract; consumers use membership only.", "ons_terminal_sex_band_split": "Mar\u00eda ruling 2026-08-21: split the incumbent terminal sex bands into uniform five-year 85_89 bands plus 90_plus tails. The incumbent six-year 85_90 terminal rows leave ages 91+ unconstrained; Microcosm keeps the uniform five-year bands and constrains the tail. The 85_89-vs-85_90 value gap is the single-age-90 share and is a signed semantic difference." - } + }, + "scope_target_ids": [ + "obr.income_tax", + "obr.ni", + "obr.ni_employee", + "obr.ni_employer", + "obr.ni_self_employed", + "obr.vat", + "obr.fuel_duties", + "obr.capital_gains_tax", + "obr.sdlt", + "obr.attendance_allowance", + "obr.carers_allowance", + "obr.child_benefit", + "obr.council_tax", + "obr.council_tax_england", + "obr.council_tax_scotland", + "obr.council_tax_wales", + "obr.domestic_rates", + "obr.esa", + "obr.housing_benefit", + "obr.jobseekers_allowance", + "obr.pension_credit", + "obr.pip", + "obr.state_pension", + "obr.statutory_maternity_pay", + "obr.tv_licence_fee", + "obr.universal_credit_in_cap", + "obr.universal_credit_outside_cap", + "obr.winter_fuel_allowance", + "isc.private_school_students", + "hmrc.salary_sacrifice.it_relief_basic_rate", + "hmrc.salary_sacrifice.it_relief_higher_rate", + "hmrc.salary_sacrifice.it_relief_additional_rate", + "hmrc.salary_sacrifice.nics_relief_employee", + "hmrc.salary_sacrifice.nics_relief_employer", + "hmrc.salary_sacrifice.users_total", + "hmrc.salary_sacrifice.users_below_cap", + "hmrc.salary_sacrifice.users_above_cap", + "hmrc.spi.employment_income.amount_by_total_income_band", + "hmrc.spi.employment_income.count_by_total_income_band", + "hmrc.spi.self_employment_income.amount_by_total_income_band", + "hmrc.spi.self_employment_income.count_by_total_income_band", + "hmrc.spi.dividend_income.amount_by_total_income_band", + "hmrc.spi.dividend_income.count_by_total_income_band", + "hmrc.spi.property_income.amount_by_total_income_band", + "hmrc.spi.property_income.count_by_total_income_band", + "hmrc.spi.private_pension_income.amount_by_total_income_band", + "hmrc.spi.private_pension_income.count_by_total_income_band", + "hmrc.spi.state_pension.amount_by_total_income_band", + "hmrc.spi.state_pension.count_by_total_income_band", + "hmrc.cgt.taxpayers_total", + "hmrc.cgt.gains_total", + "dwp.benefit_cap.capped_households", + "dwp.pip.daily_living_standard_claimants", + "dwp.pip.daily_living_enhanced_claimants", + "dwp.esa_claimants", + "dwp.esa_contrib_claimants", + "dwp.esa_income_claimants", + "dwp.jsa_claimants", + "dwp.uc.households_children_1", + "dwp.uc.households_children_2", + "dwp.uc.households_children_3", + "dwp.uc.households_children_4", + "dwp.uc.households_children_5_or_more", + "dwp.uc.households_single_no_children", + "dwp.uc.households_single_with_children", + "dwp.uc.households_couple_no_children", + "dwp.uc.households_couple_with_children", + "dwp.uc.payment_distribution_single", + "dwp.uc.payment_distribution_lone_parent", + "dwp.uc.payment_distribution_couple_no_children", + "dwp.uc.payment_distribution_couple_with_children", + "dwp.uc.scotland_households_child_under_1", + "dwp.uc.two_child_limit.households_affected", + "dwp.uc.two_child_limit.children_affected", + "dwp.uc.two_child_limit.children_in_affected_households", + "dwp.uc.two_child_limit.households_3_children", + "dwp.uc.two_child_limit.children_in_3_children_households", + "dwp.uc.two_child_limit.households_4_children", + "dwp.uc.two_child_limit.children_in_4_children_households", + "dwp.uc.two_child_limit.households_5_children", + "dwp.uc.two_child_limit.children_in_5_children_households", + "dwp.uc.two_child_limit.households_6_plus_children", + "dwp.uc.two_child_limit.children_in_6_plus_children_households", + "dwp.uc.two_child_limit.households_claimant_pip", + "dwp.uc.two_child_limit.children_claimant_pip", + "dwp.uc.two_child_limit.households_disabled_child_element", + "dwp.uc.two_child_limit.children_disabled_child_element", + "ons.population.uk_total", + "ons.population.age_0_9_by_region", + "ons.population.age_10_19_by_region", + "ons.population.age_20_29_by_region", + "ons.population.age_30_39_by_region", + "ons.population.age_40_49_by_region", + "ons.population.age_50_59_by_region", + "ons.population.age_60_69_by_region", + "ons.population.age_70_79_by_region", + "ons.population.age_80_89_by_region", + "ons.population.female_0_4", + "ons.population.female_10_14", + "ons.population.female_15_19", + "ons.population.female_20_24", + "ons.population.female_25_29", + "ons.population.female_30_34", + "ons.population.female_35_39", + "ons.population.female_40_44", + "ons.population.female_45_49", + "ons.population.female_50_54", + "ons.population.female_55_59", + "ons.population.female_5_9", + "ons.population.female_60_64", + "ons.population.female_65_69", + "ons.population.female_70_74", + "ons.population.female_75_79", + "ons.population.female_80_84", + "ons.population.female_85_89", + "ons.population.female_90_plus", + "ons.population.male_0_4", + "ons.population.male_10_14", + "ons.population.male_15_19", + "ons.population.male_20_24", + "ons.population.male_25_29", + "ons.population.male_30_34", + "ons.population.male_35_39", + "ons.population.male_40_44", + "ons.population.male_45_49", + "ons.population.male_50_54", + "ons.population.male_55_59", + "ons.population.male_5_9", + "ons.population.male_60_64", + "ons.population.male_65_69", + "ons.population.male_70_74", + "ons.population.male_75_79", + "ons.population.male_80_84", + "ons.population.male_85_89", + "ons.population.male_90_plus", + "ons.population.scotland_children_under_16", + "ons.population.scotland_babies_under_1", + "ons.population.scotland_households_3plus_children", + "ons.household_composition.lone_households_under_65", + "ons.household_composition.lone_households_over_65", + "ons.household_composition.unrelated_adult_households", + "ons.household_composition.couple_no_children_households", + "ons.household_composition.couple_under_3_children_households", + "ons.household_composition.couple_3_plus_children_households", + "ons.household_composition.couple_non_dependent_children_only_households", + "ons.household_composition.lone_parent_dependent_children_households", + "ons.household_composition.lone_parent_non_dependent_children_households", + "ons.household_composition.multi_family_households", + "voa.council_tax_stock.band_a", + "scotgov.council_tax_stock.band_a", + "voa.council_tax_stock.band_b", + "scotgov.council_tax_stock.band_b", + "voa.council_tax_stock.band_c", + "scotgov.council_tax_stock.band_c", + "voa.council_tax_stock.band_d", + "scotgov.council_tax_stock.band_d", + "voa.council_tax_stock.band_e", + "scotgov.council_tax_stock.band_e", + "voa.council_tax_stock.band_f", + "scotgov.council_tax_stock.band_f", + "voa.council_tax_stock.band_g", + "scotgov.council_tax_stock.band_g", + "voa.council_tax_stock.band_h", + "scotgov.council_tax_stock.band_h", + "voa.council_tax_stock.total", + "scotgov.council_tax_stock.total", + "scotgov.scottish_child_payment_spending", + "ons.savings_interest_income", + "ons.public_sector_employment", + "ons.land.land_value", + "ons.land.household_land_value", + "ons.land.corporate_land_value", + "slc.repayments.devolved_total", + "slc.repayments.england_total_higher_education", + "slc.repayments.england_plan_1", + "slc.repayments.england_plan_2", + "slc.repayments.england_postgraduate", + "slc.repayments.england_plan_5", + "slc.borrowers.plan_2_above_threshold", + "slc.borrowers.plan_2_liable", + "slc.borrowers.plan_5_above_threshold", + "slc.borrowers.plan_5_liable", + "slc.support.maintenance_loan_recipients", + "slc.support.maintenance_loan_spend", + "slc.support.parents_learning_allowance_recipients", + "slc.support.parents_learning_allowance_spend", + "slc.support.adult_dependants_grant_recipients", + "slc.support.adult_dependants_grant_spend", + "dwp.uc.households" + ] + }, + "profile_parity": { + "source_profile": "PolicyEngine/chronicle:policyengine_chronicle/target_profiles/uk_local_geography.json", + "source_profile_commit": "8ed39e4e65620c990b09f780edffe1e0782c8001", + "source_profile_sha256": "c797211dd3bff5e735b90950aad0c87a6cadb56294e8836f398c72f1bab0281d", + "source_schema_version": "policyengine_ledger.target_profile.v1", + "source_profile_id": "uk_local_geography", + "source_target_count": 25, + "contract_target_count": 25, + "corrected_rows": 25, + "corrected": [ + { + "target_id": "hmrc.self_employment_income.amount", + "profile_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_amount" + }, + "corrected_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "reason": "SPI publishes count and mean but no amount measure; the local reference compiler resolves amount as count_x_mean per area." + }, + { + "target_id": "hmrc.self_employment_income.count", + "profile_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count" + }, + "corrected_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "reason": "Narrowed to the wave-3 SPI local-geography record-set specs so constituency and local-authority rows resolve by area pin." + }, + { + "target_id": "hmrc.employment_income.amount", + "profile_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_amount" + }, + "corrected_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "reason": "SPI publishes count and mean but no amount measure; the local reference compiler resolves amount as count_x_mean per area." + }, + { + "target_id": "hmrc.employment_income.count", + "profile_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count" + }, + "corrected_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "reason": "Narrowed to the wave-3 SPI local-geography record-set specs so constituency and local-authority rows resolve by area pin." + }, + { + "target_id": "ons.age.0_10", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.10_20", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.20_30", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.30_40", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.40_50", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.50_60", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.60_70", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "ons.age.70_80", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "population" + }, + "corrected_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1" + }, + "reason": "Age rows must select the band-resolved nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs; the original population selector was band-blind and source-pinned." + }, + { + "target_id": "dwp.uc.households_by_area", + "profile_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households" + }, + "corrected_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ] + }, + "reason": "Narrowed to the UC household local-geography record-set specs so area pins select the intended constituency or local-authority row.", + "renamed_from": "dwp.universal_credit.households" + }, + { + "target_id": "dwp.uc.households_by_area_children_0", + "profile_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_0_children" + }, + "corrected_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1" + }, + "reason": "UC child-bucket rows use the corrected measure id and bucket-specific record-set spec; unknown/not_available buckets are excluded.", + "renamed_from": "dwp.universal_credit.households.0_children" + }, + { + "target_id": "dwp.uc.households_by_area_children_1", + "profile_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_1_child" + }, + "corrected_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1" + }, + "reason": "UC child-bucket rows use the corrected measure id and bucket-specific record-set spec; unknown/not_available buckets are excluded.", + "renamed_from": "dwp.universal_credit.households.1_child" + }, + { + "target_id": "dwp.uc.households_by_area_children_2", + "profile_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_2_children" + }, + "corrected_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1" + }, + "reason": "UC child-bucket rows use the corrected measure id and bucket-specific record-set spec; unknown/not_available buckets are excluded.", + "renamed_from": "dwp.universal_credit.households.2_children" + }, + { + "target_id": "dwp.uc.households_by_area_children_3plus", + "profile_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_3plus_children" + }, + "corrected_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1" + }, + "reason": "UC child-bucket rows use the corrected measure id and bucket-specific record-set spec; unknown/not_available buckets are excluded.", + "renamed_from": "dwp.universal_credit.households.3plus_children" + }, + { + "target_id": "ons.equiv_net_income_bhc", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_before_housing_costs" + }, + "corrected_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_before_housing_costs", + "record_set_spec_id": "uk.local_geography.msoa_income.equivalised_bhc.v1" + }, + "reason": "Corrected to the MSOA-grain equivalised-income record-set spec; local-authority aggregation is signed out by the area compiler until the mean aggregation design lands." + }, + { + "target_id": "ons.equiv_net_income_ahc", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_after_housing_costs" + }, + "corrected_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_after_housing_costs", + "record_set_spec_id": "uk.local_geography.msoa_income.equivalised_ahc.v1" + }, + "reason": "Corrected to the MSOA-grain equivalised-income record-set spec; local-authority aggregation is signed out by the area compiler until the mean aggregation design lands." + }, + { + "target_id": "ons.equiv_housing_costs", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_housing_costs" + }, + "corrected_selector": { + "source_name": "ons", + "source_measure_id": [ + "equivalised_net_income_before_housing_costs", + "equivalised_net_income_after_housing_costs" + ], + "record_set_spec_id": [ + "uk.local_geography.msoa_income.equivalised_bhc.v1", + "uk.local_geography.msoa_income.equivalised_ahc.v1" + ] + }, + "reason": "No publisher housing-cost measure exists; the binding remains the BHC minus AHC value_expression over the corrected MSOA income measures." + }, + { + "target_id": "ons.tenure.owned_outright", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "owned_outright_households" + }, + "corrected_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1" + }, + "reason": "Tenure rows use the household measure and tenure-specific nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs instead of stale per-measure ids." + }, + { + "target_id": "ons.tenure.owned_mortgage", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "owned_with_mortgage_households" + }, + "corrected_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1" + }, + "reason": "Tenure rows use the household measure and tenure-specific nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs instead of stale per-measure ids." + }, + { + "target_id": "ons.tenure.private_rent", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "private_rent_households" + }, + "corrected_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1" + }, + "reason": "Tenure rows use the household measure and tenure-specific nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs instead of stale per-measure ids." + }, + { + "target_id": "ons.tenure.social_rent", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "social_rent_households" + }, + "corrected_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1" + }, + "reason": "Tenure rows use the household measure and tenure-specific nation-neutral record-set spec across ONS, NRS, and NISRA publisher legs instead of stale per-measure ids." + }, + { + "target_id": "ons.rent.private_rent", + "profile_selector": { + "source_name": "ons", + "source_measure_id": "private_rent" + }, + "corrected_selector": { + "source_name": "ons", + "source_measure_id": "private_rent", + "record_set_spec_id": "uk.local_geography.private_rent.average_by_area.v1" + }, + "reason": "Narrowed to the private-rent local-area record-set spec; non-English/masked absences are signed by the area compiler." + } + ], + "scope_target_ids": [ + "hmrc.self_employment_income.amount", + "hmrc.self_employment_income.count", + "hmrc.employment_income.amount", + "hmrc.employment_income.count", + "ons.age.0_10", + "ons.age.10_20", + "ons.age.20_30", + "ons.age.30_40", + "ons.age.40_50", + "ons.age.50_60", + "ons.age.60_70", + "ons.age.70_80", + "dwp.uc.households_by_area", + "dwp.uc.households_by_area_children_0", + "dwp.uc.households_by_area_children_1", + "dwp.uc.households_by_area_children_2", + "dwp.uc.households_by_area_children_3plus", + "ons.equiv_net_income_bhc", + "ons.equiv_net_income_ahc", + "ons.equiv_housing_costs", + "ons.tenure.owned_outright", + "ons.tenure.owned_mortgage", + "ons.tenure.private_rent", + "ons.tenure.social_rent", + "ons.rent.private_rent" + ] }, "targets": [ { @@ -10011,6 +10587,1059 @@ "source_name": "dwp", "source_concept": "dwp.uc_benefit_units" } + }, + { + "target_id": "hmrc.self_employment_income.amount", + "family": "hmrc", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.income.self_employment.amount", + "filters": [ + { + "concept": "uk.tax.income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "hmrc/self_employment_income/amount", + "value_variable": "self_employment_income", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "axiom": { + "metric_name": "hmrc/self_employment_income/amount", + "status": "pending", + "value_rule": "uk.income.self_employment.amount" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "self_employment_income_count", + "self_employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "selector_note": "No Chronicle amount fact exists; count_x_mean consumes the ordered count and mean facts from the same SPI area record-set spec." + }, + { + "target_id": "hmrc.self_employment_income.count", + "family": "hmrc", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.income.self_employment.amount", + "operator": "!=", + "value": 0 + }, + { + "concept": "uk.tax.income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "hmrc/self_employment_income/count", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "self_employment_income", + "operator": "!=", + "value": 0 + }, + { + "variable": "income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "axiom": { + "metric_name": "hmrc/self_employment_income/count", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "self_employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + } + }, + { + "target_id": "hmrc.employment_income.amount", + "family": "hmrc", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.income.employment.amount", + "filters": [ + { + "concept": "uk.tax.income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "hmrc/employment_income/amount", + "value_variable": "employment_income", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "axiom": { + "metric_name": "hmrc/employment_income/amount", + "status": "pending", + "value_rule": "uk.income.employment.amount" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean" + ], + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + }, + "selector_note": "No Chronicle amount fact exists; count_x_mean consumes the ordered count and mean facts from the same SPI area record-set spec." + }, + { + "target_id": "hmrc.employment_income.count", + "family": "hmrc", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.income.employment.amount", + "operator": "!=", + "value": 0 + }, + { + "concept": "uk.tax.income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "hmrc/employment_income/count", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "employment_income", + "operator": "!=", + "value": 0 + }, + { + "variable": "income_tax", + "operator": ">", + "value": 0 + } + ] + }, + "axiom": { + "metric_name": "hmrc/employment_income/count", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": "employment_income_count", + "record_set_spec_id": [ + "uk.local_geography.spi_income.by_constituency.v1", + "uk.local_geography.spi_income.by_local_authority.v1" + ] + } + }, + { + "target_id": "ons.age.0_10", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 0, + "upper": 10 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/0_10", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 0, + "upper": 10 + } + ] + }, + "axiom": { + "metric_name": "age/0_10", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1" + } + }, + { + "target_id": "ons.age.10_20", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 10, + "upper": 20 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/10_20", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 10, + "upper": 20 + } + ] + }, + "axiom": { + "metric_name": "age/10_20", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_10_20.v1" + } + }, + { + "target_id": "ons.age.20_30", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 20, + "upper": 30 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/20_30", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 20, + "upper": 30 + } + ] + }, + "axiom": { + "metric_name": "age/20_30", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_20_30.v1" + } + }, + { + "target_id": "ons.age.30_40", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 30, + "upper": 40 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/30_40", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 30, + "upper": 40 + } + ] + }, + "axiom": { + "metric_name": "age/30_40", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_30_40.v1" + } + }, + { + "target_id": "ons.age.40_50", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 40, + "upper": 50 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/40_50", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 40, + "upper": 50 + } + ] + }, + "axiom": { + "metric_name": "age/40_50", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_40_50.v1" + } + }, + { + "target_id": "ons.age.50_60", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 50, + "upper": 60 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/50_60", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 50, + "upper": 60 + } + ] + }, + "axiom": { + "metric_name": "age/50_60", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_50_60.v1" + } + }, + { + "target_id": "ons.age.60_70", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 60, + "upper": 70 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/60_70", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 60, + "upper": 70 + } + ] + }, + "axiom": { + "metric_name": "age/60_70", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_60_70.v1" + } + }, + { + "target_id": "ons.age.70_80", + "family": "ons_population", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "person", + "map_to": "household", + "concept": "uk.person.count", + "filters": [ + { + "concept": "uk.demographics.age", + "lower": 70, + "upper": 80 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "age/70_80", + "value_variable": "person_count", + "from_entity": "person", + "map_to": "household", + "filters": [ + { + "variable": "age", + "lower": 70, + "upper": 80 + } + ] + }, + "axiom": { + "metric_name": "age/70_80", + "status": "pending", + "value_rule": "uk.person.count" + } + }, + "ledger_selector": { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_70_80.v1" + } + }, + { + "target_id": "dwp.uc.households_by_area", + "family": "dwp_universal_credit", + "geography_levels": [ + "constituency", + "local_authority" + ], + "measurement": { + "entity": "benunit", + "map_to": "household", + "concept": "uk.benefit_unit.count", + "filters": [ + { + "concept": "uk.benefits.universal_credit.amount", + "operator": ">", + "value": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "uc_households", + "value_variable": "benunit_count", + "from_entity": "benunit", + "map_to": "household", + "filters": [ + { + "variable": "universal_credit", + "operator": ">", + "value": 0 + } + ] + }, + "axiom": { + "metric_name": "uc_households", + "status": "pending", + "value_rule": "uk.benefit_unit.count" + } + }, + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households", + "record_set_spec_id": [ + "uk.local_geography.uc_households.by_constituency.v1", + "uk.local_geography.uc_households.by_local_authority.v1" + ] + } + }, + { + "target_id": "dwp.uc.households_by_area_children_0", + "family": "dwp_universal_credit", + "geography_levels": [ + "constituency" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.benefits.universal_credit.household_receives", + "equals": true + }, + { + "concept": "uk.household.children", + "equals": 0 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "uc_hh_0_children", + "value_variable": "household_count" + }, + "axiom": { + "metric_name": "uc_hh_0_children", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_0.v1" + } + }, + { + "target_id": "dwp.uc.households_by_area_children_1", + "family": "dwp_universal_credit", + "geography_levels": [ + "constituency" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.benefits.universal_credit.household_receives", + "equals": true + }, + { + "concept": "uk.household.children", + "equals": 1 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "uc_hh_1_child", + "value_variable": "household_count" + }, + "axiom": { + "metric_name": "uc_hh_1_child", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_1.v1" + } + }, + { + "target_id": "dwp.uc.households_by_area_children_2", + "family": "dwp_universal_credit", + "geography_levels": [ + "constituency" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.benefits.universal_credit.household_receives", + "equals": true + }, + { + "concept": "uk.household.children", + "equals": 2 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "uc_hh_2_children", + "value_variable": "household_count" + }, + "axiom": { + "metric_name": "uc_hh_2_children", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_2.v1" + } + }, + { + "target_id": "dwp.uc.households_by_area_children_3plus", + "family": "dwp_universal_credit", + "geography_levels": [ + "constituency" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.benefits.universal_credit.household_receives", + "equals": true + }, + { + "concept": "uk.household.children", + "lower": 3 + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "uc_hh_3plus_children", + "value_variable": "household_count" + }, + "axiom": { + "metric_name": "uc_hh_3plus_children", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1" + } + }, + { + "target_id": "ons.equiv_net_income_bhc", + "family": "ons_income", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.equivalised_net_income_bhc" + }, + "bindings": { + "policyengine": { + "metric_name": "ons/equiv_net_income_bhc", + "value_variable": "equiv_hbai_household_net_income" + }, + "axiom": { + "metric_name": "ons/equiv_net_income_bhc", + "status": "pending", + "value_rule": "uk.household.equivalised_net_income_bhc" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_before_housing_costs", + "record_set_spec_id": "uk.local_geography.msoa_income.equivalised_bhc.v1" + }, + "selector_note": "Facts are MSOA-grain mean-valued targets; local-authority rows are signed deferrals in the local reference compiler." + }, + { + "target_id": "ons.equiv_net_income_ahc", + "family": "ons_income", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.equivalised_net_income_ahc" + }, + "bindings": { + "policyengine": { + "metric_name": "ons/equiv_net_income_ahc", + "value_variable": "equiv_hbai_household_net_income_ahc" + }, + "axiom": { + "metric_name": "ons/equiv_net_income_ahc", + "status": "pending", + "value_rule": "uk.household.equivalised_net_income_ahc" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "equivalised_net_income_after_housing_costs", + "record_set_spec_id": "uk.local_geography.msoa_income.equivalised_ahc.v1" + }, + "selector_note": "Facts are MSOA-grain mean-valued targets; local-authority rows are signed deferrals in the local reference compiler." + }, + { + "target_id": "ons.equiv_housing_costs", + "family": "ons_income", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.equivalised_housing_costs" + }, + "bindings": { + "policyengine": { + "metric_name": "ons/equiv_housing_costs", + "value_expression": "equiv_hbai_household_net_income - equiv_hbai_household_net_income_ahc" + }, + "axiom": { + "metric_name": "ons/equiv_housing_costs", + "status": "pending", + "value_rule": "uk.household.equivalised_housing_costs" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": [ + "equivalised_net_income_before_housing_costs", + "equivalised_net_income_after_housing_costs" + ], + "record_set_spec_id": [ + "uk.local_geography.msoa_income.equivalised_bhc.v1", + "uk.local_geography.msoa_income.equivalised_ahc.v1" + ] + }, + "selector_note": "Computed BHC-AHC quantity; no standalone publisher measure exists." + }, + { + "target_id": "ons.tenure.owned_outright", + "family": "ons_housing", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.household.tenure", + "equals": "owned_outright" + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "tenure/owned_outright", + "value_variable": "household_count", + "filters": [ + { + "variable": "tenure_type", + "equals": "OWNED_OUTRIGHT" + } + ] + }, + "axiom": { + "metric_name": "tenure/owned_outright", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_outright.v1" + } + }, + { + "target_id": "ons.tenure.owned_mortgage", + "family": "ons_housing", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.household.tenure", + "equals": "owned_with_mortgage" + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "tenure/owned_mortgage", + "value_variable": "household_count", + "filters": [ + { + "variable": "tenure_type", + "equals": "OWNED_WITH_MORTGAGE" + } + ] + }, + "axiom": { + "metric_name": "tenure/owned_mortgage", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.owned_mortgage.v1" + } + }, + { + "target_id": "ons.tenure.private_rent", + "family": "ons_housing", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.household.tenure", + "equals": "private_rent" + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "tenure/private_rent", + "value_variable": "household_count", + "filters": [ + { + "variable": "tenure_type", + "equals": "RENT_PRIVATELY" + } + ] + }, + "axiom": { + "metric_name": "tenure/private_rent", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1" + } + }, + { + "target_id": "ons.tenure.social_rent", + "family": "ons_housing", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "household", + "concept": "uk.household.count", + "filters": [ + { + "concept": "uk.household.tenure", + "in": [ + "rent_from_council", + "rent_from_housing_association" + ] + } + ] + }, + "bindings": { + "policyengine": { + "metric_name": "tenure/social_rent", + "value_variable": "household_count", + "filters": [ + { + "variable": "tenure_type", + "in": [ + "RENT_FROM_COUNCIL", + "RENT_FROM_HA" + ] + } + ] + }, + "axiom": { + "metric_name": "tenure/social_rent", + "status": "pending", + "value_rule": "uk.household.count" + } + }, + "ledger_selector": { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.social_rent.v1" + } + }, + { + "target_id": "ons.rent.private_rent", + "family": "ons_housing", + "geography_levels": [ + "local_authority" + ], + "measurement": { + "entity": "benunit", + "map_to": "household", + "concept": "uk.housing.private_rent.amount" + }, + "bindings": { + "policyengine": { + "metric_name": "rent/private_rent", + "value_variable": "benunit_rent", + "from_entity": "benunit", + "map_to": "household", + "filters": [ + { + "variable": "tenure_type", + "equals": "RENT_PRIVATELY" + } + ] + }, + "axiom": { + "metric_name": "rent/private_rent", + "status": "pending", + "value_rule": "uk.housing.private_rent.amount" + } + }, + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "private_rent", + "record_set_spec_id": "uk.local_geography.private_rent.average_by_area.v1" + }, + "selector_note": "Private rent is a price-level target; non-English and masked rows are signed deferrals in the local reference compiler." } ] } 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 dfadc1dc..4d0ba469 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py @@ -251,7 +251,9 @@ from microcosm.build.uk_runtime.ledger_targets import ( UKFrameTargetAdapter, UKLedgerTargetCompilation, + compile_uk_local_target_registry, compile_uk_target_registry, + load_uk_local_area_crosswalk, materialize_uk_ledger_targets, ) from microcosm.build.uk_runtime.local_doctrine import ( @@ -728,6 +730,8 @@ "classify_hmrc_replay_targets", "compute_household_metrics", "constituency_household_targets", + "compile_uk_local_target_registry", + "load_uk_local_area_crosswalk", "create_uk_spi_support_tables", "derive_council_tax", "derive_current_education", 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 48347853..f2fd7f77 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 @@ -51,9 +51,18 @@ ledger_compile_parity_gate, nonnegative_columns_gate, support_gate, + target_surface_gate, weights_audit_gate, ) from microcosm.build.uk_runtime.frs_take_up import uk_take_up_signal_gate +from microcosm.build.uk_runtime.ledger_targets import ( + LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE, + align_uk_local_registry_parity_fixture, +) +from microcosm.build.uk_runtime.local_targets import ( + load_uk_local_geography_contract, + metric_names, +) from microcosm.build.uk_runtime.national_frame import _uk_gate_surface from microcosm.build.uk_runtime.release_input_coverage import ( assert_uk_release_input_coverage_build_stages, @@ -119,6 +128,9 @@ class UKGateBinding: evaluator error. Fail-closed empty by default. artifact_keys: Context artifact keys the gate needs; missing keys resolve to ``evidence_absent`` before evaluation. + artifact_selector: Optional parameter-dependent override of + ``artifact_keys`` for bindings whose evidence artifact follows a + declared parameter. needs_frame: Whether the gate reads the phase frame. frame_predicate: Optional parameter-dependent override of ``needs_frame`` for bindings that serve more than one declared @@ -135,12 +147,15 @@ class UKGateBinding: evaluator: Callable[[EvidenceContext, Mapping[str, Any]], GateResult] parameter_keys: frozenset[str] = frozenset() artifact_keys: frozenset[str] = frozenset() + artifact_selector: Callable[[Mapping[str, Any]], frozenset[str]] | None = None needs_frame: bool = True frame_predicate: Callable[[Mapping[str, Any]], bool] | None = None legacy_name: str | None = None evidence: Callable[[EvidenceContext, Mapping[str, Any]], object] | None = None def required_artifacts(self, parameters: Mapping[str, Any]) -> frozenset[str]: + if self.artifact_selector is not None: + return self.artifact_selector(parameters) return self.artifact_keys def requires_frame(self, parameters: Mapping[str, Any]) -> bool: @@ -644,6 +659,12 @@ def _evaluate_export_surface( def _evaluate_target_surface( context: EvidenceContext, parameters: Mapping[str, Any] ) -> GateResult: + if parameters.get("expected") == "local_default_surface": + return _evaluate_local_default_target_surface(context, parameters) + # National path: declared parameters forward to the gate unchanged, so an + # entry that later declares reviewed exclusions keeps working and an + # unknown parameter still fails closed inside the gate call (PR #795 + # review finding 4 restored the forward the local branch had dropped). parity = context.artifacts["parity_evidence"] return uk_target_surface_gate( parity.candidate_targets, @@ -652,6 +673,191 @@ def _evaluate_target_surface( ) +def _evaluate_local_default_target_surface( + context: EvidenceContext, parameters: Mapping[str, Any] +) -> GateResult: + registry_artifact = _ledger_compile_parity_registry_artifact(parameters) + if registry_artifact != "uk_ledger_compiled_local_registries": + raise ValueError( + "local_default_surface target_surface requires " + "registry_artifact='uk_ledger_compiled_local_registries'." + ) + target_period = parameters["target_period"] + registry = _ledger_compile_parity_registry( + context, + target_period, + registry_artifact=registry_artifact, + ) + crosswalk_resource = str(parameters["crosswalk_resource"]) + membership_resource = str(parameters["membership_resource"]) + reviewed = dict(_local_default_reviewed_exclusions(membership_resource)) + reviewed.update(_ladder_derived_households_exclusions(crosswalk_resource)) + return target_surface_gate( + _local_default_candidate_surface(registry), + _local_default_expected_surface(crosswalk_resource), + candidate_name="UK local compiled Ledger surface", + reference_name="UK local default metric surface", + reviewed_exclusions=reviewed, + ) + + +_LADDER_DERIVED_HOUSEHOLDS_RATIONALE = ( + "census_households is ladder-derived: the households column binds from the " + "OA-ladder artifact's census household counts (the ladder sha is its " + "provenance), never from Chronicle facts, so no ledger reference exists by " + "design. See uk_local_target_census.json (source status pinned_in_ladder) " + "and microcosm#542, which bound the family from the ladder." +) + + +def _ladder_derived_households_exclusions(crosswalk_resource: str) -> dict[str, str]: + crosswalk = json.loads( + files("microcosm.build.uk").joinpath(crosswalk_resource).read_text() + ) + levels = crosswalk.get("levels") + if not isinstance(levels, Mapping): + raise ValueError(f"{crosswalk_resource} must expose levels.") + reviewed: dict[str, str] = {} + for geography_level in ("constituency", "local_authority"): + level = levels.get(geography_level) + if not isinstance(level, Mapping): + raise ValueError(f"{crosswalk_resource} must expose {geography_level!r}.") + for area_id in level.get("area_ids", ()): + reviewed[f"households@{area_id}"] = _LADDER_DERIVED_HOUSEHOLDS_RATIONALE + return reviewed + + +def _target_surface_required_artifacts( + parameters: Mapping[str, Any], +) -> frozenset[str]: + if parameters.get("expected") == "local_default_surface": + return frozenset({_ledger_compile_parity_registry_artifact(parameters)}) + return frozenset({"parity_evidence"}) + + +def _target_surface_evidence( + context: EvidenceContext, parameters: Mapping[str, Any] +) -> object | None: + if parameters.get("expected") != "local_default_surface": + return None + registry_artifact = _ledger_compile_parity_registry_artifact(parameters) + target_period = parameters["target_period"] + registry = _ledger_compile_parity_registry( + context, + target_period, + registry_artifact=registry_artifact, + ) + crosswalk_resource = str(parameters["crosswalk_resource"]) + membership_resource = str(parameters["membership_resource"]) + crosswalk_text = ( + files("microcosm.build.uk").joinpath(crosswalk_resource).read_text() + ) + membership_text = ( + files("microcosm.build.uk").joinpath(membership_resource).read_text() + ) + candidate_targets = sorted(_local_default_candidate_surface(registry)) + reference_targets = sorted(_local_default_expected_surface(crosswalk_resource)) + reviewed_exclusions = _local_default_reviewed_exclusions(membership_resource) + return { + "expected": "local_default_surface", + "registry_artifact": registry_artifact, + "registry_count": len(registry) if hasattr(registry, "__len__") else None, + "target_period": target_period, + "crosswalk_resource": crosswalk_resource, + "crosswalk_sha256": hashlib.sha256(crosswalk_text.encode("utf-8")).hexdigest(), + "membership_resource": membership_resource, + "membership_sha256": hashlib.sha256( + membership_text.encode("utf-8") + ).hexdigest(), + "candidate_targets": candidate_targets, + "reference_targets": reference_targets, + "reviewed_exclusions": { + name: reviewed_exclusions[name] for name in sorted(reviewed_exclusions) + }, + } + + +def _local_default_candidate_surface(registry: object) -> frozenset[str]: + targets: set[str] = set() + for spec in registry: + name = str(spec.name) + if "@" not in name: + raise ValueError( + f"UK local compiled target {name!r} is missing the @ area suffix." + ) + area_id = name.split("@", 1)[1] + measure = str(spec.measure) + if not measure: + raise ValueError(f"UK local compiled target {name!r} has no measure.") + targets.add(f"{measure}@{area_id}") + return frozenset(targets) + + +def _local_default_expected_surface(crosswalk_resource: str) -> frozenset[str]: + crosswalk = json.loads( + files("microcosm.build.uk").joinpath(crosswalk_resource).read_text() + ) + levels = crosswalk.get("levels") + if not isinstance(levels, Mapping): + raise ValueError(f"{crosswalk_resource} must expose levels.") + expected: set[str] = set() + for area_type, geography_level in ( + ("constituency", "constituency"), + ("la", "local_authority"), + ): + level = levels.get(geography_level) + if not isinstance(level, Mapping): + raise ValueError(f"{crosswalk_resource} must expose {geography_level!r}.") + area_ids = level.get("area_ids") + if not isinstance(area_ids, (list, tuple)): + raise ValueError( + f"{crosswalk_resource} level {geography_level!r} must expose area_ids." + ) + for metric_name in metric_names(area_type): + expected.update(f"{metric_name}@{area_id}" for area_id in area_ids) + return frozenset(expected) + + +def _local_default_reviewed_exclusions( + membership_resource: str, +) -> dict[str, str]: + membership = json.loads( + files("microcosm.build.uk").joinpath(membership_resource).read_text() + ) + metric_by_target_id = _local_metric_by_target_id() + reviewed: dict[str, str] = {} + for deferral in membership.get("signed_deferrals", ()): + if not isinstance(deferral, Mapping): + continue + target_id = str(deferral.get("target_id", "")) + metric_name = metric_by_target_id.get(target_id) + if metric_name is None: + continue + rationale = str(deferral.get("rationale", "")) + for area_id in deferral.get("area_ids", ()): + reviewed[f"{metric_name}@{area_id}"] = rationale + return reviewed + + +def _local_metric_by_target_id() -> dict[str, str]: + contract = load_uk_local_geography_contract() + mapping: dict[str, str] = {} + for target in contract.get("targets", ()): + if not isinstance(target, Mapping): + continue + target_id = target.get("target_id") + bindings = target.get("bindings") + if not isinstance(target_id, str) or not isinstance(bindings, Mapping): + continue + policyengine = bindings.get("policyengine") + if not isinstance(policyengine, Mapping): + continue + metric_name = policyengine.get("metric_name") + if isinstance(metric_name, str): + mapping[target_id] = metric_name + return mapping + + def _evaluate_target_fit( context: EvidenceContext, parameters: Mapping[str, Any] ) -> GateResult: @@ -756,9 +962,7 @@ def _evaluate_ledger_compile_parity( context: EvidenceContext, parameters: Mapping[str, Any] ) -> GateResult: fixture_resource = str(parameters["fixture_resource"]) - fixture = json.loads( - files("microcosm.build.uk").joinpath(fixture_resource).read_text() - ) + fixture = _load_ledger_compile_parity_fixture(fixture_resource) signed_differences = parameters.get("signed_differences", ()) signed_resource = parameters.get("signed_differences_resource") if signed_resource is not None: @@ -767,20 +971,39 @@ def _evaluate_ledger_compile_parity( )["differences"] target_period = parameters["target_period"] return ledger_compile_parity_gate( - _ledger_compile_parity_registry(context, target_period), + _ledger_compile_parity_registry( + context, + target_period, + registry_artifact=_ledger_compile_parity_registry_artifact(parameters), + ), fixture, signed_differences=signed_differences, ) +def _load_ledger_compile_parity_fixture(fixture_resource: str) -> dict[str, Any]: + fixture = json.loads( + files("microcosm.build.uk").joinpath(fixture_resource).read_text() + ) + if fixture_resource == LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE: + return align_uk_local_registry_parity_fixture(fixture) + return fixture + + def _ledger_compile_parity_evidence( context: EvidenceContext, parameters: Mapping[str, Any] ) -> object: target_period = parameters["target_period"] - registry = _ledger_compile_parity_registry(context, target_period) + registry_artifact = _ledger_compile_parity_registry_artifact(parameters) + registry = _ledger_compile_parity_registry( + context, + target_period, + registry_artifact=registry_artifact, + ) fixture_resource = str(parameters["fixture_resource"]) fixture_text = files("microcosm.build.uk").joinpath(fixture_resource).read_text() return { + "registry_artifact": registry_artifact, "registry_version": getattr(registry, "version", None), "registry_count": len(registry) if hasattr(registry, "__len__") else None, "fixture_resource": fixture_resource, @@ -794,23 +1017,51 @@ def _ledger_compile_parity_evidence( def _ledger_compile_parity_registry( context: EvidenceContext, target_period: object, + *, + registry_artifact: str = "uk_ledger_compiled_registries", ) -> object: - registries = context.artifacts["uk_ledger_compiled_registries"] + registries = context.artifacts[registry_artifact] if not isinstance(registries, Mapping): - raise TypeError( - "uk_ledger_compiled_registries must map target periods to registries." - ) + raise TypeError(f"{registry_artifact} must map target periods to registries.") if target_period in registries: return registries[target_period] target_period_key = str(target_period) if target_period_key in registries: return registries[target_period_key] raise KeyError( - f"UK Ledger compile parity has no registry for target period " - f"{target_period!r}; available periods: {sorted(map(str, registries))}." + f"UK Ledger compile parity artifact {registry_artifact!r} has no registry " + f"for target period {target_period!r}; available periods: " + f"{sorted(map(str, registries))}." ) +_LEDGER_COMPILE_PARITY_REGISTRY_ARTIFACTS = frozenset( + { + "uk_ledger_compiled_registries", + "uk_ledger_compiled_local_registries", + } +) + + +def _ledger_compile_parity_registry_artifact( + parameters: Mapping[str, Any], +) -> str: + artifact = str(parameters.get("registry_artifact", "uk_ledger_compiled_registries")) + if artifact not in _LEDGER_COMPILE_PARITY_REGISTRY_ARTIFACTS: + raise ValueError( + "ledger_compile_parity registry_artifact must be one of " + f"{sorted(_LEDGER_COMPILE_PARITY_REGISTRY_ARTIFACTS)}, got " + f"{artifact!r}." + ) + return artifact + + +def _ledger_compile_parity_required_artifacts( + parameters: Mapping[str, Any], +) -> frozenset[str]: + return frozenset({_ledger_compile_parity_registry_artifact(parameters)}) + + # --------------------------------------------------------------------------- # The registry # --------------------------------------------------------------------------- @@ -949,8 +1200,18 @@ def _ledger_compile_parity_registry( "target_surface": UKGateBinding( name="target_surface", evaluator=_evaluate_target_surface, - artifact_keys=frozenset({"parity_evidence"}), + parameter_keys=frozenset( + { + "expected", + "registry_artifact", + "target_period", + "crosswalk_resource", + "membership_resource", + } + ), + artifact_selector=_target_surface_required_artifacts, needs_frame=False, + evidence=_target_surface_evidence, ), "target_fit": UKGateBinding( name="target_fit", @@ -998,9 +1259,10 @@ def _ledger_compile_parity_registry( "signed_differences", "signed_differences_resource", "target_period", + "registry_artifact", } ), - artifact_keys=frozenset({"uk_ledger_compiled_registries"}), + artifact_selector=_ledger_compile_parity_required_artifacts, needs_frame=False, evidence=_ledger_compile_parity_evidence, ), 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 6e7cdfcc..87dd5407 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 @@ -118,6 +118,12 @@ class UKCalibrationRunResult: "uk_release_family_build_stages", "uk_ledger_compile_parity_production_2023", "uk_ledger_compile_parity_incumbent_2025", + # The local-surface compile gates live with the same owner as the national + # parity pair: the release-cut certification producer + # (tools/certify_uk_release_cut.py) compiles and supplies both registry + # artifacts — never the seam. + "uk_ledger_compile_parity_local_incumbent_2025", + "uk_target_surface_local_default_2025", "uk_release_input_coverage", "uk_degenerate_release_surface", "uk_nonnegative_columns", @@ -132,9 +138,7 @@ class UKCalibrationRunResult: "uk_weights_audit", ) -_SWAP_ACCEPTANCE_GATE_IDS = frozenset( - {"uk_export_surface", "uk_target_surface"} -) +_SWAP_ACCEPTANCE_GATE_IDS = frozenset({"uk_export_surface", "uk_target_surface"}) #: Gate ids two batteries both own, on purpose. A release certification unions #: the scoped reports, so a gate appearing twice has to be a declared duplicate @@ -172,7 +176,9 @@ def _scope_exclusions() -> dict[str, str]: rationales: dict[str, str] = {} for gate_id in sorted(full - set(UK_CALIBRATION_GATE_SCOPE)): if gate_id in spine: - reason = "spine-construction gate; owned by the spine build's scoped battery." + reason = ( + "spine-construction gate; owned by the spine build's scoped battery." + ) elif gate_id in national: reason = ( "owned by the release-cut certification producer; runner lands " @@ -373,9 +379,7 @@ def _record_failed_attempt( code_pin=code_pin, # An operator interrupt is a discarded attempt, not a failed one; the # row says which so the chain reads honestly. - disposition=( - "discarded" if isinstance(error, KeyboardInterrupt) else "failed" - ), + disposition=("discarded" if isinstance(error, KeyboardInterrupt) else "failed"), predecessor=predecessor, spool_dir=spool_dir, ) @@ -788,9 +792,7 @@ def uk_aggregate_admin_totals( if entry.id == "uk_aggregate_admin": anchors = list(entry.parameters.get("anchors", ())) break - household_weights = np.asarray( - frame.weights_for("household").values, dtype=float - ) + household_weights = np.asarray(frame.weights_for("household").values, dtype=float) totals: dict[str, float] = {} receipt: list[dict[str, object]] = [] for anchor in anchors: 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 edd620a4..70b5dbcd 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py @@ -266,7 +266,7 @@ def uk_target_geography_levels(registry: TargetRegistry) -> dict[str, str]: payload = json.loads( importlib_resources.files("microcosm.build.uk") - .joinpath("uk_national_targets.json") + .joinpath("uk_population_targets.json") .read_text(encoding="utf-8") ) targets = {row["target_id"]: row for row in payload["targets"]} diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/firm_generation.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/firm_generation.py index 29c20ad8..8e4da91c 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/firm_generation.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/firm_generation.py @@ -21,6 +21,7 @@ import subprocess from collections.abc import Iterable, Mapping from dataclasses import dataclass, field, replace +from importlib import resources as importlib_resources from pathlib import Path from typing import Any, Protocol @@ -69,6 +70,17 @@ } +def load_uk_firms_contract() -> dict[str, Any]: + """Load the packaged UK firm Ledger target contract.""" + + payload = ( + importlib_resources.files("microcosm.build.uk") + .joinpath("uk_firms_targets.json") + .read_text() + ) + return json.loads(payload) + + @dataclass(frozen=True) class UKFirmLedgerTargetProfile: """Ledger record-set selectors for the ``uk_firms`` target profile.""" @@ -215,9 +227,7 @@ class UKFirmLedgerTargetProfile: AXIOM_UK_VAT_SUPPLIES_INPUT = ( "uk:statutes/ukpga/1994/23/24#input.standard_rated_taxable_supplies_value" ) -AXIOM_UK_VAT_PURCHASES_INPUT = ( - "uk:statutes/ukpga/1994/23/24#input.standard_rated_deductible_business_purchase_value" -) +AXIOM_UK_VAT_PURCHASES_INPUT = "uk:statutes/ukpga/1994/23/24#input.standard_rated_deductible_business_purchase_value" AXIOM_UK_VAT_ALLOWABLE_PROPORTION_INPUT = ( "uk:statutes/ukpga/1994/23/26#input.allowable_input_tax_proportion" ) @@ -297,7 +307,9 @@ def net_liability_k( interval, { "kind": "decimal", - "value": _decimal_string(self.allowable_input_tax_proportion), + "value": _decimal_string( + self.allowable_input_tax_proportion + ), }, ), ] @@ -600,7 +612,7 @@ def _coerce_uk_firm_target_profile( target_profile: UKFirmLedgerTargetProfile | Mapping[str, Any] | None, ) -> UKFirmLedgerTargetProfile: if target_profile is None: - return DEFAULT_UK_FIRM_TARGET_PROFILE + return uk_firm_target_profile_from_mapping(load_uk_firms_contract()) if isinstance(target_profile, UKFirmLedgerTargetProfile): return target_profile return uk_firm_target_profile_from_mapping(target_profile) @@ -649,8 +661,7 @@ def uk_firm_source_data_from_ledger_facts( band_map=LEDGER_HMRC_BANDS, ) hmrc_liability_values_m = { - band: value / 1_000_000.0 - for band, value in hmrc_liability_values_gbp.items() + band: value / 1_000_000.0 for band, value in hmrc_liability_values_gbp.items() } hmrc_population_band = pd.DataFrame( [{"Financial_Year": data_vintage, **hmrc_population_values}] @@ -830,7 +841,9 @@ def generate_base_firms( continue count = int(row[band]) sic_codes.extend([sic_int] * count) - turnovers.append(_draw_band_turnover(count, lower, upper, device).cpu().numpy()) + turnovers.append( + _draw_band_turnover(count, lower, upper, device).cpu().numpy() + ) turnover_values = ( np.concatenate(turnovers).astype(np.float32) @@ -1018,9 +1031,7 @@ def build_firm_target_matrix( target_names.append(f"hmrc_vat_liability/{band}") turnover_targets = [ - hmrc_bands[band] - for band in HMRC_BAND_COLUMNS - if band != "Negative_or_Zero" + hmrc_bands[band] for band in HMRC_BAND_COLUMNS if band != "Negative_or_Zero" ] sector_targets = [ _vintage_column_value(row, config.data_vintage, "HMRC population sectors") @@ -1248,7 +1259,9 @@ def validate_uk_firm_population( for _, row in liability_sector_rows.iterrows() ] - weighted_liability_band = registered.groupby("hmrc_band")["weighted_liability_m"].sum() + weighted_liability_band = registered.groupby("hmrc_band")[ + "weighted_liability_m" + ].sum() liability_band_accs = [ _accuracy( float(weighted_liability_band.get(band, 0.0)), @@ -1406,9 +1419,13 @@ def _add_zero_turnover_firms( n_add = len(add_sics) zero_employment = assign_employment(n_add, ons_employment, device) return ( - torch.cat([sic_codes, torch.tensor(add_sics, dtype=torch.int64, device=device)]), + torch.cat( + [sic_codes, torch.tensor(add_sics, dtype=torch.int64, device=device)] + ), torch.cat([turnover, torch.zeros(n_add, dtype=torch.float32, device=device)]), - torch.cat([input_values, torch.zeros(n_add, dtype=torch.float32, device=device)]), + torch.cat( + [input_values, torch.zeros(n_add, dtype=torch.float32, device=device)] + ), torch.cat([employment, zero_employment]), torch.cat([weights, torch.ones(n_add, dtype=torch.float32, device=device)]), torch.cat( @@ -1626,7 +1643,9 @@ def _ledger_sic_series( _validate_ledger_firm_fact(fact, record_set_id, measure_id) sic = _ledger_sic_code(fact) if sic in seen: - raise ValueError(f"Duplicate Ledger UK firm fact for {record_set_id}/{sic}.") + raise ValueError( + f"Duplicate Ledger UK firm fact for {record_set_id}/{sic}." + ) seen.add(sic) rows.append( { @@ -1662,7 +1681,9 @@ def _ledger_values_by_band( ) values_by_band[target_band] = _numeric_ledger_value(fact) - missing = [band_map[band] for band in band_map if band_map[band] not in values_by_band] + missing = [ + band_map[band] for band in band_map if band_map[band] not in values_by_band + ] if missing: raise ValueError( f"Ledger UK firm facts are missing {record_set_id} band(s): {missing}." @@ -1682,9 +1703,8 @@ def _ledger_record_matches( def _ledger_sic_code(fact: Mapping[str, Any] | object) -> str: - sic = ( - _ledger_dimension_value(fact, "uk.firm.sic_code") - or _fact_at(fact, "layout", "groupby_value_id") + sic = _ledger_dimension_value(fact, "uk.firm.sic_code") or _fact_at( + fact, "layout", "groupby_value_id" ) if sic is None: raise ValueError("Ledger UK firm fact is missing uk.firm.sic_code.") @@ -1728,7 +1748,9 @@ def _numeric_ledger_value(fact: Mapping[str, Any] | object) -> float: try: numeric = float(value) except (TypeError, ValueError) as exc: - raise ValueError(f"Ledger UK firm fact has non-numeric value {value!r}.") from exc + raise ValueError( + f"Ledger UK firm fact has non-numeric value {value!r}." + ) from exc if not np.isfinite(numeric): raise ValueError(f"Ledger UK firm fact has non-finite value {value!r}.") return numeric 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 0a1f0493..21bc9158 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 @@ -22,6 +22,7 @@ materialize_target_bindings, ) from microcosm.build.uk_runtime.cgt_calibration import uk_cgt_annual_exempt_amount +from microcosm.build.uk_runtime.local_targets import load_uk_local_geography_contract from microcosm.calibrate import TargetRegistry from microcosm.frame import Frame @@ -34,6 +35,76 @@ class UKLedgerTargetCompilation: unsupported: tuple[dict[str, str], ...] +LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE = "local_registry_parity_fixture_2025.json" +UK_POPULATION_TARGETS_RESOURCE = "uk_population_targets.json" +UK_NATIONAL_TARGET_GEOGRAPHY_LEVELS = frozenset({"country", "region"}) + + +def align_uk_local_registry_parity_fixture( + fixture: Mapping[str, Any], +) -> dict[str, Any]: + """Align incumbent local metric names to the Microcosm contract ids. + + The incumbent fixture is extracted from the old runtime's metric columns + (``hmrc/self_employment_income/amount@...``). The local Ledger registry is + contract-named (``hmrc.self_employment_income.amount@...``). In-contract + fixture rows are therefore renamed for comparison; out-of-contract metrics + deliberately remain fixture-only so the signed receipt records the ruled + exclusions. + """ + + metric_target_ids = _uk_local_metric_target_ids() + rows: list[dict[str, Any]] = [] + for row in fixture.get("rows", ()): + if not isinstance(row, Mapping): + rows.append(row) + continue + updated = dict(row) + metric = str( + updated.get("metric") or str(updated.get("name", "")).split("@")[0] + ) + target_id = metric_target_ids.get(metric) + if target_id is not None: + geography_id = str( + updated.get("geography_id") + or str(updated.get("name", "")).split("@", 1)[1] + ) + updated["name"] = f"{target_id}@{geography_id}" + updated["contract_target_id"] = updated["name"] + updated.setdefault("measure", metric) + rows.append(updated) + aligned = dict(fixture) + aligned["rows"] = rows + return aligned + + +def _uk_local_metric_target_ids() -> dict[str, str]: + contract = load_uk_local_geography_contract() + mapping: dict[str, str] = {} + for target in contract.get("targets", ()): + if not isinstance(target, Mapping): + continue + bindings = target.get("bindings") + if not isinstance(bindings, Mapping): + continue + policyengine = bindings.get("policyengine") + if not isinstance(policyengine, Mapping): + continue + metric_name = policyengine.get("metric_name") + target_id = target.get("target_id") + if not isinstance(metric_name, str) or not isinstance(target_id, str): + continue + existing = mapping.get(metric_name) + if existing is not None and existing != target_id: + raise ValueError( + "UK local geography contract maps metric " + f"{metric_name!r} to multiple target ids: " + f"{existing!r} and {target_id!r}." + ) + mapping[metric_name] = target_id + return mapping + + def compile_uk_target_registry( facts: Iterable[Mapping[str, Any]], *, @@ -72,6 +143,126 @@ def compile_uk_target_registry( ) +def load_uk_local_area_crosswalk() -> dict[str, Any]: + """The committed local-area crosswalk (roster + vintages per level).""" + + return json.loads( + importlib_resources.files("microcosm.build.uk") + .joinpath("local_area_crosswalk.json") + .read_text(encoding="utf-8") + ) + + +def compile_uk_local_target_registry( + facts: Iterable[Mapping[str, Any]], + *, + target_period: int | str, + crosswalk: Mapping[str, Any], +) -> UKLedgerTargetCompilation: + """Compile packaged UK local-area Ledger references against fact rows.""" + + fact_rows = tuple(facts) + local_fact_buckets = _local_fact_buckets(fact_rows) + spec = load_country_spec("uk") + rosters = _local_crosswalk_rosters(crosswalk) + compiled = [] + unsupported: list[dict[str, str]] = [] + for reference in spec.local_target_references: + restamped = LedgerTargetReference( + **{**reference.__dict__, "period": target_period} + ) + _assert_local_reference_in_crosswalk(restamped, rosters) + candidate_facts = _candidate_facts_for_reference( + _local_candidate_fact_pool( + fact_rows, + local_fact_buckets, + restamped, + ), + restamped, + ) + _assert_local_fact_vintages(candidate_facts, restamped, rosters) + try: + registry = compile_ledger_target_references( + candidate_facts, + [restamped], + country="uk", + ) + except ValueError as error: + unsupported.append( + { + "name": reference.name, + "period": target_period, + "reason": str(error), + } + ) + else: + compiled.extend(registry.specs) + return UKLedgerTargetCompilation( + TargetRegistry(compiled, country="uk"), + tuple(unsupported), + ) + + +def _assert_local_fact_vintages( + facts: tuple[Mapping[str, Any], ...], + reference: LedgerTargetReference, + rosters: Mapping[str, Mapping[str, Any]], +) -> None: + """Refuse a matched fact whose boundary vintage is not the declared one. + + The crosswalk declares the boundary vintage per level (per code prefix at + local-authority level, where the nations publish on different frames). + Before this check the declaration was interpolated into error text only; + now a fact on the wrong boundary set fails the compile, by name, instead + of binding a value across vintages (PR #795 review, closing note). + """ + + selector = reference.ledger_selector + level = str(selector.get("geography_level") or "") + expected = rosters.get(level, {}).get("expected_vintage", "") + if not expected: + # A level the crosswalk declares no vintage for cannot be proven onto + # any boundary frame (re-review finding 3: the silent escapes are the + # cases the gate most needs to catch). + raise ValueError( + f"UK local target reference {reference.name!r} is at level " + f"{level!r}, which declares no expected boundary vintage in the " + "crosswalk." + ) + for fact in facts: + geography = fact.get("geography") + if not isinstance(geography, Mapping): + continue + vintage = str(geography.get("vintage") or "") + code = str(geography.get("id") or "") + if isinstance(expected, Mapping): + wanted = expected.get(code[:1]) + if wanted is None: + raise ValueError( + f"UK local target reference {reference.name!r} matched a " + f"fact at {code!r}, whose prefix has no declared boundary " + f"vintage in the crosswalk for level {level!r}." + ) + else: + wanted = expected + accepted = ( + {str(wanted)} if isinstance(wanted, str) else {str(v) for v in wanted} + ) + if not vintage: + raise ValueError( + f"UK local target reference {reference.name!r} matched a fact " + f"at {code!r} that declares no boundary vintage; the gate " + "exists to prove the frame, and an unstamped fact is the case " + "it most needs to catch." + ) + if vintage not in accepted: + raise ValueError( + f"UK local target reference {reference.name!r} matched a fact " + f"at {code!r} with boundary vintage {vintage!r}; the crosswalk " + f"accepts {sorted(accepted)} for level {level!r}." + ) + + def _candidate_facts_for_reference( facts: tuple[Mapping[str, Any], ...], reference: LedgerTargetReference, @@ -79,10 +270,97 @@ def _candidate_facts_for_reference( if not reference.ledger_selector: return facts return tuple( - fact for fact in facts if _fact_matches_selector(fact, reference.ledger_selector) + fact + for fact in facts + if _fact_matches_selector(fact, reference.ledger_selector) ) +def _local_fact_buckets( + facts: tuple[Mapping[str, Any], ...], +) -> dict[tuple[str, str], tuple[Mapping[str, Any], ...]]: + materialized: dict[tuple[str, str], list[Mapping[str, Any]]] = {} + for fact in facts: + key = _local_fact_geography_key(fact) + if key is not None: + materialized.setdefault(key, []).append(fact) + return {key: tuple(rows) for key, rows in materialized.items()} + + +def _local_candidate_fact_pool( + facts: tuple[Mapping[str, Any], ...], + buckets: Mapping[tuple[str, str], tuple[Mapping[str, Any], ...]], + reference: LedgerTargetReference, +) -> tuple[Mapping[str, Any], ...]: + selector = reference.ledger_selector + geography_level = selector.get("geography_level") + geography_id = selector.get("geography_id") + if not isinstance(geography_level, str) or not isinstance(geography_id, str): + return facts + return buckets.get((geography_level, geography_id), ()) + + +def _local_fact_geography_key(fact: Mapping[str, Any]) -> tuple[str, str] | None: + geography = fact.get("geography") + if not isinstance(geography, Mapping): + return None + level = geography.get("level") + geography_id = geography.get("id") + if not isinstance(level, str) or not isinstance(geography_id, str): + return None + if not level or not geography_id: + return None + return (level, geography_id) + + +def _local_crosswalk_rosters( + crosswalk: Mapping[str, Any], +) -> dict[str, dict[str, Any]]: + levels = crosswalk.get("levels") + if not isinstance(levels, Mapping): + raise ValueError("UK local area crosswalk must expose levels.") + rosters: dict[str, dict[str, Any]] = {} + for level, payload in levels.items(): + if not isinstance(payload, Mapping): + raise ValueError(f"UK local area crosswalk level {level!r} is invalid.") + area_ids = payload.get("area_ids") + if not isinstance(area_ids, list) or not area_ids: + raise ValueError( + f"UK local area crosswalk level {level!r} must expose area_ids." + ) + rosters[str(level)] = { + "area_ids": frozenset(str(area_id) for area_id in area_ids), + "expected_vintage": payload.get("expected_vintage", ""), + } + return rosters + + +def _assert_local_reference_in_crosswalk( + reference: LedgerTargetReference, + rosters: Mapping[str, Mapping[str, Any]], +) -> None: + selector = reference.ledger_selector + geography_level = str(selector.get("geography_level") or "") + geography_id = str(selector.get("geography_id") or "") + if not geography_level or not geography_id: + raise ValueError( + f"UK local target reference {reference.name!r} must pin " + "geography_level and geography_id." + ) + roster = rosters.get(geography_level) + if roster is None: + raise ValueError( + f"UK local target reference {reference.name!r} uses unknown " + f"geography level {geography_level!r}." + ) + if geography_id not in roster["area_ids"]: + raise ValueError( + f"UK local target reference {reference.name!r} uses geography id " + f"{geography_id!r} outside the {geography_level!r} roster for " + f"expected vintage {roster['expected_vintage']!r}." + ) + + def materialize_uk_ledger_targets( adapter: Any, registry: TargetRegistry, @@ -169,8 +447,7 @@ def counterfactual_delta( if metric_name and metric_name in self.tables[entity]: return np.asarray(self.tables[entity][metric_name], dtype=float) raise ValueError( - "frame does not carry precomputed counterfactual delta " - f"{metric_name!r}" + f"frame does not carry precomputed counterfactual delta {metric_name!r}" ) def _household_ids_for(self, entity: str) -> Any: @@ -280,11 +557,38 @@ def to_frame(self) -> Frame: def _uk_contract_targets() -> dict[str, Mapping[str, Any]]: payload = ( importlib_resources.files("microcosm.build.uk") - .joinpath("uk_national_targets.json") + .joinpath(UK_POPULATION_TARGETS_RESOURCE) .read_text() ) contract = json.loads(payload) - return {target["target_id"]: target for target in contract["targets"]} + _warn_on_undeclared_geography(contract["targets"]) + return { + target["target_id"]: target + for target in contract["targets"] + if set(target.get("geography_levels") or ()) + <= UK_NATIONAL_TARGET_GEOGRAPHY_LEVELS + } + + +def _warn_on_undeclared_geography(targets) -> None: + # Ruling on PR #795 review finding 3: an absent geography_levels reads as + # national by doctrine (the empty set is a subset of the national levels), + # and the contract test requires every committed target to declare the + # field -- so this warning only ever fires on a hand-built contract, where + # a silent default into the national surface is worth a loud note. + undeclared = [ + str(target.get("target_id", "")) + for target in targets + if not target.get("geography_levels") + ] + if undeclared: + import warnings + + warnings.warn( + "UK population contract target(s) declare no geography_levels and " + f"default to the national surface: {undeclared[:5]}", + stacklevel=3, + ) def _uk_parameter_gated_threshold( 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 39165948..126825a8 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 @@ -21,9 +21,10 @@ contract and are explicitly out of scope here. * **Reviewed pointers, not scraped claims.** Source rows document official products verified by a human-reviewed fetch on ``verified_on``. They start - ``documented_unpinned`` and move to ``pinned_in_ladder`` when a build - artifact sha-pins them per build, mirroring the HMRC/SPI source-contract - discipline. + ``documented_unpinned`` and move to a pinned status once a sha-pinned build + artifact or Ledger consumer fact feed owns the facts, mirroring the + HMRC/SPI source-contract discipline. Rows that remain unsuitable for this + surface carry a signed deferral reason. * **Fences by reference, enforced at binding.** The banded HMRC facts stay fenced exactly as the national replay adjudicated them (``FULL_FRS_TI_BAND_FENCE_ID``, ``HMRC_SPI_TARGET_RECORD_COUNT`` are @@ -53,7 +54,9 @@ "family_for_metric", "METRIC_STATUS_BOUND_IN_CODE", "SOURCE_STATUS_DOCUMENTED_UNPINNED", + "SOURCE_STATUS_PINNED_IN_LEDGER_FACTS", "SOURCE_STATUS_PINNED_IN_LADDER", + "SOURCE_STATUS_SIGNED_DEFERRED", "assert_uk_local_target_census_current", "build_uk_local_target_census", "committed_uk_local_target_census_path", @@ -67,13 +70,26 @@ METRIC_STATUS_BOUND_IN_CODE = "bound_in_code" SOURCE_STATUS_DOCUMENTED_UNPINNED = "documented_unpinned" +SOURCE_STATUS_PINNED_IN_LEDGER_FACTS = "pinned_in_ledger_facts" SOURCE_STATUS_PINNED_IN_LADDER = "pinned_in_ladder" +SOURCE_STATUS_SIGNED_DEFERRED = "signed_deferred" FENCE_ENFORCEMENT_REVIEW = "review_required_before_binding" #: Review date for every source row below: each URL was fetched and its #: product description checked on this date (microcosm#495 scoping). _SOURCES_VERIFIED_ON = "2026-07-22" +_LEDGER_FACT_FEED_PIN: dict[str, str] = { + "artifact": ".codex-work/consumer_facts_uk.jsonl", + "manifest": ".codex-work/consumer_facts_uk_manifest.json", + "facts_sha256": ( + "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48" + ), + "source_repo": "PolicyEngine/chronicle", + "source_commit": "33ca98a", + "build": "build-bundle --suite uk -> build-consumer-artifact", +} + _SPI_FRAME_PROXY_FENCE_ID = "hmrc_spi_frame_model_proxy" _FRS_CIRCULARITY_FENCE_ID = "frs_model_based_target_circularity" _BHC_AHC_FENCE_ID = "ons_bhc_ahc_noncomparable" @@ -191,18 +207,21 @@ "url": "https://www.gov.uk/government/collections/personal-incomes-statistics", "geographies": ["constituency", "la"], "latest_vintage": "tax year 2023 to 2024 (published 2026-04-29)", - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "Unbanded area statistics — a different surface from the " + "Unbanded area statistics in the pinned Ledger fact feed supply " + "the local HMRC count targets directly and the amount targets via " + "the signed count_x_mean construction. The feed publishes SPI " + "target count/mean measures for 650/650 constituencies except " + "self_employment_income_mean at E14001416 (so that one amount " + "row is signed deferred), and for 359/361 crosswalk local " + "authorities; E06000027 has only median SPI measures and " + "E06000053 has no SPI local-authority target-measure rows. This " + "remains a different surface from the " f"{HMRC_SPI_TARGET_RECORD_COUNT} banded Total Income facts held " - "fenced by the national adjudication. The constituency vintage " - "used by each table edition must be pinned at binding time (2024 " - "boundaries vs earlier). Historical table layouts publish " - "taxpayer counts with mean/median amounts; whether published " - "amount totals exist, or the amount metric needs a declared " - "count-times-mean construction with rounding-error bounds, must " - "be verified when the exact tables are pinned." + "fenced by the national adjudication." ), }, { @@ -222,14 +241,15 @@ "mid-2022 on this page; estimates for 2012 onwards now released " "via Nomis (ONS notice dated 2024-11-25)" ), - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "Binding must pin the Nomis release carrying 2024-constituency " - "(PCON24) estimates to match the geography ladder's constituency " - "vintage, plus the Scotland/Northern Ireland equivalents. " - "Mid-year estimates cover the total usual-resident population — " - "see the population_universe_private_households adjudication." + "The pinned Ledger fact feed carries the PCON24 constituency " + "population age specs for all 650 constituencies across the " + "ONS, NRS, and NISRA publisher legs. Mid-year estimates cover " + "the total usual-resident population — see the " + "population_universe_private_households adjudication." ), }, { @@ -242,11 +262,13 @@ "url": "https://www.nomisweb.co.uk/datasets/pestsyoala", "geographies": ["la"], "latest_vintage": "mid-2024", - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "UK-wide coverage at local-authority grain. Covers the total " - "usual-resident population — see the " + "The pinned Ledger fact feed carries local-authority population " + "age specs for all 361 crosswalk local authorities. Covers the " + "total usual-resident population — see the " "population_universe_private_households adjudication." ), }, @@ -316,16 +338,16 @@ "UC statistics release cadence per DWP schedule (next noted " "release 2026-08-18 at verification)" ), - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "Exact table definitions (households vs people, child-count " - "bands, constituency vintage) are chosen inside the tool and " - "must be pinned per tabulation at binding time. DWP UC official " - "statistics cover Great Britain: Northern Ireland Universal " - "Credit statistics are published separately by the NI Department " - "for Communities and are not yet documented here, so NI has no " - "declared supplier for this family. DWP counts UC claim " + "The pinned Ledger fact feed carries DWP Stat-Xplore UC " + "household facts for 632/650 constituencies and 350/361 local " + "authorities, plus the four constituency child-bucket specs. " + "DWP UC official statistics in this feed cover Great Britain; " + "the 18 Northern Ireland constituencies and 11 Northern Ireland " + "local authorities are signed deferred. DWP counts UC claim " "households — see the uc_unit_vs_household_grain adjudication." ), }, @@ -345,15 +367,22 @@ ), "geographies": ["msoa"], "latest_vintage": "financial year ending 2023", - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_SIGNED_DEFERRED, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, + "signed_reason_id": "msoa_mean_to_la_deferred", + "signed_rationale": ( + "The pinned Ledger fact feed carries ONS equivalised-income facts " + "at MSOA grain, not local-authority grain; the local-authority " + "mean aggregation design is deferred." + ), "verified_on": _SOURCES_VERIFIED_ON, "notes": ( "Model-based estimates built from the Family Resources Survey — " "see the frs_model_based_target_circularity adjudication. The " "BHC and AHC measures are independently modelled and not " "directly comparable — see the ons_bhc_ahc_noncomparable " - "adjudication. MSOA-to-local-authority aggregation method must " - "be declared at binding time; England and Wales only." + "adjudication. MSOA-to-local-authority aggregation is signed " + "deferred for this run; England and Wales only." ), }, { @@ -366,13 +395,15 @@ "url": "https://www.nomisweb.co.uk/datasets/c2021ts054", "geographies": ["constituency", "la"], "latest_vintage": "Census Day 2021-03-21", - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "England and Wales only; Scotland's Census 2022 and Northern " - "Ireland's Census 2021 tenure tables need separate pinning for " - "full-UK coverage. Census tenure classes must be crosswalked to " - "the runtime's four tenure metrics explicitly." + "The pinned Ledger fact feed carries tenure specs for all 361 " + "crosswalk local authorities across ONS Census 2021, NRS Census " + "2022, and NISRA Census 2021 publisher legs. Private-rent and " + "social-rent tenure rows are additive over publisher-native " + "subclasses and compile through the signed sum operation." ), }, { @@ -388,16 +419,23 @@ ), "geographies": ["la"], "latest_vintage": "release of 2026-07-22 at verification", - "status": SOURCE_STATUS_DOCUMENTED_UNPINNED, + "status": SOURCE_STATUS_SIGNED_DEFERRED, + "ledger_fact_pin": _LEDGER_FACT_FEED_PIN, + "signed_reason_id": "private_rent_pipr_partial_coverage_2025", + "signed_rationale": ( + "The pinned Ledger fact feed carries PIPR LA facts at 2026-06 " + "for 314 crosswalk England/Wales local authorities, which are " + "after the 2025 target period; four English crosswalk local " + "authorities are absent, Scotland is BRMA statistical_scope " + "grain, and Northern Ireland has no LA rows." + ), "verified_on": _SOURCES_VERIFIED_ON, "notes": ( - "The dataset landing page was verified. PIPR publishes average " - "rent price levels, not additive rent totals, and per the PIPR " - "QMI its local-authority granularity applies to England and " - "Wales with different geographies for Scotland and Northern " - "Ireland — so the runtime's additive private-rent metric needs " - "a declared count-times-mean construction and a declared " - "Scotland/NI treatment when the exact table is pinned." + "PIPR publishes average rent price levels, not additive rent " + "totals. The staged feed's LA rows are signed deferred for the " + "2025 local target compile because every matching England/Wales " + "LA fact is period 2026-06 and the remaining crosswalk areas " + "lack LA-grain facts." ), }, ) @@ -544,12 +582,21 @@ "on verified_on, but no exact table, vintage, or hash is pinned; " "binding work pins it per family." ), + SOURCE_STATUS_PINNED_IN_LEDGER_FACTS: ( + "The official product's target facts are present in the sha-pinned " + "Ledger consumer fact feed recorded on the source row." + ), SOURCE_STATUS_PINNED_IN_LADDER: ( "The product is downloaded and sha-pinned per build by the UK OA " "ladder artifact tool, which records every source hash in the " "artifact metadata; target values derive from the artifact's own " "sums." ), + SOURCE_STATUS_SIGNED_DEFERRED: ( + "The official product is present or documented, but this target " + "surface does not bind it in the current compile; the source row " + "carries signed_reason_id and signed_rationale." + ), FENCE_ENFORCEMENT_REVIEW: ( "The fence is a reviewed adjudication requirement enforced by the " "rowwise doctrine solve " 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 3a18ab10..3edd7843 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 @@ -9,7 +9,9 @@ from __future__ import annotations +import json from collections.abc import Mapping, Sequence +from importlib import resources as importlib_resources from typing import Any import numpy as np @@ -44,6 +46,24 @@ "Wales": "WALES", "Northern Ireland": "NORTHERN_IRELAND", } +UK_POPULATION_TARGETS_RESOURCE = "uk_population_targets.json" + + +def load_uk_population_contract() -> dict[str, Any]: + """Load the packaged UK population Ledger target contract.""" + + payload = ( + importlib_resources.files("microcosm.build.uk") + .joinpath(UK_POPULATION_TARGETS_RESOURCE) + .read_text() + ) + return json.loads(payload) + + +def load_uk_local_geography_contract() -> dict[str, Any]: + """Load the full UK population contract used by local-geography filters.""" + + return load_uk_population_contract() def metric_names( 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 feb72756..9598efbd 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 @@ -22,7 +22,11 @@ from microcosm.calibrate import TargetRegistry _ENTITY_LINK = {"benunit": "person_benunit_id", "household": "person_household_id"} -_ENTITY_ID = {"person": "person_id", "benunit": "benunit_id", "household": "household_id"} +_ENTITY_ID = { + "person": "person_id", + "benunit": "benunit_id", + "household": "household_id", +} def compute_uk_measure_input( @@ -63,8 +67,7 @@ def compute_uk_measure_input( route = f"bool_any_collapse_person_to_{entity}" else: raise KeyError( - f"no categorical mapping from {native} to {entity} " - f"for {variable!r}" + f"no categorical mapping from {native} to {entity} for {variable!r}" ) else: mapped = simulation.calculate(variable, year, map_to=entity) @@ -204,14 +207,18 @@ def load_uk_calibration_measure_exclusions( loaded: list[dict[str, str]] = [] for entry in exclusions: if not isinstance(entry, dict): - raise ValueError("UK calibration measure exclusion entries must be objects.") + raise ValueError( + "UK calibration measure exclusion entries must be objects." + ) unknown_fields = sorted(set(entry) - set(_UK_MEASURE_EXCLUSION_FIELDS)) if unknown_fields: raise ValueError( "unknown UK calibration measure exclusion field(s) " f"{unknown_fields} on {entry.get('name')!r}." ) - record = {field: str(entry.get(field, "")) for field in _UK_MEASURE_EXCLUSION_FIELDS} + record = { + field: str(entry.get(field, "")) for field in _UK_MEASURE_EXCLUSION_FIELDS + } name = record["name"] if name in seen: raise ValueError(f"duplicate UK calibration measure exclusion {name!r}.") @@ -315,8 +322,18 @@ def _policyengine_uk_module() -> Any: def _uk_contract_targets() -> dict[str, Any]: payload = ( importlib_resources.files("microcosm.build.uk") - .joinpath("uk_national_targets.json") + .joinpath("uk_population_targets.json") .read_text(encoding="utf-8") ) contract = json.loads(payload) - return {target["target_id"]: target for target in contract["targets"]} + from microcosm.build.uk_runtime.ledger_targets import ( + _warn_on_undeclared_geography, + ) + + _warn_on_undeclared_geography(contract["targets"]) + national_geography_levels = {"country", "region"} + return { + target["target_id"]: target + for target in contract["targets"] + if set(target.get("geography_levels") or ()) <= national_geography_levels + } diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/release_certification.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/release_certification.py index 1e996488..cc6f12d8 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/release_certification.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/release_certification.py @@ -251,17 +251,21 @@ def run_uk_release_cut_battery( coverage_engine: Any, build_stage_names: Sequence[str], ledger_registries: Mapping[object, Any], + local_ledger_registries: Mapping[object, Any], parity_evidence: Any, fit_weight_records: tuple[FitWeightRecord, ...] | None, input_mass_reference: Mapping[str, Any], exclusions_evaluated_on: date, gate_registry: Mapping[str, Any] | None = None, ) -> dict[str, Any]: - """Run the 16 national gates over the calibrated candidate, signed. + """Run the 18 national gates over the calibrated candidate, signed. Always release-candidate strict: this battery exists to certify a cut, so an ``evidence_absent`` gap blocks rather than being tolerated, and a blocked phase persists its report and raises before any composition. + The local-surface compile gates run here too: the certification is the + declared owner of the whole national scope, so the caller supplies both + the national and the local compiled registries. """ battery = GateBatteryRun( @@ -276,6 +280,7 @@ def run_uk_release_cut_battery( "coverage_engine": coverage_engine, "build_stage_names": tuple(str(name) for name in build_stage_names), "uk_ledger_compiled_registries": dict(ledger_registries), + "uk_ledger_compiled_local_registries": dict(local_ledger_registries), } battery.run_phase("preflight", EvidenceContext(artifacts=preflight_artifacts)) battery.enforce("preflight", mode=BlockingMode.BLOCKS_ARTIFACT) @@ -517,8 +522,7 @@ def _verify_part( ) if posture is not None and payload.get("posture") != posture: raise UKReleaseCertificationError( - f"{part_name}: posture must be {posture!r}, got " - f"{payload.get('posture')!r}." + f"{part_name}: posture must be {posture!r}, got {payload.get('posture')!r}." ) gates = payload.get("gates") if not isinstance(gates, Mapping) or set(gates) != set(scope): @@ -606,8 +610,7 @@ def _verify_union( ) if overlap: raise UKReleaseCertificationError( - "certification overlap beyond the declared shared ids: " - f"{overlap}." + f"certification overlap beyond the declared shared ids: {overlap}." ) for shared in sorted(UK_SHARED_GATE_IDS): if len(seen.get(shared, [])) < 2: @@ -671,8 +674,7 @@ def _verify_identity_join( recorded_seam = artifacts.get("terminal_gate_json", {}) if recorded_seam.get("sha256") != seam_report_sha: raise UKReleaseCertificationError( - "the seam battery report bytes do not match the build record's " - "binding." + "the seam battery report bytes do not match the build record's binding." ) diagnostics_sha = artifacts.get("diagnostics_json", {}).get("sha256") for part_name, payload in ( @@ -694,8 +696,7 @@ def _verify_identity_join( ) if release_cut_payload.get("release_candidate") is not True: raise UKReleaseCertificationError( - "the release-cut battery must run at release-candidate " - "strictness." + "the release-cut battery must run at release-candidate strictness." ) if release_cut_payload.get("shippable") is not True: raise UKReleaseCertificationError( @@ -703,9 +704,7 @@ def _verify_identity_join( ) -def _verify_score_receipt( - receipt: Mapping[str, Any], *, candidate_sha256: str -) -> None: +def _verify_score_receipt(receipt: Mapping[str, Any], *, candidate_sha256: str) -> None: artifacts = receipt.get("artifacts") scored = ( artifacts.get("candidate", {}).get("sha256") diff --git a/packages/microcosm-build/tests/test_country_spec.py b/packages/microcosm-build/tests/test_country_spec.py index 4c4d9ab1..b2a2f5cd 100644 --- a/packages/microcosm-build/tests/test_country_spec.py +++ b/packages/microcosm-build/tests/test_country_spec.py @@ -313,18 +313,24 @@ def test_spi_spine_adds_no_country_package_resources(self) -> None: "spine_swap_signed_differences.json", "spine_candidate_acceptance.json", "ledger_compile_parity_incumbent_2025_signed_differences.json", + "ledger_compile_parity_local_incumbent_2025_signed_differences.json", "ledger_compile_parity_production_2023_signed_differences.json", "national_staging_build_record.json", "parity_fixture_production_2023.json", "qrf_tail_reviewed_exclusions.json", "release_input_coverage_manifest.json", "registry_parity_fixture_2025.json", + "local_registry_parity_fixture_2025.json", "was_wealth_support_bounds.json", "local_binding_adjudications.json", "uk_local_target_census.json", - "uk_national_targets.json", + "uk_population_targets.json", + "uk_firms_targets.json", + "local_area_crosswalk.json", "target_references.json", "target_reference_membership.json", + "local_target_references.json", + "local_target_reference_membership.json", ) def test_uk_source_manifest_loads_twenty_seven_stages(self) -> None: @@ -391,18 +397,24 @@ def test_uk_package_loads(self) -> None: "spine_swap_signed_differences.json", "spine_candidate_acceptance.json", "ledger_compile_parity_incumbent_2025_signed_differences.json", + "ledger_compile_parity_local_incumbent_2025_signed_differences.json", "ledger_compile_parity_production_2023_signed_differences.json", "national_staging_build_record.json", "parity_fixture_production_2023.json", "qrf_tail_reviewed_exclusions.json", "release_input_coverage_manifest.json", "registry_parity_fixture_2025.json", + "local_registry_parity_fixture_2025.json", "was_wealth_support_bounds.json", "local_binding_adjudications.json", "uk_local_target_census.json", - "uk_national_targets.json", + "uk_population_targets.json", + "uk_firms_targets.json", + "local_area_crosswalk.json", "target_references.json", "target_reference_membership.json", + "local_target_references.json", + "local_target_reference_membership.json", ) def test_uk_target_references_accept_regenerated_contract_fields(self) -> None: @@ -638,6 +650,8 @@ def test_declares_the_full_june_battery(self, manifest) -> None: "uk_release_family_build_stages", "uk_ledger_compile_parity_production_2023", "uk_ledger_compile_parity_incumbent_2025", + "uk_ledger_compile_parity_local_incumbent_2025", + "uk_target_surface_local_default_2025", "uk_stage_was_wealth_support", "uk_stage_lcfs_consumption_support", "uk_stage_etb_vat_support", @@ -685,6 +699,22 @@ def test_ledger_compile_parity_gates_pin_their_fixture_periods( assert ( params["uk_ledger_compile_parity_incumbent_2025"]["target_period"] == 2025 ) + assert ( + params["uk_ledger_compile_parity_local_incumbent_2025"]["target_period"] + == 2025 + ) + assert ( + params["uk_ledger_compile_parity_local_incumbent_2025"]["registry_artifact"] + == "uk_ledger_compiled_local_registries" + ) + assert ( + params["uk_target_surface_local_default_2025"]["expected"] + == "local_default_surface" + ) + assert ( + params["uk_target_surface_local_default_2025"]["registry_artifact"] + == "uk_ledger_compiled_local_registries" + ) def test_strict_absent_evidence_entries_are_declared(self, manifest) -> None: # "An absent audit is not a passing audit" — the retired schema-3 @@ -982,6 +1012,120 @@ def test_sum_target_reference_roundtrips(self, tmp_path) -> None: assert spec.target_references[0].value_operation == "sum" + def test_local_target_reference_roundtrips_with_crosswalk_roster( + self, tmp_path + ) -> None: + files = _minimal_package() + files["country_package.json"]["resources"].extend( + ["local_area_crosswalk.json", "local_target_references.json"] + ) + files["local_area_crosswalk.json"] = { + "country": "xx", + "levels": { + "constituency": { + "expected_vintage": "test_vintage", + "area_ids": ["A1"], + } + }, + } + files["local_target_references.json"] = { + "country": "xx", + "target_references": [ + { + "name": "ons.age.0_10@A1", + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "population", + "geography_level": "constituency", + "geography_id": "A1", + }, + "value_operation": "sum", + "entity": "person", + "measure": "age/0_10", + "metadata": {"contract_target_id": "ons.age.0_10"}, + } + ], + } + package_dir = _write_package(tmp_path, files) + + spec = load_country_spec(package_dir) + + assert spec.target_references == () + assert len(spec.local_target_references) == 1 + assert spec.local_target_references[0].name == "ons.age.0_10@A1" + + def test_local_target_reference_refuses_unknown_roster_area(self, tmp_path) -> None: + files = _minimal_package() + files["country_package.json"]["resources"].extend( + ["local_area_crosswalk.json", "local_target_references.json"] + ) + files["local_area_crosswalk.json"] = { + "country": "xx", + "levels": { + "constituency": { + "expected_vintage": "test_vintage", + "area_ids": ["A1"], + } + }, + } + files["local_target_references.json"] = { + "country": "xx", + "target_references": [ + { + "name": "ons.age.0_10@A2", + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "population", + "geography_level": "constituency", + "geography_id": "A2", + }, + "entity": "person", + "measure": "age/0_10", + "metadata": {"contract_target_id": "ons.age.0_10"}, + } + ], + } + package_dir = _write_package(tmp_path, files) + + with pytest.raises(ValueError, match="test_vintage"): + load_country_spec(package_dir) + + def test_local_target_reference_refuses_unpinned_name(self, tmp_path) -> None: + files = _minimal_package() + files["country_package.json"]["resources"].extend( + ["local_area_crosswalk.json", "local_target_references.json"] + ) + files["local_area_crosswalk.json"] = { + "country": "xx", + "levels": { + "constituency": { + "expected_vintage": "test_vintage", + "area_ids": ["A1"], + } + }, + } + files["local_target_references.json"] = { + "country": "xx", + "target_references": [ + { + "name": "ons.age.0_10", + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "population", + "geography_level": "constituency", + "geography_id": "A1", + }, + "entity": "person", + "measure": "age/0_10", + "metadata": {"contract_target_id": "ons.age.0_10"}, + } + ], + } + package_dir = _write_package(tmp_path, files) + + with pytest.raises(ValueError, match="target_id@geography_id"): + load_country_spec(package_dir) + def test_restricted_licence_requires_a_private_repo(self, tmp_path) -> None: files = _minimal_package() files["country_package.json"]["resources"].append("release_contract.json") diff --git a/packages/microcosm-build/tests/test_ledger_targets.py b/packages/microcosm-build/tests/test_ledger_targets.py index 13c608de..7ca08363 100644 --- a/packages/microcosm-build/tests/test_ledger_targets.py +++ b/packages/microcosm-build/tests/test_ledger_targets.py @@ -183,6 +183,63 @@ def _monthly_consumer_fact_row(source_period: str, *, value: float): ) +def _spi_area_fact( + measure_id: str, + *, + value: float, + aggregation: str, + fact_key: str, +) -> dict[str, object]: + return _consumer_fact_row( + aggregate_fact_key=fact_key, + legacy_fact_key=fact_key.replace("aggregate_fact.v2", "fact.v1"), + semantic_fact_key=fact_key.replace("aggregate_fact.v2", "semantic_fact.v2"), + lineage={ + "source_record_id": f"hmrc.spi.local.{measure_id}", + "source_cell_keys": ["ledger.source_cell.v1:spi"], + "source_row_keys": [], + }, + value=value, + period={"type": "tax_year", "value": 2025}, + geography={ + "level": "constituency", + "id": "E14000001", + "name": "Example constituency", + "vintage": "pcon_2024", + }, + entity={"name": "person", "role": "taxpayer"}, + observed_measure={ + "source_name": "hmrc", + "source_measure_id": measure_id, + "source_concept": f"hmrc.{measure_id}", + "unit": "count" if measure_id.endswith("_count") else "gbp", + }, + concept_alignment={ + "source_concept": f"hmrc.{measure_id}", + "canonical_concept": f"hmrc.{measure_id}", + "relation": "exact", + "authority": "hmrc", + "legal_vintage": "tax_year_2025", + }, + aggregation={"method": aggregation}, + source={ + "source_name": "hmrc", + "source_table": "Synthetic SPI local income by area", + "source_file": "synthetic.ods", + "url": "https://example.invalid/synthetic-spi", + "vintage": "tax_year_2025", + }, + dimensions={}, + layout={ + "record_set_id": "hmrc.spi.local.by_area", + "record_set_spec_id": "uk.local_geography.spi_income.by_constituency.v1", + "groupby_dimension": "", + "groupby_value_id": "", + "measure_id": measure_id, + }, + ) + + def _hierarchy_target( name: str, *, @@ -1349,6 +1406,120 @@ def test__given_sum_reference_matches_two_vintages__then_latest_partition_wins() assert "new-first" in spec.metadata["ledger_member_fact_keys"] +def test__given_selector_uses_record_set_spec_id__then_layout_spec_id_matches() -> None: + row = _consumer_fact_row_for_period(2023, value=100.0) + row["layout"]["record_set_spec_id"] = "irs_soi.table_1_1.v1" + other = _consumer_fact_row_for_period(2023, value=250.0) + other["aggregate_fact_key"] = "ledger.aggregate_fact.v2:other-spec" + other["layout"]["record_set_spec_id"] = "irs_soi.table_1_2.v1" + reference = LedgerTargetReference( + name="spec selected", + ledger_selector={ + "source_name": "irs_soi", + "record_set_spec_id": "irs_soi.table_1_1.v1", + "geography_level": "country", + "geography_id": "0100000US", + "entity_name": "tax_unit", + }, + entity="tax_unit", + measure="adjusted_gross_income", + period=2024, + family="irs_soi", + ) + + registry = compile_ledger_target_references([other, row], [reference], country="us") + + spec = registry.specs[0] + assert spec.value == 100.0 + assert spec.metadata["ledger_layout_record_set_spec_id"] == "irs_soi.table_1_1.v1" + assert spec.metadata["ledger_selector_record_set_spec_id"] == ( + "irs_soi.table_1_1.v1" + ) + + +def test__given_count_x_mean_reference__then_amount_multiplies_ordered_members() -> ( + None +): + count = _spi_area_fact( + "employment_income_count", + value=25.0, + aggregation="sum", + fact_key="ledger.aggregate_fact.v2:employment-count", + ) + mean = _spi_area_fact( + "employment_income_mean", + value=40_000.0, + aggregation="mean", + fact_key="ledger.aggregate_fact.v2:employment-mean", + ) + reference = LedgerTargetReference( + name="employment amount", + ledger_selector={ + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean", + ], + "record_set_spec_id": "uk.local_geography.spi_income.by_constituency.v1", + "geography_level": "constituency", + "geography_id": "E14000001", + "entity_name": "person", + }, + value_operation="count_x_mean", + entity="person", + measure="hmrc/employment_income/amount", + period=2025, + family="hmrc", + ) + + registry = compile_ledger_target_references( + [mean, count], [reference], country="uk" + ) + + spec = registry.specs[0] + assert spec.value == 1_000_000.0 + assert spec.metadata["ledger_value_operation"] == "count_x_mean" + assert spec.metadata["ledger_member_fact_count"] == "2" + assert json.loads(spec.metadata["ledger_member_fact_keys"]) == [ + "ledger.aggregate_fact.v2:employment-count", + "ledger.aggregate_fact.v2:employment-mean", + ] + assert ( + spec.metadata["ledger_fact_key"] == "ledger.aggregate_fact.v2:employment-mean" + ) + + +def test__given_count_x_mean_reference_without_pair__then_refuses() -> None: + count = _spi_area_fact( + "employment_income_count", + value=25.0, + aggregation="sum", + fact_key="ledger.aggregate_fact.v2:employment-count", + ) + reference = LedgerTargetReference( + name="employment amount", + ledger_selector={ + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean", + ], + "record_set_spec_id": "uk.local_geography.spi_income.by_constituency.v1", + "geography_level": "constituency", + "geography_id": "E14000001", + "entity_name": "person", + }, + value_operation="count_x_mean", + entity="person", + measure="hmrc/employment_income/amount", + period=2025, + family="hmrc", + ) + + with pytest.raises(ValueError, match="exactly one count fact and one mean fact"): + compile_ledger_target_references([count], [reference], country="uk") + + def test__given_calendar_year_average_reference__then_monthly_mean_compiles() -> None: rows = [ _monthly_consumer_fact_row("2025-04", value=6_380_000.0), 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 621adc7a..700e8592 100644 --- a/packages/microcosm-build/tests/test_spec_engine_country_bundles.py +++ b/packages/microcosm-build/tests/test_spec_engine_country_bundles.py @@ -42,7 +42,7 @@ ), ( "uk", - "71054f533464eaeac0ea750e4e88d719f69b30bea8dd6977c677e1ed3592334e", + "cce1c98ea40364a398ae361f4d15790c925d8379d8b9b427076d61059c7d6715", { "benunit.benunit_id", "household.household_id", diff --git a/packages/microcosm-build/tests/test_spec_engine_loader.py b/packages/microcosm-build/tests/test_spec_engine_loader.py index d4d571fd..a77c90f6 100644 --- a/packages/microcosm-build/tests/test_spec_engine_loader.py +++ b/packages/microcosm-build/tests/test_spec_engine_loader.py @@ -18,6 +18,7 @@ load_bundle, load_schema_registry, ) +from microcosm.build.spec_engine.errors import SpecParseError from microcosm.build.spec_engine.seeds import LEGACY_V1_PROTOCOL, SeedProtocol ZERO_SHA = "0" * 64 @@ -278,6 +279,32 @@ def test_manifest_declared_set_reordering_does_not_change_spec_hash(tmp_path) -> assert second.package_fingerprint != first.package_fingerprint +def _append_legacy_json(root: Path, name: str, text: str) -> None: + (root / name).write_text(text, encoding="utf-8") + manifest_path = root / "country_package.json" + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + manifest["resources"].append( + {"path": name, "kind": "legacy_json", "schema_id": "legacy_json"} + ) + manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + + +def test_legacy_json_resources_load_through_the_strict_json_path(tmp_path) -> None: + root = _rich_minimal(tmp_path / "xx") + _append_legacy_json(root, "extras.json", '{"rows": [1, 2]}\n') + spec = load_bundle( + root, kernel_registry=KernelRegistry.from_ids(SELECTION_KERNEL_IDS) + ) + assert spec.resource(ResourceKind.LEGACY_JSON).domain.to_wire() == {"rows": [1, 2]} + + +def test_legacy_json_resource_in_yaml_syntax_refuses(tmp_path) -> None: + root = _rich_minimal(tmp_path / "xx") + _append_legacy_json(root, "extras.json", "rows: [1, 2]\n") + with pytest.raises(SpecParseError, match=r"extras\.json.*invalid JSON"): + load_bundle(root, kernel_registry=KernelRegistry.from_ids(SELECTION_KERNEL_IDS)) + + def _cross_ref_bundle(root: Path, *, source_ref: str = "survey") -> Path: files = { "bundle.yaml": ( diff --git a/packages/microcosm-build/tests/test_spec_engine_yaml.py b/packages/microcosm-build/tests/test_spec_engine_yaml.py index 598ae1af..6d651678 100644 --- a/packages/microcosm-build/tests/test_spec_engine_yaml.py +++ b/packages/microcosm-build/tests/test_spec_engine_yaml.py @@ -6,7 +6,11 @@ import pytest from microcosm.build.spec_engine.errors import SpecParseError -from microcosm.build.spec_engine.yaml12 import load_yaml12, load_yaml12_file +from microcosm.build.spec_engine.yaml12 import ( + load_json_strict, + load_yaml12, + load_yaml12_file, +) def test_yaml12_core_scalars_are_json_compatible() -> None: @@ -149,3 +153,35 @@ def test_file_loader_reports_the_resource_path(tmp_path: Path) -> None: assert caught.value.source == str(path) assert (caught.value.line, caught.value.column) == (3, 3) + + +def test_json_strict_matches_the_yaml12_value_model() -> None: + document = json.dumps( + {"count": 12, "share": 0.5, "flags": [True, False, None], "name": "a"} + ) + assert load_json_strict(document) == load_yaml12(document) + + +def test_json_strict_refuses_duplicate_keys() -> None: + with pytest.raises(SpecParseError, match=r"duplicate mapping key 'key'"): + load_json_strict('{"key": 1, "key": 2}', source="dup.json") + + +def test_json_strict_refuses_non_finite_constants() -> None: + for document in ('{"value": NaN}', '{"value": Infinity}', '{"value": -Infinity}'): + with pytest.raises(SpecParseError, match=r"non-finite numbers"): + load_json_strict(document, source="bad.json") + + +def test_json_strict_refuses_yaml_only_syntax_with_position() -> None: + with pytest.raises(SpecParseError) as caught: + load_json_strict("rows:\n - 1\n", source="bad.json") + + assert caught.value.source == "bad.json" + assert "invalid JSON" in str(caught.value) + assert caught.value.line == 1 + + +def test_json_strict_requires_text_input() -> None: + with pytest.raises(TypeError, match="JSON input must be text"): + load_json_strict(b'{"key": 1}') # type: ignore[arg-type] diff --git a/packages/microcosm-build/tests/test_target_reference_authoring.py b/packages/microcosm-build/tests/test_target_reference_authoring.py new file mode 100644 index 00000000..261ef3e1 --- /dev/null +++ b/packages/microcosm-build/tests/test_target_reference_authoring.py @@ -0,0 +1,396 @@ +from __future__ import annotations + +import json +import subprocess +import sys +from pathlib import Path + +import pytest + +from microcosm.build.target_reference_authoring import ( + AreaSignedDeferral, + AreaTargetReferenceAuthoringConfig, + author_area_target_references, +) + + +def test_author_area_target_references_fans_out_roster_and_resolves_operations() -> ( + None +): + contract = _contract() + facts = [ + _area_fact("ons", "population", 10.0, area_id="A1", fact_key="a1-age-0"), + _area_fact("ons", "population", 20.0, area_id="A1", fact_key="a1-age-1"), + _area_fact("ons", "population", 30.0, area_id="A2", fact_key="a2-age-0"), + _area_fact("ons", "population", 40.0, area_id="A2", fact_key="a2-age-1"), + _area_fact( + "hmrc", + "employment_income_count", + 2.0, + area_id="A1", + fact_key="a1-employment-count", + ), + _area_fact( + "hmrc", + "employment_income_mean", + 100.0, + area_id="A1", + fact_key="a1-employment-mean", + aggregation="mean", + ), + _area_fact( + "hmrc", + "employment_income_count", + 3.0, + area_id="A2", + fact_key="a2-employment-count", + ), + _area_fact( + "hmrc", + "employment_income_mean", + 200.0, + area_id="A2", + fact_key="a2-employment-mean", + aggregation="mean", + ), + ] + + authored = author_area_target_references( + contract, + facts, + _area_config( + areas=("A1", "A2"), + value_operation_by_target_id={ + "ons.age.0_10": "sum", + "hmrc.employment_income.amount": "count_x_mean", + }, + ), + ) + + assert [reference["name"] for reference in authored.references] == [ + "ons.age.0_10@A1", + "ons.age.0_10@A2", + "hmrc.employment_income.amount@A1", + "hmrc.employment_income.amount@A2", + ] + assert authored.status_counts == {"active": 4} + assert ( + _candidate(authored.membership_report, "ons.age.0_10", "A1")["resolved_value"] + == 30.0 + ) + assert ( + _candidate( + authored.membership_report, + "hmrc.employment_income.amount", + "A2", + )["resolved_value"] + == 600.0 + ) + amount_reference = authored.references[2] + assert amount_reference["measure"] == "hmrc/employment_income/amount" + assert amount_reference["ledger_selector"]["geography_id"] == "A1" + assert amount_reference["value_operation"] == "count_x_mean" + + +def test_author_area_target_references_refuses_unsigned_absence() -> None: + contract = _single_age_contract() + facts = [ + _area_fact("ons", "population", 10.0, area_id="A1", fact_key="a1-age-0"), + ] + + with pytest.raises(ValueError, match="Unsigned local target absence"): + author_area_target_references( + contract, + facts, + _area_config( + areas=("A1", "A2"), + value_operation_by_target_id={"ons.age.0_10": "sum"}, + ), + ) + + +def test_author_area_target_references_records_signed_no_fact_for_area() -> None: + contract = _single_age_contract() + facts = [ + _area_fact("ons", "population", 10.0, area_id="A1", fact_key="a1-age-0"), + ] + + authored = author_area_target_references( + contract, + facts, + _area_config( + areas=("A1", "A2"), + value_operation_by_target_id={"ons.age.0_10": "sum"}, + area_signed_deferrals=( + AreaSignedDeferral( + target_id="ons.age.0_10", + geography_level="constituency", + reason_id="test_absence", + rationale="Synthetic area A2 has no fact by construction.", + area_ids=("A2",), + ), + ), + ), + ) + + assert [reference["name"] for reference in authored.references] == [ + "ons.age.0_10@A1" + ] + assert authored.status_counts == {"active": 1, "no_fact_for_area": 1} + candidate = _candidate(authored.membership_report, "ons.age.0_10", "A2") + assert candidate["status"] == "no_fact_for_area" + assert candidate["signed_reason_id"] == "test_absence" + + +def test_author_area_target_references_refuses_stale_signing() -> None: + contract = _single_age_contract() + facts = [ + _area_fact("ons", "population", 10.0, area_id="A1", fact_key="a1-age-0"), + ] + + with pytest.raises(ValueError, match="Stale area signed deferral"): + author_area_target_references( + contract, + facts, + _area_config( + areas=("A1",), + value_operation_by_target_id={"ons.age.0_10": "sum"}, + area_signed_deferrals=( + AreaSignedDeferral( + target_id="ons.age.0_10", + geography_level="constituency", + reason_id="stale", + rationale="This signing should fail once the fact exists.", + area_ids=("A1",), + ), + ), + ), + ) + + +def test_author_area_target_references_refuses_signed_area_outside_roster() -> None: + contract = _single_age_contract() + + with pytest.raises(ValueError, match="outside the roster"): + author_area_target_references( + contract, + [], + _area_config( + areas=("A1",), + area_signed_deferrals=( + AreaSignedDeferral( + target_id="ons.age.0_10", + geography_level="constituency", + reason_id="outside", + rationale="A3 is not in the declared roster.", + area_ids=("A3",), + ), + ), + ), + ) + + +def test_generate_uk_local_target_references_cli_writes_resources( + tmp_path: Path, +) -> None: + repo = Path(__file__).resolve().parents[3] + contract_path = tmp_path / "contract.json" + facts_path = tmp_path / "facts.jsonl" + crosswalk_path = tmp_path / "crosswalk.json" + output_path = tmp_path / "local_target_references.json" + membership_path = tmp_path / "membership.json" + contract_path.write_text(json.dumps(_single_age_contract()), encoding="utf-8") + facts_path.write_text( + "\n".join( + json.dumps(row) + for row in ( + _area_fact("ons", "population", 10.0, area_id="A1", fact_key="a1-0"), + _area_fact("ons", "population", 20.0, area_id="A1", fact_key="a1-1"), + ) + ) + + "\n", + encoding="utf-8", + ) + crosswalk_path.write_text( + json.dumps( + { + "levels": { + "constituency": { + "area_ids": ["A1"], + } + } + } + ), + encoding="utf-8", + ) + + result = subprocess.run( + [ + sys.executable, + "tools/generate_uk_local_target_references.py", + "--contract", + str(contract_path), + "--ledger-facts", + str(facts_path), + "--crosswalk", + str(crosswalk_path), + "--output", + str(output_path), + "--membership-report", + str(membership_path), + ], + cwd=repo, + text=True, + capture_output=True, + check=False, + ) + + assert result.returncode == 0, result.stderr + resource = json.loads(output_path.read_text(encoding="utf-8")) + membership = json.loads(membership_path.read_text(encoding="utf-8")) + assert resource["allowed_value_operations"] == [ + "identity", + "sum", + "calendar_year_average", + "latest_plateau", + "count_x_mean", + ] + assert [row["name"] for row in resource["target_references"]] == ["ons.age.0_10@A1"] + assert membership["status_counts"] == {"active": 1} + + +def _candidate(report: dict, target_id: str, area_id: str) -> dict: + candidates = report["targets"][target_id]["geography_levels"]["constituency"][ + "candidates" + ] + for candidate in candidates: + if candidate["geography_id"] == area_id: + return candidate + raise AssertionError(f"Missing candidate {target_id}@{area_id}.") + + +def _area_config( + *, + areas: tuple[str, ...], + value_operation_by_target_id: dict[str, str] | None = None, + area_signed_deferrals: tuple[AreaSignedDeferral, ...] = (), +) -> AreaTargetReferenceAuthoringConfig: + return AreaTargetReferenceAuthoringConfig( + target_period=2025, + areas_by_geography_level={"constituency": areas}, + area_signed_deferrals=area_signed_deferrals, + value_operation_by_target_id=value_operation_by_target_id or {}, + source_fact_feed="synthetic", + ) + + +def _contract() -> dict: + contract = _single_age_contract() + contract["targets"].append( + { + "target_id": "hmrc.employment_income.amount", + "family": "hmrc", + "geography_levels": ["constituency"], + "ledger_selector": { + "source_name": "hmrc", + "source_measure_id": [ + "employment_income_count", + "employment_income_mean", + ], + "record_set_spec_id": "uk.local_geography.spi_income.by_constituency.v1", + }, + "measurement": {"entity": "person", "concept": "uk.income.employment"}, + "bindings": { + "policyengine": { + "metric_name": "hmrc/employment_income/amount", + "value_variable": "employment_income", + "from_entity": "person", + } + }, + } + ) + return contract + + +def _single_age_contract() -> dict: + return { + "country": "uk", + "targets": [ + { + "target_id": "ons.age.0_10", + "family": "ons_population", + "geography_levels": ["constituency"], + "ledger_selector": { + "source_name": "ons", + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + }, + "measurement": {"entity": "person", "concept": "uk.person.count"}, + "bindings": { + "policyengine": { + "metric_name": "age/0_10", + "value_variable": "person_count", + "from_entity": "person", + } + }, + } + ], + } + + +def _area_fact( + source_name: str, + measure_id: str, + value: float, + *, + area_id: str, + fact_key: str, + aggregation: str = "sum", +) -> dict: + if source_name == "ons": + record_set_spec_id = "uk.local_geography.population.age_0_10.v1" + record_set_id = "ons.population.local_age" + dimensions = {"synthetic_band": fact_key} + groupby_dimension = "synthetic_band" + groupby_value_id = fact_key + else: + record_set_spec_id = "uk.local_geography.spi_income.by_constituency.v1" + record_set_id = "hmrc.spi.local_income" + dimensions = {} + groupby_dimension = "" + groupby_value_id = "" + return { + "aggregate_fact_key": f"ledger.aggregate_fact.v2:{fact_key}", + "legacy_fact_key": f"ledger.fact.v1:{fact_key}", + "semantic_fact_key": f"ledger.semantic_fact.v2:{fact_key}", + "lineage": {"source_record_id": f"{source_name}.{fact_key}"}, + "value": value, + "period": {"type": "calendar_year", "value": 2025}, + "geography": { + "level": "constituency", + "id": area_id, + "vintage": "pcon_2024", + }, + "entity": {"name": "person"}, + "observed_measure": { + "source_name": source_name, + "source_measure_id": measure_id, + "source_concept": f"{source_name}.{measure_id}", + "unit": "count", + }, + "aggregation": {"method": aggregation}, + "source": { + "source_name": source_name, + "source_table": "synthetic", + "source_file": "synthetic.csv", + "vintage": "synthetic", + }, + "dimensions": dimensions, + "layout": { + "record_set_id": record_set_id, + "record_set_spec_id": record_set_spec_id, + "groupby_dimension": groupby_dimension, + "groupby_value_id": groupby_value_id, + "measure_id": measure_id, + }, + } diff --git a/packages/microcosm-build/tests/test_uk_battery_bindings.py b/packages/microcosm-build/tests/test_uk_battery_bindings.py index 9667bf0d..5d5adc3a 100644 --- a/packages/microcosm-build/tests/test_uk_battery_bindings.py +++ b/packages/microcosm-build/tests/test_uk_battery_bindings.py @@ -727,6 +727,10 @@ def test_preflight_passes_with_the_committed_manifest(self, uk_gates) -> None: "uk_release_family_build_stages": GateStatus.PASSED, "uk_ledger_compile_parity_production_2023": (GateStatus.EVIDENCE_ABSENT), "uk_ledger_compile_parity_incumbent_2025": GateStatus.EVIDENCE_ABSENT, + "uk_ledger_compile_parity_local_incumbent_2025": ( + GateStatus.EVIDENCE_ABSENT + ), + "uk_target_surface_local_default_2025": GateStatus.EVIDENCE_ABSENT, } def test_ledger_compile_parity_selects_the_declared_period_registry(self) -> None: @@ -768,6 +772,95 @@ def test_ledger_compile_parity_selects_the_declared_period_registry(self) -> Non assert _ledger_compile_parity_registry(context, 2023) is registry_2023 assert _ledger_compile_parity_registry(context, 2025) is registry_2025 + def test_ledger_compile_parity_can_select_the_local_registry_artifact( + self, + ) -> None: + national = TargetRegistry( + ( + TargetSpec( + name="target", + entity="household", + measure="measure", + value=1.0, + period=2025, + source="synthetic", + ), + ), + country="uk", + ) + local = TargetRegistry( + ( + TargetSpec( + name="local_target", + entity="household", + measure="measure", + value=2.0, + period=2025, + source="synthetic", + ), + ), + country="uk", + ) + context = EvidenceContext( + artifacts={ + "uk_ledger_compiled_registries": {2025: national}, + "uk_ledger_compiled_local_registries": {2025: local}, + } + ) + + assert _ledger_compile_parity_registry(context, 2025) is national + assert ( + _ledger_compile_parity_registry( + context, + 2025, + registry_artifact="uk_ledger_compiled_local_registries", + ) + is local + ) + + def test_local_default_target_surface_uses_metric_names_and_signed_deferrals( + self, uk_gates + ) -> None: + spec = load_country_spec("uk") + registry = TargetRegistry( + ( + TargetSpec( + name=reference.name, + entity=reference.entity, + measure=reference.measure, + value=1.0, + period=2025, + source="synthetic", + ) + for reference in spec.local_target_references + ), + country="uk", + ) + entry = {entry.id: entry for entry in uk_gates.gates}[ + "uk_target_surface_local_default_2025" + ] + result = UK_GATE_REGISTRY["target_surface"].evaluate( + EvidenceContext( + artifacts={"uk_ledger_compiled_local_registries": {2025: registry}} + ), + entry.parameters, + ) + + assert result.passed is True + assert result.details["candidate_targets"] == 17_077 + assert result.details["reference_targets"] == 19_642 + # 1,554 signed area deferrals from the membership file plus the 1,011 + # ladder-derived households@area rows: census_households binds from the + # OA-ladder artifact (microcosm#542), never from Chronicle facts, so the + # in-code default surface excludes it by rule rather than by absence. + exclusions = result.details["reviewed_exclusions"] + assert len(exclusions) == 1_554 + 1_011 + households = [ + name for name in exclusions if str(name).startswith("households@") + ] + assert len(households) == 1_011 + assert result.details["missing_reference_targets"] == [] + def test_missing_required_stage_fails_with_the_assertion_text( self, uk_gates ) -> None: diff --git a/packages/microcosm-build/tests/test_uk_firms_targets.py b/packages/microcosm-build/tests/test_uk_firms_targets.py new file mode 100644 index 00000000..3f11775d --- /dev/null +++ b/packages/microcosm-build/tests/test_uk_firms_targets.py @@ -0,0 +1,130 @@ +"""Guarantees for the UK firm calibration contract resource.""" + +from __future__ import annotations + +import json +from collections.abc import Mapping +from importlib import resources as importlib_resources + +from microcosm.build.uk_runtime.firm_generation import ( + DEFAULT_UK_FIRM_TARGET_PROFILE, + UK_FIRM_TARGET_IDS, + load_uk_firms_contract, + uk_firm_target_profile_from_mapping, +) + +FORBIDDEN_VALUE_KEYS = {"aggregation", "operation", "registry", "target_value", "value"} +FORBIDDEN_RUNTIME_KEYS = { + "callable", + "command", + "execute", + "executable", + "function", + "import", + "imports", + "module", + "python_code", + "runtime_code", + "script", + "solver", +} +FIRM_SELECTOR_KEYS = { + "source_name", + "source_measure_id", + "record_set_id", + "groupby_dimension", + "dimensions", +} + + +def _load() -> dict: + return load_uk_firms_contract() + + +def _is_filter_predicate(node: Mapping) -> bool: + return ( + "value" in node + and "operator" in node + and ("concept" in node or "variable" in node) + ) + + +def _carried_forbidden_keys(node, *, in_defaults: bool = False) -> set[str]: + carried: set[str] = set() + if isinstance(node, Mapping): + forbidden = set(FORBIDDEN_VALUE_KEYS | FORBIDDEN_RUNTIME_KEYS) + if _is_filter_predicate(node): + forbidden.discard("value") + if in_defaults: + forbidden.discard("operation") + carried.update(forbidden.intersection(node)) + for child in node.values(): + carried.update(_carried_forbidden_keys(child)) + elif isinstance(node, (list, tuple)): + for child in node: + carried.update(_carried_forbidden_keys(child)) + return carried + + +def test_uk_firms_targets_are_registered_in_the_country_package() -> None: + package = json.loads( + importlib_resources.files("microcosm.build.uk") + .joinpath("country_package.json") + .read_text() + ) + + paths = [ + row["path"] if isinstance(row, dict) else row for row in package["resources"] + ] + assert "uk_firms_targets.json" in paths + + +def test_uk_firms_targets_shape_and_profile_parity() -> None: + resource = _load() + + assert resource["country"] == "uk" + assert resource["allowed_value_operations"] == ["identity"] + assert len(resource["targets"]) == 8 + assert resource["profile_parity"]["source_profile_id"] == "uk_firms" + assert resource["profile_parity"]["source_target_count"] == 8 + assert resource["profile_parity"]["contract_target_count"] == 8 + assert resource["profile_parity"]["selector_rename"] == ( + "chronicle_selector -> ledger_selector" + ) + + +def test_uk_firms_targets_have_unique_target_ids_in_runtime_order() -> None: + resource = _load() + + target_ids = [target["target_id"] for target in resource["targets"]] + assert target_ids == list(UK_FIRM_TARGET_IDS.values()) + assert len(target_ids) == len(set(target_ids)) + + +def test_uk_firms_targets_are_value_free_and_hook_free() -> None: + resource = _load() + + carried = _carried_forbidden_keys( + {key: value for key, value in resource.items() if key != "resolution_defaults"} + ) + carried |= _carried_forbidden_keys( + resource["resolution_defaults"], in_defaults=True + ) + assert not carried, sorted(carried) + + +def test_uk_firms_targets_use_ledger_selector_vocabulary() -> None: + resource = _load() + + for target in resource["targets"]: + selector = target["ledger_selector"] + assert selector + assert "chronicle_selector" not in target + assert set(selector) <= FIRM_SELECTOR_KEYS, target["target_id"] + assert set(target["bindings"]) == {"microcosm", "axiom"} + + +def test_default_uk_firm_target_profile_matches_committed_contract() -> None: + committed = uk_firm_target_profile_from_mapping(_load()) + + assert DEFAULT_UK_FIRM_TARGET_PROFILE == committed diff --git a/packages/microcosm-build/tests/test_uk_ledger_targets.py b/packages/microcosm-build/tests/test_uk_ledger_targets.py index 79de9ae1..6253870f 100644 --- a/packages/microcosm-build/tests/test_uk_ledger_targets.py +++ b/packages/microcosm-build/tests/test_uk_ledger_targets.py @@ -1,9 +1,13 @@ import json from pathlib import Path +from types import SimpleNamespace import numpy as np +import pytest +from microcosm.build.ledger_targets import LedgerTargetReference from microcosm.build.uk_runtime.ledger_targets import ( + compile_uk_local_target_registry, compile_uk_target_registry, materialize_uk_ledger_targets, ) @@ -29,9 +33,7 @@ def __init__(self): child_flags = np.array([True, True, True, False, False, True, True]) self.tables = { "person": { - "capital_gains": np.array( - [0.0, 0.0, 0.0, 5_000.0, 0.0, 0.0, 20_000.0] - ), + "capital_gains": np.array([0.0, 0.0, 0.0, 5_000.0, 0.0, 0.0, 20_000.0]), "person_household_id": person_household, "uc_is_child_limit_affected": child_flags, "is_child": np.array( @@ -46,6 +48,7 @@ def __init__(self): "uc_is_child_limit_affected": np.array([1.0, 0.0, 1.0]), }, } + def column(self, entity, variable): return self.tables[entity][variable] @@ -90,6 +93,62 @@ def _fixture_rows() -> list[dict]: ] +def _local_crosswalk(area_ids: list[str]) -> dict: + return { + "country": "uk", + "levels": { + "constituency": { + "expected_vintage": "pcon_2024", + "area_ids": area_ids, + } + }, + } + + +def _local_fact(value: float, *, area_id: str = "A1", fact_key: str) -> dict: + return { + "aggregate_fact_key": fact_key, + "aggregation": {"method": "sum"}, + "assertion": "observation", + "concept_alignment": { + "authority": "ons", + "canonical_concept": "ons.population", + "relation": "source_label", + "source_concept": "ons.population", + }, + "dimensions": {}, + "entity": {"name": "person", "role": "resident"}, + "geography": { + "level": "constituency", + "id": area_id, + "vintage": "pcon_2024", + }, + "layout": { + "measure_id": "population", + "record_set_id": "uk.local_geography.population.age_0_10", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + }, + "lineage": {"source_record_id": f"{fact_key}.source_record"}, + "observed_measure": { + "source_concept": "ons.population", + "source_measure_id": "population", + "source_name": "ons", + "source_table": "synthetic local population", + "unit": "count", + }, + "period": {"type": "calendar_year", "value": 2025}, + "source": { + "source_name": "ons", + "source_table": "synthetic local population", + "source_file": "fixture.csv", + "vintage": "fixture", + "url": "https://example.test/local-population", + }, + "universe_constraints": {"domain": "population"}, + "value": value, + } + + def test_compile_uk_target_registry_compiles_fixture_subset(): result = compile_uk_target_registry(_fixture_rows(), target_period=2025) names = {spec.name for spec in result.registry.specs} @@ -104,6 +163,116 @@ def test_compile_uk_target_registry_compiles_fixture_subset(): assert result.unsupported +def test_compile_uk_local_target_registry_compiles_synthetic_area(monkeypatch): + reference = LedgerTargetReference( + name="ons.age.0_10@A1", + ledger_selector={ + "source_name": "ons", + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "A1", + }, + value_operation="sum", + entity="person", + measure="age/0_10", + period=2025, + family="ons_population", + metadata={"contract_target_id": "ons.age.0_10"}, + ) + monkeypatch.setattr( + "microcosm.build.uk_runtime.ledger_targets.load_country_spec", + lambda country: SimpleNamespace(local_target_references=(reference,)), + ) + + result = compile_uk_local_target_registry( + [ + _local_fact(10.0, fact_key="ledger.aggregate_fact.v2:a"), + _local_fact(20.0, fact_key="ledger.aggregate_fact.v2:b"), + ], + target_period=2025, + crosswalk=_local_crosswalk(["A1"]), + ) + + assert result.unsupported == () + assert len(result.registry.specs) == 1 + spec = result.registry.specs[0] + assert spec.name == "ons.age.0_10@A1" + assert spec.value == 30.0 + assert spec.metadata["ledger_geography_level"] == "constituency" + assert spec.metadata["ledger_geography_id"] == "A1" + + +def test_compile_uk_local_target_registry_refuses_crosswalk_mismatch(monkeypatch): + reference = LedgerTargetReference( + name="ons.age.0_10@A9", + ledger_selector={ + "source_name": "ons", + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "A9", + }, + value_operation="sum", + entity="person", + measure="age/0_10", + period=2025, + family="ons_population", + metadata={"contract_target_id": "ons.age.0_10"}, + ) + monkeypatch.setattr( + "microcosm.build.uk_runtime.ledger_targets.load_country_spec", + lambda country: SimpleNamespace(local_target_references=(reference,)), + ) + + with pytest.raises(ValueError, match="A9.*pcon_2024"): + compile_uk_local_target_registry( + [_local_fact(10.0, area_id="A9", fact_key="ledger.aggregate_fact.v2:a")], + target_period=2025, + crosswalk=_local_crosswalk(["A1"]), + ) + + +def test_compile_uk_local_target_registry_refuses_wrong_boundary_vintage( + monkeypatch, +): + """PR #795 review closing note: the crosswalk's declared vintage is + operative, not decorative -- a matched fact on a different boundary frame + fails the compile by name. Equivalent frames (ONS lists devolved areas on + its lad_2023 lookup over unchanged boundaries) are accept-set members and + do not refuse.""" + + reference = LedgerTargetReference( + name="ons.age.0_10@A1", + ledger_selector={ + "source_name": "ons", + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + "geography_level": "constituency", + "geography_id": "A1", + }, + value_operation="sum", + entity="person", + measure="age/0_10", + period=2025, + family="ons_population", + metadata={"contract_target_id": "ons.age.0_10"}, + ) + monkeypatch.setattr( + "microcosm.build.uk_runtime.ledger_targets.load_country_spec", + lambda country: SimpleNamespace(local_target_references=(reference,)), + ) + fact = _local_fact(10.0, area_id="A1", fact_key="ledger.aggregate_fact.v2:a") + fact["geography"]["vintage"] = "pcon_2010" + + with pytest.raises(ValueError, match="pcon_2010.*accepts.*pcon_2024"): + compile_uk_local_target_registry( + [fact], + target_period=2025, + crosswalk=_local_crosswalk(["A1"]), + ) + + def test_materialize_uk_ledger_targets_with_stub_adapter(): registry = TargetRegistry( [ diff --git a/packages/microcosm-build/tests/test_uk_local_area_crosswalk.py b/packages/microcosm-build/tests/test_uk_local_area_crosswalk.py new file mode 100644 index 00000000..edeb45af --- /dev/null +++ b/packages/microcosm-build/tests/test_uk_local_area_crosswalk.py @@ -0,0 +1,92 @@ +"""Guarantees for the UK local-area identity crosswalk resource.""" + +from __future__ import annotations + +import json +from importlib import resources as importlib_resources +from pathlib import Path + +import pytest + +from microcosm.build.country_spec import load_country_spec +from tools.generate_uk_local_area_crosswalk import build_local_area_crosswalk + +LADDER_ARTIFACT = Path("build/uk/uk_oa_ladder_2021.npz") +LADDER_SUMMARY = Path("build/uk/ladder_summary.json") + + +def _load() -> dict: + return json.loads( + importlib_resources.files("microcosm.build.uk") + .joinpath("local_area_crosswalk.json") + .read_text() + ) + + +def test_uk_local_area_crosswalk_is_registered_in_the_country_package() -> None: + spec = load_country_spec("uk") + + assert "local_area_crosswalk.json" in spec.resources + assert "local_area_crosswalk.json" in spec.resource_hashes + + +def test_uk_local_area_crosswalk_matches_generator_output() -> None: + if not LADDER_ARTIFACT.exists(): + pytest.skip("sha-pinned UK OA ladder artifact is not mounted") + committed = _load() + generated = build_local_area_crosswalk( + ladder_artifact=LADDER_ARTIFACT, + ladder_summary=LADDER_SUMMARY, + ) + + assert committed == generated + + +def test_uk_local_area_crosswalk_pins_rosters_and_vintages() -> None: + resource = _load() + + assert resource["country"] == "uk" + assert resource["schema_version"] == 1 + assert resource["ladder_artifact_sha256"] == ( + "9c6d56b90d2e975d750106b175020a54c5ec6acf42ef8909d304a9d7fc3868a7" + ) + + constituency = resource["levels"]["constituency"] + assert constituency["ladder_layer"] == "constituency" + assert constituency["ladder_code_column"] == "constituency_code" + assert constituency["ladder_vintage"] == "2024_pcon" + assert constituency["expected_vintage"] == ["pcon_2024"] + assert constituency["area_count"] == 650 + assert len(constituency["area_ids"]) == 650 + assert len(set(constituency["area_ids"])) == 650 + assert {area_id[:3] for area_id in constituency["area_ids"]} == { + "E14", + "N05", + "S14", + "W07", + } + + local_authority = resource["levels"]["local_authority"] + assert local_authority["ladder_layer"] == "local_authority" + assert local_authority["ladder_code_column"] == "local_authority_code" + assert local_authority["ladder_vintage"] == ( + "ew:2023_april_lad;scotland:2019_council_area;ni:2014_lgd" + ) + assert local_authority["expected_vintage"] == { + "E": ["lad_2023"], + "W": ["lad_2023"], + "S": ["ca_2019", "lad_2023"], + "N": ["lgd_2014", "lad_2023"], + } + assert local_authority["area_count"] == 361 + assert len(local_authority["area_ids"]) == 361 + assert len(set(local_authority["area_ids"])) == 361 + assert {area_id[:3] for area_id in local_authority["area_ids"]} == { + "E06", + "E07", + "E08", + "E09", + "N09", + "S12", + "W06", + } diff --git a/packages/microcosm-build/tests/test_uk_local_target_census.py b/packages/microcosm-build/tests/test_uk_local_target_census.py index 9c98c45d..d3fe3d2d 100644 --- a/packages/microcosm-build/tests/test_uk_local_target_census.py +++ b/packages/microcosm-build/tests/test_uk_local_target_census.py @@ -22,6 +22,9 @@ CENSUS_SCHEMA_VERSION, METRIC_STATUS_BOUND_IN_CODE, SOURCE_STATUS_DOCUMENTED_UNPINNED, + SOURCE_STATUS_PINNED_IN_LADDER, + SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + SOURCE_STATUS_SIGNED_DEFERRED, assert_uk_local_target_census_current, build_uk_local_target_census, committed_uk_local_target_census_path, @@ -85,6 +88,8 @@ def test_census_families_partition_metrics_and_reference_known_ids() -> None: def test_census_source_rows_are_reviewed_pointers() -> None: census = build_uk_local_target_census() + statuses = {source["status"] for source in census["sources"]} + assert SOURCE_STATUS_DOCUMENTED_UNPINNED not in statuses for source in census["sources"]: assert source["url"].startswith("https://"), source["source_id"] assert source["publisher"], source["source_id"] @@ -92,8 +97,19 @@ def test_census_source_rows_are_reviewed_pointers() -> None: assert source["verified_on"], source["source_id"] assert source["status"] in { SOURCE_STATUS_DOCUMENTED_UNPINNED, - "pinned_in_ladder", + SOURCE_STATUS_PINNED_IN_LEDGER_FACTS, + SOURCE_STATUS_PINNED_IN_LADDER, + SOURCE_STATUS_SIGNED_DEFERRED, } + if source["status"] == SOURCE_STATUS_PINNED_IN_LEDGER_FACTS: + pin = source["ledger_fact_pin"] + assert pin["facts_sha256"] == ( + "4395a4e76a75332cc77a7dc1ea5d3c49b36e0d268c8449474bc129aa24e38c48" + ) + assert pin["source_commit"] == "33ca98a" + if source["status"] == SOURCE_STATUS_SIGNED_DEFERRED: + assert source["signed_reason_id"], source["source_id"] + assert source["signed_rationale"], source["source_id"] assert source["geographies"], source["source_id"] assert set(source["geographies"]) <= {"constituency", "la", "msoa"} diff --git a/packages/microcosm-build/tests/test_uk_local_targets.py b/packages/microcosm-build/tests/test_uk_local_targets.py index 79e8824b..f677bb04 100644 --- a/packages/microcosm-build/tests/test_uk_local_targets.py +++ b/packages/microcosm-build/tests/test_uk_local_targets.py @@ -102,7 +102,7 @@ def test_metric_names_can_come_from_ledger_target_profile() -> None: ["constituency", "local_authority"], ), _profile_target( - "dwp.uc.households.3plus_children", + "dwp.uc.households_by_area_children_3plus", "uc_hh_3plus_children", ["constituency"], ), @@ -136,7 +136,7 @@ def test_compute_household_metrics_can_use_ledger_profile_subset() -> None: ), _profile_target("ons.age.0_10", "age/0_10", ["constituency"]), _profile_target( - "dwp.uc.households", + "dwp.uc.households_by_area", "uc_households", ["constituency"], ), diff --git a/packages/microcosm-build/tests/test_uk_national_targets.py b/packages/microcosm-build/tests/test_uk_population_targets.py similarity index 59% rename from packages/microcosm-build/tests/test_uk_national_targets.py rename to packages/microcosm-build/tests/test_uk_population_targets.py index 15922595..f829fc25 100644 --- a/packages/microcosm-build/tests/test_uk_national_targets.py +++ b/packages/microcosm-build/tests/test_uk_population_targets.py @@ -1,10 +1,10 @@ -"""Guarantees for the UK national calibration contract resource. +"""Guarantees for the merged UK population calibration contract resource. -``uk/uk_national_targets.json`` is the consumer-side selection contract over +``uk/uk_population_targets.json`` is the consumer-side selection contract over Chronicle facts (chronicle#166 ruling: contracts live in Microcosm; Chronicle -is facts-only). Values resolve from a Chronicle consumer artifact at build -time — the resource itself must stay value-free, hook-free, and closed-world -on its declarative counterfactual vocabulary. Compilation is microcosm#622. +is facts-only). It carries the national and local-geography target rows in one +value-free resource, with separate scoped provenance blocks for the retired +national registry and local profile surfaces. """ from __future__ import annotations @@ -14,6 +14,11 @@ from importlib import resources as importlib_resources from microcosm.build.uk_runtime.fiscal_targets import UK_CGT_TARGET_SPECS +from microcosm.build.uk_runtime.local_targets import ( + load_uk_local_geography_contract, + metric_names, + metric_names_from_target_profile, +) FORBIDDEN_VALUE_KEYS = {"aggregation", "operation", "registry", "target_value", "value"} FORBIDDEN_RUNTIME_KEYS = { @@ -36,7 +41,7 @@ "baseline_flag_crosstab", } PROJECTION_FAMILIES = {"obr", "slc_borrowers", "scotgov_social_security"} -SELECTOR_KEYS = { +NATIONAL_SELECTOR_KEYS = { "source_name", "source_concept", "source_measure_id", @@ -44,6 +49,7 @@ "dimensions", "dimension_values", } +LOCAL_SELECTOR_KEYS = {"source_name", "source_measure_id", "record_set_spec_id"} POLICYENGINE_BINDING_KEYS = { "affected_flag_variable", "band", @@ -72,16 +78,37 @@ "value_variable", "zeroed_input", } +LOCAL_POLICYENGINE_BINDING_KEYS = { + "filters", + "from_entity", + "map_to", + "metric_name", + "value_expression", + "value_variable", +} ASSERTION_POLICIES = {"allow_source_projection"} BINDING_REDUCERS = {"any"} PREDICATE_REDUCERS = {"any", "any_child_under", "count", "sum"} PREDICATE_ENTITIES = {"person", "benunit", "household"} +LOCAL_UC_RENAMES = { + "dwp.universal_credit.households": "dwp.uc.households_by_area", + "dwp.universal_credit.households.0_children": ( + "dwp.uc.households_by_area_children_0" + ), + "dwp.universal_credit.households.1_child": ("dwp.uc.households_by_area_children_1"), + "dwp.universal_credit.households.2_children": ( + "dwp.uc.households_by_area_children_2" + ), + "dwp.universal_credit.households.3plus_children": ( + "dwp.uc.households_by_area_children_3plus" + ), +} def _load() -> dict: payload = ( importlib_resources.files("microcosm.build.uk") - .joinpath("uk_national_targets.json") + .joinpath("uk_population_targets.json") .read_text() ) return json.loads(payload) @@ -112,7 +139,7 @@ def _carried_forbidden_keys(node, *, in_defaults: bool = False) -> set[str]: return carried -def test_uk_national_targets_is_registered_in_the_country_package(): +def test_uk_population_targets_is_registered_in_the_country_package() -> None: package = json.loads( importlib_resources.files("microcosm.build.uk") .joinpath("country_package.json") @@ -120,18 +147,32 @@ def test_uk_national_targets_is_registered_in_the_country_package(): ) paths = [ - row["path"] if isinstance(row, dict) else row - for row in package["resources"] + row["path"] if isinstance(row, dict) else row for row in package["resources"] ] - assert "uk_national_targets.json" in paths + assert "uk_population_targets.json" in paths + assert "uk_national_targets.json" not in paths + assert "uk_local_geography_targets.json" not in paths -def test_uk_national_targets_shape_and_accounting(): +def test_uk_population_targets_shape_order_and_registry_accounting() -> None: resource = _load() assert resource["country"] == "uk" - assert resource["allowed_value_operations"] == ["identity"] - assert len(resource["targets"]) == 189 + assert resource["allowed_value_operations"] == ["identity", "sum"] + assert resource["resolution_defaults"] == { + "base_period_policy": "latest_not_after_build_base_period", + "operation": "sum", + "assertion_policy": "observed_only", + } + assert len(resource["targets"]) == 214 + + target_ids = [target["target_id"] for target in resource["targets"]] + registry_scope = resource["registry_parity"]["scope_target_ids"] + profile_scope = resource["profile_parity"]["scope_target_ids"] + assert len(registry_scope) == 189 + assert len(profile_scope) == 25 + assert target_ids[:189] == registry_scope + assert target_ids[189:] == profile_scope parity = resource["registry_parity"] assert parity["pinned_ref"] == "12a1e028afeef08d8b2d74ee03fd9de3a78b2dd3" @@ -142,8 +183,7 @@ def test_uk_national_targets_shape_and_accounting(): mapped_target_ids = set(parity["mapped"].values()) unmapped_declarations = parity["unmapped_declarations"] assert set(mapped_target_ids).isdisjoint(unmapped_declarations) - declared_target_ids = {target["target_id"] for target in resource["targets"]} - assert mapped_target_ids | set(unmapped_declarations) == declared_target_ids + assert mapped_target_ids | set(unmapped_declarations) == set(registry_scope) assert all(reason for reason in unmapped_declarations.values()) assert len(mapped_target_ids) == 184 assert len(unmapped_declarations) == 5 @@ -153,13 +193,65 @@ def test_uk_national_targets_shape_and_accounting(): assert set(suppressed_ancestors).isdisjoint(parity["excluded"]) assert { entry["contract_target_id"] for entry in suppressed_ancestors.values() - } <= declared_target_ids + } <= set(registry_scope) assert all( "410-Gone" in entry["rationale"] for entry in suppressed_ancestors.values() ) -def test_uk_national_targets_split_terminal_sex_age_bands(): +def test_uk_population_targets_profile_accounting_and_local_renames() -> None: + resource = _load() + + parity = resource["profile_parity"] + assert parity["source_profile_id"] == "uk_local_geography" + assert parity["source_target_count"] == 25 + assert parity["contract_target_count"] == 25 + assert parity["corrected_rows"] == len(parity["corrected"]) == 25 + + targets = {target["target_id"]: target for target in resource["targets"]} + corrected_ids = {entry["target_id"] for entry in parity["corrected"]} + assert corrected_ids == set(parity["scope_target_ids"]) + for entry in parity["corrected"]: + target = targets[entry["target_id"]] + assert entry["corrected_selector"] == target["ledger_selector"] + assert entry["profile_selector"] + assert entry["reason"] + + assert { + entry["target_id"]: entry["renamed_from"] + for entry in parity["corrected"] + if "renamed_from" in entry + } == {new: old for old, new in LOCAL_UC_RENAMES.items()} + + +def test_uk_population_targets_all_declare_geography_levels() -> None: + """Ruling on PR #795 review finding 3: absent geography reads as national + by doctrine, so the committed contract must never omit the field -- a + non-national target that dropped it would silently leak into the national + surface. The runtime warns on hand-built contracts; this test makes the + committed one incapable of triggering that warning.""" + + contract = _load() + undeclared = [ + target["target_id"] + for target in contract["targets"] + if not target.get("geography_levels") + ] + assert undeclared == [] + + +def test_uk_population_targets_accounting_blocks_partition_all_targets() -> None: + resource = _load() + target_ids = {target["target_id"] for target in resource["targets"]} + registry_scope = set(resource["registry_parity"]["scope_target_ids"]) + profile_scope = set(resource["profile_parity"]["scope_target_ids"]) + + assert registry_scope.isdisjoint(profile_scope) + assert registry_scope | profile_scope == target_ids + assert not (target_ids - registry_scope - profile_scope) + + +def test_uk_population_targets_split_terminal_sex_age_bands() -> None: resource = _load() parity = resource["registry_parity"] @@ -169,9 +261,10 @@ def test_uk_national_targets_split_terminal_sex_age_bands(): "ons.population.female_90_plus", "ons.population.male_90_plus", } <= set(parity["unmapped_declarations"]) - assert "single-age-90 share" in parity["accounting_notes"][ - "ons_terminal_sex_band_split" - ] + assert ( + "single-age-90 share" + in parity["accounting_notes"]["ons_terminal_sex_band_split"] + ) female_85_89 = _target_by_id(resource, "ons.population.female_85_89") female_90_plus = _target_by_id(resource, "ons.population.female_90_plus") @@ -205,14 +298,15 @@ def test_uk_national_targets_split_terminal_sex_age_bands(): ] -def test_uk_national_targets_have_unique_target_ids(): +def test_uk_population_targets_have_unique_target_ids() -> None: resource = _load() target_ids = [target["target_id"] for target in resource["targets"]] + assert len(target_ids) == 214 assert len(target_ids) == len(set(target_ids)) -def test_uk_national_targets_are_value_free_and_hook_free(): +def test_uk_population_targets_are_value_free_and_hook_free() -> None: resource = _load() carried = _carried_forbidden_keys( @@ -225,33 +319,50 @@ def test_uk_national_targets_are_value_free_and_hook_free(): assert resource["resolution_defaults"]["operation"] == "sum" -def test_uk_national_targets_declare_selectors_and_closed_world_kinds(): +def test_uk_population_targets_declare_selector_vocabularies_and_bindings() -> None: resource = _load() + registry_scope = set(resource["registry_parity"]["scope_target_ids"]) + profile_scope = set(resource["profile_parity"]["scope_target_ids"]) - metric_names: list[str] = [] + metric_names_seen: list[str] = [] for target in resource["targets"]: + target_id = target["target_id"] selector = target["ledger_selector"] - assert selector, target["target_id"] - assert set(selector) <= SELECTOR_KEYS, target["target_id"] - assert "assertion" not in selector, target["target_id"] + assert selector, target_id binding = target["bindings"]["policyengine"] - assert set(binding) <= POLICYENGINE_BINDING_KEYS, target["target_id"] - metric_names.append(binding["metric_name"]) - kind = binding.get("kind") - assert kind is None or kind in BINDING_KINDS, target["target_id"] + metric_names_seen.append(binding["metric_name"]) + + if target_id in registry_scope: + assert set(selector) <= NATIONAL_SELECTOR_KEYS, target_id + assert "assertion" not in selector, target_id + assert set(binding) <= POLICYENGINE_BINDING_KEYS, target_id + kind = binding.get("kind") + assert kind is None or kind in BINDING_KINDS, target_id + elif target_id in profile_scope: + assert set(selector) <= LOCAL_SELECTOR_KEYS, target_id + assert "chronicle_selector" not in target + assert set(target["bindings"]) == {"policyengine", "axiom"} + assert set(binding) <= LOCAL_POLICYENGINE_BINDING_KEYS, target_id + else: # pragma: no cover - partition test proves this cannot happen. + raise AssertionError(f"unscoped target {target_id}") + if target["family"] in PROJECTION_FAMILIES: - assert target.get("assertion_policy") == "allow_source_projection", target[ - "target_id" - ] + assert target.get("assertion_policy") == "allow_source_projection", ( + target_id + ) else: - assert "assertion_policy" not in target, target["target_id"] - assert len(metric_names) == len(set(metric_names)) + assert "assertion_policy" not in target, target_id + + assert len(metric_names_seen) == len(set(metric_names_seen)) -def test_uk_national_targets_declare_chronicle_loader_guarantees(): +def test_uk_population_targets_declare_chronicle_loader_guarantees() -> None: resource = _load() + registry_scope = set(resource["registry_parity"]["scope_target_ids"]) for target in resource["targets"]: + if target["target_id"] not in registry_scope: + continue selector = target["ledger_selector"] if "dimension_values" in selector: assert _valid_dimension_values(selector["dimension_values"]), target[ @@ -288,18 +399,14 @@ def test_uk_national_targets_declare_chronicle_loader_guarantees(): reduction = binding.get("value_reduction") if reduction is not None: - # A count over a member-level variable declares its reduction, so - # the materializer sums members instead of reading the variable at - # the target's own grain — a boolean read there would collapse to - # a household indicator and be published against a count. - assert set(reduction) == {"variable", "entity", "reduce"}, ( - target["target_id"] - ) + assert set(reduction) == {"variable", "entity", "reduce"}, target[ + "target_id" + ] assert reduction["reduce"] in PREDICATE_REDUCERS, target["target_id"] assert reduction["entity"] in PREDICATE_ENTITIES, target["target_id"] - assert reduction["variable"] == binding.get("value_variable"), ( - target["target_id"] - ) + assert reduction["variable"] == binding.get("value_variable"), target[ + "target_id" + ] if "reduce" in binding: assert binding["reduce"] in BINDING_REDUCERS, target["target_id"] @@ -328,7 +435,62 @@ def test_uk_national_targets_declare_chronicle_loader_guarantees(): ) -def test_uk_uc_households_target_counts_benunits(): +def test_uk_population_targets_use_corrected_local_selector_vocabulary() -> None: + resource = _load() + targets = {target["target_id"]: target for target in resource["targets"]} + + assert targets["ons.age.0_10"]["ledger_selector"] == { + "source_measure_id": "population", + "record_set_spec_id": "uk.local_geography.population.age_0_10.v1", + } + assert "source_name" not in targets["ons.age.70_80"]["ledger_selector"] + assert targets["ons.age.70_80"]["ledger_selector"]["record_set_spec_id"] == ( + "uk.local_geography.population.age_70_80.v1" + ) + assert targets["dwp.uc.households_by_area_children_3plus"]["ledger_selector"] == { + "source_name": "dwp", + "source_measure_id": "universal_credit_households_by_children", + "record_set_spec_id": "uk.local_geography.uc_households.children_3plus.v1", + } + assert ( + targets["dwp.uc.households_by_area_children_3plus"]["bindings"]["policyengine"][ + "metric_name" + ] + == "uc_hh_3plus_children" + ) + assert targets["ons.tenure.private_rent"]["ledger_selector"] == { + "source_measure_id": "households", + "record_set_spec_id": "uk.local_geography.tenure.private_rent.v1", + } + assert targets["hmrc.employment_income.amount"]["ledger_selector"][ + "source_measure_id" + ] == ["employment_income_count", "employment_income_mean"] + assert "count_x_mean" in targets["hmrc.employment_income.amount"]["selector_note"] + assert ( + targets["ons.equiv_net_income_bhc"]["ledger_selector"]["source_measure_id"] + == "equivalised_net_income_before_housing_costs" + ) + assert ( + targets["ons.equiv_housing_costs"]["bindings"]["policyengine"][ + "value_expression" + ] + == "equiv_hbai_household_net_income - equiv_hbai_household_net_income_ahc" + ) + + +def test_uk_population_targets_preserve_local_metric_ordering_contract() -> None: + resource = load_uk_local_geography_contract() + + assert ( + metric_names_from_target_profile(resource, "constituency") + == metric_names("constituency")[:-1] + ) + assert metric_names_from_target_profile(resource, "la") == metric_names("la")[:-1] + assert len(metric_names_from_target_profile(resource, "constituency")) == 17 + assert len(metric_names_from_target_profile(resource, "la")) == 21 + + +def test_uk_population_uc_households_target_counts_benunits() -> None: resource = _load() target = _target_by_id(resource, "dwp.uc.households") @@ -358,7 +520,7 @@ def test_uk_uc_households_target_counts_benunits(): } -def test_uk_uc_composition_and_disability_children_targets_are_rebound(): +def test_uk_uc_composition_and_disability_children_targets_are_rebound() -> None: resource = _load() composition_target_ids = { "dwp.uc.households_children_1", @@ -399,7 +561,7 @@ def test_uk_uc_composition_and_disability_children_targets_are_rebound(): assert binding["affected_flag_variable"] == "uc_is_child_limit_affected" -def test_uk_national_cgt_contract_names_match_runtime_specs(): +def test_uk_population_cgt_contract_names_match_runtime_specs() -> None: resource = _load() cgt_metric_names = sorted( diff --git a/packages/microcosm-build/tests/test_uk_release_certification.py b/packages/microcosm-build/tests/test_uk_release_certification.py index 20c5d7e5..3877ce84 100644 --- a/packages/microcosm-build/tests/test_uk_release_certification.py +++ b/packages/microcosm-build/tests/test_uk_release_certification.py @@ -74,8 +74,17 @@ def _gate(**_kwargs): } -def _write_part(path: Path, scope, phases, *, release_id, release_candidate, - release_evidence=None, augment=None, block_phase=None): +def _write_part( + path: Path, + scope, + phases, + *, + release_id, + release_candidate, + release_evidence=None, + augment=None, + block_phase=None, +): registry = _stub_registry() manifest = uk_scoped_gate_manifest( frozenset(scope), @@ -221,7 +230,10 @@ def test_rehydrate_fit_weight_records(): { "fit_weight_records": { "was_wealth": [ - {"fit_name": "uk_was_2018_20_wealth:savings", "weight_kind": "design"} + { + "fit_name": "uk_was_2018_20_wealth:savings", + "weight_kind": "design", + } ], } } @@ -232,9 +244,7 @@ def test_rehydrate_fit_weight_records(): # A fitting stage that recorded nothing coerces the whole artifact to # (), which the weights-audit binding fails — never a vacuous pass. assert ( - rehydrate_uk_fit_weight_records( - {"fit_weight_records": {"was_wealth": []}} - ) + rehydrate_uk_fit_weight_records({"fit_weight_records": {"was_wealth": []}}) == () ) # A malformed block is corruption, not an empty audit: it raises rather @@ -283,9 +293,7 @@ class _Reference: ) evidence = uk_release_parity_evidence( _Frame(), - diagnostics_targets=[ - {"name": "dwp.uc.households@2025", "relative_error": 0.1} - ], + diagnostics_targets=[{"name": "dwp.uc.households@2025", "relative_error": 0.1}], reference_registry=_Registry(), parity_reference=_Reference(), ) @@ -327,7 +335,9 @@ def test_compose_refuses_tampered_part_signature(green_certification_inputs): seam_path = green_certification_inputs["seam_report_path"] payload = json.loads(seam_path.read_text(encoding="utf-8")) payload["release_id"] = "dev-seam-tampered" - seam_path.write_text(json.dumps(payload, indent=2, sort_keys=True), encoding="utf-8") + seam_path.write_text( + json.dumps(payload, indent=2, sort_keys=True), encoding="utf-8" + ) # Keep the build record's byte pin in step so the signature check is # the refusal that fires, not the identity join. green_certification_inputs["build_record"]["artifacts"]["terminal_gate_json"][ @@ -350,13 +360,15 @@ def test_compose_refuses_blocked_part(green_certification_inputs): spine_path = green_certification_inputs["spine_report_path"] payload = json.loads(spine_path.read_text(encoding="utf-8")) payload["blocked_at_phase"] = "transferred" - spine_path.write_text(json.dumps(payload, indent=2, sort_keys=True), encoding="utf-8") + spine_path.write_text( + json.dumps(payload, indent=2, sort_keys=True), encoding="utf-8" + ) green_certification_inputs["spine_sidecar"]["spine_gate_report"]["sha256"] = _sha( spine_path ) - green_certification_inputs["build_record"]["spine_provenance"][ - "spine_gate_report" - ]["sha256"] = _sha(spine_path) + green_certification_inputs["build_record"]["spine_provenance"]["spine_gate_report"][ + "sha256" + ] = _sha(spine_path) with pytest.raises(UKReleaseCertificationError, match="blocked"): compose_uk_release_certification(**green_certification_inputs) @@ -380,9 +392,9 @@ def test_compose_refuses_sidecar_report_mismatch(green_certification_inputs): def test_compose_refuses_candidate_mismatch(green_certification_inputs): - green_certification_inputs["build_record"]["artifacts"]["staging_h5"][ - "sha256" - ] = "0" * 64 + green_certification_inputs["build_record"]["artifacts"]["staging_h5"]["sha256"] = ( + "0" * 64 + ) with pytest.raises(UKReleaseCertificationError, match="staged a different"): compose_uk_release_certification(**green_certification_inputs) @@ -428,9 +440,7 @@ def test_compose_refuses_score_receipt_scored_on_another_artifact( ), encoding="utf-8", ) - with pytest.raises( - UKReleaseCertificationError, match="artifacts.candidate.sha256" - ): + with pytest.raises(UKReleaseCertificationError, match="artifacts.candidate.sha256"): compose_uk_release_certification(**green_certification_inputs) @@ -455,6 +465,7 @@ def test_release_cut_battery_runs_and_signs(tmp_path: Path, monkeypatch): coverage_engine=object(), build_stage_names=("frs_spine",), ledger_registries={2023: object(), 2025: object()}, + local_ledger_registries={2025: object()}, parity_evidence=object(), fit_weight_records=None, input_mass_reference={}, diff --git a/packages/microcosm-build/tests/test_uk_target_references.py b/packages/microcosm-build/tests/test_uk_target_references.py index 75869ba6..d9ee9d21 100644 --- a/packages/microcosm-build/tests/test_uk_target_references.py +++ b/packages/microcosm-build/tests/test_uk_target_references.py @@ -59,7 +59,7 @@ def _load_uk_resource(name: str) -> dict: def _contract_targets_by_id() -> dict[str, dict]: - contract = _load_uk_resource("uk_national_targets.json") + contract = _load_uk_resource("uk_population_targets.json") return {target["target_id"]: target for target in contract["targets"]} @@ -199,7 +199,7 @@ def test_prefix_geography_pins_carry_scotgov_and_england_scoped_slc_families() - pin and stay held: activating them needs contract redesign (per-nation repayment rows; an England-and-Wales PIP binding), not a pin change. """ - contract = _load_uk_resource("uk_national_targets.json") + contract = _load_uk_resource("uk_population_targets.json") pins = _geography_pins(contract) scotgov_ids = { str(target["target_id"]) @@ -445,7 +445,7 @@ def test_uk_target_references_compile_from_real_staged_feed_rows() -> None: def test_uk_generator_assigns_calendar_average_to_uc_benefit_unit_targets() -> None: - contract = _load_uk_resource("uk_national_targets.json") + contract = _load_uk_resource("uk_population_targets.json") facts = [ _uc_benefit_units_fact("2025-04", value=6_380_000.0), *( diff --git a/packages/microcosm-build/tests/test_us_plan.py b/packages/microcosm-build/tests/test_us_plan.py index 50c8b379..b893f8cb 100644 --- a/packages/microcosm-build/tests/test_us_plan.py +++ b/packages/microcosm-build/tests/test_us_plan.py @@ -985,11 +985,11 @@ def test_no_incumbent_data_package_references_in_live_tree(self) -> None: "packages/microcosm-build/src/microcosm/build/uk/efrs_parity_reference.json", "packages/microcosm-build/src/microcosm/build/uk/frs_release.json", "packages/microcosm-build/src/microcosm/build/uk/hmrc_income_source_stages.json", - # The UK national contract's registry-parity accounting names the + # The UK population contract's registry-parity accounting names the # retired data package by necessity: 651 rows at pinned ref ebf733c # = 609 mapped + 42 signed exclusions + 3 unmapped declarations. # A sha-locked historical reference — nothing imported or executed. - "packages/microcosm-build/src/microcosm/build/uk/uk_national_targets.json", + "packages/microcosm-build/src/microcosm/build/uk/uk_population_targets.json", "packages/microcosm-build/src/microcosm/build/uk/target_reference_membership.json", "packages/microcosm-build/src/microcosm/build/uk_runtime/parity_reference.py", # The HMRC source contract pins the licensed SPI/ODS input @@ -1014,6 +1014,12 @@ def test_no_incumbent_data_package_references_in_live_tree(self) -> None: "calibration_diagnostics.json" ), "tools/build_uk_efrs_parity_reference.py", + # The UK local registry incumbent fixture keeps its one-off + # extractor as provenance for the frozen JSON fixture. It is not + # imported by package code or live gate/build paths. + "packages/microcosm-build/src/microcosm/build/uk/" + "local_registry_parity_fixture_2025.json", + "tools/extract_uk_local_registry_fixture.py", "UK_COVERAGE_PROGRESS.md", } checked_suffixes = {".py", ".toml", ".md", ".json"} diff --git a/packages/microcosm-data/src/microcosm/data/contract.py b/packages/microcosm-data/src/microcosm/data/contract.py index 4d765a46..8c0ef39f 100644 --- a/packages/microcosm-data/src/microcosm/data/contract.py +++ b/packages/microcosm-data/src/microcosm/data/contract.py @@ -375,13 +375,13 @@ # fingerprint derives from the manifest digest. Editing the spec moves all # three here in the same reviewed change. _UK_GATE_BATTERY_POLICY_SHA256 = ( - "955d56d8a6ce608615b863a51c5040bdf3b5db16afb92cf1035979c6f55719b8" + "12c8a7fd526932decf19954881f43a123451f0454ac2603ff5ab08b0d246e37a" ) _UK_GATE_BATTERY_GATES_MANIFEST_SHA256 = ( - "7a8b261a2a9dd87e3a57579c55469d769deaa0002f6ee006370629ab0af8b4e0" + "2a7cb1441d9c9bab3afde33ad1a2957484c7bde46f93c65386b98dd7a665b812" ) _UK_GATE_BATTERY_SPEC_FINGERPRINT = ( - "e4c4a8fc302f79379e2e2ae75962428781c6cb3c0c31c825fd698240bfe6c89e" + "65a2c85db2abd8edd935fda79e5c5ef8e15f89ba59ec4e2763d485c5170fd550" ) #: Spec entry id -> the legacy gate name whose observable detail checks #: apply unchanged (the battery re-keys the report by entry id; the gate @@ -448,6 +448,11 @@ ), "uk_stage_student_loans_realization": ("stage_health", "transferred"), "uk_stage_age_tail_targets": ("stage_health", "transferred"), + "uk_ledger_compile_parity_local_incumbent_2025": ( + "ledger_compile_parity", + "preflight", + ), + "uk_target_surface_local_default_2025": ("target_surface", "preflight"), "uk_release_input_coverage": ("release_input_coverage", "terminal"), "uk_degenerate_release_surface": ("degenerate_release_surface", "terminal"), "uk_zero_weight_strata": ("zero_weight_strata", "terminal"), @@ -479,6 +484,8 @@ "uk_release_family_build_stages", "uk_ledger_compile_parity_production_2023", "uk_ledger_compile_parity_incumbent_2025", + "uk_ledger_compile_parity_local_incumbent_2025", + "uk_target_surface_local_default_2025", "uk_degenerate_release_surface", "uk_input_mass_parity", "uk_stage_was_wealth_support", @@ -574,6 +581,8 @@ "uk_export_surface", "uk_input_mass_parity", "uk_ledger_compile_parity_incumbent_2025", + "uk_ledger_compile_parity_local_incumbent_2025", + "uk_target_surface_local_default_2025", "uk_ledger_compile_parity_production_2023", "uk_nonnegative_columns", "uk_qrf_tail_concentration", @@ -607,10 +616,10 @@ }, "release_cut": { "gates_manifest_sha256": ( - "2c698843042584af8976196f92b2baf097beca93b846fca74671a1cc3cc879aa" + "cb480ea8735648bd089322bb434ce87f48fb71b7ad62f55f091d7e7356049c55" ), "policy_sha256": ( - "e73dcbcaa07e34d23c8cf40b251f19fd00d9d2b85202647ca0ea13cb1021769a" + "775d7a91fa1fc4aebb312bd45f18e5d9a077bb38d936fc408a2f812c341ecc95" ), }, } @@ -2851,9 +2860,7 @@ def _check_uk_release_certification( f"{file} parts.{part_name}.phases must be {expected_phases}, " f"got {part.get('phases')!r}." ) - for field, expected_digest in _UK_CERTIFICATION_PART_DIGESTS[ - part_name - ].items(): + for field, expected_digest in _UK_CERTIFICATION_PART_DIGESTS[part_name].items(): if part.get(field) != expected_digest: failures.append( f"{file} parts.{part_name}.{field} does not match the " @@ -2884,8 +2891,7 @@ def _check_uk_release_certification( union[gate_id] = union.get(gate_id, 0) + 1 if set(union) != _UK_GATE_BATTERY_ENTRY_IDS: failures.append( - f"{file} mirrored part scopes do not union to the declared " - "gate-entry set." + f"{file} mirrored part scopes do not union to the declared gate-entry set." ) overlap = sorted( gate_id @@ -2919,8 +2925,7 @@ def _check_uk_release_certification( ) if list(spec.get("declared_phases", ())) != list(_UK_GATE_BATTERY_PHASES): failures.append( - f"{file} spec.declared_phases must be " - f"{list(_UK_GATE_BATTERY_PHASES)}." + f"{file} spec.declared_phases must be {list(_UK_GATE_BATTERY_PHASES)}." ) if list(spec.get("shared_gate_ids", ())) != sorted( _UK_CERTIFICATION_SHARED_GATE_IDS diff --git a/packages/microcosm-data/tests/test_contract.py b/packages/microcosm-data/tests/test_contract.py index 27a45791..7badf057 100644 --- a/packages/microcosm-data/tests/test_contract.py +++ b/packages/microcosm-data/tests/test_contract.py @@ -135,13 +135,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 = ( - "955d56d8a6ce608615b863a51c5040bdf3b5db16afb92cf1035979c6f55719b8" + "12c8a7fd526932decf19954881f43a123451f0454ac2603ff5ab08b0d246e37a" ) UK_GATE_BATTERY_GATES_MANIFEST_SHA256 = ( - "7a8b261a2a9dd87e3a57579c55469d769deaa0002f6ee006370629ab0af8b4e0" + "2a7cb1441d9c9bab3afde33ad1a2957484c7bde46f93c65386b98dd7a665b812" ) UK_GATE_BATTERY_SPEC_FINGERPRINT = ( - "e4c4a8fc302f79379e2e2ae75962428781c6cb3c0c31c825fd698240bfe6c89e" + "65a2c85db2abd8edd935fda79e5c5ef8e15f89ba59ec4e2763d485c5170fd550" ) UK_GATE_BATTERY_DEGENERATE_EVIDENCE_SHA256 = ( "d0d024043132fa07c378c393dbe2b24fe99bf19e876bcc39997d2c80cc9bd4f6" @@ -212,6 +212,16 @@ def _trusted_terminal_gate_signing_key(monkeypatch) -> None: None, ), "uk_stage_age_tail_targets": ("stage_health", "transferred", None), + "uk_ledger_compile_parity_local_incumbent_2025": ( + "ledger_compile_parity", + "preflight", + None, + ), + "uk_target_surface_local_default_2025": ( + "target_surface", + "preflight", + None, + ), "uk_release_input_coverage": ( "release_input_coverage", "terminal", @@ -1144,6 +1154,24 @@ def _gate_battery_payload( "actual_count": 636, "signed_difference_count": 0, } + elif entry_id == "uk_ledger_compile_parity_local_incumbent_2025": + details = { + "fixture": "incumbent_local_2025", + "expected_count": 23_545, + "actual_count": 17_077, + "signed_difference_count": 23_837, + } + elif entry_id == "uk_target_surface_local_default_2025": + details = { + "candidate_name": "UK local compiled Ledger surface", + "reference_name": "UK local default metric surface", + "candidate_targets": 17_077, + "reference_targets": 19_642, + "extra_candidate_targets": [], + "missing_reference_targets": [], + "reviewed_exclusions": {}, + "unused_reviewed_exclusions": [], + } elif entry_id == "uk_calibration_reference_coverage": details = {"activated": 388, "resolved": 388, "matrix": 388} elif gate == "stage_health": @@ -1182,6 +1210,29 @@ def _gate_battery_payload( "signed_differences": [], } ), + "uk_ledger_compile_parity_local_incumbent_2025": _canonical_sha256( + { + "fixture_resource": "local_registry_parity_fixture_2025.json", + "registry_artifact": "uk_ledger_compiled_local_registries", + "registry_count": 17_077, + "registry_version": "fixture", + "signed_differences": [], + "target_period": 2025, + } + ), + "uk_target_surface_local_default_2025": _canonical_sha256( + { + "candidate_targets": 17_077, + "crosswalk_resource": "local_area_crosswalk.json", + "expected": "local_default_surface", + "membership_resource": "local_target_reference_membership.json", + "reference_targets": 19_642, + "registry_artifact": "uk_ledger_compiled_local_registries", + "registry_count": 17_077, + "reviewed_exclusions": 1_554, + "target_period": 2025, + } + ), "uk_degenerate_release_surface": UK_GATE_BATTERY_DEGENERATE_EVIDENCE_SHA256, "uk_input_mass_parity": UK_GATE_BATTERY_INPUT_MASS_EVIDENCE_SHA256, } @@ -4908,9 +4959,9 @@ def _green_uk_certification(key: bytes) -> dict: "release_id": "uk-757-first-certified-cut", "phases": list(contract._UK_CERTIFICATION_PART_PHASES[part_name]), "entry_ids": sorted(scope), - "gates_manifest_sha256": contract._UK_CERTIFICATION_PART_DIGESTS[ - part_name - ]["gates_manifest_sha256"], + "gates_manifest_sha256": contract._UK_CERTIFICATION_PART_DIGESTS[part_name][ + "gates_manifest_sha256" + ], "policy_sha256": contract._UK_CERTIFICATION_PART_DIGESTS[part_name][ "policy_sha256" ], diff --git a/tools/build_uk_ledger_compile_parity_signed_differences.py b/tools/build_uk_ledger_compile_parity_signed_differences.py index 2126728b..b47a4ea1 100644 --- a/tools/build_uk_ledger_compile_parity_signed_differences.py +++ b/tools/build_uk_ledger_compile_parity_signed_differences.py @@ -9,7 +9,12 @@ from pathlib import Path from microcosm.build.gates import ledger_compile_parity_signed_differences -from microcosm.build.uk_runtime.ledger_targets import compile_uk_target_registry +from microcosm.build.uk_runtime.ledger_targets import ( + LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE, + align_uk_local_registry_parity_fixture, + compile_uk_local_target_registry, + compile_uk_target_registry, +) UK_PACKAGE = "microcosm.build.uk" UK_PACKAGE_DIR = ( @@ -28,6 +33,7 @@ class ParityReceiptSpec: fixture_resource: str output_resource: str target_period: int + surface: str = "national" RECEIPTS = ( @@ -41,6 +47,14 @@ class ParityReceiptSpec: output_resource="ledger_compile_parity_incumbent_2025_signed_differences.json", target_period=2025, ), + ParityReceiptSpec( + fixture_resource=LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE, + output_resource=( + "ledger_compile_parity_local_incumbent_2025_signed_differences.json" + ), + target_period=2025, + surface="local", + ), ) _CGT_GAINS_TOTAL_RATIONALE = ( @@ -71,6 +85,165 @@ class ParityReceiptSpec: ), } +_DEVOLVED_RENT_FIXTURE_ONLY_RATIONALE = ( + "Ruled signed exclusion: the incumbent y-values for devolved private rent " + "are hardcoded constants in devolved_housing.py with no source or year, " + "then allocated by population share. Adopting them would violate the " + "facts-only doctrine; a Chronicle facts request covers sourced Scottish " + "Government and StatsWales private-rent statistics." +) + +_COUNCIL_TAX_FIXTURE_ONLY_RATIONALE = ( + "Ruled signed exclusion: the local contract declares no council-tax " + "targets and Microcosm has no council-tax local metric computations. The " + "wave-3 VOA/MHCLG/Scottish Government/Welsh Government facts are scoped " + "as follow-up work, including the contract targets and metric bindings." +) + +_DEVOLVED_RENT_METRICS = frozenset( + { + "housing/wales_private_renter_households", + "housing/wales_private_rent_amount", + "housing/scotland_private_renter_households", + "housing/scotland_private_rent_amount", + } +) + +_COUNCIL_TAX_METRICS = frozenset( + {"housing/council_tax_net"} | {f"voa/council_tax/{band}" for band in "ABCDEFGH"} +) + +_UC_METRICS = frozenset( + { + "uc_households", + "uc_hh_0_children", + "uc_hh_1_child", + "uc_hh_2_children", + "uc_hh_3plus_children", + } +) + +# Cite the issue in the repo's short form throughout: the live tree may not +# name the retired data package (test_us_plan's incumbent-reference guard). +_UC_TOTALS_DRIFT_RATIONALE = ( + "Fix-and-signed (Maria's ruling, PR #795): the fixture corrects " + "uk-data#468 at extraction - the incumbent attaches local UC counts by " + "row position against unrelated orderings, so its live y-frame is a " + "permutation; the fixture joins the same publisher counts to their areas " + "by name instead. The residual per-area gap is the incumbent's uniform " + "national payment-distribution rescale (fixture/ours 0.8925-0.9003 " + "across all 982 total rows) plus sub-0.5% extract-vintage noise - the " + "same scaling class the SPI and age families carry." +) + +_UC_CHILDREN_DRIFT_RATIONALE = ( + "Fix-and-signed (Maria's ruling, PR #795), imputation-vs-published " + "class: on top of the uk-data#468 alignment correction and the national " + "rescale, the incumbent's child splits are a COUNTRY-share imputation " + "(GB proportions applied to each area's total), while ours are the " + "published Stat-Xplore per-area child-count buckets. The per-area " + "scatter (p5-p95 fixture/ours 0.77-1.19) is the real geographic " + "variation in family size that the imputation flattens." +) + +_UC_NI_FIXTURE_ONLY_RATIONALE = ( + "Signed deferral: DWP Stat-Xplore publishes UC for Great Britain only, so " + "the Northern Ireland areas have no UC facts in the pinned feed. The " + "incumbent fills NI from the DfC May-2025 supplementary tables, which are " + "requested as a Chronicle port in chronicle#200; the child splits stay " + "deferred regardless (no NI child-count source; the incumbent imputes them " + "from GB proportions)." +) + +_AGE_DRIFT_RATIONALE = ( + "Vintage and scaling class: ours holds the mid-2024 per-area publisher " + "estimates at identity; the incumbent scales its age columns by " + "uk_total_population / targets_total_pop * 0.9 (a bare literal) and, at " + "constituency grain, boundary-maps 2010-vintage rows to PCON24." +) + +_HMRC_DRIFT_RATIONALE = ( + "Scaling and operation class: both sides read the same SPI tables for tax " + "year 2023-24; ours resolves counts at identity and amounts as the " + "declared count_x_mean operation, while the incumbent multiplies every " + "column by a national income-projection ratio for the target year." +) + +_TENURE_DRIFT_RATIONALE = ( + "Vintage class: ours holds the per-nation census tenure counts (E&W 2021, " + "Scotland 2022, NI 2021) at identity with uprating declared as holds; the " + "incumbent derives counts as percentage shares times a separate " + "household-count workbook." +) + +_EQUIV_INCOME_FIXTURE_ONLY_RATIONALE = ( + "Signed deferral: ONS publishes small-area income at MSOA grain only — the " + "feed carries no local-authority rows, and MSOA-to-LA aggregation of a " + "mean-valued, model-output series is ruled downstream build work behind the " + "frs_model_based_target_circularity and ons_bhc_ahc_noncomparable fences." +) + +_PRIVATE_RENT_FIXTURE_ONLY_RATIONALE = ( + "Signed deferral: every PIPR fact in the pinned feed is dated 2026-06, " + "after the 2025 target period; Scotland is published at BRMA grain and " + "Northern Ireland is absent. chronicle#200 asks for the 2025 months, which " + "the package's preserved source rows already carry." +) + +_LEDGER_ONLY_RATIONALE = ( + "Coverage the incumbent lacks: our side compiles a published per-area fact " + "the incumbent's surface NaN-masks or never carries (for example Northern " + "Ireland SPI and tenure rows). Confirmed by roster diff (PR #795 round-3 " + "review): the incumbent's 360-row LA file carries N09000001-N09000010 " + "only, omitting N09000011 (Newry, Mourne and Down) entirely - the 361st " + "crosswalk area is a genuine incumbent roster gap, not a dropped row." +) + +_LOCAL_DRIFT_RATIONALES = { + "uc_households": _UC_TOTALS_DRIFT_RATIONALE, + **{ + metric: _UC_CHILDREN_DRIFT_RATIONALE + for metric in _UC_METRICS + if metric != "uc_households" + }, + **{f"age/{lower}_{lower + 10}": _AGE_DRIFT_RATIONALE for lower in range(0, 80, 10)}, + **{ + f"hmrc/{variable}/{measure}": _HMRC_DRIFT_RATIONALE + for variable in ("employment_income", "self_employment_income") + for measure in ("amount", "count") + }, + **{ + f"tenure/{key}": _TENURE_DRIFT_RATIONALE + for key in ("owned_outright", "owned_mortgage", "private_rent", "social_rent") + }, +} + +_SPI_CELL_FIXTURE_ONLY_RATIONALE = ( + "Signed deferral: the publisher's SPI area tables lack the cell upstream — " + "E14001416 publishes a self-employment count with no mean (so count_x_mean " + "cannot resolve), and two local authorities carry no SPI target measures. " + "The incumbent's fixture row for these cells is a boundary-mapped blend, " + "not a published cell." +) + +_LOCAL_FIXTURE_ONLY_RATIONALES = { + **{metric: _UC_NI_FIXTURE_ONLY_RATIONALE for metric in _UC_METRICS}, + **{ + f"hmrc/{variable}/{measure}": _SPI_CELL_FIXTURE_ONLY_RATIONALE + for variable in ("employment_income", "self_employment_income") + for measure in ("amount", "count") + }, + **{ + f"ons/{key}": _EQUIV_INCOME_FIXTURE_ONLY_RATIONALE + for key in ( + "equiv_net_income_bhc", + "equiv_net_income_ahc", + "equiv_housing_costs", + ) + }, + "rent/private_rent": _PRIVATE_RENT_FIXTURE_ONLY_RATIONALE, +} + def _parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser() @@ -86,6 +259,12 @@ def _parse_args() -> argparse.Namespace: default=UK_PACKAGE_DIR, help="Directory receiving the signed-difference JSON resources.", ) + parser.add_argument( + "--surface", + choices=("all", "national", "local"), + default="all", + help="Receipt surface to regenerate. Use 'local' to avoid national receipt churn.", + ) return parser.parse_args() @@ -98,7 +277,32 @@ def _load_jsonl(path: Path) -> list[dict]: def _load_fixture(resource: str) -> dict: - return json.loads(importlib_resources.files(UK_PACKAGE).joinpath(resource).read_text()) + return json.loads( + importlib_resources.files(UK_PACKAGE).joinpath(resource).read_text() + ) + + +def _load_crosswalk() -> dict: + return json.loads( + importlib_resources.files(UK_PACKAGE) + .joinpath("local_area_crosswalk.json") + .read_text() + ) + + +def _local_metric_by_target_id() -> dict[str, str]: + contract = json.loads( + importlib_resources.files(UK_PACKAGE) + .joinpath("uk_population_targets.json") + .read_text() + ) + mapping: dict[str, str] = {} + for target in contract.get("targets", ()): + binding = target.get("bindings", {}).get("policyengine", {}) + metric = binding.get("metric_name") + if metric: + mapping[str(target["target_id"])] = str(metric) + return mapping def _aligned_fixture(fixture: dict) -> dict: @@ -139,21 +343,72 @@ def _add_signed_rationale_notes( row["reason"] = _ONS_TERMINAL_BAND_RATIONALES[name] +def _add_local_signed_rationale_notes(report: dict[str, object]) -> None: + """Replace generic classifier reasons with the ruled per-family rationales. + + Every rationale names its cause (an adjudicated exclusion, a signed + deferral, a diagnosed incumbent defect, or a declared scaling/vintage + class). A row whose (metric, kind) has no ruled rationale keeps the + classifier's generic reason — never invent one. + """ + + metric_by_target_id = _local_metric_by_target_id() + for row in report.get("differences", ()): + if not isinstance(row, dict): + continue + prefix = str(row.get("name", "")).split("@", 1)[0] + metric = metric_by_target_id.get(prefix, prefix) + kind = str(row.get("kind", "")) + if metric in _DEVOLVED_RENT_METRICS: + row["reason"] = _DEVOLVED_RENT_FIXTURE_ONLY_RATIONALE + elif metric in _COUNCIL_TAX_METRICS: + row["reason"] = _COUNCIL_TAX_FIXTURE_ONLY_RATIONALE + elif kind == "calibration_drift" and metric in _LOCAL_DRIFT_RATIONALES: + row["reason"] = _LOCAL_DRIFT_RATIONALES[metric] + elif kind == "fixture_only" and metric in _LOCAL_FIXTURE_ONLY_RATIONALES: + row["reason"] = _LOCAL_FIXTURE_ONLY_RATIONALES[metric] + elif kind == "ledger_only": + row["reason"] = _LEDGER_ONLY_RATIONALE + + +def _compile_for_receipt(spec: ParityReceiptSpec, facts: list[dict]): + if spec.surface == "national": + return compile_uk_target_registry( + facts, + target_period=spec.target_period, + ) + if spec.surface == "local": + return compile_uk_local_target_registry( + facts, + target_period=spec.target_period, + crosswalk=_load_crosswalk(), + ) + raise ValueError(f"unknown parity receipt surface {spec.surface!r}.") + + +def _fixture_for_receipt(spec: ParityReceiptSpec) -> dict: + fixture = _aligned_fixture(_load_fixture(spec.fixture_resource)) + if spec.surface == "local": + return align_uk_local_registry_parity_fixture(fixture) + return fixture + + def main() -> None: args = _parse_args() facts = _load_jsonl(args.ledger_facts) args.output_dir.mkdir(parents=True, exist_ok=True) for spec in RECEIPTS: - compilation = compile_uk_target_registry( - facts, - target_period=spec.target_period, - ) + if args.surface != "all" and spec.surface != args.surface: + continue + compilation = _compile_for_receipt(spec, facts) report = ledger_compile_parity_signed_differences( compilation.registry, - _aligned_fixture(_load_fixture(spec.fixture_resource)), + _fixture_for_receipt(spec), unsupported=compilation.unsupported, ) _add_signed_rationale_notes(report, fixture_resource=spec.fixture_resource) + if spec.surface == "local": + _add_local_signed_rationale_notes(report) output_path = args.output_dir / spec.output_resource output_path.write_text( json.dumps(report, indent=1, ensure_ascii=False) + "\n", @@ -168,6 +423,7 @@ def main() -> None: "fixture": spec.fixture_resource, "fixture_count": report["fixture_count"], "output": spec.output_resource, + "surface": spec.surface, "target_period": spec.target_period, }, sort_keys=True, diff --git a/tools/certify_uk_release_cut.py b/tools/certify_uk_release_cut.py index 4ec6db5b..5d18e892 100644 --- a/tools/certify_uk_release_cut.py +++ b/tools/certify_uk_release_cut.py @@ -1,6 +1,6 @@ """Certify a calibrated UK national candidate for release. -The release-cut certification producer (microcosm#757 item B5): runs the 16 +The release-cut certification producer (microcosm#757 item B5): runs the 18 declared national preflight/terminal gates over the calibrated candidate — the executable home the June driver's retirement left empty — then composes the multi-part certification over the spine build's battery report, the @@ -41,7 +41,11 @@ write_error_receipt, ) from microcosm.build.uk_runtime.frs_release import load_uk_frs_release -from microcosm.build.uk_runtime.ledger_targets import compile_uk_target_registry +from microcosm.build.uk_runtime.ledger_targets import ( + compile_uk_local_target_registry, + compile_uk_target_registry, + load_uk_local_area_crosswalk, +) from microcosm.build.uk_runtime.measure_simulation import ( apply_uk_calibration_measure_exclusions, load_uk_calibration_measure_exclusions, @@ -66,6 +70,7 @@ _REPOSITORY = Path(__file__).resolve().parents[1] _PIPELINE = "uk-frs-release-certification" _LEDGER_COMPILE_PARITY_PERIODS = (2023, 2025) +_LOCAL_COMPILE_PARITY_PERIOD = 2025 def main(argv: list[str] | None = None) -> int: @@ -180,10 +185,14 @@ def _run(args: argparse.Namespace, state: AttemptState) -> dict[str, object]: ) ledger_registries = {} for period in _LEDGER_COMPILE_PARITY_PERIODS: - compilation = compile_uk_target_registry( - artifact.facts, target_period=period - ) + compilation = compile_uk_target_registry(artifact.facts, target_period=period) ledger_registries[period] = compilation.registry + local_compilation = compile_uk_local_target_registry( + artifact.facts, + target_period=_LOCAL_COMPILE_PARITY_PERIOD, + crosswalk=load_uk_local_area_crosswalk(), + ) + local_ledger_registries = {_LOCAL_COMPILE_PARITY_PERIOD: local_compilation.registry} calibration_year = load_uk_frs_release().calibration_year if calibration_year in ledger_registries: reference_compiled = ledger_registries[calibration_year] @@ -214,20 +223,17 @@ def _run(args: argparse.Namespace, state: AttemptState) -> dict[str, object]: coverage_engine=engine, build_stage_names=sidecar["stages"], ledger_registries=ledger_registries, + local_ledger_registries=local_ledger_registries, parity_evidence=parity_evidence, fit_weight_records=rehydrate_uk_fit_weight_records(sidecar), - input_mass_reference=load_uk_input_mass_reference( - args.input_mass_reference - ), + input_mass_reference=load_uk_input_mass_reference(args.input_mass_reference), exclusions_evaluated_on=evaluated_on, ) append_phase(state, "release_cut_gates_evaluated") for gate_id, payload in report["gates"].items(): state.gate_verdicts[gate_id] = { "verdict": payload["status"], - "receipt": ( - f"local://{args.release_cut_gate_json.name}#/gates/{gate_id}" - ), + "receipt": (f"local://{args.release_cut_gate_json.name}#/gates/{gate_id}"), } certification = compose_uk_release_certification( @@ -285,9 +291,8 @@ def _parse_args(argv: list[str] | None) -> argparse.Namespace: args.release_cut_gate_json or args.candidate_h5.with_suffix(".release_cut_gates.json") ) - args.certification_json = ( - args.certification_json - or args.candidate_h5.with_suffix(".release_certification.json") + args.certification_json = args.certification_json or args.candidate_h5.with_suffix( + ".release_certification.json" ) distinct = { "--candidate-h5": args.candidate_h5, diff --git a/tools/extract_uk_local_registry_fixture.py b/tools/extract_uk_local_registry_fixture.py new file mode 100644 index 00000000..277ab8e4 --- /dev/null +++ b/tools/extract_uk_local_registry_fixture.py @@ -0,0 +1,504 @@ +"""Extract the incumbent UK local target surface (fixture B) at pin 12a1e028. + +Reproduces the y-side of both local loss builders WITHOUT a Microsimulation: every +target value in those builders comes from committed CSV/XLSX sources plus declared +scalings, so the model side (which needs licensed microdata) is not required. + +For each bound column we emit BOTH: + raw_value - the published statistic before the builder's national-consistency + scaling (boundary-mapped for constituencies, so it is comparable + row-for-row with the calibrated value) + calibrated_value - the value the incumbent actually calibrates against + +so a parity comparison can attribute a difference to the source statistic or to the +incumbent's solve-time scaling, instead of reporting the whole surface as drift. + +Constituency rows are mapped 2010 -> PCON24 with the incumbent's own mapping_matrix. +LA rows are already at LAD-2021 codes and are consumed positionally by the incumbent. +""" + +from __future__ import annotations + +import json +import sys +from pathlib import Path + +import numpy as np +import pandas as pd +from policyengine_uk_data.datasets.local_areas.constituencies.boundary_changes.mapping_matrix import ( + mapping_matrix, +) +from policyengine_uk_data.datasets.local_areas.constituencies.devolved_housing import ( + add_private_rent_targets, +) +from policyengine_uk_data.storage import STORAGE_FOLDER +from policyengine_uk_data.targets.sources.local_age import ( + get_constituency_age_targets, + get_la_age_targets, + get_uk_total_population, +) +from policyengine_uk_data.targets.sources.local_income import ( + INCOME_VARIABLES, + get_constituency_income_targets, + get_la_income_targets, + get_national_income_projections, +) +from policyengine_uk_data.targets.sources.local_la_extras import ( + get_ons_income_uprating_factors, + load_household_counts, + load_ons_la_income, + load_private_rents, + load_tenure_data, +) +from policyengine_uk_data.targets.sources.local_uc import ( + _scaled_uc_children_by_country, +) +from policyengine_uk_data.utils.uc_data import uc_la_households, uc_pc_households + +TIME_PERIOD = 2025 + + +def _normalized_area_name(name): + """Publisher name normalized for joining: bilingual Welsh labels keep the + English half, case and stray dots are ignored.""" + + return str(name).split(" / ")[0].strip().lower().replace(".", "") + + +def _corrected_uc_by_code(parsed, name_column, roster): + """uk-data#468 fix-and-sign: attach UC counts to areas BY NAME, not by row + position. The incumbent's parsed UC tables carry publisher names only and + its loss builders consume them positionally against unrelated orderings; + this join is the correction, applied fixture-side and signed in the + receipt, because the incumbent getters cannot yet produce aligned values. + Every roster area must resolve or the extraction fails.""" + + by_name = {} + raw_names = {} + for name, count in zip(parsed[name_column], parsed["household_count"], strict=True): + key = _normalized_area_name(name) + if key in by_name: + other = raw_names[key] + if str(other) == str(name): + raise ValueError(f"uc: duplicate publisher area name {name!r}.") + raise ValueError( + "uc: normalization collision - distinct publisher areas " + f"{other!r} and {name!r} normalize to the same key {key!r}." + ) + by_name[key] = float(count) + raw_names[key] = name + corrected = {} + missing = [] + for code, roster_name in roster: + key = _normalized_area_name(roster_name) + if key in by_name: + corrected[code] = by_name[key] + else: + missing.append(f"{code} ({roster_name})") + if missing: + raise ValueError( + f"uc: {len(missing)} roster area(s) have no publisher row: {missing[:5]}" + ) + if len(by_name) != len(roster): + # The reverse direction: publisher rows matching no roster area would + # otherwise drop silently, letting a superset or renamed-area extract + # pass (re-review finding 4). + matched = {_normalized_area_name(name) for _, name in roster} + orphans = sorted(str(raw_names[key]) for key in by_name if key not in matched) + raise ValueError( + f"uc: {len(by_name)} publisher row(s) for a {len(roster)}-area " + f"roster; unmatched publisher rows: {orphans[:5]}" + ) + return corrected + + +def _assert_code_aligned(frame, codes, family): + """Refuse a source frame that does not carry the roster, in roster order. + + The incumbent's loss builders consume these frames positionally, so the + fixture must too — but only after proving the positional pairing IS the + code pairing. A source whose codes disagree with the roster (a partial or + re-sorted re-extract) fails here instead of silently permuting the + fixture; see review finding 2 on PR #795 and chronicle#202 for the class. + """ + + if len(frame) != len(codes): + raise ValueError( + f"{family}: source has {len(frame)} rows for a {len(codes)}-code roster." + ) + if "code" not in frame.columns: + # A source that cannot be code-checked is a fact worth failing on: a + # bare length comparison passes any permutation of the right size, + # which is the uk-data#468 failure mode surviving inside the guard + # written to prevent it (re-review finding 2). + raise ValueError( + f"{family}: source carries no 'code' column, so positional " + "consumption cannot be proven code-aligned." + ) + if list(frame["code"]) != list(codes): + raise ValueError( + f"{family}: source code order disagrees with the roster order." + ) + + +def _income_block(incomes, national_incomes, raw, cal, scalings): + for income_variable in INCOME_VARIABLES: + local_targets = incomes[f"{income_variable}_amount"].values + national_target = national_incomes[ + (national_incomes.total_income_lower_bound == 12_570) + & (national_incomes.total_income_upper_bound == np.inf) + ][income_variable + "_amount"].iloc[0] + adjustment = national_target / local_targets.sum() + scalings[f"hmrc/{income_variable}/amount"] = float(adjustment) + scalings[f"hmrc/{income_variable}/count"] = float(adjustment) + + raw[f"hmrc/{income_variable}/amount"] = local_targets + cal[f"hmrc/{income_variable}/amount"] = local_targets * adjustment + counts = incomes[f"{income_variable}_count"].values + raw[f"hmrc/{income_variable}/count"] = counts + cal[f"hmrc/{income_variable}/count"] = counts * adjustment + + +def _age_block(age_targets, raw, cal, scalings): + uk_total_population = get_uk_total_population(TIME_PERIOD) + age_cols = [c for c in age_targets.columns if c.startswith("age/")] + targets_total_pop = sum(age_targets[c].values.sum() for c in age_cols) + factor = uk_total_population / targets_total_pop * 0.9 + for col in age_cols: + raw[col] = age_targets[col].values + cal[col] = age_targets[col].values * factor + scalings[col] = float(factor) + return age_cols + + +def constituency_surface(): + raw, cal, scalings = pd.DataFrame(), pd.DataFrame(), {} + + age_targets = get_constituency_age_targets() + grain_codes = age_targets["code"].tolist() + + incomes = get_constituency_income_targets() + _assert_code_aligned(incomes, grain_codes, "hmrc constituency income") + _income_block( + incomes, get_national_income_projections(TIME_PERIOD), raw, cal, scalings + ) + + _age_block(age_targets, raw, cal, scalings) + + # Devolved housing: the y-side needs only the age-target population shares and + # the module's hardcoded country totals; the array arguments feed the matrix side + # only, so zero-length-safe placeholders are passed. + n = len(age_targets) + placeholder = np.zeros(n) + for frame in (raw, cal): + add_private_rent_targets( + pd.DataFrame(index=range(n)), + frame, + age_targets, + country=np.array([""] * n), + tenure_type=np.array([""] * n), + rent=placeholder, + ) + for col in cal.columns: + scalings.setdefault(col, 1.0) + + # 2010 -> PCON24, applied to both frames so they stay row-comparable. + codes = pd.read_csv(STORAGE_FOLDER / "constituencies_2024.csv").code.tolist() + if mapping_matrix.shape != (len(codes), len(grain_codes)): + raise ValueError( + f"boundary mapping is {mapping_matrix.shape}; expected " + f"({len(codes)}, {len(grain_codes)})." + ) + if len(raw) != len(grain_codes): + raise ValueError( + f"pre-mapping frame has {len(raw)} rows on a {len(grain_codes)}-row grain." + ) + raw_mapped = pd.DataFrame(mapping_matrix @ raw.values, columns=list(raw.columns)) + cal_mapped = pd.DataFrame(mapping_matrix @ cal.values, columns=list(cal.columns)) + + # uk-data#468 fix-and-sign: UC is PCON24-native, so under the correction it + # is attached AFTER the boundary mapping, by name-join to the 2024 roster -- + # never through the 2010->2024 matrix, and never by row position. The child + # splits recompute from the corrected totals with the incumbent's own + # country-proportion buckets, keyed by each constituency's true country. + roster_2024 = pd.read_csv(STORAGE_FOLDER / "constituencies_2024.csv") + corrected = _corrected_uc_by_code( + uc_pc_households, + "constituency_name", + list(zip(roster_2024["code"], roster_2024["name"], strict=True)), + ) + totals = np.array([corrected[code] for code in codes]) + for frame in (raw_mapped, cal_mapped): + frame["uc_households"] = totals + scalings["uc_households"] = 1.0 + + gb_total = sum( + value for code, value in corrected.items() if code[0] in ("E", "W", "S") + ) + country_buckets = _scaled_uc_children_by_country(gb_total) + split_cols = [ + "uc_hh_0_children", + "uc_hh_1_child", + "uc_hh_2_children", + "uc_hh_3plus_children", + ] + splits = {col: [] for col in split_cols} + for code in codes: + proportions = country_buckets.get(code[0], country_buckets["N"]) + shares = proportions / proportions.sum() + # Largest-remainder allocation: independent per-bucket rounding lets + # the four splits drift up to +/-2 households from the total, and a + # reference fixture must prove its parts sum to its whole + # (re-review finding 1). + total = round(corrected[code]) + exact = [corrected[code] * share for share in shares] + floors = [int(value) for value in exact] + order = sorted( + range(len(exact)), key=lambda j: exact[j] - floors[j], reverse=True + ) + for j in order[: total - sum(floors)]: + floors[j] += 1 + # Assert closure against the value the fixture actually stores as + # uc_households -- not a locally-rounded copy, which cannot fail on + # its own construction (round-3 review finding 1). A publisher total + # that is not integral refuses here instead of drifting silently. + if sum(floors) != corrected[code]: + raise ValueError( + f"uc splits: allocation for {code} sums to {sum(floors)}, " + f"but the stored uc_households total is {corrected[code]!r}." + ) + for j, col in enumerate(split_cols): + splits[col].append(floors[j]) + for col in split_cols: + for frame in (raw_mapped, cal_mapped): + frame[col] = np.array(splits[col], dtype=float) + scalings[col] = 1.0 + + return codes, raw_mapped, cal_mapped, scalings, True + + +def local_authority_surface(): + raw, cal, scalings = pd.DataFrame(), pd.DataFrame(), {} + + la_codes = pd.read_csv(STORAGE_FOLDER / "local_authorities_2021.csv") + roster = la_codes["code"].tolist() + + incomes = get_la_income_targets() + _assert_code_aligned(incomes, roster, "hmrc la income") + _income_block( + incomes, get_national_income_projections(TIME_PERIOD), raw, cal, scalings + ) + + age_targets = get_la_age_targets() + _assert_code_aligned(age_targets, roster, "ons la age") + _age_block(age_targets, raw, cal, scalings) + + # uk-data#468 fix-and-sign: LA UC totals join by name, never by position. + corrected_la = _corrected_uc_by_code( + uc_la_households, + "la_name", + list(zip(la_codes["code"], la_codes["name"], strict=True)), + ) + la_totals = np.array([corrected_la[code] for code in roster]) + raw["uc_households"] = la_totals + cal["uc_households"] = la_totals + scalings["uc_households"] = 1.0 + + # The remaining LA families are produced inline in the incumbent's loss builder + # rather than by importable target functions, so their y-side is replayed here. + ons_income = load_ons_la_income() + households_by_la = load_household_counts() + ons_merged = la_codes.merge( + ons_income, left_on="code", right_on="la_code", how="left" + ).merge( + households_by_la, + left_on="code", + right_on="la_code", + how="left", + suffixes=("", "_hh"), + ) + bhc_factor, housing_factor = get_ons_income_uprating_factors(TIME_PERIOD) + bhc_raw = ons_merged["net_income_bhc"] * ons_merged["households"] + housing_raw = ( + ons_merged["net_income_bhc"] * ons_merged["households"] + - ons_merged["net_income_ahc"] * ons_merged["households"] + ) + has_ons = ( + ons_merged["net_income_bhc"].notna() & ons_merged["households"].notna() + ).values + bhc_cal = bhc_raw * bhc_factor + housing_cal = housing_raw * housing_factor + for col, rvals, cvals, factor in ( + ("ons/equiv_net_income_bhc", bhc_raw, bhc_cal, bhc_factor), + ("ons/equiv_housing_costs", housing_raw, housing_cal, housing_factor), + ( + "ons/equiv_net_income_ahc", + bhc_raw - housing_raw, + bhc_cal - housing_cal, + None, + ), + ): + raw[col] = np.where(has_ons, rvals.values, np.nan) + cal[col] = np.where(has_ons, cvals.values, np.nan) + scalings[col] = float(factor) if factor is not None else None + + tenure_merged = la_codes.merge( + load_tenure_data(), left_on="code", right_on="la_code", how="left" + ).merge( + households_by_la, + left_on="code", + right_on="la_code", + how="left", + suffixes=("", "_hh"), + ) + has_tenure = ( + tenure_merged["owned_outright_pct"].notna() + & tenure_merged["households"].notna() + ).values + for tenure_key, pct_col in ( + ("owned_outright", "owned_outright_pct"), + ("owned_mortgage", "owned_mortgage_pct"), + ("private_rent", "private_rent_pct"), + ("social_rent", "social_rent_pct"), + ): + targets = tenure_merged[pct_col] / 100 * tenure_merged["households"] + col = f"tenure/{tenure_key}" + raw[col] = np.where(has_tenure, targets.values, np.nan) + cal[col] = np.where(has_tenure, targets.values, np.nan) + scalings[col] = 1.0 + + tenure_merged = tenure_merged.merge( + load_private_rents(), left_on="code", right_on="area_code", how="left" + ) + rent_target = ( + tenure_merged["median_annual_rent"] + * tenure_merged["private_rent_pct"] + / 100 + * tenure_merged["households"] + ) + has_rent = ( + tenure_merged["median_annual_rent"].notna() + & tenure_merged["private_rent_pct"].notna() + & tenure_merged["households"].notna() + ).values + raw["rent/private_rent"] = np.where(has_rent, rent_target.values, np.nan) + cal["rent/private_rent"] = np.where(has_rent, rent_target.values, np.nan) + scalings["rent/private_rent"] = 1.0 + + # Council tax: bound only when the storage CSV is present (file-existence gate). + ct_path = STORAGE_FOLDER / "la_council_tax.csv" + if ct_path.exists(): + ct_data = pd.read_csv(ct_path) + ct_columns = ["code"] + [f"count_band_{b}" for b in "ABCDEFGH"] + if "total_council_tax_net" in ct_data.columns: + ct_columns.append("total_council_tax_net") + ct_merged = la_codes.merge(ct_data[ct_columns], on="code", how="left") + for band in "ABCDEFGH": + col = f"voa/council_tax/{band}" + csv_col = f"count_band_{band}" + values = np.where( + ct_merged[csv_col].notna().values, ct_merged[csv_col].values, np.nan + ) + raw[col] = values + cal[col] = values + scalings[col] = 1.0 + if "total_council_tax_net" in ct_merged.columns: + values = np.where( + ct_merged["total_council_tax_net"].notna().values, + ct_merged["total_council_tax_net"].values, + np.nan, + ) + raw["housing/council_tax_net"] = values + cal["housing/council_tax_net"] = values + scalings["housing/council_tax_net"] = 1.0 + + return la_codes.code.tolist(), raw, cal, scalings, False + + +_UC_METRIC_NAMES = frozenset( + { + "uc_households", + "uc_hh_0_children", + "uc_hh_1_child", + "uc_hh_2_children", + "uc_hh_3plus_children", + } +) + + +def _is_uc_metric(col): + return col in _UC_METRIC_NAMES + + +def rows_for(area_type, codes, raw, cal, scalings, boundary_mapped): + out = [] + for col in cal.columns: + for i, code in enumerate(codes): + rv = float(raw[col].values[i]) if col in raw.columns else None + cv = float(cal[col].values[i]) + if not np.isfinite(cv): + continue + out.append( + { + "name": f"{col}@{code}", + "metric": col, + "area_type": area_type, + "geography_id": code, + "period": TIME_PERIOD, + "raw_value": rv if rv is not None and np.isfinite(rv) else None, + "value": cv, + "adjustment_factor": scalings.get(col), + # UC columns are attached post-mapping on native PCON24 + # codes under the uk-data#468 correction, so they are + # never boundary-mapped even on the constituency surface. + "boundary_mapped_from_2010": ( + boundary_mapped and not _is_uc_metric(col) + ), + } + ) + return out + + +def main(): + out_path = Path(sys.argv[1]) + rows = [] + codes, raw, cal, scalings, mapped = constituency_surface() + rows += rows_for("constituency", codes, raw, cal, scalings, mapped) + codes, raw, cal, scalings, mapped = local_authority_surface() + rows += rows_for("local_authority", codes, raw, cal, scalings, mapped) + + metrics = sorted({r["metric"] for r in rows}) + payload = { + "schema_version": 1, + "country": "uk", + "fixture": "incumbent_local_2025", + "provenance": { + "source_repository": "policyengine-uk-data", + "pinned_ref": "12a1e028afeef08d8b2d74ee03fd9de3a78b2dd3", + "pinned_version": "1.56.16", + "method": ( + "y-side replay of datasets/local_areas/{constituencies,local_authorities}" + "/loss.py: published statistics with the builders' declared national-" + "consistency scalings; constituency rows boundary-mapped 2010->PCON24 " + "with the incumbent's own mapping_matrix. EXCEPTION, fix-and-signed: " + "the UC family corrects policyengine-uk-data#468 at extraction - " + "totals join to their areas BY NAME (never by row position), attach " + "post-mapping on native PCON24/LAD codes, and the child splits " + "recompute from the corrected totals with the incumbent's own " + "country-proportion buckets keyed by true country prefix." + ), + "time_period": TIME_PERIOD, + }, + "surface": { + "row_count": len(rows), + "metric_count": len(metrics), + "metrics": metrics, + }, + "rows": rows, + } + out_path.write_text(json.dumps(payload, indent=1) + "\n", encoding="utf-8") + print(json.dumps({"rows": len(rows), "metrics": len(metrics)})) + + +if __name__ == "__main__": + main() diff --git a/tools/generate_uk_local_area_crosswalk.py b/tools/generate_uk_local_area_crosswalk.py new file mode 100644 index 00000000..dece7d72 --- /dev/null +++ b/tools/generate_uk_local_area_crosswalk.py @@ -0,0 +1,166 @@ +#!/usr/bin/env python +"""Generate the UK local-area identity crosswalk from the OA ladder artifact.""" + +from __future__ import annotations + +import argparse +import hashlib +import json +from pathlib import Path +from typing import Any + +import numpy as np + +DEFAULT_LADDER_ARTIFACT = Path("build/uk/uk_oa_ladder_2021.npz") +DEFAULT_LADDER_SUMMARY = Path("build/uk/ladder_summary.json") +DEFAULT_OUTPUT = Path( + "packages/microcosm-build/src/microcosm/build/uk/local_area_crosswalk.json" +) + +EXPECTED_COUNTS = { + "constituency": 650, + "local_authority": 361, +} +# Accept-sets, not single labels: publishers stamp the vintage of the LOOKUP +# they published against, and ONS products list every UK local authority on +# the 2023 LAD frame -- including Scottish council areas and Northern Irish +# districts, whose boundaries (and GSS codes) are unchanged since ca_2019 / +# lgd_2014. The devolved publishers stamp their own frames. Both labels name +# the same boundary set, so the compile accepts either; a vintage OUTSIDE the +# set is a genuinely different boundary frame and still refuses. +EXPECTED_FACT_VINTAGE = { + "constituency": ["pcon_2024"], + "local_authority": { + "E": ["lad_2023"], + "W": ["lad_2023"], + "S": ["ca_2019", "lad_2023"], + "N": ["lgd_2014", "lad_2023"], + }, +} + + +def main() -> None: + args = _parser().parse_args() + resource = build_local_area_crosswalk( + ladder_artifact=args.ladder_artifact, + ladder_summary=args.ladder_summary, + ) + args.output.parent.mkdir(parents=True, exist_ok=True) + args.output.write_text(json.dumps(resource, indent=2) + "\n", encoding="utf-8") + print( + json.dumps( + { + level: len(payload["area_ids"]) + for level, payload in resource["levels"].items() + }, + sort_keys=True, + ) + ) + + +def _parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser() + parser.add_argument("--ladder-artifact", type=Path, default=DEFAULT_LADDER_ARTIFACT) + parser.add_argument("--ladder-summary", type=Path, default=DEFAULT_LADDER_SUMMARY) + parser.add_argument("--output", type=Path, default=DEFAULT_OUTPUT) + return parser + + +def build_local_area_crosswalk( + *, + ladder_artifact: Path, + ladder_summary: Path, +) -> dict[str, Any]: + """Return the packaged crosswalk resource for the supplied ladder artifact.""" + + if not ladder_artifact.exists(): + raise FileNotFoundError(f"UK OA ladder artifact not found: {ladder_artifact}") + if not ladder_summary.exists(): + raise FileNotFoundError(f"UK OA ladder summary not found: {ladder_summary}") + summary = json.loads(ladder_summary.read_text(encoding="utf-8")) + with np.load(ladder_artifact, allow_pickle=False) as payload: + metadata = json.loads(str(payload["metadata_json"].item())) + levels = { + "constituency": _level_payload( + payload, + metadata, + level="constituency", + code_column="constituency_code", + ladder_layer="constituency", + ), + "local_authority": _level_payload( + payload, + metadata, + level="local_authority", + code_column="local_authority_code", + ladder_layer="local_authority", + ), + } + + ladder_sha = _sha256(ladder_artifact) + summary_sha = str(summary.get("output_sha256") or "") + if summary_sha and ladder_sha != summary_sha: + raise ValueError( + f"UK OA ladder artifact sha256 {ladder_sha} does not match " + f"ladder_summary.json output_sha256 {summary_sha}." + ) + return { + "schema_version": 1, + "country": "uk", + "kind": "uk_local_area_crosswalk", + "description": ( + "Identity crosswalk for UK local Ledger target references. Area " + "ids come from the packaged OA ladder roster; facts must carry " + "the same geography ids and the declared fact-side vintages." + ), + "ladder_artifact": ladder_artifact.as_posix(), + "ladder_artifact_sha256": ladder_sha, + "ladder_summary": ladder_summary.as_posix(), + "ladder_summary_sha256": _sha256(ladder_summary), + "levels": levels, + } + + +def _level_payload( + payload: Any, + metadata: dict[str, Any], + *, + level: str, + code_column: str, + ladder_layer: str, +) -> dict[str, Any]: + if code_column not in payload.files: + raise ValueError(f"UK OA ladder artifact is missing {code_column!r}.") + area_ids = sorted({str(value) for value in np.asarray(payload[code_column])}) + expected = EXPECTED_COUNTS[level] + if len(area_ids) != expected: + raise ValueError( + f"UK OA ladder {level} roster has {len(area_ids)} area id(s), " + f"expected {expected}." + ) + layers = metadata.get("layers") or {} + layer = layers.get(ladder_layer) or {} + ladder_vintage = str(layer.get("vintage") or "") + if not ladder_vintage: + raise ValueError(f"UK OA ladder metadata is missing {ladder_layer} vintage.") + return { + "ledger_geography_level": level, + "ladder_layer": ladder_layer, + "ladder_code_column": code_column, + "ladder_vintage": ladder_vintage, + "expected_vintage": EXPECTED_FACT_VINTAGE[level], + "area_count": len(area_ids), + "area_ids": area_ids, + } + + +def _sha256(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as file: + for chunk in iter(lambda: file.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +if __name__ == "__main__": + main() diff --git a/tools/generate_uk_local_target_references.py b/tools/generate_uk_local_target_references.py new file mode 100644 index 00000000..0bf97905 --- /dev/null +++ b/tools/generate_uk_local_target_references.py @@ -0,0 +1,296 @@ +#!/usr/bin/env python +"""Generate UK local-area Ledger target references from the local contract.""" + +from __future__ import annotations + +import argparse +import json +from collections.abc import Mapping +from pathlib import Path +from typing import Any + +from microcosm.build.target_reference_authoring import ( + AreaSignedDeferral, + AreaTargetReferenceAuthoringConfig, + author_area_target_references, + target_references_resource, +) + +DESCRIPTION = ( + "UK local-area Ledger target references for constituency and local-authority " + "calibration. Rows are generated from the local rows in uk_population_targets.json and " + "local_area_crosswalk.json: name is target_id@geography_id, ledger_selector " + "is the contract selector plus geography_level/geography_id pins, entity " + "and measure come from the policyengine binding, and observed values stay " + "in Ledger facts. Deferred area absences are recorded in the membership " + "report." +) +LOCAL_GEOGRAPHY_LEVELS = frozenset({"constituency", "local_authority"}) + +POLICYENGINE_BINDING_KEYS = frozenset( + { + "filters", + "from_entity", + "map_to", + "metric_name", + "value_expression", + "value_variable", + } +) + + +def main() -> None: + args = _parser().parse_args() + contract = _filter_contract_by_geography_levels( + json.loads(args.contract.read_text(encoding="utf-8")), + allowed_levels=LOCAL_GEOGRAPHY_LEVELS, + ) + crosswalk = json.loads(args.crosswalk.read_text(encoding="utf-8")) + config = AreaTargetReferenceAuthoringConfig( + target_period=args.period, + areas_by_geography_level=_areas_by_geography_level(crosswalk), + area_signed_deferrals=tuple(_area_signed_deferrals(contract, crosswalk)), + value_operation_by_target_id=_value_operation_by_target_id(contract), + binding_vocabulary=POLICYENGINE_BINDING_KEYS, + source_fact_feed=str(args.ledger_facts), + ) + authored = author_area_target_references( + contract, + _read_jsonl(args.ledger_facts), + config, + ) + resource = target_references_resource( + country="uk", + description=DESCRIPTION, + authored=authored, + ) + args.output.write_text(json.dumps(resource, indent=2) + "\n", encoding="utf-8") + args.membership_report.write_text( + json.dumps(authored.membership_report, indent=2) + "\n", + encoding="utf-8", + ) + print(json.dumps(authored.membership_report["status_counts"], sort_keys=True)) + print( + f"active_reference_count={authored.membership_report['active_reference_count']}" + ) + + +def _parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser() + parser.add_argument("--contract", type=Path, required=True) + parser.add_argument("--ledger-facts", type=Path, required=True) + parser.add_argument("--crosswalk", type=Path, required=True) + parser.add_argument("--period", type=int, default=2025) + parser.add_argument("--output", type=Path, required=True) + parser.add_argument("--membership-report", type=Path, required=True) + return parser + + +def _filter_contract_by_geography_levels( + contract: Mapping[str, Any], + *, + allowed_levels: frozenset[str], +) -> dict[str, Any]: + filtered = dict(contract) + filtered["targets"] = [ + target + for target in contract.get("targets", ()) + if set(target.get("geography_levels") or ()) & allowed_levels + ] + return filtered + + +def _areas_by_geography_level( + crosswalk: Mapping[str, Any], +) -> dict[str, tuple[str, ...]]: + levels = crosswalk.get("levels") + if not isinstance(levels, Mapping): + raise ValueError("local area crosswalk must expose a levels object.") + result: dict[str, tuple[str, ...]] = {} + for level, payload in levels.items(): + if not isinstance(payload, Mapping): + raise ValueError(f"local area crosswalk level {level!r} must be an object.") + area_ids = payload.get("area_ids") + if not isinstance(area_ids, list) or not area_ids: + raise ValueError( + f"local area crosswalk level {level!r} must expose area_ids." + ) + result[str(level)] = tuple(str(area_id) for area_id in area_ids) + return result + + +def _read_jsonl(path: Path): + with path.open(encoding="utf-8") as stream: + for line in stream: + if line.strip(): + yield json.loads(line) + + +def _value_operation_by_target_id(contract: Mapping[str, Any]) -> dict[str, str]: + operations: dict[str, str] = {} + for target in contract.get("targets", ()): + target_id = str(target["target_id"]) + if target_id.startswith("ons.age."): + operations[target_id] = "sum" + if target_id in { + "hmrc.self_employment_income.amount", + "hmrc.employment_income.amount", + }: + operations[target_id] = "count_x_mean" + if target_id == "dwp.uc.households_by_area_children_3plus": + operations[target_id] = "sum" + if target_id in { + "ons.tenure.private_rent", + "ons.tenure.social_rent", + }: + operations[target_id] = "sum" + return operations + + +def _area_signed_deferrals( + contract: Mapping[str, Any], + crosswalk: Mapping[str, Any], +) -> list[AreaSignedDeferral]: + target_ids = {str(target["target_id"]) for target in contract.get("targets", ())} + areas = _areas_by_geography_level(crosswalk) + constituency_ids = areas.get("constituency", ()) + local_authority_ids = areas.get("local_authority", ()) + ni_constituencies = tuple( + area_id for area_id in constituency_ids if area_id[:1] == "N" + ) + ni_local_authorities = tuple( + area_id for area_id in local_authority_ids if area_id[:1] == "N" + ) + scottish_local_authorities = tuple( + area_id for area_id in local_authority_ids if area_id[:1] == "S" + ) + pipr_lad_absent_area_ids = tuple( + area_id + for area_id in ("E06000053", "E08000016", "E08000019", "E09000001") + if area_id in local_authority_ids + ) + pipr_after_target_period_area_ids = tuple( + area_id + for area_id in local_authority_ids + if area_id[:1] in {"E", "W"} and area_id not in pipr_lad_absent_area_ids + ) + spi_la_measure_gap_area_ids = tuple( + area_id + for area_id in ("E06000027", "E06000053") + if area_id in local_authority_ids + ) + deferrals: list[AreaSignedDeferral] = [] + + def add( + *, + target_id: str, + geography_level: str, + reason_id: str, + rationale: str, + area_ids: tuple[str, ...], + ) -> None: + if target_id in target_ids and area_ids: + deferrals.append( + AreaSignedDeferral( + target_id=target_id, + geography_level=geography_level, + reason_id=reason_id, + rationale=rationale, + area_ids=area_ids, + ) + ) + + add( + target_id="dwp.uc.households_by_area", + geography_level="constituency", + reason_id="uc_gb_only_ni_absent", + rationale="DWP Stat-Xplore Universal Credit local-area facts in the pinned feed cover Great Britain only: 632/650 PCON24 constituencies compile and the 18 Northern Ireland constituencies have no UC household facts.", + area_ids=ni_constituencies, + ) + add( + target_id="dwp.uc.households_by_area", + geography_level="local_authority", + reason_id="uc_gb_only_ni_absent", + rationale="DWP Stat-Xplore Universal Credit local-authority facts in the pinned feed cover Great Britain only: 350/361 local authorities compile and the 11 Northern Ireland local authorities have no UC household facts.", + area_ids=ni_local_authorities, + ) + for target_id in ( + "dwp.uc.households_by_area_children_0", + "dwp.uc.households_by_area_children_1", + "dwp.uc.households_by_area_children_2", + "dwp.uc.households_by_area_children_3plus", + ): + add( + target_id=target_id, + geography_level="constituency", + reason_id="uc_children_gb_only_ni_absent", + rationale="DWP Stat-Xplore Universal Credit child-bucket facts in the pinned feed cover Great Britain constituencies only: 632/650 compile and the 18 Northern Ireland constituencies have no UC child-bucket household facts.", + area_ids=ni_constituencies, + ) + for target_id in ( + "hmrc.self_employment_income.amount", + "hmrc.self_employment_income.count", + "hmrc.employment_income.amount", + "hmrc.employment_income.count", + ): + add( + target_id=target_id, + geography_level="local_authority", + reason_id="spi_la_target_measure_coverage_absent", + rationale="HMRC SPI local-authority facts in the pinned feed publish the target count/mean measures for 359/361 crosswalk local authorities; E06000027 has only median SPI measures and E06000053 has no SPI local-authority target-measure rows.", + area_ids=spi_la_measure_gap_area_ids, + ) + add( + target_id="hmrc.self_employment_income.amount", + geography_level="constituency", + reason_id="spi_pcon_self_employment_mean_absent", + rationale="HMRC SPI constituency facts in the pinned feed publish self_employment_income_count for 650/650 constituencies but self_employment_income_mean for 649/650; E14001416 has the count fact but no mean fact, so count_x_mean cannot form the amount.", + area_ids=tuple( + area_id for area_id in ("E14001416",) if area_id in constituency_ids + ), + ) + for target_id in ( + "ons.equiv_net_income_bhc", + "ons.equiv_net_income_ahc", + "ons.equiv_housing_costs", + ): + add( + target_id=target_id, + geography_level="local_authority", + reason_id="msoa_mean_to_la_deferred", + rationale="ONS equivalised-income facts in the pinned feed are MSOA-grain mean-valued targets, with no local-authority rows; local-authority aggregation is deferred pending the signed mean-aggregation design.", + area_ids=local_authority_ids, + ) + add( + target_id="ons.rent.private_rent", + geography_level="local_authority", + reason_id="private_rent_pipr_after_target_period", + rationale="ONS PIPR private-rent LA facts in the pinned feed are period 2026-06 for 314 crosswalk England/Wales local authorities, so none are at or before the 2025 target period compiled in this run.", + area_ids=pipr_after_target_period_area_ids, + ) + add( + target_id="ons.rent.private_rent", + geography_level="local_authority", + reason_id="private_rent_pipr_english_lad_absent", + rationale="ONS PIPR private-rent LA facts in the pinned feed omit four English crosswalk local authorities: E06000053, E08000016, E08000019, and E09000001.", + area_ids=pipr_lad_absent_area_ids, + ) + add( + target_id="ons.rent.private_rent", + geography_level="local_authority", + reason_id="private_rent_pipr_scotland_brma_grain", + rationale="ONS PIPR private-rent facts for Scotland in the pinned feed are published at BRMA statistical_scope grain, not local-authority grain.", + area_ids=scottish_local_authorities, + ) + add( + target_id="ons.rent.private_rent", + geography_level="local_authority", + reason_id="private_rent_pipr_ni_absent", + rationale="ONS PIPR private-rent facts in the pinned feed include no Northern Ireland local-authority rows.", + area_ids=ni_local_authorities, + ) + return deferrals + + +if __name__ == "__main__": + main() diff --git a/tools/generate_uk_target_references.py b/tools/generate_uk_target_references.py index 1de3b4a7..79c3998a 100644 --- a/tools/generate_uk_target_references.py +++ b/tools/generate_uk_target_references.py @@ -79,7 +79,8 @@ DESCRIPTION = ( "UK active-subset Ledger target references for the FRS 2024-25 line. " - "Rows are generated from uk_national_targets.json: name is the contract " + "Rows are generated from the national rows in uk_population_targets.json: " + "name is the contract " "target_id or an incumbent-compatible fan-out row name; ledger_selector " "is the contract selector plus geography pins; entity is from_entity, " "then map_to, then household; measure is the prepared-column metric name " @@ -92,11 +93,15 @@ "measures are prepared columns produced from the contract binding payload " "referenced by metadata.contract_target_id." ) +NATIONAL_GEOGRAPHY_LEVELS = frozenset({"country", "region"}) def main() -> None: args = _parser().parse_args() - contract = json.loads(args.contract.read_text()) + contract = _filter_contract_by_geography_levels( + json.loads(args.contract.read_text()), + allowed_levels=NATIONAL_GEOGRAPHY_LEVELS, + ) facts = [ json.loads(line) for line in args.ledger_facts.read_text().splitlines() @@ -145,6 +150,20 @@ def _parser() -> argparse.ArgumentParser: return parser +def _filter_contract_by_geography_levels( + contract: Mapping[str, Any], + *, + allowed_levels: frozenset[str], +) -> dict[str, Any]: + filtered = dict(contract) + filtered["targets"] = [ + target + for target in contract.get("targets", ()) + if set(target.get("geography_levels") or ()) <= allowed_levels + ] + return filtered + + def _registry_inverse(contract: Mapping[str, Any]) -> dict[str, list[str]]: inverse: dict[str, list[str]] = {} for ancestor, target_id in contract["registry_parity"]["mapped"].items():